2 * Copyright 2004-2009 Analog Devices Inc.
5 * Ivan Danov <idanov@gmail.com>
6 * 2005 National ICT Australia (NICTA)
7 * Aidan Williams <aidan@nicta.com.au>
9 * Licensed under the GPL-2 or later.
12 #include <linux/device.h>
13 #include <linux/platform_device.h>
14 #include <linux/mtd/mtd.h>
15 #include <linux/mtd/partitions.h>
16 #include <linux/spi/spi.h>
17 #include <linux/spi/flash.h>
18 #if IS_ENABLED(CONFIG_USB_ISP1362_HCD)
19 #include <linux/usb/isp1362.h>
23 #include <asm/bfin5xx_spi.h>
24 #include <asm/portmux.h>
27 * Name the Board for the /proc/cpuinfo
29 const char bfin_board_name
[] = "IP04/IP08";
32 * Driver needs to know address, irq and flag pin.
34 #if defined(CONFIG_BFIN532_IP0X)
35 #if IS_ENABLED(CONFIG_DM9000)
37 #include <linux/dm9000.h>
39 static struct resource dm9000_resource1
[] = {
42 .end
= 0x20100000 + 1,
43 .flags
= IORESOURCE_MEM
45 .start
= 0x20100000 + 2,
46 .end
= 0x20100000 + 3,
47 .flags
= IORESOURCE_MEM
51 .flags
= IORESOURCE_IRQ
| IORESOURCE_IRQ_HIGHEDGE
55 static struct resource dm9000_resource2
[] = {
58 .end
= 0x20200000 + 1,
59 .flags
= IORESOURCE_MEM
61 .start
= 0x20200000 + 2,
62 .end
= 0x20200000 + 3,
63 .flags
= IORESOURCE_MEM
67 .flags
= IORESOURCE_IRQ
| IORESOURCE_IRQ_HIGHEDGE
72 * for the moment we limit ourselves to 16bit IO until some
73 * better IO routines can be written and tested
75 static struct dm9000_plat_data dm9000_platdata1
= {
76 .flags
= DM9000_PLATF_16BITONLY
,
79 static struct platform_device dm9000_device1
= {
82 .num_resources
= ARRAY_SIZE(dm9000_resource1
),
83 .resource
= dm9000_resource1
,
85 .platform_data
= &dm9000_platdata1
,
89 static struct dm9000_plat_data dm9000_platdata2
= {
90 .flags
= DM9000_PLATF_16BITONLY
,
93 static struct platform_device dm9000_device2
= {
96 .num_resources
= ARRAY_SIZE(dm9000_resource2
),
97 .resource
= dm9000_resource2
,
99 .platform_data
= &dm9000_platdata2
,
107 #if IS_ENABLED(CONFIG_SPI_BFIN5XX)
108 /* all SPI peripherals info goes here */
110 #if IS_ENABLED(CONFIG_MMC_SPI)
111 static struct bfin5xx_spi_chip mmc_spi_chip_info
= {
112 .enable_dma
= 0, /* if 1 - block!!! */
116 /* Notice: for blackfin, the speed_hz is the value of register
117 * SPI_BAUD, not the real baudrate */
118 static struct spi_board_info bfin_spi_board_info
[] __initdata
= {
119 #if IS_ENABLED(CONFIG_MMC_SPI)
121 .modalias
= "mmc_spi",
125 .controller_data
= &mmc_spi_chip_info
,
130 /* SPI controller data */
131 static struct bfin5xx_spi_master spi_bfin_master_info
= {
133 .enable_dma
= 1, /* master has the ability to do dma transfer */
136 static struct platform_device spi_bfin_master_device
= {
137 .name
= "bfin-spi-master",
138 .id
= 1, /* Bus number */
140 .platform_data
= &spi_bfin_master_info
, /* Passed to driver */
143 #endif /* spi master and devices */
145 #if IS_ENABLED(CONFIG_SERIAL_BFIN)
146 #ifdef CONFIG_SERIAL_BFIN_UART0
147 static struct resource bfin_uart0_resources
[] = {
149 .start
= BFIN_UART_THR
,
150 .end
= BFIN_UART_GCTL
+2,
151 .flags
= IORESOURCE_MEM
,
154 .start
= IRQ_UART0_TX
,
156 .flags
= IORESOURCE_IRQ
,
159 .start
= IRQ_UART0_RX
,
161 .flags
= IORESOURCE_IRQ
,
164 .start
= IRQ_UART0_ERROR
,
165 .end
= IRQ_UART0_ERROR
,
166 .flags
= IORESOURCE_IRQ
,
169 .start
= CH_UART0_TX
,
171 .flags
= IORESOURCE_DMA
,
174 .start
= CH_UART0_RX
,
176 .flags
= IORESOURCE_DMA
,
180 static unsigned short bfin_uart0_peripherals
[] = {
181 P_UART0_TX
, P_UART0_RX
, 0
184 static struct platform_device bfin_uart0_device
= {
187 .num_resources
= ARRAY_SIZE(bfin_uart0_resources
),
188 .resource
= bfin_uart0_resources
,
190 .platform_data
= &bfin_uart0_peripherals
, /* Passed to driver */
196 #if IS_ENABLED(CONFIG_BFIN_SIR)
197 #ifdef CONFIG_BFIN_SIR0
198 static struct resource bfin_sir0_resources
[] = {
202 .flags
= IORESOURCE_MEM
,
205 .start
= IRQ_UART0_RX
,
206 .end
= IRQ_UART0_RX
+1,
207 .flags
= IORESOURCE_IRQ
,
210 .start
= CH_UART0_RX
,
211 .end
= CH_UART0_RX
+1,
212 .flags
= IORESOURCE_DMA
,
216 static struct platform_device bfin_sir0_device
= {
219 .num_resources
= ARRAY_SIZE(bfin_sir0_resources
),
220 .resource
= bfin_sir0_resources
,
225 #if IS_ENABLED(CONFIG_USB_ISP1362_HCD)
226 static struct resource isp1362_hcd_resources
[] = {
229 .end
= 0x20300000 + 1,
230 .flags
= IORESOURCE_MEM
,
232 .start
= 0x20300000 + 2,
233 .end
= 0x20300000 + 3,
234 .flags
= IORESOURCE_MEM
,
238 .flags
= IORESOURCE_IRQ
| IORESOURCE_IRQ_LOWEDGE
,
242 static struct isp1362_platform_data isp1362_priv
= {
245 .oc_enable
= 0, /* external OC */
247 .int_edge_triggered
= 0,
248 .remote_wakeup_connected
= 0,
249 .no_power_switching
= 1,
250 .power_switching_mode
= 0,
253 static struct platform_device isp1362_hcd_device
= {
254 .name
= "isp1362-hcd",
257 .platform_data
= &isp1362_priv
,
259 .num_resources
= ARRAY_SIZE(isp1362_hcd_resources
),
260 .resource
= isp1362_hcd_resources
,
265 static struct platform_device
*ip0x_devices
[] __initdata
= {
266 #if defined(CONFIG_BFIN532_IP0X)
267 #if IS_ENABLED(CONFIG_DM9000)
273 #if IS_ENABLED(CONFIG_SPI_BFIN5XX)
274 &spi_bfin_master_device
,
277 #if IS_ENABLED(CONFIG_SERIAL_BFIN)
278 #ifdef CONFIG_SERIAL_BFIN_UART0
283 #if IS_ENABLED(CONFIG_BFIN_SIR)
284 #ifdef CONFIG_BFIN_SIR0
289 #if IS_ENABLED(CONFIG_USB_ISP1362_HCD)
294 static int __init
ip0x_init(void)
296 printk(KERN_INFO
"%s(): registering device resources\n", __func__
);
297 platform_add_devices(ip0x_devices
, ARRAY_SIZE(ip0x_devices
));
299 spi_register_board_info(bfin_spi_board_info
, ARRAY_SIZE(bfin_spi_board_info
));
304 arch_initcall(ip0x_init
);
306 static struct platform_device
*ip0x_early_devices
[] __initdata
= {
307 #if defined(CONFIG_SERIAL_BFIN_CONSOLE) || defined(CONFIG_EARLY_PRINTK)
308 #ifdef CONFIG_SERIAL_BFIN_UART0
314 void __init
native_machine_early_platform_add_devices(void)
316 printk(KERN_INFO
"register early platform devices\n");
317 early_platform_add_devices(ip0x_early_devices
,
318 ARRAY_SIZE(ip0x_early_devices
));