2 * Copyright 2004-2009 Analog Devices Inc.
3 * 2005 National ICT Australia (NICTA)
4 * Aidan Williams <aidan@nicta.com.au>
6 * Licensed under the GPL-2 or later.
9 #include <linux/device.h>
10 #include <linux/platform_device.h>
11 #include <linux/mtd/mtd.h>
12 #include <linux/mtd/partitions.h>
13 #include <linux/mtd/physmap.h>
14 #include <linux/spi/spi.h>
15 #include <linux/irq.h>
16 #include <linux/interrupt.h>
17 #include <linux/delay.h>
19 #include <asm/bfin5xx_spi.h>
20 #include <asm/portmux.h>
24 * Name the Board for the /proc/cpuinfo
26 const char bfin_board_name
[] = "ADI BF561-EZKIT";
28 #if defined(CONFIG_USB_ISP1760_HCD) || defined(CONFIG_USB_ISP1760_HCD_MODULE)
29 #include <linux/usb/isp1760.h>
30 static struct resource bfin_isp1760_resources
[] = {
33 .end
= 0x203C0000 + 0xfffff,
34 .flags
= IORESOURCE_MEM
,
39 .flags
= IORESOURCE_IRQ
,
43 static struct isp1760_platform_data isp1760_priv
= {
48 .dack_polarity_high
= 0,
49 .dreq_polarity_high
= 0,
52 static struct platform_device bfin_isp1760_device
= {
56 .platform_data
= &isp1760_priv
,
58 .num_resources
= ARRAY_SIZE(bfin_isp1760_resources
),
59 .resource
= bfin_isp1760_resources
,
63 #if defined(CONFIG_USB_ISP1362_HCD) || defined(CONFIG_USB_ISP1362_HCD_MODULE)
64 #include <linux/usb/isp1362.h>
66 static struct resource isp1362_hcd_resources
[] = {
70 .flags
= IORESOURCE_MEM
,
74 .flags
= IORESOURCE_MEM
,
78 .flags
= IORESOURCE_IRQ
| IORESOURCE_IRQ_LOWEDGE
,
82 static struct isp1362_platform_data isp1362_priv
= {
87 .int_edge_triggered
= 0,
88 .remote_wakeup_connected
= 0,
89 .no_power_switching
= 1,
90 .power_switching_mode
= 0,
93 static struct platform_device isp1362_hcd_device
= {
94 .name
= "isp1362-hcd",
97 .platform_data
= &isp1362_priv
,
99 .num_resources
= ARRAY_SIZE(isp1362_hcd_resources
),
100 .resource
= isp1362_hcd_resources
,
104 #if defined(CONFIG_USB_NET2272) || defined(CONFIG_USB_NET2272_MODULE)
105 static struct resource net2272_bfin_resources
[] = {
108 .end
= 0x2C000000 + 0x7F,
109 .flags
= IORESOURCE_MEM
,
112 .flags
= IORESOURCE_BUS
,
116 .flags
= IORESOURCE_IRQ
| IORESOURCE_IRQ_LOWLEVEL
,
120 static struct platform_device net2272_bfin_device
= {
123 .num_resources
= ARRAY_SIZE(net2272_bfin_resources
),
124 .resource
= net2272_bfin_resources
,
129 * USB-LAN EzExtender board
130 * Driver needs to know address, irq and flag pin.
132 #if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE)
133 #include <linux/smc91x.h>
135 static struct smc91x_platdata smc91x_info
= {
136 .flags
= SMC91X_USE_32BIT
| SMC91X_NOWAIT
,
137 .leda
= RPC_LED_100_10
,
138 .ledb
= RPC_LED_TX_RX
,
141 static struct resource smc91x_resources
[] = {
143 .name
= "smc91x-regs",
145 .end
= 0x2C010300 + 16,
146 .flags
= IORESOURCE_MEM
,
151 .flags
= IORESOURCE_IRQ
| IORESOURCE_IRQ_HIGHLEVEL
,
155 static struct platform_device smc91x_device
= {
158 .num_resources
= ARRAY_SIZE(smc91x_resources
),
159 .resource
= smc91x_resources
,
161 .platform_data
= &smc91x_info
,
166 #if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
167 #ifdef CONFIG_SERIAL_BFIN_UART0
168 static struct resource bfin_uart0_resources
[] = {
170 .start
= BFIN_UART_THR
,
171 .end
= BFIN_UART_GCTL
+2,
172 .flags
= IORESOURCE_MEM
,
175 .start
= IRQ_UART_RX
,
176 .end
= IRQ_UART_RX
+1,
177 .flags
= IORESOURCE_IRQ
,
180 .start
= IRQ_UART_ERROR
,
181 .end
= IRQ_UART_ERROR
,
182 .flags
= IORESOURCE_IRQ
,
187 .flags
= IORESOURCE_DMA
,
192 .flags
= IORESOURCE_DMA
,
196 static unsigned short bfin_uart0_peripherals
[] = {
197 P_UART0_TX
, P_UART0_RX
, 0
200 static struct platform_device bfin_uart0_device
= {
203 .num_resources
= ARRAY_SIZE(bfin_uart0_resources
),
204 .resource
= bfin_uart0_resources
,
206 .platform_data
= &bfin_uart0_peripherals
, /* Passed to driver */
212 #if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
213 #ifdef CONFIG_BFIN_SIR0
214 static struct resource bfin_sir0_resources
[] = {
218 .flags
= IORESOURCE_MEM
,
221 .start
= IRQ_UART0_RX
,
222 .end
= IRQ_UART0_RX
+1,
223 .flags
= IORESOURCE_IRQ
,
226 .start
= CH_UART0_RX
,
227 .end
= CH_UART0_RX
+1,
228 .flags
= IORESOURCE_DMA
,
232 static struct platform_device bfin_sir0_device
= {
235 .num_resources
= ARRAY_SIZE(bfin_sir0_resources
),
236 .resource
= bfin_sir0_resources
,
241 #if defined(CONFIG_MTD_PHYSMAP) || defined(CONFIG_MTD_PHYSMAP_MODULE)
242 static struct mtd_partition ezkit_partitions
[] = {
244 .name
= "bootloader(nor)",
248 .name
= "linux kernel(nor)",
250 .offset
= MTDPART_OFS_APPEND
,
252 .name
= "file system(nor)",
253 .size
= 0x800000 - 0x40000 - 0x1C0000 - 0x2000 * 8,
254 .offset
= MTDPART_OFS_APPEND
,
256 .name
= "config(nor)",
258 .offset
= MTDPART_OFS_APPEND
,
260 .name
= "u-boot env(nor)",
262 .offset
= MTDPART_OFS_APPEND
,
266 static struct physmap_flash_data ezkit_flash_data
= {
268 .parts
= ezkit_partitions
,
269 .nr_parts
= ARRAY_SIZE(ezkit_partitions
),
272 static struct resource ezkit_flash_resource
= {
275 .flags
= IORESOURCE_MEM
,
278 static struct platform_device ezkit_flash_device
= {
279 .name
= "physmap-flash",
282 .platform_data
= &ezkit_flash_data
,
285 .resource
= &ezkit_flash_resource
,
289 #if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
291 static struct resource bfin_spi0_resource
[] = {
293 .start
= SPI0_REGBASE
,
294 .end
= SPI0_REGBASE
+ 0xFF,
295 .flags
= IORESOURCE_MEM
,
300 .flags
= IORESOURCE_DMA
,
305 .flags
= IORESOURCE_IRQ
,
309 /* SPI controller data */
310 static struct bfin5xx_spi_master bfin_spi0_info
= {
312 .enable_dma
= 1, /* master has the ability to do dma transfer */
313 .pin_req
= {P_SPI0_SCK
, P_SPI0_MISO
, P_SPI0_MOSI
, 0},
316 static struct platform_device bfin_spi0_device
= {
318 .id
= 0, /* Bus number */
319 .num_resources
= ARRAY_SIZE(bfin_spi0_resource
),
320 .resource
= bfin_spi0_resource
,
322 .platform_data
= &bfin_spi0_info
, /* Passed to driver */
327 static struct spi_board_info bfin_spi_board_info
[] __initdata
= {
328 #if defined(CONFIG_SND_BF5XX_SOC_AD183X) \
329 || defined(CONFIG_SND_BF5XX_SOC_AD183X_MODULE)
331 .modalias
= "ad183x",
332 .max_speed_hz
= 3125000, /* max spi clock (SCK) speed in HZ */
335 .platform_data
= "ad1836", /* only includes chip name for the moment */
339 #if defined(CONFIG_SPI_SPIDEV) || defined(CONFIG_SPI_SPIDEV_MODULE)
341 .modalias
= "spidev",
342 .max_speed_hz
= 3125000, /* max spi clock (SCK) speed in HZ */
349 #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
350 #include <linux/input.h>
351 #include <linux/gpio_keys.h>
353 static struct gpio_keys_button bfin_gpio_keys_table
[] = {
354 {BTN_0
, GPIO_PF5
, 1, "gpio-keys: BTN0"},
355 {BTN_1
, GPIO_PF6
, 1, "gpio-keys: BTN1"},
356 {BTN_2
, GPIO_PF7
, 1, "gpio-keys: BTN2"},
357 {BTN_3
, GPIO_PF8
, 1, "gpio-keys: BTN3"},
360 static struct gpio_keys_platform_data bfin_gpio_keys_data
= {
361 .buttons
= bfin_gpio_keys_table
,
362 .nbuttons
= ARRAY_SIZE(bfin_gpio_keys_table
),
365 static struct platform_device bfin_device_gpiokeys
= {
368 .platform_data
= &bfin_gpio_keys_data
,
373 #if defined(CONFIG_I2C_GPIO) || defined(CONFIG_I2C_GPIO_MODULE)
374 #include <linux/i2c-gpio.h>
376 static struct i2c_gpio_platform_data i2c_gpio_data
= {
379 .sda_is_open_drain
= 0,
380 .scl_is_open_drain
= 0,
384 static struct platform_device i2c_gpio_device
= {
388 .platform_data
= &i2c_gpio_data
,
393 static const unsigned int cclk_vlev_datasheet
[] =
395 VRPAIR(VLEV_085
, 250000000),
396 VRPAIR(VLEV_090
, 300000000),
397 VRPAIR(VLEV_095
, 313000000),
398 VRPAIR(VLEV_100
, 350000000),
399 VRPAIR(VLEV_105
, 400000000),
400 VRPAIR(VLEV_110
, 444000000),
401 VRPAIR(VLEV_115
, 450000000),
402 VRPAIR(VLEV_120
, 475000000),
403 VRPAIR(VLEV_125
, 500000000),
404 VRPAIR(VLEV_130
, 600000000),
407 static struct bfin_dpmc_platform_data bfin_dmpc_vreg_data
= {
408 .tuple_tab
= cclk_vlev_datasheet
,
409 .tabsize
= ARRAY_SIZE(cclk_vlev_datasheet
),
410 .vr_settling_time
= 25 /* us */,
413 static struct platform_device bfin_dpmc
= {
416 .platform_data
= &bfin_dmpc_vreg_data
,
420 #if defined(CONFIG_SND_BF5XX_I2S) || defined(CONFIG_SND_BF5XX_I2S_MODULE)
421 static struct platform_device bfin_i2s
= {
423 .id
= CONFIG_SND_BF5XX_SPORT_NUM
,
424 /* TODO: add platform data here */
428 #if defined(CONFIG_SND_BF5XX_TDM) || defined(CONFIG_SND_BF5XX_TDM_MODULE)
429 static struct platform_device bfin_tdm
= {
431 .id
= CONFIG_SND_BF5XX_SPORT_NUM
,
432 /* TODO: add platform data here */
436 #if defined(CONFIG_SND_BF5XX_AC97) || defined(CONFIG_SND_BF5XX_AC97_MODULE)
437 static struct platform_device bfin_ac97
= {
439 .id
= CONFIG_SND_BF5XX_SPORT_NUM
,
440 /* TODO: add platform data here */
444 static struct platform_device
*ezkit_devices
[] __initdata
= {
448 #if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE)
452 #if defined(CONFIG_USB_NET2272) || defined(CONFIG_USB_NET2272_MODULE)
453 &net2272_bfin_device
,
456 #if defined(CONFIG_USB_ISP1760_HCD) || defined(CONFIG_USB_ISP1760_HCD_MODULE)
457 &bfin_isp1760_device
,
460 #if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
464 #if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
465 #ifdef CONFIG_SERIAL_BFIN_UART0
470 #if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
471 #ifdef CONFIG_BFIN_SIR0
476 #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
477 &bfin_device_gpiokeys
,
480 #if defined(CONFIG_I2C_GPIO) || defined(CONFIG_I2C_GPIO_MODULE)
484 #if defined(CONFIG_USB_ISP1362_HCD) || defined(CONFIG_USB_ISP1362_HCD_MODULE)
488 #if defined(CONFIG_MTD_PHYSMAP) || defined(CONFIG_MTD_PHYSMAP_MODULE)
492 #if defined(CONFIG_SND_BF5XX_I2S) || defined(CONFIG_SND_BF5XX_I2S_MODULE)
496 #if defined(CONFIG_SND_BF5XX_TDM) || defined(CONFIG_SND_BF5XX_TDM_MODULE)
500 #if defined(CONFIG_SND_BF5XX_AC97) || defined(CONFIG_SND_BF5XX_AC97_MODULE)
505 static int __init
net2272_init(void)
507 #if defined(CONFIG_USB_NET2272) || defined(CONFIG_USB_NET2272_MODULE)
510 ret
= gpio_request(GPIO_PF11
, "net2272");
514 /* Reset the USB chip */
515 gpio_direction_output(GPIO_PF11
, 0);
517 gpio_set_value(GPIO_PF11
, 1);
523 static int __init
ezkit_init(void)
527 printk(KERN_INFO
"%s(): registering device resources\n", __func__
);
529 ret
= platform_add_devices(ezkit_devices
, ARRAY_SIZE(ezkit_devices
));
533 #if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE)
534 bfin_write_FIO0_DIR(bfin_read_FIO0_DIR() | (1 << 12));
538 #if defined(CONFIG_SND_BF5XX_SOC_AD183X) || defined(CONFIG_SND_BF5XX_SOC_AD183X_MODULE)
539 bfin_write_FIO0_DIR(bfin_read_FIO0_DIR() | (1 << 15));
540 bfin_write_FIO0_FLAG_S(1 << 15);
543 * This initialization lasts for approximately 4500 MCLKs.
550 pr_warning("unable to configure net2272; it probably won't work\n");
552 spi_register_board_info(bfin_spi_board_info
, ARRAY_SIZE(bfin_spi_board_info
));
556 arch_initcall(ezkit_init
);
558 static struct platform_device
*ezkit_early_devices
[] __initdata
= {
559 #if defined(CONFIG_SERIAL_BFIN_CONSOLE) || defined(CONFIG_EARLY_PRINTK)
560 #ifdef CONFIG_SERIAL_BFIN_UART0
566 void __init
native_machine_early_platform_add_devices(void)
568 printk(KERN_INFO
"register early platform devices\n");
569 early_platform_add_devices(ezkit_early_devices
,
570 ARRAY_SIZE(ezkit_early_devices
));