2 * Ralink RT3662/RT3883 SoC specific setup
4 * Copyright (C) 2011-2012 Gabor Juhos <juhosg@openwrt.org>
6 * Parts of this file are based on Ralink's 2.6.21 BSP
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.
13 #include <linux/kernel.h>
14 #include <linux/init.h>
15 #include <linux/module.h>
17 #include <asm/mach-ralink/common.h>
18 #include <asm/mach-ralink/ramips_gpio.h>
19 #include <asm/mach-ralink/rt3883.h>
20 #include <asm/mach-ralink/rt3883_regs.h>
22 void __iomem
* rt3883_sysc_base
;
23 void __iomem
* rt3883_memc_base
;
25 void __init
ramips_soc_prom_init(void)
27 void __iomem
*sysc
= (void __iomem
*) KSEG1ADDR(RT3883_SYSC_BASE
);
32 n0
= __raw_readl(sysc
+ RT3883_SYSC_REG_CHIPID0_3
);
33 n1
= __raw_readl(sysc
+ RT3883_SYSC_REG_CHIPID4_7
);
34 id
= __raw_readl(sysc
+ RT3883_SYSC_REG_REVID
);
36 snprintf(ramips_sys_type
, RAMIPS_SYS_TYPE_LEN
,
37 "Ralink %c%c%c%c%c%c%c%c ver:%u eco:%u",
38 (char) (n0
& 0xff), (char) ((n0
>> 8) & 0xff),
39 (char) ((n0
>> 16) & 0xff), (char) ((n0
>> 24) & 0xff),
40 (char) (n1
& 0xff), (char) ((n1
>> 8) & 0xff),
41 (char) ((n1
>> 16) & 0xff), (char) ((n1
>> 24) & 0xff),
42 (id
>> RT3883_REVID_VER_ID_SHIFT
) & RT3883_REVID_VER_ID_MASK
,
43 (id
& RT3883_REVID_ECO_ID_MASK
));
46 static struct ramips_gpio_chip rt3883_gpio_chips
[] = {
49 .label
= "RT3883-GPIO0",
54 [RAMIPS_GPIO_REG_INT
] = 0x00,
55 [RAMIPS_GPIO_REG_EDGE
] = 0x04,
56 [RAMIPS_GPIO_REG_RENA
] = 0x08,
57 [RAMIPS_GPIO_REG_FENA
] = 0x0c,
58 [RAMIPS_GPIO_REG_DATA
] = 0x20,
59 [RAMIPS_GPIO_REG_DIR
] = 0x24,
60 [RAMIPS_GPIO_REG_POL
] = 0x28,
61 [RAMIPS_GPIO_REG_SET
] = 0x2c,
62 [RAMIPS_GPIO_REG_RESET
] = 0x30,
63 [RAMIPS_GPIO_REG_TOGGLE
] = 0x34,
65 .map_base
= RT3883_PIO_BASE
,
66 .map_size
= RT3883_PIO_SIZE
,
70 .label
= "RT3883-GPIO1",
75 [RAMIPS_GPIO_REG_INT
] = 0x38,
76 [RAMIPS_GPIO_REG_EDGE
] = 0x3c,
77 [RAMIPS_GPIO_REG_RENA
] = 0x40,
78 [RAMIPS_GPIO_REG_FENA
] = 0x44,
79 [RAMIPS_GPIO_REG_DATA
] = 0x48,
80 [RAMIPS_GPIO_REG_DIR
] = 0x4c,
81 [RAMIPS_GPIO_REG_POL
] = 0x50,
82 [RAMIPS_GPIO_REG_SET
] = 0x54,
83 [RAMIPS_GPIO_REG_RESET
] = 0x58,
84 [RAMIPS_GPIO_REG_TOGGLE
] = 0x5c,
86 .map_base
= RT3883_PIO_BASE
,
87 .map_size
= RT3883_PIO_SIZE
,
91 .label
= "RT3883-GPIO2",
96 [RAMIPS_GPIO_REG_INT
] = 0x60,
97 [RAMIPS_GPIO_REG_EDGE
] = 0x64,
98 [RAMIPS_GPIO_REG_RENA
] = 0x68,
99 [RAMIPS_GPIO_REG_FENA
] = 0x6c,
100 [RAMIPS_GPIO_REG_DATA
] = 0x70,
101 [RAMIPS_GPIO_REG_DIR
] = 0x74,
102 [RAMIPS_GPIO_REG_POL
] = 0x78,
103 [RAMIPS_GPIO_REG_SET
] = 0x7c,
104 [RAMIPS_GPIO_REG_RESET
] = 0x80,
105 [RAMIPS_GPIO_REG_TOGGLE
] = 0x84,
107 .map_base
= RT3883_PIO_BASE
,
108 .map_size
= RT3883_PIO_SIZE
,
112 .label
= "RT3883-GPIO3",
117 [RAMIPS_GPIO_REG_INT
] = 0x88,
118 [RAMIPS_GPIO_REG_EDGE
] = 0x8c,
119 [RAMIPS_GPIO_REG_RENA
] = 0x90,
120 [RAMIPS_GPIO_REG_FENA
] = 0x94,
121 [RAMIPS_GPIO_REG_DATA
] = 0x98,
122 [RAMIPS_GPIO_REG_DIR
] = 0x9c,
123 [RAMIPS_GPIO_REG_POL
] = 0xa0,
124 [RAMIPS_GPIO_REG_SET
] = 0xa4,
125 [RAMIPS_GPIO_REG_RESET
] = 0xa8,
126 [RAMIPS_GPIO_REG_TOGGLE
] = 0xac,
128 .map_base
= RT3883_PIO_BASE
,
129 .map_size
= RT3883_PIO_SIZE
,
133 static struct ramips_gpio_data rt3883_gpio_data
= {
134 .chips
= rt3883_gpio_chips
,
135 .num_chips
= ARRAY_SIZE(rt3883_gpio_chips
),
138 static void rt3883_gpio_reserve(int first
, int last
)
140 for (; first
<= last
; first
++)
141 gpio_request(first
, "reserved");
144 void __init
rt3883_gpio_init(u32 mode
)
148 rt3883_sysc_wr(mode
, RT3883_SYSC_REG_GPIO_MODE
);
150 ramips_gpio_init(&rt3883_gpio_data
);
151 if ((mode
& RT3883_GPIO_MODE_I2C
) == 0)
152 rt3883_gpio_reserve(RT3883_GPIO_I2C_SD
, RT3883_GPIO_I2C_SCLK
);
154 if ((mode
& RT3883_GPIO_MODE_SPI
) == 0)
155 rt3883_gpio_reserve(RT3883_GPIO_SPI_CS0
, RT3883_GPIO_SPI_CLK
);
157 t
= mode
>> RT3883_GPIO_MODE_UART0_SHIFT
;
158 t
&= RT3883_GPIO_MODE_UART0_MASK
;
160 case RT3883_GPIO_MODE_UARTF
:
161 case RT3883_GPIO_MODE_PCM_UARTF
:
162 case RT3883_GPIO_MODE_PCM_I2S
:
163 case RT3883_GPIO_MODE_I2S_UARTF
:
164 rt3883_gpio_reserve(RT3883_GPIO_7
, RT3883_GPIO_14
);
166 case RT3883_GPIO_MODE_PCM_GPIO
:
167 rt3883_gpio_reserve(RT3883_GPIO_11
, RT3883_GPIO_14
);
169 case RT3883_GPIO_MODE_GPIO_UARTF
:
170 case RT3883_GPIO_MODE_GPIO_I2S
:
171 rt3883_gpio_reserve(RT3883_GPIO_7
, RT3883_GPIO_10
);
175 if ((mode
& RT3883_GPIO_MODE_UART1
) == 0)
176 rt3883_gpio_reserve(RT3883_GPIO_UART1_TXD
,
177 RT3883_GPIO_UART1_RXD
);
179 if ((mode
& RT3883_GPIO_MODE_JTAG
) == 0)
180 rt3883_gpio_reserve(RT3883_GPIO_JTAG_TDO
,
181 RT3883_GPIO_JTAG_TCLK
);
183 if ((mode
& RT3883_GPIO_MODE_MDIO
) == 0)
184 rt3883_gpio_reserve(RT3883_GPIO_MDIO_MDC
,
185 RT3883_GPIO_MDIO_MDIO
);
187 if ((mode
& RT3883_GPIO_MODE_GE1
) == 0)
188 rt3883_gpio_reserve(RT3883_GPIO_GE1_TXD0
,
189 RT3883_GPIO_GE1_RXCLK
);
191 if ((mode
& RT3883_GPIO_MODE_GE2
) == 0)
192 rt3883_gpio_reserve(RT3883_GPIO_GE2_TXD0
,
193 RT3883_GPIO_GE2_RXCLK
);
195 t
= mode
>> RT3883_GPIO_MODE_PCI_SHIFT
;
196 t
&= RT3883_GPIO_MODE_PCI_MASK
;
197 if (t
!= RT3883_GPIO_MODE_PCI_GPIO
)
198 rt3883_gpio_reserve(RT3883_GPIO_PCI_AD0
,
199 RT3883_GPIO_PCI_AD31
);
201 t
= mode
>> RT3883_GPIO_MODE_LNA_A_SHIFT
;
202 t
&= RT3883_GPIO_MODE_LNA_A_MASK
;
203 if (t
!= RT3883_GPIO_MODE_LNA_A_GPIO
)
204 rt3883_gpio_reserve(RT3883_GPIO_LNA_PE_A0
,
205 RT3883_GPIO_LNA_PE_A2
);
207 t
= mode
>> RT3883_GPIO_MODE_LNA_G_SHIFT
;
208 t
&= RT3883_GPIO_MODE_LNA_G_MASK
;
209 if (t
!= RT3883_GPIO_MODE_LNA_G_GPIO
)
210 rt3883_gpio_reserve(RT3883_GPIO_LNA_PE_G0
,
211 RT3883_GPIO_LNA_PE_G2
);