ramips: ramips_esw: convert it to be a platform driver
[openwrt.git] / target / linux / ramips / files / arch / mips / include / asm / mach-ralink / rt288x.h
index 9b218de..a804488 100644 (file)
@@ -1,7 +1,7 @@
 /*
  * Ralink RT288x SoC specific definitions
  *
- * Copyright (C) 2008 Gabor Juhos <juhosg@openwrt.org>
+ * Copyright (C) 2008-2009 Gabor Juhos <juhosg@openwrt.org>
  * Copyright (C) 2008 Imre Kaloz <kaloz@openwrt.org>
  *
  * Parts of this file are based on Ralink's 2.6.21 BSP
 #include <linux/io.h>
 
 void rt288x_detect_sys_type(void) __init;
-
-#define RT288X_SYS_TYPE_LEN    64
-extern unsigned char rt288x_sys_type[RT288X_SYS_TYPE_LEN];
-
 void rt288x_detect_sys_freq(void) __init;
 
 extern unsigned long rt288x_cpu_freq;
 extern unsigned long rt288x_sys_freq;
 
-extern unsigned long rt288x_mach_type;
-#define RT288X_MACH_GENERIC    0
-
 #define RT288X_CPU_IRQ_BASE    0
 #define RT288X_INTC_IRQ_BASE   8
 #define RT288X_INTC_IRQ_COUNT  32
@@ -53,7 +46,6 @@ extern unsigned long rt288x_mach_type;
 #define RT288X_GPIO_COUNT      32
 
 extern void __iomem *rt288x_sysc_base;
-extern void __iomem *rt288x_intc_base;
 extern void __iomem *rt288x_memc_base;
 
 static inline void rt288x_sysc_wr(u32 val, unsigned reg)
@@ -66,16 +58,6 @@ static inline u32 rt288x_sysc_rr(unsigned reg)
        return __raw_readl(rt288x_sysc_base + reg);
 }
 
-static inline void rt288x_intc_wr(u32 val, unsigned reg)
-{
-       __raw_writel(val, rt288x_intc_base + reg);
-}
-
-static inline u32 rt288x_intc_rr(unsigned reg)
-{
-       return __raw_readl(rt288x_intc_base + reg);
-}
-
 static inline void rt288x_memc_wr(u32 val, unsigned reg)
 {
        __raw_writel(val, rt288x_memc_base + reg);
@@ -86,4 +68,6 @@ static inline u32 rt288x_memc_rr(unsigned reg)
        return __raw_readl(rt288x_memc_base + reg);
 }
 
+void rt288x_gpio_init(u32 mode) __init;
+
 #endif /* _RT228X_H_ */
This page took 0.029524 seconds and 4 git commands to generate.