2 * arch/arm/mach-orion/common.c
4 * Core functions for Marvell Orion System On Chip
6 * Maintainer: Tzachi Perelstein <tzachi@marvell.com>
8 * This file is licensed under the terms of the GNU General Public
9 * License version 2. This program is licensed "as is" without any
10 * warranty of any kind, whether express or implied.
13 #include <linux/kernel.h>
14 #include <linux/init.h>
15 #include <linux/platform_device.h>
16 #include <linux/serial_8250.h>
17 #include <linux/mv643xx_eth.h>
18 #include <linux/mv643xx_i2c.h>
20 #include <asm/timex.h>
21 #include <asm/mach/map.h>
22 #include <asm/arch/orion.h>
25 /*****************************************************************************
27 ****************************************************************************/
28 static struct map_desc orion_io_desc
[] __initdata
= {
30 .virtual = ORION_REGS_BASE
,
31 .pfn
= __phys_to_pfn(ORION_REGS_BASE
),
32 .length
= ORION_REGS_SIZE
,
36 .virtual = ORION_PCIE_IO_BASE
,
37 .pfn
= __phys_to_pfn(ORION_PCIE_IO_BASE
),
38 .length
= ORION_PCIE_IO_SIZE
,
42 .virtual = ORION_PCI_IO_BASE
,
43 .pfn
= __phys_to_pfn(ORION_PCI_IO_BASE
),
44 .length
= ORION_PCI_IO_SIZE
,
48 .virtual = ORION_PCIE_WA_BASE
,
49 .pfn
= __phys_to_pfn(ORION_PCIE_WA_BASE
),
50 .length
= ORION_PCIE_WA_SIZE
,
55 void __init
orion_map_io(void)
57 iotable_init(orion_io_desc
, ARRAY_SIZE(orion_io_desc
));
60 /*****************************************************************************
62 ****************************************************************************/
64 static struct resource orion_uart_resources
[] = {
67 .end
= UART0_BASE
+ 0xff,
68 .flags
= IORESOURCE_MEM
,
71 .start
= IRQ_ORION_UART0
,
72 .end
= IRQ_ORION_UART0
,
73 .flags
= IORESOURCE_IRQ
,
77 .end
= UART1_BASE
+ 0xff,
78 .flags
= IORESOURCE_MEM
,
81 .start
= IRQ_ORION_UART1
,
82 .end
= IRQ_ORION_UART1
,
83 .flags
= IORESOURCE_IRQ
,
87 static struct plat_serial8250_port orion_uart_data
[] = {
89 .mapbase
= UART0_BASE
,
90 .membase
= (char *)UART0_BASE
,
91 .irq
= IRQ_ORION_UART0
,
92 .flags
= UPF_SKIP_TEST
| UPF_BOOT_AUTOCONF
,
95 .uartclk
= ORION_TCLK
,
98 .mapbase
= UART1_BASE
,
99 .membase
= (char *)UART1_BASE
,
100 .irq
= IRQ_ORION_UART1
,
101 .flags
= UPF_SKIP_TEST
| UPF_BOOT_AUTOCONF
,
104 .uartclk
= ORION_TCLK
,
109 static struct platform_device orion_uart
= {
110 .name
= "serial8250",
111 .id
= PLAT8250_DEV_PLATFORM
,
113 .platform_data
= orion_uart_data
,
115 .resource
= orion_uart_resources
,
116 .num_resources
= ARRAY_SIZE(orion_uart_resources
),
119 /*******************************************************************************
120 * USB Controller - 2 interfaces
121 ******************************************************************************/
123 static struct resource orion_ehci0_resources
[] = {
125 .start
= ORION_USB0_REG_BASE
,
126 .end
= ORION_USB0_REG_BASE
+ SZ_4K
,
127 .flags
= IORESOURCE_MEM
,
130 .start
= IRQ_ORION_USB0_CTRL
,
131 .end
= IRQ_ORION_USB0_CTRL
,
132 .flags
= IORESOURCE_IRQ
,
136 static struct resource orion_ehci1_resources
[] = {
138 .start
= ORION_USB1_REG_BASE
,
139 .end
= ORION_USB1_REG_BASE
+ SZ_4K
,
140 .flags
= IORESOURCE_MEM
,
143 .start
= IRQ_ORION_USB1_CTRL
,
144 .end
= IRQ_ORION_USB1_CTRL
,
145 .flags
= IORESOURCE_IRQ
,
149 static u64 ehci_dmamask
= 0xffffffffUL
;
151 static struct platform_device orion_ehci0
= {
152 .name
= "orion-ehci",
155 .dma_mask
= &ehci_dmamask
,
156 .coherent_dma_mask
= 0xffffffff,
158 .resource
= orion_ehci0_resources
,
159 .num_resources
= ARRAY_SIZE(orion_ehci0_resources
),
162 static struct platform_device orion_ehci1
= {
163 .name
= "orion-ehci",
166 .dma_mask
= &ehci_dmamask
,
167 .coherent_dma_mask
= 0xffffffff,
169 .resource
= orion_ehci1_resources
,
170 .num_resources
= ARRAY_SIZE(orion_ehci1_resources
),
173 /*****************************************************************************
174 * Gigabit Ethernet port
175 * (The Orion and Discovery (MV643xx) families use the same Ethernet driver)
176 ****************************************************************************/
178 static struct resource orion_eth_shared_resources
[] = {
180 .start
= ORION_ETH_REG_BASE
,
181 .end
= ORION_ETH_REG_BASE
+ 0xffff,
182 .flags
= IORESOURCE_MEM
,
186 static struct platform_device orion_eth_shared
= {
187 .name
= MV643XX_ETH_SHARED_NAME
,
190 .resource
= orion_eth_shared_resources
,
193 static struct resource orion_eth_resources
[] = {
196 .start
= IRQ_ORION_ETH_SUM
,
197 .end
= IRQ_ORION_ETH_SUM
,
198 .flags
= IORESOURCE_IRQ
,
202 static struct platform_device orion_eth
= {
203 .name
= MV643XX_ETH_NAME
,
206 .resource
= orion_eth_resources
,
209 void __init
orion_eth_init(struct mv643xx_eth_platform_data
*eth_data
)
211 orion_eth
.dev
.platform_data
= eth_data
;
212 platform_device_register(&orion_eth_shared
);
213 platform_device_register(&orion_eth
);
216 /*****************************************************************************
218 * (The Orion and Discovery (MV643xx) families share the same I2C controller)
219 ****************************************************************************/
221 static struct mv64xxx_i2c_pdata orion_i2c_pdata
= {
222 .freq_m
= 8, /* assumes 166 MHz TCLK */
224 .timeout
= 1000, /* Default timeout of 1 second */
227 static struct resource orion_i2c_resources
[] = {
231 .end
= I2C_BASE
+ 0x20 -1,
232 .flags
= IORESOURCE_MEM
,
236 .start
= IRQ_ORION_I2C
,
237 .end
= IRQ_ORION_I2C
,
238 .flags
= IORESOURCE_IRQ
,
242 static struct platform_device orion_i2c
= {
243 .name
= MV64XXX_I2C_CTLR_NAME
,
245 .num_resources
= ARRAY_SIZE(orion_i2c_resources
),
246 .resource
= orion_i2c_resources
,
248 .platform_data
= &orion_i2c_pdata
,
252 /*****************************************************************************
254 ****************************************************************************/
257 * Identify device ID and rev from PCIE configuration header space '0'.
259 static void orion_id(u32
*dev
, u32
*rev
, char **dev_name
)
261 orion_pcie_id(dev
, rev
);
263 if (*dev
== MV88F5281_DEV_ID
) {
264 if (*rev
== MV88F5281_REV_D2
) {
265 *dev_name
= "MV88F5281-D2";
266 } else if (*rev
== MV88F5281_REV_D1
) {
267 *dev_name
= "MV88F5281-D1";
269 *dev_name
= "MV88F5281-Rev-Unsupported";
271 } else if (*dev
== MV88F5182_DEV_ID
) {
272 if (*rev
== MV88F5182_REV_A2
) {
273 *dev_name
= "MV88F5182-A2";
275 *dev_name
= "MV88F5182-Rev-Unsupported";
277 } else if (*dev
== MV88F5181_DEV_ID
) {
278 if (*rev
== MV88F5181_REV_B1
) {
279 *dev_name
= "MV88F5181-Rev-B1";
281 *dev_name
= "MV88F5181-Rev-Unsupported";
284 *dev_name
= "Device-Unknown";
288 void __init
orion_init(void)
293 orion_id(&dev
, &rev
, &dev_name
);
294 printk(KERN_INFO
"Orion ID: %s. TCLK=%d.\n", dev_name
, ORION_TCLK
);
297 * Setup Orion address map
299 orion_setup_cpu_wins();
300 orion_setup_usb_wins();
301 orion_setup_eth_wins();
302 orion_setup_pci_wins();
303 orion_setup_pcie_wins();
304 if (dev
== MV88F5182_DEV_ID
)
305 orion_setup_sata_wins();
310 platform_device_register(&orion_uart
);
311 platform_device_register(&orion_ehci0
);
312 if (dev
== MV88F5182_DEV_ID
)
313 platform_device_register(&orion_ehci1
);
314 platform_device_register(&orion_i2c
);