2 * File: arch/blackfin/mach-bf538/boards/ezkit.c
3 * Based on: arch/blackfin/mach-bf537/boards/ezkit.c
4 * Author: Aidan Williams <aidan@nicta.com.au>
10 * Copyright 2005 National ICT Australia (NICTA)
11 * Copyright 2004-2008 Analog Devices Inc.
13 * Bugs: Enter bugs at http://blackfin.uclinux.org/
15 * This program is free software; you can redistribute it and/or modify
16 * it under the terms of the GNU General Public License as published by
17 * the Free Software Foundation; either version 2 of the License, or
18 * (at your option) any later version.
20 * This program is distributed in the hope that it will be useful,
21 * but WITHOUT ANY WARRANTY; without even the implied warranty of
22 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23 * GNU General Public License for more details.
25 * You should have received a copy of the GNU General Public License
26 * along with this program; if not, see the file COPYING, or write
27 * to the Free Software Foundation, Inc.,
28 * 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
31 #include <linux/device.h>
32 #include <linux/platform_device.h>
33 #include <linux/mtd/mtd.h>
34 #include <linux/mtd/partitions.h>
35 #include <linux/spi/spi.h>
36 #include <linux/spi/flash.h>
37 #include <linux/irq.h>
38 #include <linux/interrupt.h>
39 #include <asm/bfin5xx_spi.h>
43 #include <asm/portmux.h>
45 #include <linux/input.h>
48 * Name the Board for the /proc/cpuinfo
50 const char bfin_board_name[] = "ADI BF538-EZKIT";
53 * Driver needs to know address, irq and flag pin.
57 #if defined(CONFIG_RTC_DRV_BFIN) || defined(CONFIG_RTC_DRV_BFIN_MODULE)
58 static struct platform_device rtc_device = {
64 #if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
65 static struct resource bfin_uart_resources[] = {
66 #ifdef CONFIG_SERIAL_BFIN_UART0
70 .flags = IORESOURCE_MEM,
73 #ifdef CONFIG_SERIAL_BFIN_UART1
77 .flags = IORESOURCE_MEM,
80 #ifdef CONFIG_SERIAL_BFIN_UART2
84 .flags = IORESOURCE_MEM,
89 static struct platform_device bfin_uart_device = {
92 .num_resources = ARRAY_SIZE(bfin_uart_resources),
93 .resource = bfin_uart_resources,
97 #if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
98 #ifdef CONFIG_BFIN_SIR0
99 static struct resource bfin_sir0_resources[] = {
103 .flags = IORESOURCE_MEM,
106 .start = IRQ_UART0_RX,
107 .end = IRQ_UART0_RX+1,
108 .flags = IORESOURCE_IRQ,
111 .start = CH_UART0_RX,
112 .end = CH_UART0_RX+1,
113 .flags = IORESOURCE_DMA,
116 static struct platform_device bfin_sir0_device = {
119 .num_resources = ARRAY_SIZE(bfin_sir0_resources),
120 .resource = bfin_sir0_resources,
123 #ifdef CONFIG_BFIN_SIR1
124 static struct resource bfin_sir1_resources[] = {
128 .flags = IORESOURCE_MEM,
131 .start = IRQ_UART1_RX,
132 .end = IRQ_UART1_RX+1,
133 .flags = IORESOURCE_IRQ,
136 .start = CH_UART1_RX,
137 .end = CH_UART1_RX+1,
138 .flags = IORESOURCE_DMA,
141 static struct platform_device bfin_sir1_device = {
144 .num_resources = ARRAY_SIZE(bfin_sir1_resources),
145 .resource = bfin_sir1_resources,
148 #ifdef CONFIG_BFIN_SIR2
149 static struct resource bfin_sir2_resources[] = {
153 .flags = IORESOURCE_MEM,
156 .start = IRQ_UART2_RX,
157 .end = IRQ_UART2_RX+1,
158 .flags = IORESOURCE_IRQ,
161 .start = CH_UART2_RX,
162 .end = CH_UART2_RX+1,
163 .flags = IORESOURCE_DMA,
166 static struct platform_device bfin_sir2_device = {
169 .num_resources = ARRAY_SIZE(bfin_sir2_resources),
170 .resource = bfin_sir2_resources,
176 * USB-LAN EzExtender board
177 * Driver needs to know address, irq and flag pin.
179 #if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE)
180 static struct resource smc91x_resources[] = {
182 .name = "smc91x-regs",
184 .end = 0x20310300 + 16,
185 .flags = IORESOURCE_MEM,
189 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
192 static struct platform_device smc91x_device = {
195 .num_resources = ARRAY_SIZE(smc91x_resources),
196 .resource = smc91x_resources,
200 #if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
201 /* all SPI peripherals info goes here */
202 #if defined(CONFIG_MTD_M25P80) \
203 || defined(CONFIG_MTD_M25P80_MODULE)
204 /* SPI flash chip (m25p16) */
205 static struct mtd_partition bfin_spi_flash_partitions[] = {
207 .name = "bootloader(spi)",
210 .mask_flags = MTD_CAP_ROM
212 .name = "linux kernel(spi)",
218 static struct flash_platform_data bfin_spi_flash_data = {
220 .parts = bfin_spi_flash_partitions,
221 .nr_parts = ARRAY_SIZE(bfin_spi_flash_partitions),
225 static struct bfin5xx_spi_chip spi_flash_chip_info = {
226 .enable_dma = 0, /* use dma transfer with this chip*/
228 .cs_change_per_word = 0,
232 #if defined(CONFIG_TOUCHSCREEN_AD7879) || defined(CONFIG_TOUCHSCREEN_AD7879_MODULE)
233 #include <linux/spi/ad7879.h>
234 static const struct ad7879_platform_data bfin_ad7879_ts_info = {
235 .model = 7879, /* Model = AD7879 */
236 .x_plate_ohms = 620, /* 620 Ohm from the touch datasheet */
237 .pressure_max = 10000,
239 .first_conversion_delay = 3, /* wait 512us before do a first conversion */
240 .acquisition_time = 1, /* 4us acquisition time per sample */
241 .median = 2, /* do 8 measurements */
242 .averaging = 1, /* take the average of 4 middle samples */
243 .pen_down_acc_interval = 255, /* 9.4 ms */
244 .gpio_output = 1, /* configure AUX/VBAT/GPIO as GPIO output */
245 .gpio_default = 1, /* During initialization set GPIO = HIGH */
249 #if defined(CONFIG_TOUCHSCREEN_AD7879_SPI) || defined(CONFIG_TOUCHSCREEN_AD7879_SPI_MODULE)
250 static struct bfin5xx_spi_chip spi_ad7879_chip_info = {
256 #if defined(CONFIG_FB_BFIN_LQ035Q1) || defined(CONFIG_FB_BFIN_LQ035Q1_MODULE)
257 #include <asm/bfin-lq035q1.h>
259 static struct bfin_lq035q1fb_disp_info bfin_lq035q1_data = {
260 .mode = LQ035_NORM | LQ035_RGB | LQ035_RL | LQ035_TB,
261 .use_bl = 0, /* let something else control the LCD Blacklight */
265 static struct resource bfin_lq035q1_resources[] = {
267 .start = IRQ_PPI_ERROR,
268 .end = IRQ_PPI_ERROR,
269 .flags = IORESOURCE_IRQ,
273 static struct platform_device bfin_lq035q1_device = {
274 .name = "bfin-lq035q1",
276 .num_resources = ARRAY_SIZE(bfin_lq035q1_resources),
277 .resource = bfin_lq035q1_resources,
279 .platform_data = &bfin_lq035q1_data,
284 #if defined(CONFIG_SPI_SPIDEV) || defined(CONFIG_SPI_SPIDEV_MODULE)
285 static struct bfin5xx_spi_chip spidev_chip_info = {
291 #if defined(CONFIG_FB_BFIN_LQ035Q1) || defined(CONFIG_FB_BFIN_LQ035Q1_MODULE)
292 static struct bfin5xx_spi_chip lq035q1_spi_chip_info = {
298 static struct spi_board_info bf538_spi_board_info[] __initdata = {
299 #if defined(CONFIG_MTD_M25P80) \
300 || defined(CONFIG_MTD_M25P80_MODULE)
302 /* the modalias must be the same as spi device driver name */
303 .modalias = "m25p80", /* Name of spi_driver for this device */
304 .max_speed_hz = 25000000, /* max spi clock (SCK) speed in HZ */
305 .bus_num = 0, /* Framework bus number */
306 .chip_select = 1, /* SPI_SSEL1*/
307 .platform_data = &bfin_spi_flash_data,
308 .controller_data = &spi_flash_chip_info,
312 #if defined(CONFIG_TOUCHSCREEN_AD7879_SPI) || defined(CONFIG_TOUCHSCREEN_AD7879_SPI_MODULE)
314 .modalias = "ad7879",
315 .platform_data = &bfin_ad7879_ts_info,
317 .max_speed_hz = 5000000, /* max spi clock (SCK) speed in HZ */
320 .controller_data = &spi_ad7879_chip_info,
321 .mode = SPI_CPHA | SPI_CPOL,
324 #if defined(CONFIG_FB_BFIN_LQ035Q1) || defined(CONFIG_FB_BFIN_LQ035Q1_MODULE)
326 .modalias = "bfin-lq035q1-spi",
327 .max_speed_hz = 20000000, /* max spi clock (SCK) speed in HZ */
330 .controller_data = &lq035q1_spi_chip_info,
331 .mode = SPI_CPHA | SPI_CPOL,
334 #if defined(CONFIG_SPI_SPIDEV) || defined(CONFIG_SPI_SPIDEV_MODULE)
336 .modalias = "spidev",
337 .max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */
340 .controller_data = &spidev_chip_info,
346 static struct resource bfin_spi0_resource[] = {
348 .start = SPI0_REGBASE,
349 .end = SPI0_REGBASE + 0xFF,
350 .flags = IORESOURCE_MEM,
355 .flags = IORESOURCE_IRQ,
360 static struct resource bfin_spi1_resource[] = {
362 .start = SPI1_REGBASE,
363 .end = SPI1_REGBASE + 0xFF,
364 .flags = IORESOURCE_MEM,
369 .flags = IORESOURCE_IRQ,
374 static struct resource bfin_spi2_resource[] = {
376 .start = SPI2_REGBASE,
377 .end = SPI2_REGBASE + 0xFF,
378 .flags = IORESOURCE_MEM,
383 .flags = IORESOURCE_IRQ,
387 /* SPI controller data */
388 static struct bfin5xx_spi_master bf538_spi_master_info0 = {
390 .enable_dma = 1, /* master has the ability to do dma transfer */
391 .pin_req = {P_SPI0_SCK, P_SPI0_MISO, P_SPI0_MOSI, 0},
394 static struct platform_device bf538_spi_master0 = {
396 .id = 0, /* Bus number */
397 .num_resources = ARRAY_SIZE(bfin_spi0_resource),
398 .resource = bfin_spi0_resource,
400 .platform_data = &bf538_spi_master_info0, /* Passed to driver */
404 static struct bfin5xx_spi_master bf538_spi_master_info1 = {
406 .enable_dma = 1, /* master has the ability to do dma transfer */
407 .pin_req = {P_SPI1_SCK, P_SPI1_MISO, P_SPI1_MOSI, 0},
410 static struct platform_device bf538_spi_master1 = {
412 .id = 1, /* Bus number */
413 .num_resources = ARRAY_SIZE(bfin_spi1_resource),
414 .resource = bfin_spi1_resource,
416 .platform_data = &bf538_spi_master_info1, /* Passed to driver */
420 static struct bfin5xx_spi_master bf538_spi_master_info2 = {
422 .enable_dma = 1, /* master has the ability to do dma transfer */
423 .pin_req = {P_SPI2_SCK, P_SPI2_MISO, P_SPI2_MOSI, 0},
426 static struct platform_device bf538_spi_master2 = {
428 .id = 2, /* Bus number */
429 .num_resources = ARRAY_SIZE(bfin_spi2_resource),
430 .resource = bfin_spi2_resource,
432 .platform_data = &bf538_spi_master_info2, /* Passed to driver */
436 #endif /* spi master and devices */
438 #if defined(CONFIG_I2C_BLACKFIN_TWI) || defined(CONFIG_I2C_BLACKFIN_TWI_MODULE)
439 static struct resource bfin_twi0_resource[] = {
441 .start = TWI0_REGBASE,
442 .end = TWI0_REGBASE + 0xFF,
443 .flags = IORESOURCE_MEM,
448 .flags = IORESOURCE_IRQ,
452 static struct platform_device i2c_bfin_twi0_device = {
453 .name = "i2c-bfin-twi",
455 .num_resources = ARRAY_SIZE(bfin_twi0_resource),
456 .resource = bfin_twi0_resource,
459 #if !defined(CONFIG_BF542) /* The BF542 only has 1 TWI */
460 static struct resource bfin_twi1_resource[] = {
462 .start = TWI1_REGBASE,
463 .end = TWI1_REGBASE + 0xFF,
464 .flags = IORESOURCE_MEM,
469 .flags = IORESOURCE_IRQ,
473 static struct platform_device i2c_bfin_twi1_device = {
474 .name = "i2c-bfin-twi",
476 .num_resources = ARRAY_SIZE(bfin_twi1_resource),
477 .resource = bfin_twi1_resource,
482 static struct resource bfin_gpios_resources = {
484 .end = MAX_BLACKFIN_GPIOS - 1,
485 .flags = IORESOURCE_IRQ,
488 static struct platform_device bfin_gpios_device = {
489 .name = "simple-gpio",
492 .resource = &bfin_gpios_resources,
495 #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
496 #include <linux/gpio_keys.h>
498 static struct gpio_keys_button bfin_gpio_keys_table[] = {
499 {BTN_0, GPIO_PC7, 1, "gpio-keys: BTN0"},
502 static struct gpio_keys_platform_data bfin_gpio_keys_data = {
503 .buttons = bfin_gpio_keys_table,
504 .nbuttons = ARRAY_SIZE(bfin_gpio_keys_table),
507 static struct platform_device bfin_device_gpiokeys = {
510 .platform_data = &bfin_gpio_keys_data,
515 static const unsigned int cclk_vlev_datasheet[] =
518 * Internal VLEV BF538SBBC1533
519 ****temporarily using these values until data sheet is updated
521 VRPAIR(VLEV_100, 150000000),
522 VRPAIR(VLEV_100, 250000000),
523 VRPAIR(VLEV_110, 276000000),
524 VRPAIR(VLEV_115, 301000000),
525 VRPAIR(VLEV_120, 525000000),
526 VRPAIR(VLEV_125, 550000000),
527 VRPAIR(VLEV_130, 600000000),
530 static struct bfin_dpmc_platform_data bfin_dmpc_vreg_data = {
531 .tuple_tab = cclk_vlev_datasheet,
532 .tabsize = ARRAY_SIZE(cclk_vlev_datasheet),
533 .vr_settling_time = 25 /* us */,
536 static struct platform_device bfin_dpmc = {
539 .platform_data = &bfin_dmpc_vreg_data,
543 static struct platform_device *cm_bf538_devices[] __initdata = {
547 #if defined(CONFIG_RTC_DRV_BFIN) || defined(CONFIG_RTC_DRV_BFIN_MODULE)
551 #if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
555 #if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
561 #if defined(CONFIG_I2C_BLACKFIN_TWI) || defined(CONFIG_I2C_BLACKFIN_TWI_MODULE)
562 &i2c_bfin_twi0_device,
563 &i2c_bfin_twi1_device,
566 #if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
567 #ifdef CONFIG_BFIN_SIR0
570 #ifdef CONFIG_BFIN_SIR1
573 #ifdef CONFIG_BFIN_SIR2
578 #if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE)
582 #if defined(CONFIG_FB_BFIN_LQ035Q1) || defined(CONFIG_FB_BFIN_LQ035Q1_MODULE)
583 &bfin_lq035q1_device,
586 #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
587 &bfin_device_gpiokeys,
593 static int __init ezkit_init(void)
595 printk(KERN_INFO "%s(): registering device resources\n", __func__);
596 platform_add_devices(cm_bf538_devices, ARRAY_SIZE(cm_bf538_devices));
598 #if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
599 spi_register_board_info(bf538_spi_board_info,
600 ARRAY_SIZE(bf538_spi_board_info));
606 arch_initcall(ezkit_init);