Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1 | /* |
Robin Getz | 96f1050 | 2009-09-24 14:11:24 +0000 | [diff] [blame] | 2 | * Copyright 2004-2009 Analog Devices Inc. |
| 3 | * 2005 National ICT Australia (NICTA) |
| 4 | * Aidan Williams <aidan@nicta.com.au> |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 5 | * |
Robin Getz | 96f1050 | 2009-09-24 14:11:24 +0000 | [diff] [blame] | 6 | * Licensed under the GPL-2 or later. |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include <linux/device.h> |
| 10 | #include <linux/platform_device.h> |
| 11 | #include <linux/mtd/mtd.h> |
| 12 | #include <linux/mtd/partitions.h> |
Mike Frysinger | de8c43f | 2008-01-24 17:14:04 +0800 | [diff] [blame] | 13 | #include <linux/mtd/physmap.h> |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 14 | #include <linux/spi/spi.h> |
| 15 | #include <linux/spi/flash.h> |
Yi Li | 2120b68 | 2009-07-16 10:12:30 +0000 | [diff] [blame] | 16 | #include <linux/spi/mmc_spi.h> |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 17 | #if defined(CONFIG_USB_ISP1362_HCD) || defined(CONFIG_USB_ISP1362_HCD_MODULE) |
Mike Frysinger | f02bcec | 2007-11-15 21:29:15 +0800 | [diff] [blame] | 18 | #include <linux/usb/isp1362.h> |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 19 | #endif |
Mike Frysinger | 1f83b8f | 2007-07-12 22:58:21 +0800 | [diff] [blame] | 20 | #include <linux/irq.h> |
Bryan Wu | 81d9c7f | 2008-03-26 10:02:13 +0800 | [diff] [blame] | 21 | #include <linux/i2c.h> |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 22 | #include <asm/dma.h> |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 23 | #include <asm/bfin5xx_spi.h> |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 24 | #include <asm/reboot.h> |
Bryan Wu | 5d448dd | 2007-11-12 23:24:42 +0800 | [diff] [blame] | 25 | #include <asm/portmux.h> |
Michael Hennerich | 14b0320 | 2008-05-07 11:41:26 +0800 | [diff] [blame] | 26 | #include <asm/dpmc.h> |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 27 | |
| 28 | /* |
| 29 | * Name the Board for the /proc/cpuinfo |
| 30 | */ |
Mike Frysinger | fe85cad | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 31 | const char bfin_board_name[] = "ADI BF533-STAMP"; |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 32 | |
| 33 | #if defined(CONFIG_RTC_DRV_BFIN) || defined(CONFIG_RTC_DRV_BFIN_MODULE) |
| 34 | static struct platform_device rtc_device = { |
| 35 | .name = "rtc-bfin", |
| 36 | .id = -1, |
| 37 | }; |
| 38 | #endif |
| 39 | |
| 40 | /* |
| 41 | * Driver needs to know address, irq and flag pin. |
| 42 | */ |
| 43 | #if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE) |
Michael Hennerich | 61f09b5 | 2009-07-24 08:48:31 +0000 | [diff] [blame] | 44 | #include <linux/smc91x.h> |
| 45 | |
| 46 | static struct smc91x_platdata smc91x_info = { |
| 47 | .flags = SMC91X_USE_16BIT | SMC91X_NOWAIT, |
| 48 | .leda = RPC_LED_100_10, |
| 49 | .ledb = RPC_LED_TX_RX, |
| 50 | }; |
| 51 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 52 | static struct resource smc91x_resources[] = { |
| 53 | { |
| 54 | .name = "smc91x-regs", |
| 55 | .start = 0x20300300, |
| 56 | .end = 0x20300300 + 16, |
| 57 | .flags = IORESOURCE_MEM, |
Mike Frysinger | 1f83b8f | 2007-07-12 22:58:21 +0800 | [diff] [blame] | 58 | }, { |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 59 | .start = IRQ_PF7, |
| 60 | .end = IRQ_PF7, |
| 61 | .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL, |
| 62 | }, |
| 63 | }; |
| 64 | |
| 65 | static struct platform_device smc91x_device = { |
| 66 | .name = "smc91x", |
| 67 | .id = 0, |
| 68 | .num_resources = ARRAY_SIZE(smc91x_resources), |
| 69 | .resource = smc91x_resources, |
Michael Hennerich | 61f09b5 | 2009-07-24 08:48:31 +0000 | [diff] [blame] | 70 | .dev = { |
| 71 | .platform_data = &smc91x_info, |
| 72 | }, |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 73 | }; |
| 74 | #endif |
| 75 | |
| 76 | #if defined(CONFIG_USB_NET2272) || defined(CONFIG_USB_NET2272_MODULE) |
| 77 | static struct resource net2272_bfin_resources[] = { |
| 78 | { |
| 79 | .start = 0x20300000, |
| 80 | .end = 0x20300000 + 0x100, |
| 81 | .flags = IORESOURCE_MEM, |
Mike Frysinger | 1f83b8f | 2007-07-12 22:58:21 +0800 | [diff] [blame] | 82 | }, { |
Mike Frysinger | 9be8631 | 2011-05-04 11:20:15 -0400 | [diff] [blame] | 83 | .start = 1, |
| 84 | .flags = IORESOURCE_BUS, |
| 85 | }, { |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 86 | .start = IRQ_PF10, |
| 87 | .end = IRQ_PF10, |
| 88 | .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL, |
| 89 | }, |
| 90 | }; |
| 91 | |
| 92 | static struct platform_device net2272_bfin_device = { |
| 93 | .name = "net2272", |
| 94 | .id = -1, |
| 95 | .num_resources = ARRAY_SIZE(net2272_bfin_resources), |
| 96 | .resource = net2272_bfin_resources, |
| 97 | }; |
| 98 | #endif |
| 99 | |
Mike Frysinger | 9cd9c61 | 2008-05-13 12:31:32 +0800 | [diff] [blame] | 100 | #if defined(CONFIG_MTD_BFIN_ASYNC) || defined(CONFIG_MTD_BFIN_ASYNC_MODULE) |
Mike Frysinger | de8c43f | 2008-01-24 17:14:04 +0800 | [diff] [blame] | 101 | static struct mtd_partition stamp_partitions[] = { |
| 102 | { |
Robin Getz | aa58297 | 2008-08-05 17:47:29 +0800 | [diff] [blame] | 103 | .name = "bootloader(nor)", |
Mike Frysinger | edf0564 | 2008-02-25 11:38:11 +0800 | [diff] [blame] | 104 | .size = 0x40000, |
Mike Frysinger | de8c43f | 2008-01-24 17:14:04 +0800 | [diff] [blame] | 105 | .offset = 0, |
| 106 | }, { |
Robin Getz | aa58297 | 2008-08-05 17:47:29 +0800 | [diff] [blame] | 107 | .name = "linux kernel(nor)", |
Grace Pan | 6ecb5b6 | 2009-01-07 23:14:38 +0800 | [diff] [blame] | 108 | .size = 0x180000, |
Mike Frysinger | de8c43f | 2008-01-24 17:14:04 +0800 | [diff] [blame] | 109 | .offset = MTDPART_OFS_APPEND, |
| 110 | }, { |
Robin Getz | aa58297 | 2008-08-05 17:47:29 +0800 | [diff] [blame] | 111 | .name = "file system(nor)", |
Mike Frysinger | de8c43f | 2008-01-24 17:14:04 +0800 | [diff] [blame] | 112 | .size = MTDPART_SIZ_FULL, |
| 113 | .offset = MTDPART_OFS_APPEND, |
| 114 | } |
| 115 | }; |
| 116 | |
| 117 | static struct physmap_flash_data stamp_flash_data = { |
| 118 | .width = 2, |
| 119 | .parts = stamp_partitions, |
| 120 | .nr_parts = ARRAY_SIZE(stamp_partitions), |
| 121 | }; |
| 122 | |
| 123 | static struct resource stamp_flash_resource[] = { |
| 124 | { |
| 125 | .name = "cfi_probe", |
| 126 | .start = 0x20000000, |
| 127 | .end = 0x203fffff, |
| 128 | .flags = IORESOURCE_MEM, |
| 129 | }, { |
Mike Frysinger | 9cd9c61 | 2008-05-13 12:31:32 +0800 | [diff] [blame] | 130 | .start = 0x7BB07BB0, /* AMBCTL0 setting when accessing flash */ |
| 131 | .end = 0x7BB07BB0, /* AMBCTL1 setting when accessing flash */ |
| 132 | .flags = IORESOURCE_MEM, |
| 133 | }, { |
| 134 | .start = GPIO_PF0, |
Mike Frysinger | de8c43f | 2008-01-24 17:14:04 +0800 | [diff] [blame] | 135 | .flags = IORESOURCE_IRQ, |
| 136 | } |
| 137 | }; |
| 138 | |
| 139 | static struct platform_device stamp_flash_device = { |
Mike Frysinger | 9cd9c61 | 2008-05-13 12:31:32 +0800 | [diff] [blame] | 140 | .name = "bfin-async-flash", |
Mike Frysinger | de8c43f | 2008-01-24 17:14:04 +0800 | [diff] [blame] | 141 | .id = 0, |
| 142 | .dev = { |
| 143 | .platform_data = &stamp_flash_data, |
| 144 | }, |
| 145 | .num_resources = ARRAY_SIZE(stamp_flash_resource), |
| 146 | .resource = stamp_flash_resource, |
| 147 | }; |
Mike Frysinger | 793dc27 | 2008-03-26 08:09:12 +0800 | [diff] [blame] | 148 | #endif |
Mike Frysinger | de8c43f | 2008-01-24 17:14:04 +0800 | [diff] [blame] | 149 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 150 | #if defined(CONFIG_MTD_M25P80) || defined(CONFIG_MTD_M25P80_MODULE) |
| 151 | static struct mtd_partition bfin_spi_flash_partitions[] = { |
| 152 | { |
Robin Getz | aa58297 | 2008-08-05 17:47:29 +0800 | [diff] [blame] | 153 | .name = "bootloader(spi)", |
Mike Frysinger | edf0564 | 2008-02-25 11:38:11 +0800 | [diff] [blame] | 154 | .size = 0x00040000, |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 155 | .offset = 0, |
| 156 | .mask_flags = MTD_CAP_ROM |
Mike Frysinger | 1f83b8f | 2007-07-12 22:58:21 +0800 | [diff] [blame] | 157 | }, { |
Robin Getz | aa58297 | 2008-08-05 17:47:29 +0800 | [diff] [blame] | 158 | .name = "linux kernel(spi)", |
Grace Pan | 6ecb5b6 | 2009-01-07 23:14:38 +0800 | [diff] [blame] | 159 | .size = 0x180000, |
Mike Frysinger | edf0564 | 2008-02-25 11:38:11 +0800 | [diff] [blame] | 160 | .offset = MTDPART_OFS_APPEND, |
Mike Frysinger | 1f83b8f | 2007-07-12 22:58:21 +0800 | [diff] [blame] | 161 | }, { |
Robin Getz | aa58297 | 2008-08-05 17:47:29 +0800 | [diff] [blame] | 162 | .name = "file system(spi)", |
Mike Frysinger | edf0564 | 2008-02-25 11:38:11 +0800 | [diff] [blame] | 163 | .size = MTDPART_SIZ_FULL, |
| 164 | .offset = MTDPART_OFS_APPEND, |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 165 | } |
| 166 | }; |
| 167 | |
| 168 | static struct flash_platform_data bfin_spi_flash_data = { |
| 169 | .name = "m25p80", |
| 170 | .parts = bfin_spi_flash_partitions, |
| 171 | .nr_parts = ARRAY_SIZE(bfin_spi_flash_partitions), |
| 172 | .type = "m25p64", |
| 173 | }; |
| 174 | |
| 175 | /* SPI flash chip (m25p64) */ |
| 176 | static struct bfin5xx_spi_chip spi_flash_chip_info = { |
| 177 | .enable_dma = 0, /* use dma transfer with this chip*/ |
Michael Hennerich | 6e66893 | 2008-02-09 01:54:09 +0800 | [diff] [blame] | 178 | }; |
| 179 | #endif |
| 180 | |
Yi Li | 2120b68 | 2009-07-16 10:12:30 +0000 | [diff] [blame] | 181 | #if defined(CONFIG_MMC_SPI) || defined(CONFIG_MMC_SPI_MODULE) |
| 182 | #define MMC_SPI_CARD_DETECT_INT IRQ_PF5 |
| 183 | static int bfin_mmc_spi_init(struct device *dev, |
| 184 | irqreturn_t (*detect_int)(int, void *), void *data) |
| 185 | { |
| 186 | return request_irq(MMC_SPI_CARD_DETECT_INT, detect_int, |
| 187 | IRQF_TRIGGER_FALLING | IRQF_TRIGGER_RISING, |
| 188 | "mmc-spi-detect", data); |
| 189 | } |
| 190 | |
| 191 | static void bfin_mmc_spi_exit(struct device *dev, void *data) |
| 192 | { |
| 193 | free_irq(MMC_SPI_CARD_DETECT_INT, data); |
| 194 | } |
| 195 | |
| 196 | static struct mmc_spi_platform_data bfin_mmc_spi_pdata = { |
| 197 | .init = bfin_mmc_spi_init, |
| 198 | .exit = bfin_mmc_spi_exit, |
| 199 | .detect_delay = 100, /* msecs */ |
| 200 | }; |
| 201 | |
| 202 | static struct bfin5xx_spi_chip mmc_spi_chip_info = { |
| 203 | .enable_dma = 0, |
Yi Li | 2120b68 | 2009-07-16 10:12:30 +0000 | [diff] [blame] | 204 | .pio_interrupt = 0, |
| 205 | }; |
| 206 | #endif |
| 207 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 208 | static struct spi_board_info bfin_spi_board_info[] __initdata = { |
| 209 | #if defined(CONFIG_MTD_M25P80) || defined(CONFIG_MTD_M25P80_MODULE) |
| 210 | { |
| 211 | /* the modalias must be the same as spi device driver name */ |
| 212 | .modalias = "m25p80", /* Name of spi_driver for this device */ |
| 213 | .max_speed_hz = 25000000, /* max spi clock (SCK) speed in HZ */ |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 214 | .bus_num = 0, /* Framework bus number */ |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 215 | .chip_select = 2, /* Framework chip select. On STAMP537 it is SPISSEL2*/ |
| 216 | .platform_data = &bfin_spi_flash_data, |
| 217 | .controller_data = &spi_flash_chip_info, |
| 218 | .mode = SPI_MODE_3, |
| 219 | }, |
| 220 | #endif |
| 221 | |
Bob Liu | 1f11a10 | 2011-12-12 10:51:30 +0800 | [diff] [blame] | 222 | #if defined(CONFIG_SND_BF5XX_SOC_AD1836) || \ |
| 223 | defined(CONFIG_SND_BF5XX_SOC_AD1836_MODULE) |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 224 | { |
Bob Liu | 1f11a10 | 2011-12-12 10:51:30 +0800 | [diff] [blame] | 225 | .modalias = "ad1836", |
Cliff Cai | 858c5e9 | 2009-07-22 06:34:55 +0000 | [diff] [blame] | 226 | .max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */ |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 227 | .bus_num = 0, |
Barry Song | 7ba8006 | 2010-01-28 09:37:21 +0000 | [diff] [blame] | 228 | .chip_select = 4, |
| 229 | .platform_data = "ad1836", /* only includes chip name for the moment */ |
Barry Song | 7ba8006 | 2010-01-28 09:37:21 +0000 | [diff] [blame] | 230 | .mode = SPI_MODE_3, |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 231 | }, |
| 232 | #endif |
| 233 | |
Michael Hennerich | 6e66893 | 2008-02-09 01:54:09 +0800 | [diff] [blame] | 234 | #if defined(CONFIG_SPI_SPIDEV) || defined(CONFIG_SPI_SPIDEV_MODULE) |
| 235 | { |
| 236 | .modalias = "spidev", |
| 237 | .max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */ |
| 238 | .bus_num = 0, |
| 239 | .chip_select = 1, |
Michael Hennerich | 6e66893 | 2008-02-09 01:54:09 +0800 | [diff] [blame] | 240 | }, |
| 241 | #endif |
Yi Li | 2120b68 | 2009-07-16 10:12:30 +0000 | [diff] [blame] | 242 | #if defined(CONFIG_MMC_SPI) || defined(CONFIG_MMC_SPI_MODULE) |
| 243 | { |
| 244 | .modalias = "mmc_spi", |
| 245 | .max_speed_hz = 20000000, /* max spi clock (SCK) speed in HZ */ |
| 246 | .bus_num = 0, |
| 247 | .chip_select = 4, |
| 248 | .platform_data = &bfin_mmc_spi_pdata, |
| 249 | .controller_data = &mmc_spi_chip_info, |
| 250 | .mode = SPI_MODE_3, |
| 251 | }, |
| 252 | #endif |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 253 | }; |
| 254 | |
Mike Frysinger | 5bda272 | 2008-06-07 15:03:01 +0800 | [diff] [blame] | 255 | #if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE) |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 256 | /* SPI (0) */ |
| 257 | static struct resource bfin_spi0_resource[] = { |
| 258 | [0] = { |
| 259 | .start = SPI0_REGBASE, |
| 260 | .end = SPI0_REGBASE + 0xFF, |
| 261 | .flags = IORESOURCE_MEM, |
| 262 | }, |
| 263 | [1] = { |
| 264 | .start = CH_SPI, |
| 265 | .end = CH_SPI, |
Yi Li | 5312269 | 2009-06-05 12:11:11 +0000 | [diff] [blame] | 266 | .flags = IORESOURCE_DMA, |
| 267 | }, |
| 268 | [2] = { |
| 269 | .start = IRQ_SPI, |
| 270 | .end = IRQ_SPI, |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 271 | .flags = IORESOURCE_IRQ, |
| 272 | } |
| 273 | }; |
| 274 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 275 | /* SPI controller data */ |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 276 | static struct bfin5xx_spi_master bfin_spi0_info = { |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 277 | .num_chipselect = 8, |
| 278 | .enable_dma = 1, /* master has the ability to do dma transfer */ |
Bryan Wu | 5d448dd | 2007-11-12 23:24:42 +0800 | [diff] [blame] | 279 | .pin_req = {P_SPI0_SCK, P_SPI0_MISO, P_SPI0_MOSI, 0}, |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 280 | }; |
| 281 | |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 282 | static struct platform_device bfin_spi0_device = { |
| 283 | .name = "bfin-spi", |
| 284 | .id = 0, /* Bus number */ |
| 285 | .num_resources = ARRAY_SIZE(bfin_spi0_resource), |
| 286 | .resource = bfin_spi0_resource, |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 287 | .dev = { |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 288 | .platform_data = &bfin_spi0_info, /* Passed to driver */ |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 289 | }, |
| 290 | }; |
| 291 | #endif /* spi master and devices */ |
| 292 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 293 | #if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE) |
Sonic Zhang | 6bd1fbe | 2009-09-09 10:46:19 +0000 | [diff] [blame] | 294 | #ifdef CONFIG_SERIAL_BFIN_UART0 |
| 295 | static struct resource bfin_uart0_resources[] = { |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 296 | { |
Sonic Zhang | 6bd1fbe | 2009-09-09 10:46:19 +0000 | [diff] [blame] | 297 | .start = BFIN_UART_THR, |
| 298 | .end = BFIN_UART_GCTL+2, |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 299 | .flags = IORESOURCE_MEM, |
| 300 | }, |
Sonic Zhang | 6bd1fbe | 2009-09-09 10:46:19 +0000 | [diff] [blame] | 301 | { |
Sonic Zhang | edb0a64 | 2011-08-01 17:53:21 +0800 | [diff] [blame] | 302 | .start = IRQ_UART0_TX, |
| 303 | .end = IRQ_UART0_TX, |
| 304 | .flags = IORESOURCE_IRQ, |
| 305 | }, |
| 306 | { |
Sonic Zhang | 6bd1fbe | 2009-09-09 10:46:19 +0000 | [diff] [blame] | 307 | .start = IRQ_UART0_RX, |
Sonic Zhang | edb0a64 | 2011-08-01 17:53:21 +0800 | [diff] [blame] | 308 | .end = IRQ_UART0_RX, |
Sonic Zhang | 6bd1fbe | 2009-09-09 10:46:19 +0000 | [diff] [blame] | 309 | .flags = IORESOURCE_IRQ, |
| 310 | }, |
| 311 | { |
| 312 | .start = IRQ_UART0_ERROR, |
| 313 | .end = IRQ_UART0_ERROR, |
| 314 | .flags = IORESOURCE_IRQ, |
| 315 | }, |
| 316 | { |
| 317 | .start = CH_UART0_TX, |
| 318 | .end = CH_UART0_TX, |
| 319 | .flags = IORESOURCE_DMA, |
| 320 | }, |
| 321 | { |
| 322 | .start = CH_UART0_RX, |
| 323 | .end = CH_UART0_RX, |
| 324 | .flags = IORESOURCE_DMA, |
| 325 | }, |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 326 | }; |
| 327 | |
Mike Frysinger | a8b1988 | 2010-11-24 09:23:04 +0000 | [diff] [blame] | 328 | static unsigned short bfin_uart0_peripherals[] = { |
Sonic Zhang | 6bd1fbe | 2009-09-09 10:46:19 +0000 | [diff] [blame] | 329 | P_UART0_TX, P_UART0_RX, 0 |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 330 | }; |
Sonic Zhang | 6bd1fbe | 2009-09-09 10:46:19 +0000 | [diff] [blame] | 331 | |
| 332 | static struct platform_device bfin_uart0_device = { |
| 333 | .name = "bfin-uart", |
| 334 | .id = 0, |
| 335 | .num_resources = ARRAY_SIZE(bfin_uart0_resources), |
| 336 | .resource = bfin_uart0_resources, |
| 337 | .dev = { |
| 338 | .platform_data = &bfin_uart0_peripherals, /* Passed to driver */ |
| 339 | }, |
| 340 | }; |
| 341 | #endif |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 342 | #endif |
| 343 | |
Graf Yang | 5be36d2 | 2008-04-25 03:09:15 +0800 | [diff] [blame] | 344 | #if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE) |
Graf Yang | 5be36d2 | 2008-04-25 03:09:15 +0800 | [diff] [blame] | 345 | #ifdef CONFIG_BFIN_SIR0 |
Graf Yang | 42bd8bc | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 346 | static struct resource bfin_sir0_resources[] = { |
Graf Yang | 5be36d2 | 2008-04-25 03:09:15 +0800 | [diff] [blame] | 347 | { |
| 348 | .start = 0xFFC00400, |
| 349 | .end = 0xFFC004FF, |
| 350 | .flags = IORESOURCE_MEM, |
| 351 | }, |
Graf Yang | 42bd8bc | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 352 | { |
| 353 | .start = IRQ_UART0_RX, |
| 354 | .end = IRQ_UART0_RX+1, |
| 355 | .flags = IORESOURCE_IRQ, |
| 356 | }, |
| 357 | { |
| 358 | .start = CH_UART0_RX, |
| 359 | .end = CH_UART0_RX+1, |
| 360 | .flags = IORESOURCE_DMA, |
| 361 | }, |
Graf Yang | 5be36d2 | 2008-04-25 03:09:15 +0800 | [diff] [blame] | 362 | }; |
| 363 | |
Graf Yang | 42bd8bc | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 364 | static struct platform_device bfin_sir0_device = { |
Graf Yang | 5be36d2 | 2008-04-25 03:09:15 +0800 | [diff] [blame] | 365 | .name = "bfin_sir", |
| 366 | .id = 0, |
Graf Yang | 42bd8bc | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 367 | .num_resources = ARRAY_SIZE(bfin_sir0_resources), |
| 368 | .resource = bfin_sir0_resources, |
Graf Yang | 5be36d2 | 2008-04-25 03:09:15 +0800 | [diff] [blame] | 369 | }; |
| 370 | #endif |
Graf Yang | 42bd8bc | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 371 | #endif |
Graf Yang | 5be36d2 | 2008-04-25 03:09:15 +0800 | [diff] [blame] | 372 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 373 | #if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE) |
Sonic Zhang | df5de26 | 2009-09-23 05:01:56 +0000 | [diff] [blame] | 374 | #ifdef CONFIG_SERIAL_BFIN_SPORT0_UART |
| 375 | static struct resource bfin_sport0_uart_resources[] = { |
| 376 | { |
| 377 | .start = SPORT0_TCR1, |
| 378 | .end = SPORT0_MRCS3+4, |
| 379 | .flags = IORESOURCE_MEM, |
| 380 | }, |
| 381 | { |
| 382 | .start = IRQ_SPORT0_RX, |
| 383 | .end = IRQ_SPORT0_RX+1, |
| 384 | .flags = IORESOURCE_IRQ, |
| 385 | }, |
| 386 | { |
| 387 | .start = IRQ_SPORT0_ERROR, |
| 388 | .end = IRQ_SPORT0_ERROR, |
| 389 | .flags = IORESOURCE_IRQ, |
| 390 | }, |
| 391 | }; |
| 392 | |
Mike Frysinger | a8b1988 | 2010-11-24 09:23:04 +0000 | [diff] [blame] | 393 | static unsigned short bfin_sport0_peripherals[] = { |
Sonic Zhang | df5de26 | 2009-09-23 05:01:56 +0000 | [diff] [blame] | 394 | P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS, |
Sonic Zhang | e54b673 | 2010-11-12 02:45:38 +0000 | [diff] [blame] | 395 | P_SPORT0_DRPRI, P_SPORT0_RSCLK, 0 |
Sonic Zhang | df5de26 | 2009-09-23 05:01:56 +0000 | [diff] [blame] | 396 | }; |
| 397 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 398 | static struct platform_device bfin_sport0_uart_device = { |
| 399 | .name = "bfin-sport-uart", |
| 400 | .id = 0, |
Sonic Zhang | df5de26 | 2009-09-23 05:01:56 +0000 | [diff] [blame] | 401 | .num_resources = ARRAY_SIZE(bfin_sport0_uart_resources), |
| 402 | .resource = bfin_sport0_uart_resources, |
| 403 | .dev = { |
| 404 | .platform_data = &bfin_sport0_peripherals, /* Passed to driver */ |
| 405 | }, |
| 406 | }; |
| 407 | #endif |
| 408 | #ifdef CONFIG_SERIAL_BFIN_SPORT1_UART |
| 409 | static struct resource bfin_sport1_uart_resources[] = { |
| 410 | { |
| 411 | .start = SPORT1_TCR1, |
| 412 | .end = SPORT1_MRCS3+4, |
| 413 | .flags = IORESOURCE_MEM, |
| 414 | }, |
| 415 | { |
| 416 | .start = IRQ_SPORT1_RX, |
| 417 | .end = IRQ_SPORT1_RX+1, |
| 418 | .flags = IORESOURCE_IRQ, |
| 419 | }, |
| 420 | { |
| 421 | .start = IRQ_SPORT1_ERROR, |
| 422 | .end = IRQ_SPORT1_ERROR, |
| 423 | .flags = IORESOURCE_IRQ, |
| 424 | }, |
| 425 | }; |
| 426 | |
Mike Frysinger | a8b1988 | 2010-11-24 09:23:04 +0000 | [diff] [blame] | 427 | static unsigned short bfin_sport1_peripherals[] = { |
Sonic Zhang | df5de26 | 2009-09-23 05:01:56 +0000 | [diff] [blame] | 428 | P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS, |
Sonic Zhang | e54b673 | 2010-11-12 02:45:38 +0000 | [diff] [blame] | 429 | P_SPORT1_DRPRI, P_SPORT1_RSCLK, 0 |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 430 | }; |
| 431 | |
| 432 | static struct platform_device bfin_sport1_uart_device = { |
| 433 | .name = "bfin-sport-uart", |
| 434 | .id = 1, |
Sonic Zhang | df5de26 | 2009-09-23 05:01:56 +0000 | [diff] [blame] | 435 | .num_resources = ARRAY_SIZE(bfin_sport1_uart_resources), |
| 436 | .resource = bfin_sport1_uart_resources, |
| 437 | .dev = { |
| 438 | .platform_data = &bfin_sport1_peripherals, /* Passed to driver */ |
| 439 | }, |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 440 | }; |
| 441 | #endif |
Sonic Zhang | df5de26 | 2009-09-23 05:01:56 +0000 | [diff] [blame] | 442 | #endif |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 443 | |
Michael Hennerich | 2463ef2 | 2008-01-27 16:49:48 +0800 | [diff] [blame] | 444 | #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE) |
| 445 | #include <linux/input.h> |
| 446 | #include <linux/gpio_keys.h> |
| 447 | |
| 448 | static struct gpio_keys_button bfin_gpio_keys_table[] = { |
Michael Hennerich | f1bceb4 | 2008-02-02 16:17:52 +0800 | [diff] [blame] | 449 | {BTN_0, GPIO_PF5, 0, "gpio-keys: BTN0"}, |
| 450 | {BTN_1, GPIO_PF6, 0, "gpio-keys: BTN1"}, |
| 451 | {BTN_2, GPIO_PF8, 0, "gpio-keys: BTN2"}, |
Michael Hennerich | 2463ef2 | 2008-01-27 16:49:48 +0800 | [diff] [blame] | 452 | }; |
| 453 | |
| 454 | static struct gpio_keys_platform_data bfin_gpio_keys_data = { |
| 455 | .buttons = bfin_gpio_keys_table, |
| 456 | .nbuttons = ARRAY_SIZE(bfin_gpio_keys_table), |
| 457 | }; |
| 458 | |
| 459 | static struct platform_device bfin_device_gpiokeys = { |
| 460 | .name = "gpio-keys", |
| 461 | .dev = { |
| 462 | .platform_data = &bfin_gpio_keys_data, |
| 463 | }, |
| 464 | }; |
| 465 | #endif |
| 466 | |
Bryan Wu | e316395 | 2008-01-24 16:19:15 +0800 | [diff] [blame] | 467 | #if defined(CONFIG_I2C_GPIO) || defined(CONFIG_I2C_GPIO_MODULE) |
| 468 | #include <linux/i2c-gpio.h> |
| 469 | |
| 470 | static struct i2c_gpio_platform_data i2c_gpio_data = { |
Mike Frysinger | 3d7dc88 | 2010-07-02 21:02:50 +0000 | [diff] [blame] | 471 | .sda_pin = GPIO_PF2, |
| 472 | .scl_pin = GPIO_PF3, |
Bryan Wu | e316395 | 2008-01-24 16:19:15 +0800 | [diff] [blame] | 473 | .sda_is_open_drain = 0, |
| 474 | .scl_is_open_drain = 0, |
| 475 | .udelay = 40, |
| 476 | }; |
| 477 | |
| 478 | static struct platform_device i2c_gpio_device = { |
| 479 | .name = "i2c-gpio", |
| 480 | .id = 0, |
| 481 | .dev = { |
| 482 | .platform_data = &i2c_gpio_data, |
| 483 | }, |
| 484 | }; |
| 485 | #endif |
| 486 | |
Bryan Wu | 81d9c7f | 2008-03-26 10:02:13 +0800 | [diff] [blame] | 487 | static struct i2c_board_info __initdata bfin_i2c_board_info[] = { |
| 488 | #if defined(CONFIG_JOYSTICK_AD7142) || defined(CONFIG_JOYSTICK_AD7142_MODULE) |
| 489 | { |
| 490 | I2C_BOARD_INFO("ad7142_joystick", 0x2C), |
Bryan Wu | 81d9c7f | 2008-03-26 10:02:13 +0800 | [diff] [blame] | 491 | .irq = 39, |
| 492 | }, |
| 493 | #endif |
Michael Hennerich | ebd5833 | 2009-07-02 11:00:38 +0000 | [diff] [blame] | 494 | #if defined(CONFIG_BFIN_TWI_LCD) || defined(CONFIG_BFIN_TWI_LCD_MODULE) |
Bryan Wu | 81d9c7f | 2008-03-26 10:02:13 +0800 | [diff] [blame] | 495 | { |
| 496 | I2C_BOARD_INFO("pcf8574_lcd", 0x22), |
Bryan Wu | 81d9c7f | 2008-03-26 10:02:13 +0800 | [diff] [blame] | 497 | }, |
| 498 | #endif |
Michael Hennerich | 204844e | 2009-06-30 14:57:22 +0000 | [diff] [blame] | 499 | #if defined(CONFIG_INPUT_PCF8574) || defined(CONFIG_INPUT_PCF8574_MODULE) |
Bryan Wu | 81d9c7f | 2008-03-26 10:02:13 +0800 | [diff] [blame] | 500 | { |
| 501 | I2C_BOARD_INFO("pcf8574_keypad", 0x27), |
Bryan Wu | 81d9c7f | 2008-03-26 10:02:13 +0800 | [diff] [blame] | 502 | .irq = 39, |
| 503 | }, |
| 504 | #endif |
Michael Hennerich | 50c4c08 | 2009-09-22 13:10:09 +0000 | [diff] [blame] | 505 | #if defined(CONFIG_FB_BFIN_7393) || defined(CONFIG_FB_BFIN_7393_MODULE) |
| 506 | { |
| 507 | I2C_BOARD_INFO("bfin-adv7393", 0x2B), |
| 508 | }, |
| 509 | #endif |
steven miao | 39d3c1c | 2010-08-26 08:25:13 +0000 | [diff] [blame] | 510 | #if defined(CONFIG_BFIN_TWI_LCD) || defined(CONFIG_BFIN_TWI_LCD_MODULE) |
| 511 | { |
| 512 | I2C_BOARD_INFO("ad5252", 0x2f), |
| 513 | }, |
| 514 | #endif |
Bryan Wu | 81d9c7f | 2008-03-26 10:02:13 +0800 | [diff] [blame] | 515 | }; |
Bryan Wu | 81d9c7f | 2008-03-26 10:02:13 +0800 | [diff] [blame] | 516 | |
Michael Hennerich | 14b0320 | 2008-05-07 11:41:26 +0800 | [diff] [blame] | 517 | static const unsigned int cclk_vlev_datasheet[] = |
| 518 | { |
| 519 | VRPAIR(VLEV_085, 250000000), |
| 520 | VRPAIR(VLEV_090, 376000000), |
| 521 | VRPAIR(VLEV_095, 426000000), |
| 522 | VRPAIR(VLEV_100, 426000000), |
| 523 | VRPAIR(VLEV_105, 476000000), |
| 524 | VRPAIR(VLEV_110, 476000000), |
| 525 | VRPAIR(VLEV_115, 476000000), |
| 526 | VRPAIR(VLEV_120, 600000000), |
| 527 | VRPAIR(VLEV_125, 600000000), |
| 528 | VRPAIR(VLEV_130, 600000000), |
| 529 | }; |
| 530 | |
| 531 | static struct bfin_dpmc_platform_data bfin_dmpc_vreg_data = { |
| 532 | .tuple_tab = cclk_vlev_datasheet, |
| 533 | .tabsize = ARRAY_SIZE(cclk_vlev_datasheet), |
| 534 | .vr_settling_time = 25 /* us */, |
| 535 | }; |
| 536 | |
| 537 | static struct platform_device bfin_dpmc = { |
| 538 | .name = "bfin dpmc", |
| 539 | .dev = { |
| 540 | .platform_data = &bfin_dmpc_vreg_data, |
| 541 | }, |
| 542 | }; |
| 543 | |
Bob Liu | e7da266 | 2011-12-12 10:57:32 +0800 | [diff] [blame^] | 544 | #if defined(CONFIG_SND_BF5XX_I2S) || defined(CONFIG_SND_BF5XX_I2S_MODULE) || \ |
| 545 | defined(CONFIG_SND_BF5XX_TDM) || defined(CONFIG_SND_BF5XX_TDM_MODULE) \ |
| 546 | || defined(CONFIG_SND_BF5XX_AC97) || \ |
| 547 | defined(CONFIG_SND_BF5XX_AC97_MODULE) |
| 548 | |
| 549 | #include <asm/bfin_sport.h> |
| 550 | |
| 551 | #define SPORT_REQ(x) \ |
| 552 | [x] = {P_SPORT##x##_TFS, P_SPORT##x##_DTPRI, P_SPORT##x##_TSCLK, \ |
| 553 | P_SPORT##x##_RFS, P_SPORT##x##_DRPRI, P_SPORT##x##_RSCLK, 0} |
| 554 | |
| 555 | static const u16 bfin_snd_pin[][7] = { |
| 556 | SPORT_REQ(0), |
| 557 | SPORT_REQ(1), |
| 558 | }; |
| 559 | |
| 560 | static struct bfin_snd_platform_data bfin_snd_data[] = { |
| 561 | { |
| 562 | .pin_req = &bfin_snd_pin[0][0], |
| 563 | }, |
| 564 | { |
| 565 | .pin_req = &bfin_snd_pin[1][0], |
| 566 | }, |
| 567 | }; |
| 568 | |
| 569 | #define BFIN_SND_RES(x) \ |
| 570 | [x] = { \ |
| 571 | { \ |
| 572 | .start = SPORT##x##_TCR1, \ |
| 573 | .end = SPORT##x##_TCR1, \ |
| 574 | .flags = IORESOURCE_MEM \ |
| 575 | }, \ |
| 576 | { \ |
| 577 | .start = CH_SPORT##x##_RX, \ |
| 578 | .end = CH_SPORT##x##_RX, \ |
| 579 | .flags = IORESOURCE_DMA, \ |
| 580 | }, \ |
| 581 | { \ |
| 582 | .start = CH_SPORT##x##_TX, \ |
| 583 | .end = CH_SPORT##x##_TX, \ |
| 584 | .flags = IORESOURCE_DMA, \ |
| 585 | }, \ |
| 586 | { \ |
| 587 | .start = IRQ_SPORT##x##_ERROR, \ |
| 588 | .end = IRQ_SPORT##x##_ERROR, \ |
| 589 | .flags = IORESOURCE_IRQ, \ |
| 590 | } \ |
| 591 | } |
| 592 | |
| 593 | static struct resource bfin_snd_resources[][4] = { |
| 594 | BFIN_SND_RES(0), |
| 595 | BFIN_SND_RES(1), |
| 596 | }; |
| 597 | #endif |
| 598 | |
Barry Song | 7e1082b | 2010-01-12 03:59:18 +0000 | [diff] [blame] | 599 | #if defined(CONFIG_SND_BF5XX_I2S) || defined(CONFIG_SND_BF5XX_I2S_MODULE) |
Bob Liu | e7da266 | 2011-12-12 10:57:32 +0800 | [diff] [blame^] | 600 | static struct platform_device bfin_i2s_pcm = { |
| 601 | .name = "bfin-i2s-pcm-audio", |
| 602 | .id = -1, |
Barry Song | 7e1082b | 2010-01-12 03:59:18 +0000 | [diff] [blame] | 603 | }; |
| 604 | #endif |
| 605 | |
| 606 | #if defined(CONFIG_SND_BF5XX_TDM) || defined(CONFIG_SND_BF5XX_TDM_MODULE) |
Bob Liu | e7da266 | 2011-12-12 10:57:32 +0800 | [diff] [blame^] | 607 | static struct platform_device bfin_tdm_pcm = { |
| 608 | .name = "bfin-tdm-pcm-audio", |
| 609 | .id = -1, |
Barry Song | 7e1082b | 2010-01-12 03:59:18 +0000 | [diff] [blame] | 610 | }; |
| 611 | #endif |
| 612 | |
| 613 | #if defined(CONFIG_SND_BF5XX_AC97) || defined(CONFIG_SND_BF5XX_AC97_MODULE) |
Bob Liu | e7da266 | 2011-12-12 10:57:32 +0800 | [diff] [blame^] | 614 | static struct platform_device bfin_ac97_pcm = { |
| 615 | .name = "bfin-ac97-pcm-audio", |
| 616 | .id = -1, |
| 617 | }; |
| 618 | #endif |
| 619 | |
| 620 | #if defined(CONFIG_SND_BF5XX_SOC_AD73311) || \ |
| 621 | defined(CONFIG_SND_BF5XX_SOC_AD73311_MODULE) |
| 622 | static const unsigned ad73311_gpio[] = { |
| 623 | GPIO_PF4, |
| 624 | }; |
| 625 | |
| 626 | static struct platform_device bfin_ad73311_machine = { |
| 627 | .name = "bfin-snd-ad73311", |
| 628 | .id = 1, |
| 629 | .dev = { |
| 630 | .platform_data = (void *)ad73311_gpio, |
| 631 | }, |
| 632 | }; |
| 633 | #endif |
| 634 | |
| 635 | #if defined(CONFIG_SND_SOC_AD73311) || defined(CONFIG_SND_SOC_AD73311_MODULE) |
| 636 | static struct platform_device bfin_ad73311_codec_device = { |
| 637 | .name = "ad73311", |
| 638 | .id = -1, |
| 639 | }; |
| 640 | #endif |
| 641 | |
| 642 | #if defined(CONFIG_SND_SOC_AD74111) || defined(CONFIG_SND_SOC_AD74111_MODULE) |
| 643 | static struct platform_device bfin_ad74111_codec_device = { |
| 644 | .name = "ad74111", |
| 645 | .id = -1, |
| 646 | }; |
| 647 | #endif |
| 648 | |
| 649 | #if defined(CONFIG_SND_BF5XX_SOC_I2S) || \ |
| 650 | defined(CONFIG_SND_BF5XX_SOC_I2S_MODULE) |
| 651 | static struct platform_device bfin_i2s = { |
| 652 | .name = "bfin-i2s", |
| 653 | .id = CONFIG_SND_BF5XX_SPORT_NUM, |
| 654 | .num_resources = |
| 655 | ARRAY_SIZE(bfin_snd_resources[CONFIG_SND_BF5XX_SPORT_NUM]), |
| 656 | .resource = bfin_snd_resources[CONFIG_SND_BF5XX_SPORT_NUM], |
| 657 | .dev = { |
| 658 | .platform_data = &bfin_snd_data[CONFIG_SND_BF5XX_SPORT_NUM], |
| 659 | }, |
| 660 | }; |
| 661 | #endif |
| 662 | |
| 663 | #if defined(CONFIG_SND_BF5XX_SOC_TDM) || \ |
| 664 | defined(CONFIG_SND_BF5XX_SOC_TDM_MODULE) |
| 665 | static struct platform_device bfin_tdm = { |
| 666 | .name = "bfin-tdm", |
| 667 | .id = CONFIG_SND_BF5XX_SPORT_NUM, |
| 668 | .num_resources = |
| 669 | ARRAY_SIZE(bfin_snd_resources[CONFIG_SND_BF5XX_SPORT_NUM]), |
| 670 | .resource = bfin_snd_resources[CONFIG_SND_BF5XX_SPORT_NUM], |
| 671 | .dev = { |
| 672 | .platform_data = &bfin_snd_data[CONFIG_SND_BF5XX_SPORT_NUM], |
| 673 | }, |
| 674 | }; |
| 675 | #endif |
| 676 | |
| 677 | #if defined(CONFIG_SND_BF5XX_SOC_AC97) || \ |
| 678 | defined(CONFIG_SND_BF5XX_SOC_AC97_MODULE) |
Barry Song | 7e1082b | 2010-01-12 03:59:18 +0000 | [diff] [blame] | 679 | static struct platform_device bfin_ac97 = { |
| 680 | .name = "bfin-ac97", |
| 681 | .id = CONFIG_SND_BF5XX_SPORT_NUM, |
Bob Liu | e7da266 | 2011-12-12 10:57:32 +0800 | [diff] [blame^] | 682 | .num_resources = |
| 683 | ARRAY_SIZE(bfin_snd_resources[CONFIG_SND_BF5XX_SPORT_NUM]), |
| 684 | .resource = bfin_snd_resources[CONFIG_SND_BF5XX_SPORT_NUM], |
| 685 | .dev = { |
| 686 | .platform_data = &bfin_snd_data[CONFIG_SND_BF5XX_SPORT_NUM], |
| 687 | }, |
Barry Song | 7e1082b | 2010-01-12 03:59:18 +0000 | [diff] [blame] | 688 | }; |
| 689 | #endif |
| 690 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 691 | static struct platform_device *stamp_devices[] __initdata = { |
Michael Hennerich | 14b0320 | 2008-05-07 11:41:26 +0800 | [diff] [blame] | 692 | |
| 693 | &bfin_dpmc, |
| 694 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 695 | #if defined(CONFIG_RTC_DRV_BFIN) || defined(CONFIG_RTC_DRV_BFIN_MODULE) |
| 696 | &rtc_device, |
| 697 | #endif |
| 698 | |
| 699 | #if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE) |
| 700 | &smc91x_device, |
| 701 | #endif |
| 702 | |
| 703 | #if defined(CONFIG_USB_NET2272) || defined(CONFIG_USB_NET2272_MODULE) |
| 704 | &net2272_bfin_device, |
| 705 | #endif |
| 706 | |
| 707 | #if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE) |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 708 | &bfin_spi0_device, |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 709 | #endif |
| 710 | |
| 711 | #if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE) |
Sonic Zhang | 6bd1fbe | 2009-09-09 10:46:19 +0000 | [diff] [blame] | 712 | #ifdef CONFIG_SERIAL_BFIN_UART0 |
| 713 | &bfin_uart0_device, |
| 714 | #endif |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 715 | #endif |
| 716 | |
Graf Yang | 5be36d2 | 2008-04-25 03:09:15 +0800 | [diff] [blame] | 717 | #if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE) |
Graf Yang | 42bd8bc | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 718 | #ifdef CONFIG_BFIN_SIR0 |
| 719 | &bfin_sir0_device, |
| 720 | #endif |
Graf Yang | 5be36d2 | 2008-04-25 03:09:15 +0800 | [diff] [blame] | 721 | #endif |
| 722 | |
Bob Liu | e7da266 | 2011-12-12 10:57:32 +0800 | [diff] [blame^] | 723 | #if defined(CONFIG_SERIAL_BFIN_SPORT) || \ |
| 724 | defined(CONFIG_SERIAL_BFIN_SPORT_MODULE) |
Sonic Zhang | df5de26 | 2009-09-23 05:01:56 +0000 | [diff] [blame] | 725 | #ifdef CONFIG_SERIAL_BFIN_SPORT0_UART |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 726 | &bfin_sport0_uart_device, |
Sonic Zhang | df5de26 | 2009-09-23 05:01:56 +0000 | [diff] [blame] | 727 | #endif |
| 728 | #ifdef CONFIG_SERIAL_BFIN_SPORT1_UART |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 729 | &bfin_sport1_uart_device, |
| 730 | #endif |
Sonic Zhang | df5de26 | 2009-09-23 05:01:56 +0000 | [diff] [blame] | 731 | #endif |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 732 | |
Michael Hennerich | 2463ef2 | 2008-01-27 16:49:48 +0800 | [diff] [blame] | 733 | #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE) |
| 734 | &bfin_device_gpiokeys, |
| 735 | #endif |
Bryan Wu | e316395 | 2008-01-24 16:19:15 +0800 | [diff] [blame] | 736 | |
| 737 | #if defined(CONFIG_I2C_GPIO) || defined(CONFIG_I2C_GPIO_MODULE) |
| 738 | &i2c_gpio_device, |
| 739 | #endif |
Mike Frysinger | cad2ab6 | 2008-02-22 17:01:31 +0800 | [diff] [blame] | 740 | |
Mike Frysinger | 9cd9c61 | 2008-05-13 12:31:32 +0800 | [diff] [blame] | 741 | #if defined(CONFIG_MTD_BFIN_ASYNC) || defined(CONFIG_MTD_BFIN_ASYNC_MODULE) |
Mike Frysinger | de8c43f | 2008-01-24 17:14:04 +0800 | [diff] [blame] | 742 | &stamp_flash_device, |
Mike Frysinger | 793dc27 | 2008-03-26 08:09:12 +0800 | [diff] [blame] | 743 | #endif |
Barry Song | 7e1082b | 2010-01-12 03:59:18 +0000 | [diff] [blame] | 744 | |
| 745 | #if defined(CONFIG_SND_BF5XX_I2S) || defined(CONFIG_SND_BF5XX_I2S_MODULE) |
Bob Liu | e7da266 | 2011-12-12 10:57:32 +0800 | [diff] [blame^] | 746 | &bfin_i2s_pcm, |
Barry Song | 7e1082b | 2010-01-12 03:59:18 +0000 | [diff] [blame] | 747 | #endif |
| 748 | |
| 749 | #if defined(CONFIG_SND_BF5XX_TDM) || defined(CONFIG_SND_BF5XX_TDM_MODULE) |
Bob Liu | e7da266 | 2011-12-12 10:57:32 +0800 | [diff] [blame^] | 750 | &bfin_tdm_pcm, |
Barry Song | 7e1082b | 2010-01-12 03:59:18 +0000 | [diff] [blame] | 751 | #endif |
| 752 | |
| 753 | #if defined(CONFIG_SND_BF5XX_AC97) || defined(CONFIG_SND_BF5XX_AC97_MODULE) |
Bob Liu | e7da266 | 2011-12-12 10:57:32 +0800 | [diff] [blame^] | 754 | &bfin_ac97_pcm, |
| 755 | #endif |
| 756 | |
| 757 | #if defined(CONFIG_SND_BF5XX_SOC_AD73311) || \ |
| 758 | defined(CONFIG_SND_BF5XX_SOC_AD73311_MODULE) |
| 759 | &bfin_ad73311_machine, |
| 760 | #endif |
| 761 | |
| 762 | #if defined(CONFIG_SND_SOC_AD73311) || defined(CONFIG_SND_SOC_AD73311_MODULE) |
| 763 | &bfin_ad73311_codec_device, |
| 764 | #endif |
| 765 | |
| 766 | #if defined(CONFIG_SND_SOC_AD74111) || defined(CONFIG_SND_SOC_AD74111_MODULE) |
| 767 | &bfin_ad74111_codec_device, |
| 768 | #endif |
| 769 | |
| 770 | #if defined(CONFIG_SND_BF5XX_SOC_I2S) || \ |
| 771 | defined(CONFIG_SND_BF5XX_SOC_I2S_MODULE) |
| 772 | &bfin_i2s, |
| 773 | #endif |
| 774 | |
| 775 | #if defined(CONFIG_SND_BF5XX_SOC_TDM) || \ |
| 776 | defined(CONFIG_SND_BF5XX_SOC_TDM_MODULE) |
| 777 | &bfin_tdm, |
| 778 | #endif |
| 779 | |
| 780 | #if defined(CONFIG_SND_BF5XX_SOC_AC97) || \ |
| 781 | defined(CONFIG_SND_BF5XX_SOC_AC97_MODULE) |
Barry Song | 7e1082b | 2010-01-12 03:59:18 +0000 | [diff] [blame] | 782 | &bfin_ac97, |
| 783 | #endif |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 784 | }; |
| 785 | |
Mike Frysinger | 9be8631 | 2011-05-04 11:20:15 -0400 | [diff] [blame] | 786 | static int __init net2272_init(void) |
| 787 | { |
| 788 | #if defined(CONFIG_USB_NET2272) || defined(CONFIG_USB_NET2272_MODULE) |
| 789 | int ret; |
| 790 | |
| 791 | /* Set PF0 to 0, PF1 to 1 make /AMS3 work properly */ |
| 792 | ret = gpio_request(GPIO_PF0, "net2272"); |
| 793 | if (ret) |
| 794 | return ret; |
| 795 | |
| 796 | ret = gpio_request(GPIO_PF1, "net2272"); |
| 797 | if (ret) { |
| 798 | gpio_free(GPIO_PF0); |
| 799 | return ret; |
| 800 | } |
| 801 | |
| 802 | ret = gpio_request(GPIO_PF11, "net2272"); |
| 803 | if (ret) { |
| 804 | gpio_free(GPIO_PF0); |
| 805 | gpio_free(GPIO_PF1); |
| 806 | return ret; |
| 807 | } |
| 808 | |
| 809 | gpio_direction_output(GPIO_PF0, 0); |
| 810 | gpio_direction_output(GPIO_PF1, 1); |
| 811 | |
| 812 | /* Reset the USB chip */ |
| 813 | gpio_direction_output(GPIO_PF11, 0); |
| 814 | mdelay(2); |
| 815 | gpio_set_value(GPIO_PF11, 1); |
| 816 | #endif |
| 817 | |
| 818 | return 0; |
| 819 | } |
| 820 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 821 | static int __init stamp_init(void) |
| 822 | { |
Mike Frysinger | c0fc525 | 2007-05-21 18:09:25 +0800 | [diff] [blame] | 823 | int ret; |
| 824 | |
Harvey Harrison | b85d858 | 2008-04-23 09:39:01 +0800 | [diff] [blame] | 825 | printk(KERN_INFO "%s(): registering device resources\n", __func__); |
Bryan Wu | 81d9c7f | 2008-03-26 10:02:13 +0800 | [diff] [blame] | 826 | |
Bryan Wu | 81d9c7f | 2008-03-26 10:02:13 +0800 | [diff] [blame] | 827 | i2c_register_board_info(0, bfin_i2c_board_info, |
| 828 | ARRAY_SIZE(bfin_i2c_board_info)); |
Bryan Wu | 81d9c7f | 2008-03-26 10:02:13 +0800 | [diff] [blame] | 829 | |
Mike Frysinger | c0fc525 | 2007-05-21 18:09:25 +0800 | [diff] [blame] | 830 | ret = platform_add_devices(stamp_devices, ARRAY_SIZE(stamp_devices)); |
| 831 | if (ret < 0) |
| 832 | return ret; |
| 833 | |
| 834 | #if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE) |
Mike Frysinger | 30e9b95 | 2010-10-26 21:30:29 -0400 | [diff] [blame] | 835 | /* |
| 836 | * setup BF533_STAMP CPLD to route AMS3 to Ethernet MAC. |
| 837 | * the bfin-async-map driver takes care of flipping between |
| 838 | * flash and ethernet when necessary. |
| 839 | */ |
| 840 | ret = gpio_request(GPIO_PF0, "enet_cpld"); |
| 841 | if (!ret) { |
| 842 | gpio_direction_output(GPIO_PF0, 1); |
| 843 | gpio_free(GPIO_PF0); |
| 844 | } |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 845 | #endif |
Mike Frysinger | c0fc525 | 2007-05-21 18:09:25 +0800 | [diff] [blame] | 846 | |
Mike Frysinger | 9be8631 | 2011-05-04 11:20:15 -0400 | [diff] [blame] | 847 | if (net2272_init()) |
| 848 | pr_warning("unable to configure net2272; it probably won't work\n"); |
| 849 | |
Mike Frysinger | 5bda272 | 2008-06-07 15:03:01 +0800 | [diff] [blame] | 850 | spi_register_board_info(bfin_spi_board_info, ARRAY_SIZE(bfin_spi_board_info)); |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 851 | return 0; |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 852 | } |
| 853 | |
| 854 | arch_initcall(stamp_init); |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 855 | |
Sonic Zhang | c13ce9f | 2009-09-23 09:37:46 +0000 | [diff] [blame] | 856 | static struct platform_device *stamp_early_devices[] __initdata = { |
| 857 | #if defined(CONFIG_SERIAL_BFIN_CONSOLE) || defined(CONFIG_EARLY_PRINTK) |
| 858 | #ifdef CONFIG_SERIAL_BFIN_UART0 |
| 859 | &bfin_uart0_device, |
| 860 | #endif |
| 861 | #endif |
| 862 | |
| 863 | #if defined(CONFIG_SERIAL_BFIN_SPORT_CONSOLE) |
| 864 | #ifdef CONFIG_SERIAL_BFIN_SPORT0_UART |
| 865 | &bfin_sport0_uart_device, |
| 866 | #endif |
| 867 | #ifdef CONFIG_SERIAL_BFIN_SPORT1_UART |
| 868 | &bfin_sport1_uart_device, |
| 869 | #endif |
| 870 | #endif |
| 871 | }; |
| 872 | |
| 873 | void __init native_machine_early_platform_add_devices(void) |
| 874 | { |
| 875 | printk(KERN_INFO "register early platform devices\n"); |
| 876 | early_platform_add_devices(stamp_early_devices, |
| 877 | ARRAY_SIZE(stamp_early_devices)); |
| 878 | } |
| 879 | |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 880 | void native_machine_restart(char *cmd) |
| 881 | { |
Mike Frysinger | 9cd9c61 | 2008-05-13 12:31:32 +0800 | [diff] [blame] | 882 | /* workaround pull up on cpld / flash pin not being strong enough */ |
Mike Frysinger | 30e9b95 | 2010-10-26 21:30:29 -0400 | [diff] [blame] | 883 | gpio_request(GPIO_PF0, "flash_cpld"); |
| 884 | gpio_direction_output(GPIO_PF0, 0); |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 885 | } |