2c62a1689b5d0111b5af26590c20709cdaae2035
[openwrt.git] / target / linux / ramips / files / arch / mips / include / asm / mach-ralink / rt305x.h
1 /*
2  * Ralink RT305x SoC specific definitions
3  *
4  * Copyright (C) 2009-2011 Gabor Juhos <juhosg@openwrt.org>
5  *
6  * Parts of this file are based on Ralink's 2.6.21 BSP
7  *
8  * This program is free software; you can redistribute it and/or modify it
9  * under the terms of the GNU General Public License version 2 as published
10  * by the Free Software Foundation.
11  */
12
13 #ifndef _RT305X_H_
14 #define _RT305X_H_
15
16 #include <linux/init.h>
17 #include <linux/io.h>
18
19 enum rt305x_soc_type {
20         RT305X_SOC_UNKNOWN = 0,
21         RT305X_SOC_RT3050,
22         RT305X_SOC_RT3052,
23         RT305X_SOC_RT3350,
24         RT305X_SOC_RT3352,
25 };
26
27 extern enum rt305x_soc_type rt305x_soc;
28
29 static inline int soc_is_rt3050(void)
30 {
31         return rt305x_soc == RT305X_SOC_RT3050;
32 }
33
34 static inline int soc_is_rt3052(void)
35 {
36         return rt305x_soc == RT305X_SOC_RT3052;
37 }
38
39 static inline int soc_is_rt305x(void)
40 {
41         return soc_is_rt3050() || soc_is_rt3052();
42 }
43
44 static inline int soc_is_rt3350(void)
45 {
46         return rt305x_soc == RT305X_SOC_RT3350;
47 }
48
49 static inline int soc_is_rt3352(void)
50 {
51         return rt305x_soc == RT305X_SOC_RT3352;
52 }
53
54 #define RT305X_MEM_SIZE_MIN (2 * 1024 * 1024)
55 #define RT305X_MEM_SIZE_MAX (64 * 1024 * 1024)
56
57 #define RT305X_CPU_IRQ_BASE     0
58 #define RT305X_INTC_IRQ_BASE    8
59 #define RT305X_INTC_IRQ_COUNT   32
60 #define RT305X_GPIO_IRQ_BASE    40
61
62 #define RT305X_CPU_IRQ_INTC     (RT305X_CPU_IRQ_BASE + 2)
63 #define RT305X_CPU_IRQ_FE       (RT305X_CPU_IRQ_BASE + 5)
64 #define RT305X_CPU_IRQ_WNIC     (RT305X_CPU_IRQ_BASE + 6)
65 #define RT305X_CPU_IRQ_COUNTER  (RT305X_CPU_IRQ_BASE + 7)
66
67 #define RT305X_INTC_IRQ_SYSCTL  (RT305X_INTC_IRQ_BASE + 0)
68 #define RT305X_INTC_IRQ_TIMER0  (RT305X_INTC_IRQ_BASE + 1)
69 #define RT305X_INTC_IRQ_TIMER1  (RT305X_INTC_IRQ_BASE + 2)
70 #define RT305X_INTC_IRQ_IA      (RT305X_INTC_IRQ_BASE + 3)
71 #define RT305X_INTC_IRQ_PCM     (RT305X_INTC_IRQ_BASE + 4)
72 #define RT305X_INTC_IRQ_UART0   (RT305X_INTC_IRQ_BASE + 5)
73 #define RT305X_INTC_IRQ_PIO     (RT305X_INTC_IRQ_BASE + 6)
74 #define RT305X_INTC_IRQ_DMA     (RT305X_INTC_IRQ_BASE + 7)
75 #define RT305X_INTC_IRQ_NAND    (RT305X_INTC_IRQ_BASE + 8)
76 #define RT305X_INTC_IRQ_PERFC   (RT305X_INTC_IRQ_BASE + 9)
77 #define RT305X_INTC_IRQ_I2S     (RT305X_INTC_IRQ_BASE + 10)
78 #define RT305X_INTC_IRQ_UART1   (RT305X_INTC_IRQ_BASE + 12)
79 #define RT305X_INTC_IRQ_ESW     (RT305X_INTC_IRQ_BASE + 17)
80 #define RT305X_INTC_IRQ_OTG     (RT305X_INTC_IRQ_BASE + 18)
81
82 extern void __iomem *rt305x_sysc_base;
83 extern void __iomem *rt305x_memc_base;
84
85 static inline void rt305x_sysc_wr(u32 val, unsigned reg)
86 {
87         __raw_writel(val, rt305x_sysc_base + reg);
88 }
89
90 static inline u32 rt305x_sysc_rr(unsigned reg)
91 {
92         return __raw_readl(rt305x_sysc_base + reg);
93 }
94
95 static inline void rt305x_memc_wr(u32 val, unsigned reg)
96 {
97         __raw_writel(val, rt305x_memc_base + reg);
98 }
99
100 static inline u32 rt305x_memc_rr(unsigned reg)
101 {
102         return __raw_readl(rt305x_memc_base + reg);
103 }
104
105 #define RT305X_GPIO_I2C_SD      1
106 #define RT305X_GPIO_I2C_SCLK    2
107 #define RT305X_GPIO_SPI_EN      3
108 #define RT305X_GPIO_SPI_CLK     4
109 #define RT305X_GPIO_SPI_DOUT    5
110 #define RT305X_GPIO_SPI_DIN     6
111 /* GPIO 7-14 is shared between UART0, PCM  and I2S interfaces */
112 #define RT305X_GPIO_7           7
113 #define RT305X_GPIO_8           8
114 #define RT305X_GPIO_9           9
115 #define RT305X_GPIO_10          10
116 #define RT305X_GPIO_11          11
117 #define RT305X_GPIO_12          12
118 #define RT305X_GPIO_13          13
119 #define RT305X_GPIO_14          14
120 #define RT305X_GPIO_UART1_TXD   15
121 #define RT305X_GPIO_UART1_RXD   16
122 #define RT305X_GPIO_JTAG_TDO    17
123 #define RT305X_GPIO_JTAG_TDI    18
124 #define RT305X_GPIO_JTAG_TMS    19
125 #define RT305X_GPIO_JTAG_TCLK   20
126 #define RT305X_GPIO_JTAG_TRST_N 21
127 #define RT305X_GPIO_MDIO_MDC    22
128 #define RT305X_GPIO_MDIO_MDIO   23
129 #define RT305X_GPIO_SDRAM_MD16  24
130 #define RT305X_GPIO_SDRAM_MD17  25
131 #define RT305X_GPIO_SDRAM_MD18  26
132 #define RT305X_GPIO_SDRAM_MD19  27
133 #define RT305X_GPIO_SDRAM_MD20  28
134 #define RT305X_GPIO_SDRAM_MD21  29
135 #define RT305X_GPIO_SDRAM_MD22  30
136 #define RT305X_GPIO_SDRAM_MD23  31
137 #define RT305X_GPIO_SDRAM_MD24  32
138 #define RT305X_GPIO_SDRAM_MD25  33
139 #define RT305X_GPIO_SDRAM_MD26  34
140 #define RT305X_GPIO_SDRAM_MD27  35
141 #define RT305X_GPIO_SDRAM_MD28  36
142 #define RT305X_GPIO_SDRAM_MD29  37
143 #define RT305X_GPIO_SDRAM_MD30  38
144 #define RT305X_GPIO_SDRAM_MD31  39
145 #define RT305X_GPIO_GE0_TXD0    40
146 #define RT305X_GPIO_GE0_TXD1    41
147 #define RT305X_GPIO_GE0_TXD2    42
148 #define RT305X_GPIO_GE0_TXD3    43
149 #define RT305X_GPIO_GE0_TXEN    44
150 #define RT305X_GPIO_GE0_TXCLK   45
151 #define RT305X_GPIO_GE0_RXD0    46
152 #define RT305X_GPIO_GE0_RXD1    47
153 #define RT305X_GPIO_GE0_RXD2    48
154 #define RT305X_GPIO_GE0_RXD3    49
155 #define RT305X_GPIO_GE0_RXDV    50
156 #define RT305X_GPIO_GE0_RXCLK   51
157
158 void rt305x_gpio_init(u32 mode);
159
160 #endif /* _RT305X_H_ */