davinci: da850: add spi device clock definitions
authorMichael Williamson <michael.williamson@criticallink.com>
Tue, 22 Feb 2011 13:37:00 +0000 (13:37 +0000)
committerKevin Hilman <khilman@ti.com>
Fri, 11 Mar 2011 18:48:28 +0000 (10:48 -0800)
Add spi clock information for da850.

Signed-off-by: Michael Williamson <michael.williamson@criticallink.com>
Acked-by: Sekhar Nori <nsekhar@ti.com>
Signed-off-by: Kevin Hilman <khilman@ti.com>
arch/arm/mach-davinci/da850.c

index 3443d972526534f2da7f1a4c2fe2be94c82983d0..68fe4c289d77b32d1395a347f38c2a6cfc768cd3 100644 (file)
@@ -359,6 +359,20 @@ static struct clk usb20_clk = {
        .gpsc           = 1,
 };
 
+static struct clk spi0_clk = {
+       .name           = "spi0",
+       .parent         = &pll0_sysclk2,
+       .lpsc           = DA8XX_LPSC0_SPI0,
+};
+
+static struct clk spi1_clk = {
+       .name           = "spi1",
+       .parent         = &pll0_sysclk2,
+       .lpsc           = DA8XX_LPSC1_SPI1,
+       .gpsc           = 1,
+       .flags          = DA850_CLK_ASYNC3,
+};
+
 static struct clk_lookup da850_clks[] = {
        CLK(NULL,               "ref",          &ref_clk),
        CLK(NULL,               "pll0",         &pll0_clk),
@@ -403,6 +417,8 @@ static struct clk_lookup da850_clks[] = {
        CLK(NULL,               "aemif",        &aemif_clk),
        CLK(NULL,               "usb11",        &usb11_clk),
        CLK(NULL,               "usb20",        &usb20_clk),
+       CLK("spi_davinci.0",    NULL,           &spi0_clk),
+       CLK("spi_davinci.1",    NULL,           &spi1_clk),
        CLK(NULL,               NULL,           NULL),
 };
 
This page took 0.033123 seconds and 5 git commands to generate.