2 * Virtex hard ppc405 core common device listing
4 * Copyright 2005-2007 Secret Lab Technologies Ltd.
5 * Copyright 2005 Freescale Semiconductor Inc.
6 * Copyright 2002-2004 MontaVista Software, Inc.
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
14 #include <linux/init.h>
15 #include <linux/module.h>
16 #include <linux/device.h>
17 #include <linux/serial_8250.h>
18 #include <syslib/virtex_devices.h>
19 #include <platforms/4xx/xparameters/xparameters.h>
23 * UARTLITE: shortcut macro for single instance
25 #define XPAR_UARTLITE(num) { \
29 .resource = (struct resource[]) { \
31 .start = XPAR_UARTLITE_##num##_BASEADDR + 3, \
32 .end = XPAR_UARTLITE_##num##_HIGHADDR, \
33 .flags = IORESOURCE_MEM, \
36 .start = XPAR_INTC_0_UARTLITE_##num##_VEC_ID, \
37 .flags = IORESOURCE_IRQ, \
43 * Full UART: shortcut macro for single instance + platform data structure
45 #define XPAR_UART(num) { \
46 .mapbase = XPAR_UARTNS550_##num##_BASEADDR + 3, \
47 .irq = XPAR_INTC_0_UARTNS550_##num##_VEC_ID, \
49 .uartclk = XPAR_UARTNS550_##num##_CLOCK_FREQ_HZ, \
50 .flags = UPF_BOOT_AUTOCONF, \
55 * SystemACE: shortcut macro for single instance
57 #define XPAR_SYSACE(num) { \
59 .id = XPAR_SYSACE_##num##_DEVICE_ID, \
61 .resource = (struct resource[]) { \
63 .start = XPAR_SYSACE_##num##_BASEADDR, \
64 .end = XPAR_SYSACE_##num##_HIGHADDR, \
65 .flags = IORESOURCE_MEM, \
68 .start = XPAR_INTC_0_SYSACE_##num##_VEC_ID, \
69 .flags = IORESOURCE_IRQ, \
75 * ML300/ML403 Video Device: shortcut macro for single instance
77 #define XPAR_TFT(num) { \
81 .resource = (struct resource[]) { \
83 .start = XPAR_TFT_##num##_BASEADDR, \
84 .end = XPAR_TFT_##num##_BASEADDR+7, \
85 .flags = IORESOURCE_IO, \
90 #define XPAR_AC97_CONTROLLER_REFERENCE(num) { \
91 .name = "ml403_ac97cr", \
94 .resource = (struct resource[]) { \
96 .start = XPAR_OPB_AC97_CONTROLLER_REF_##num##_BASEADDR, \
97 .end = XPAR_OPB_AC97_CONTROLLER_REF_##num##_HIGHADDR, \
98 .flags = IORESOURCE_MEM, \
101 .start = XPAR_INTC_0_AC97_CONTROLLER_REF_##num##_PLAYBACK_VEC_ID, \
102 .end = XPAR_INTC_0_AC97_CONTROLLER_REF_##num##_PLAYBACK_VEC_ID, \
103 .flags = IORESOURCE_IRQ, \
106 .start = XPAR_INTC_0_AC97_CONTROLLER_REF_##num##_RECORD_VEC_ID, \
107 .end = XPAR_INTC_0_AC97_CONTROLLER_REF_##num##_RECORD_VEC_ID, \
108 .flags = IORESOURCE_IRQ, \
113 /* UART 8250 driver platform data table */
114 struct plat_serial8250_port virtex_serial_platform_data
[] = {
115 #if defined(XPAR_UARTNS550_0_BASEADDR)
118 #if defined(XPAR_UARTNS550_1_BASEADDR)
121 #if defined(XPAR_UARTNS550_2_BASEADDR)
124 #if defined(XPAR_UARTNS550_3_BASEADDR)
127 #if defined(XPAR_UARTNS550_4_BASEADDR)
130 #if defined(XPAR_UARTNS550_5_BASEADDR)
133 #if defined(XPAR_UARTNS550_6_BASEADDR)
136 #if defined(XPAR_UARTNS550_7_BASEADDR)
139 { }, /* terminated by empty record */
143 struct platform_device virtex_platform_devices
[] = {
144 /* UARTLITE instances */
145 #if defined(XPAR_UARTLITE_0_BASEADDR)
148 #if defined(XPAR_UARTLITE_1_BASEADDR)
151 #if defined(XPAR_UARTLITE_2_BASEADDR)
154 #if defined(XPAR_UARTLITE_3_BASEADDR)
157 #if defined(XPAR_UARTLITE_4_BASEADDR)
160 #if defined(XPAR_UARTLITE_5_BASEADDR)
163 #if defined(XPAR_UARTLITE_6_BASEADDR)
166 #if defined(XPAR_UARTLITE_7_BASEADDR)
170 /* Full UART instances */
171 #if defined(XPAR_UARTNS550_0_BASEADDR)
173 .name
= "serial8250",
175 .dev
.platform_data
= virtex_serial_platform_data
,
179 /* SystemACE instances */
180 #if defined(XPAR_SYSACE_0_BASEADDR)
183 #if defined(XPAR_SYSACE_1_BASEADDR)
187 #if defined(XPAR_TFT_0_BASEADDR)
190 #if defined(XPAR_TFT_1_BASEADDR)
193 #if defined(XPAR_TFT_2_BASEADDR)
196 #if defined(XPAR_TFT_3_BASEADDR)
200 /* AC97 Controller Reference instances */
201 #if defined(XPAR_OPB_AC97_CONTROLLER_REF_0_BASEADDR)
202 XPAR_AC97_CONTROLLER_REFERENCE(0),
204 #if defined(XPAR_OPB_AC97_CONTROLLER_REF_1_BASEADDR)
205 XPAR_AC97_CONTROLLER_REFERENCE(1),
209 /* Early serial support functions */
211 virtex_early_serial_init(int num
, struct plat_serial8250_port
*pdata
)
213 #if defined(CONFIG_SERIAL_TEXT_DEBUG) || defined(CONFIG_KGDB)
214 struct uart_port serial_req
;
216 memset(&serial_req
, 0, sizeof(serial_req
));
217 serial_req
.mapbase
= pdata
->mapbase
;
218 serial_req
.membase
= pdata
->membase
;
219 serial_req
.irq
= pdata
->irq
;
220 serial_req
.uartclk
= pdata
->uartclk
;
221 serial_req
.regshift
= pdata
->regshift
;
222 serial_req
.iotype
= pdata
->iotype
;
223 serial_req
.flags
= pdata
->flags
;
224 gen550_init(num
, &serial_req
);
229 virtex_early_serial_map(void)
231 #ifdef CONFIG_SERIAL_8250
232 struct plat_serial8250_port
*pdata
;
235 pdata
= virtex_serial_platform_data
;
236 while(pdata
&& pdata
->flags
) {
237 pdata
->membase
= ioremap(pdata
->mapbase
, 0x100);
238 virtex_early_serial_init(i
, pdata
);
242 #endif /* CONFIG_SERIAL_8250 */
246 * default fixup routine; do nothing and return success.
248 * Reimplement this routine in your custom board support file to
249 * override the default behaviour
251 int __attribute__ ((weak
))
252 virtex_device_fixup(struct platform_device
*dev
)
257 static int __init
virtex_init(void)
259 struct platform_device
*index
= virtex_platform_devices
;
260 unsigned int ret
= 0;
263 for (i
= 0; i
< ARRAY_SIZE(virtex_platform_devices
); i
++, index
++) {
264 if (virtex_device_fixup(index
) != 0)
267 if (platform_device_register(index
)) {
269 printk(KERN_ERR
"cannot register dev %s:%d\n",
270 index
->name
, index
->id
);
276 subsys_initcall(virtex_init
);