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_DMA
,
360 .flags
= IORESOURCE_IRQ
,
365 static struct resource bfin_spi1_resource
[] = {
367 .start
= SPI1_REGBASE
,
368 .end
= SPI1_REGBASE
+ 0xFF,
369 .flags
= IORESOURCE_MEM
,
374 .flags
= IORESOURCE_DMA
,
379 .flags
= IORESOURCE_IRQ
,
384 static struct resource bfin_spi2_resource
[] = {
386 .start
= SPI2_REGBASE
,
387 .end
= SPI2_REGBASE
+ 0xFF,
388 .flags
= IORESOURCE_MEM
,
393 .flags
= IORESOURCE_IRQ
,
397 /* SPI controller data */
398 static struct bfin5xx_spi_master bf538_spi_master_info0
= {
400 .enable_dma
= 1, /* master has the ability to do dma transfer */
401 .pin_req
= {P_SPI0_SCK
, P_SPI0_MISO
, P_SPI0_MOSI
, 0},
404 static struct platform_device bf538_spi_master0
= {
406 .id
= 0, /* Bus number */
407 .num_resources
= ARRAY_SIZE(bfin_spi0_resource
),
408 .resource
= bfin_spi0_resource
,
410 .platform_data
= &bf538_spi_master_info0
, /* Passed to driver */
414 static struct bfin5xx_spi_master bf538_spi_master_info1
= {
416 .enable_dma
= 1, /* master has the ability to do dma transfer */
417 .pin_req
= {P_SPI1_SCK
, P_SPI1_MISO
, P_SPI1_MOSI
, 0},
420 static struct platform_device bf538_spi_master1
= {
422 .id
= 1, /* Bus number */
423 .num_resources
= ARRAY_SIZE(bfin_spi1_resource
),
424 .resource
= bfin_spi1_resource
,
426 .platform_data
= &bf538_spi_master_info1
, /* Passed to driver */
430 static struct bfin5xx_spi_master bf538_spi_master_info2
= {
432 .enable_dma
= 1, /* master has the ability to do dma transfer */
433 .pin_req
= {P_SPI2_SCK
, P_SPI2_MISO
, P_SPI2_MOSI
, 0},
436 static struct platform_device bf538_spi_master2
= {
438 .id
= 2, /* Bus number */
439 .num_resources
= ARRAY_SIZE(bfin_spi2_resource
),
440 .resource
= bfin_spi2_resource
,
442 .platform_data
= &bf538_spi_master_info2
, /* Passed to driver */
446 #endif /* spi master and devices */
448 #if defined(CONFIG_I2C_BLACKFIN_TWI) || defined(CONFIG_I2C_BLACKFIN_TWI_MODULE)
449 static struct resource bfin_twi0_resource
[] = {
451 .start
= TWI0_REGBASE
,
452 .end
= TWI0_REGBASE
+ 0xFF,
453 .flags
= IORESOURCE_MEM
,
458 .flags
= IORESOURCE_IRQ
,
462 static struct platform_device i2c_bfin_twi0_device
= {
463 .name
= "i2c-bfin-twi",
465 .num_resources
= ARRAY_SIZE(bfin_twi0_resource
),
466 .resource
= bfin_twi0_resource
,
469 #if !defined(CONFIG_BF542) /* The BF542 only has 1 TWI */
470 static struct resource bfin_twi1_resource
[] = {
472 .start
= TWI1_REGBASE
,
473 .end
= TWI1_REGBASE
+ 0xFF,
474 .flags
= IORESOURCE_MEM
,
479 .flags
= IORESOURCE_IRQ
,
483 static struct platform_device i2c_bfin_twi1_device
= {
484 .name
= "i2c-bfin-twi",
486 .num_resources
= ARRAY_SIZE(bfin_twi1_resource
),
487 .resource
= bfin_twi1_resource
,
492 static struct resource bfin_gpios_resources
= {
494 .end
= MAX_BLACKFIN_GPIOS
- 1,
495 .flags
= IORESOURCE_IRQ
,
498 static struct platform_device bfin_gpios_device
= {
499 .name
= "simple-gpio",
502 .resource
= &bfin_gpios_resources
,
505 #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
506 #include <linux/gpio_keys.h>
508 static struct gpio_keys_button bfin_gpio_keys_table
[] = {
509 {BTN_0
, GPIO_PC7
, 1, "gpio-keys: BTN0"},
512 static struct gpio_keys_platform_data bfin_gpio_keys_data
= {
513 .buttons
= bfin_gpio_keys_table
,
514 .nbuttons
= ARRAY_SIZE(bfin_gpio_keys_table
),
517 static struct platform_device bfin_device_gpiokeys
= {
520 .platform_data
= &bfin_gpio_keys_data
,
525 static const unsigned int cclk_vlev_datasheet
[] =
528 * Internal VLEV BF538SBBC1533
529 ****temporarily using these values until data sheet is updated
531 VRPAIR(VLEV_100
, 150000000),
532 VRPAIR(VLEV_100
, 250000000),
533 VRPAIR(VLEV_110
, 276000000),
534 VRPAIR(VLEV_115
, 301000000),
535 VRPAIR(VLEV_120
, 525000000),
536 VRPAIR(VLEV_125
, 550000000),
537 VRPAIR(VLEV_130
, 600000000),
540 static struct bfin_dpmc_platform_data bfin_dmpc_vreg_data
= {
541 .tuple_tab
= cclk_vlev_datasheet
,
542 .tabsize
= ARRAY_SIZE(cclk_vlev_datasheet
),
543 .vr_settling_time
= 25 /* us */,
546 static struct platform_device bfin_dpmc
= {
549 .platform_data
= &bfin_dmpc_vreg_data
,
553 static struct platform_device
*cm_bf538_devices
[] __initdata
= {
557 #if defined(CONFIG_RTC_DRV_BFIN) || defined(CONFIG_RTC_DRV_BFIN_MODULE)
561 #if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
565 #if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
571 #if defined(CONFIG_I2C_BLACKFIN_TWI) || defined(CONFIG_I2C_BLACKFIN_TWI_MODULE)
572 &i2c_bfin_twi0_device
,
573 &i2c_bfin_twi1_device
,
576 #if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
577 #ifdef CONFIG_BFIN_SIR0
580 #ifdef CONFIG_BFIN_SIR1
583 #ifdef CONFIG_BFIN_SIR2
588 #if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE)
592 #if defined(CONFIG_FB_BFIN_LQ035Q1) || defined(CONFIG_FB_BFIN_LQ035Q1_MODULE)
593 &bfin_lq035q1_device
,
596 #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
597 &bfin_device_gpiokeys
,
603 static int __init
ezkit_init(void)
605 printk(KERN_INFO
"%s(): registering device resources\n", __func__
);
606 platform_add_devices(cm_bf538_devices
, ARRAY_SIZE(cm_bf538_devices
));
608 #if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
609 spi_register_board_info(bf538_spi_board_info
,
610 ARRAY_SIZE(bf538_spi_board_info
));
616 arch_initcall(ezkit_init
);