2 * File: arch/blackfin/mach-bf548/boards/cm_bf548.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 <linux/usb/musb.h>
40 #include <asm/bfin5xx_spi.h>
45 #include <asm/portmux.h>
46 #include <asm/mach/bf54x_keys.h>
47 #include <linux/input.h>
48 #include <linux/spi/ad7877.h>
51 * Name the Board for the /proc/cpuinfo
53 const char bfin_board_name[] = "Bluetechnix CM-BF548";
56 * Driver needs to know address, irq and flag pin.
59 #if defined(CONFIG_FB_BF54X_LQ043) || defined(CONFIG_FB_BF54X_LQ043_MODULE)
61 #include <asm/mach/bf54x-lq043.h>
63 static struct bfin_bf54xfb_mach_info bf54x_lq043_data = {
66 .xres = {480, 480, 480},
67 .yres = {272, 272, 272},
72 static struct resource bf54x_lq043_resources[] = {
74 .start = IRQ_EPPI0_ERR,
76 .flags = IORESOURCE_IRQ,
80 static struct platform_device bf54x_lq043_device = {
81 .name = "bf54x-lq043",
83 .num_resources = ARRAY_SIZE(bf54x_lq043_resources),
84 .resource = bf54x_lq043_resources,
86 .platform_data = &bf54x_lq043_data,
91 #if defined(CONFIG_KEYBOARD_BFIN) || defined(CONFIG_KEYBOARD_BFIN_MODULE)
92 static unsigned int bf548_keymap[] = {
93 KEYVAL(0, 0, KEY_ENTER),
94 KEYVAL(0, 1, KEY_HELP),
96 KEYVAL(0, 3, KEY_BACKSPACE),
97 KEYVAL(1, 0, KEY_TAB),
101 KEYVAL(2, 0, KEY_DOWN),
105 KEYVAL(3, 0, KEY_UP),
111 static struct bfin_kpad_platform_data bf54x_kpad_data = {
114 .keymap = bf548_keymap,
115 .keymapsize = ARRAY_SIZE(bf548_keymap),
117 .debounce_time = 5000, /* ns (5ms) */
118 .coldrive_time = 1000, /* ns (1ms) */
119 .keyup_test_interval = 50, /* ms (50ms) */
122 static struct resource bf54x_kpad_resources[] = {
126 .flags = IORESOURCE_IRQ,
130 static struct platform_device bf54x_kpad_device = {
131 .name = "bf54x-keys",
133 .num_resources = ARRAY_SIZE(bf54x_kpad_resources),
134 .resource = bf54x_kpad_resources,
136 .platform_data = &bf54x_kpad_data,
141 #if defined(CONFIG_RTC_DRV_BFIN) || defined(CONFIG_RTC_DRV_BFIN_MODULE)
142 static struct platform_device rtc_device = {
148 #if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
149 static struct resource bfin_uart_resources[] = {
150 #ifdef CONFIG_SERIAL_BFIN_UART0
154 .flags = IORESOURCE_MEM,
157 #ifdef CONFIG_SERIAL_BFIN_UART1
161 .flags = IORESOURCE_MEM,
164 #ifdef CONFIG_SERIAL_BFIN_UART2
168 .flags = IORESOURCE_MEM,
171 #ifdef CONFIG_SERIAL_BFIN_UART3
179 static struct platform_device bfin_uart_device = {
182 .num_resources = ARRAY_SIZE(bfin_uart_resources),
183 .resource = bfin_uart_resources,
187 #if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
188 static struct resource bfin_sir_resources[] = {
189 #ifdef CONFIG_BFIN_SIR0
193 .flags = IORESOURCE_MEM,
196 #ifdef CONFIG_BFIN_SIR1
200 .flags = IORESOURCE_MEM,
203 #ifdef CONFIG_BFIN_SIR2
207 .flags = IORESOURCE_MEM,
210 #ifdef CONFIG_BFIN_SIR3
214 .flags = IORESOURCE_MEM,
219 static struct platform_device bfin_sir_device = {
222 .num_resources = ARRAY_SIZE(bfin_sir_resources),
223 .resource = bfin_sir_resources,
227 #if defined(CONFIG_SMSC911X) || defined(CONFIG_SMSC911X_MODULE)
228 static struct resource smsc911x_resources[] = {
230 .name = "smsc911x-memory",
232 .end = 0x24000000 + 0xFF,
233 .flags = IORESOURCE_MEM,
238 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_LOWLEVEL,
241 static struct platform_device smsc911x_device = {
244 .num_resources = ARRAY_SIZE(smsc911x_resources),
245 .resource = smsc911x_resources,
249 #if defined(CONFIG_USB_MUSB_HDRC) || defined(CONFIG_USB_MUSB_HDRC_MODULE)
250 static struct resource musb_resources[] = {
254 .flags = IORESOURCE_MEM,
256 [1] = { /* general IRQ */
257 .start = IRQ_USB_INT0,
259 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
261 [2] = { /* DMA IRQ */
262 .start = IRQ_USB_DMA,
264 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
268 static struct musb_hdrc_platform_data musb_plat = {
269 #if defined(CONFIG_USB_MUSB_OTG)
271 #elif defined(CONFIG_USB_MUSB_HDRC_HCD)
273 #elif defined(CONFIG_USB_GADGET_MUSB_HDRC)
274 .mode = MUSB_PERIPHERAL,
279 static u64 musb_dmamask = ~(u32)0;
281 static struct platform_device musb_device = {
285 .dma_mask = &musb_dmamask,
286 .coherent_dma_mask = 0xffffffff,
287 .platform_data = &musb_plat,
289 .num_resources = ARRAY_SIZE(musb_resources),
290 .resource = musb_resources,
294 #if defined(CONFIG_PATA_BF54X) || defined(CONFIG_PATA_BF54X_MODULE)
295 static struct resource bfin_atapi_resources[] = {
299 .flags = IORESOURCE_MEM,
302 .start = IRQ_ATAPI_ERR,
303 .end = IRQ_ATAPI_ERR,
304 .flags = IORESOURCE_IRQ,
308 static struct platform_device bfin_atapi_device = {
309 .name = "pata-bf54x",
311 .num_resources = ARRAY_SIZE(bfin_atapi_resources),
312 .resource = bfin_atapi_resources,
316 #if defined(CONFIG_MTD_NAND_BF5XX) || defined(CONFIG_MTD_NAND_BF5XX_MODULE)
317 static struct mtd_partition partition_info[] = {
319 .name = "Linux Kernel",
324 .name = "File System",
325 .offset = 4 * SIZE_1M,
326 .size = (256 - 4) * SIZE_1M,
330 static struct bf5xx_nand_platform bf5xx_nand_platform = {
331 .page_size = NFC_PG_SIZE_256,
332 .data_width = NFC_NWIDTH_8,
333 .partitions = partition_info,
334 .nr_partitions = ARRAY_SIZE(partition_info),
339 static struct resource bf5xx_nand_resources[] = {
343 .flags = IORESOURCE_MEM,
348 .flags = IORESOURCE_IRQ,
352 static struct platform_device bf5xx_nand_device = {
353 .name = "bf5xx-nand",
355 .num_resources = ARRAY_SIZE(bf5xx_nand_resources),
356 .resource = bf5xx_nand_resources,
358 .platform_data = &bf5xx_nand_platform,
363 #if defined(CONFIG_SDH_BFIN) || defined(CONFIG_SDH_BFIN_MODULE)
364 static struct platform_device bf54x_sdh_device = {
370 #if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
371 /* all SPI peripherals info goes here */
372 #if defined(CONFIG_MTD_M25P80) \
373 || defined(CONFIG_MTD_M25P80_MODULE)
374 /* SPI flash chip (m25p16) */
375 static struct mtd_partition bfin_spi_flash_partitions[] = {
377 .name = "bootloader",
380 .mask_flags = MTD_CAP_ROM
382 .name = "linux kernel",
388 static struct flash_platform_data bfin_spi_flash_data = {
390 .parts = bfin_spi_flash_partitions,
391 .nr_parts = ARRAY_SIZE(bfin_spi_flash_partitions),
395 static struct bfin5xx_spi_chip spi_flash_chip_info = {
396 .enable_dma = 0, /* use dma transfer with this chip*/
398 .cs_change_per_word = 0,
402 #if defined(CONFIG_TOUCHSCREEN_AD7877) || defined(CONFIG_TOUCHSCREEN_AD7877_MODULE)
403 static struct bfin5xx_spi_chip spi_ad7877_chip_info = {
404 .cs_change_per_word = 0,
409 static const struct ad7877_platform_data bfin_ad7877_ts_info = {
411 .vref_delay_usecs = 50, /* internal, no capacitor */
414 .pressure_max = 1000,
416 .stopacq_polarity = 1,
417 .first_conversion_delay = 3,
418 .acquisition_time = 1,
420 .pen_down_acc_interval = 1,
424 #if defined(CONFIG_SPI_SPIDEV) || defined(CONFIG_SPI_SPIDEV_MODULE)
425 static struct bfin5xx_spi_chip spidev_chip_info = {
431 static struct spi_board_info bf54x_spi_board_info[] __initdata = {
432 #if defined(CONFIG_MTD_M25P80) \
433 || defined(CONFIG_MTD_M25P80_MODULE)
435 /* the modalias must be the same as spi device driver name */
436 .modalias = "m25p80", /* Name of spi_driver for this device */
437 .max_speed_hz = 25000000, /* max spi clock (SCK) speed in HZ */
438 .bus_num = 0, /* Framework bus number */
439 .chip_select = 1, /* SPI_SSEL1*/
440 .platform_data = &bfin_spi_flash_data,
441 .controller_data = &spi_flash_chip_info,
445 #if defined(CONFIG_TOUCHSCREEN_AD7877) || defined(CONFIG_TOUCHSCREEN_AD7877_MODULE)
447 .modalias = "ad7877",
448 .platform_data = &bfin_ad7877_ts_info,
450 .max_speed_hz = 12500000, /* max spi clock (SCK) speed in HZ */
453 .controller_data = &spi_ad7877_chip_info,
456 #if defined(CONFIG_SPI_SPIDEV) || defined(CONFIG_SPI_SPIDEV_MODULE)
458 .modalias = "spidev",
459 .max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */
462 .controller_data = &spidev_chip_info,
468 static struct resource bfin_spi0_resource[] = {
470 .start = SPI0_REGBASE,
471 .end = SPI0_REGBASE + 0xFF,
472 .flags = IORESOURCE_MEM,
477 .flags = IORESOURCE_IRQ,
482 static struct resource bfin_spi1_resource[] = {
484 .start = SPI1_REGBASE,
485 .end = SPI1_REGBASE + 0xFF,
486 .flags = IORESOURCE_MEM,
491 .flags = IORESOURCE_IRQ,
495 /* SPI controller data */
496 static struct bfin5xx_spi_master bf54x_spi_master_info0 = {
498 .enable_dma = 1, /* master has the ability to do dma transfer */
499 .pin_req = {P_SPI0_SCK, P_SPI0_MISO, P_SPI0_MOSI, 0},
502 static struct platform_device bf54x_spi_master0 = {
504 .id = 0, /* Bus number */
505 .num_resources = ARRAY_SIZE(bfin_spi0_resource),
506 .resource = bfin_spi0_resource,
508 .platform_data = &bf54x_spi_master_info0, /* Passed to driver */
512 static struct bfin5xx_spi_master bf54x_spi_master_info1 = {
514 .enable_dma = 1, /* master has the ability to do dma transfer */
515 .pin_req = {P_SPI1_SCK, P_SPI1_MISO, P_SPI1_MOSI, 0},
518 static struct platform_device bf54x_spi_master1 = {
520 .id = 1, /* Bus number */
521 .num_resources = ARRAY_SIZE(bfin_spi1_resource),
522 .resource = bfin_spi1_resource,
524 .platform_data = &bf54x_spi_master_info1, /* Passed to driver */
527 #endif /* spi master and devices */
529 #if defined(CONFIG_I2C_BLACKFIN_TWI) || defined(CONFIG_I2C_BLACKFIN_TWI_MODULE)
530 static struct resource bfin_twi0_resource[] = {
532 .start = TWI0_REGBASE,
533 .end = TWI0_REGBASE + 0xFF,
534 .flags = IORESOURCE_MEM,
539 .flags = IORESOURCE_IRQ,
543 static struct platform_device i2c_bfin_twi0_device = {
544 .name = "i2c-bfin-twi",
546 .num_resources = ARRAY_SIZE(bfin_twi0_resource),
547 .resource = bfin_twi0_resource,
550 #if !defined(CONFIG_BF542) /* The BF542 only has 1 TWI */
551 static struct resource bfin_twi1_resource[] = {
553 .start = TWI1_REGBASE,
554 .end = TWI1_REGBASE + 0xFF,
555 .flags = IORESOURCE_MEM,
560 .flags = IORESOURCE_IRQ,
564 static struct platform_device i2c_bfin_twi1_device = {
565 .name = "i2c-bfin-twi",
567 .num_resources = ARRAY_SIZE(bfin_twi1_resource),
568 .resource = bfin_twi1_resource,
573 #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
574 #include <linux/gpio_keys.h>
576 static struct gpio_keys_button bfin_gpio_keys_table[] = {
577 {BTN_0, GPIO_PH7, 1, "gpio-keys: BTN0"},
580 static struct gpio_keys_platform_data bfin_gpio_keys_data = {
581 .buttons = bfin_gpio_keys_table,
582 .nbuttons = ARRAY_SIZE(bfin_gpio_keys_table),
585 static struct platform_device bfin_device_gpiokeys = {
588 .platform_data = &bfin_gpio_keys_data,
593 static struct platform_device *cm_bf548_devices[] __initdata = {
594 #if defined(CONFIG_RTC_DRV_BFIN) || defined(CONFIG_RTC_DRV_BFIN_MODULE)
598 #if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
602 #if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
606 #if defined(CONFIG_FB_BF54X_LQ043) || defined(CONFIG_FB_BF54X_LQ043_MODULE)
610 #if defined(CONFIG_SMSC911X) || defined(CONFIG_SMSC911X_MODULE)
614 #if defined(CONFIG_USB_MUSB_HDRC) || defined(CONFIG_USB_MUSB_HDRC_MODULE)
618 #if defined(CONFIG_PATA_BF54X) || defined(CONFIG_PATA_BF54X_MODULE)
622 #if defined(CONFIG_MTD_NAND_BF5XX) || defined(CONFIG_MTD_NAND_BF5XX_MODULE)
626 #if defined(CONFIG_SDH_BFIN) || defined(CONFIG_SDH_BFIN_MODULE)
630 #if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
635 #if defined(CONFIG_KEYBOARD_BFIN) || defined(CONFIG_KEYBOARD_BFIN_MODULE)
639 #if defined(CONFIG_I2C_BLACKFIN_TWI) || defined(CONFIG_I2C_BLACKFIN_TWI_MODULE)
640 /* &i2c_bfin_twi0_device, */
641 #if !defined(CONFIG_BF542)
642 &i2c_bfin_twi1_device,
646 #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
647 &bfin_device_gpiokeys,
651 static int __init cm_bf548_init(void)
653 printk(KERN_INFO "%s(): registering device resources\n", __FUNCTION__);
654 platform_add_devices(cm_bf548_devices, ARRAY_SIZE(cm_bf548_devices));
656 #if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
657 spi_register_board_info(bf54x_spi_board_info,
658 ARRAY_SIZE(bf54x_spi_board_info));
664 arch_initcall(cm_bf548_init);