]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
davinci: make it possible to include clock.h and psc.h in assembly code
authorSekhar Nori <nsekhar@ti.com>
Mon, 16 Nov 2009 11:51:36 +0000 (17:21 +0530)
committerKevin Hilman <khilman@deeprootsystems.com>
Thu, 4 Feb 2010 21:29:37 +0000 (13:29 -0800)
psc.h contains register defines for PSC module which
need to be accessed in assembly code which helps the
DA850/OMAP-L138 SoC go to sleep. Shutting down DDR clock
using PSC is a part of the sleep procedure.

Also, the PLL related hardware definitions in clock.h are
needed in assembly code to bypass the DDR2 PLL.

Signed-off-by: Sekhar Nori <nsekhar@ti.com>
Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
arch/arm/mach-davinci/clock.h
arch/arm/mach-davinci/include/mach/psc.h

index eca4d9972225a513448b8af1adec16dd16ff0259..31fb6eac712cb49f1f401d6963de66fbce00792e 100644 (file)
@@ -12,9 +12,6 @@
 #ifndef __ARCH_ARM_DAVINCI_CLOCK_H
 #define __ARCH_ARM_DAVINCI_CLOCK_H
 
-#include <linux/list.h>
-#include <asm/clkdev.h>
-
 #define DAVINCI_PLL1_BASE 0x01c40800
 #define DAVINCI_PLL2_BASE 0x01c40c00
 #define MAX_PLL 2
  */
 #define PLL_LOCK_TIME          20
 
+#ifndef __ASSEMBLER__
+
+#include <linux/list.h>
+#include <asm/clkdev.h>
+
 struct pll_data {
        u32 phys_base;
        void __iomem *base;
@@ -124,3 +126,5 @@ int davinci_set_pllrate(struct pll_data *pll, unsigned int prediv,
 extern struct platform_device davinci_wdt_device;
 
 #endif
+
+#endif
index 2776b235659461cb1ea8dee985a50a9636f74965..651f6d8158faf01505eddb8cce9b2eaae2ce367c 100644 (file)
 
 #define MDSTAT_STATE_MASK 0x1f
 
+#ifndef __ASSEMBLER__
+
 extern int davinci_psc_is_clk_active(unsigned int ctlr, unsigned int id);
 extern void davinci_psc_config(unsigned int domain, unsigned int ctlr,
                unsigned int id, char enable);
 
+#endif
+
 #endif /* __ASM_ARCH_PSC_H */