2 * Copyright 2004-2007 Analog Devices Inc.
3 * 2005 National ICT Australia (NICTA)
4 * Aidan Williams <aidan@nicta.com.au>
6 * Thanks to Jamey Hicks.
8 * Only SMSC91C1111 was registered, may do more later.
10 * Licensed under the GPL-2
13 #include <linux/device.h>
14 #include <linux/platform_device.h>
15 #include <linux/irq.h>
17 const char bfin_board_name
[] = "Tepla-BF561";
20 * Driver needs to know address, irq and flag pin.
22 static struct resource smc91x_resources
[] = {
26 .flags
= IORESOURCE_MEM
,
28 .start
= IRQ_PROG_INTB
,
30 .flags
= IORESOURCE_IRQ
|IORESOURCE_IRQ_HIGHLEVEL
,
34 .flags
= IORESOURCE_IRQ
|IORESOURCE_IRQ_HIGHLEVEL
,
38 static struct platform_device smc91x_device
= {
41 .num_resources
= ARRAY_SIZE(smc91x_resources
),
42 .resource
= smc91x_resources
,
45 #if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
46 #ifdef CONFIG_SERIAL_BFIN_UART0
47 static struct resource bfin_uart0_resources
[] = {
49 .start
= BFIN_UART_THR
,
50 .end
= BFIN_UART_GCTL
+2,
51 .flags
= IORESOURCE_MEM
,
56 .flags
= IORESOURCE_IRQ
,
59 .start
= IRQ_UART_ERROR
,
60 .end
= IRQ_UART_ERROR
,
61 .flags
= IORESOURCE_IRQ
,
66 .flags
= IORESOURCE_DMA
,
71 .flags
= IORESOURCE_DMA
,
75 static unsigned short bfin_uart0_peripherals
[] = {
76 P_UART0_TX
, P_UART0_RX
, 0
79 static struct platform_device bfin_uart0_device
= {
82 .num_resources
= ARRAY_SIZE(bfin_uart0_resources
),
83 .resource
= bfin_uart0_resources
,
85 .platform_data
= &bfin_uart0_peripherals
, /* Passed to driver */
91 #if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
92 #ifdef CONFIG_BFIN_SIR0
93 static struct resource bfin_sir0_resources
[] = {
97 .flags
= IORESOURCE_MEM
,
100 .start
= IRQ_UART0_RX
,
101 .end
= IRQ_UART0_RX
+1,
102 .flags
= IORESOURCE_IRQ
,
105 .start
= CH_UART0_RX
,
106 .end
= CH_UART0_RX
+1,
107 .flags
= IORESOURCE_DMA
,
111 static struct platform_device bfin_sir0_device
= {
114 .num_resources
= ARRAY_SIZE(bfin_sir0_resources
),
115 .resource
= bfin_sir0_resources
,
120 static struct platform_device
*tepla_devices
[] __initdata
= {
123 #if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
124 #ifdef CONFIG_SERIAL_BFIN_UART0
129 #if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
130 #ifdef CONFIG_BFIN_SIR0
136 static int __init
tepla_init(void)
138 printk(KERN_INFO
"%s(): registering device resources\n", __func__
);
139 return platform_add_devices(tepla_devices
, ARRAY_SIZE(tepla_devices
));
142 arch_initcall(tepla_init
);
144 static struct platform_device
*tepla_early_devices
[] __initdata
= {
145 #if defined(CONFIG_SERIAL_BFIN_CONSOLE) || defined(CONFIG_EARLY_PRINTK)
146 #ifdef CONFIG_SERIAL_BFIN_UART0
152 void __init
native_machine_early_platform_add_devices(void)
154 printk(KERN_INFO
"register early platform devices\n");
155 early_platform_add_devices(tepla_early_devices
,
156 ARRAY_SIZE(tepla_early_devices
));