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 | }, { |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 83 | .start = IRQ_PF10, |
| 84 | .end = IRQ_PF10, |
| 85 | .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL, |
| 86 | }, |
| 87 | }; |
| 88 | |
| 89 | static struct platform_device net2272_bfin_device = { |
| 90 | .name = "net2272", |
| 91 | .id = -1, |
| 92 | .num_resources = ARRAY_SIZE(net2272_bfin_resources), |
| 93 | .resource = net2272_bfin_resources, |
| 94 | }; |
| 95 | #endif |
| 96 | |
Mike Frysinger | 9cd9c61 | 2008-05-13 12:31:32 +0800 | [diff] [blame] | 97 | #if defined(CONFIG_MTD_BFIN_ASYNC) || defined(CONFIG_MTD_BFIN_ASYNC_MODULE) |
Mike Frysinger | de8c43f | 2008-01-24 17:14:04 +0800 | [diff] [blame] | 98 | static struct mtd_partition stamp_partitions[] = { |
| 99 | { |
Robin Getz | aa58297 | 2008-08-05 17:47:29 +0800 | [diff] [blame] | 100 | .name = "bootloader(nor)", |
Mike Frysinger | edf0564 | 2008-02-25 11:38:11 +0800 | [diff] [blame] | 101 | .size = 0x40000, |
Mike Frysinger | de8c43f | 2008-01-24 17:14:04 +0800 | [diff] [blame] | 102 | .offset = 0, |
| 103 | }, { |
Robin Getz | aa58297 | 2008-08-05 17:47:29 +0800 | [diff] [blame] | 104 | .name = "linux kernel(nor)", |
Grace Pan | 6ecb5b6 | 2009-01-07 23:14:38 +0800 | [diff] [blame] | 105 | .size = 0x180000, |
Mike Frysinger | de8c43f | 2008-01-24 17:14:04 +0800 | [diff] [blame] | 106 | .offset = MTDPART_OFS_APPEND, |
| 107 | }, { |
Robin Getz | aa58297 | 2008-08-05 17:47:29 +0800 | [diff] [blame] | 108 | .name = "file system(nor)", |
Mike Frysinger | de8c43f | 2008-01-24 17:14:04 +0800 | [diff] [blame] | 109 | .size = MTDPART_SIZ_FULL, |
| 110 | .offset = MTDPART_OFS_APPEND, |
| 111 | } |
| 112 | }; |
| 113 | |
| 114 | static struct physmap_flash_data stamp_flash_data = { |
| 115 | .width = 2, |
| 116 | .parts = stamp_partitions, |
| 117 | .nr_parts = ARRAY_SIZE(stamp_partitions), |
| 118 | }; |
| 119 | |
| 120 | static struct resource stamp_flash_resource[] = { |
| 121 | { |
| 122 | .name = "cfi_probe", |
| 123 | .start = 0x20000000, |
| 124 | .end = 0x203fffff, |
| 125 | .flags = IORESOURCE_MEM, |
| 126 | }, { |
Mike Frysinger | 9cd9c61 | 2008-05-13 12:31:32 +0800 | [diff] [blame] | 127 | .start = 0x7BB07BB0, /* AMBCTL0 setting when accessing flash */ |
| 128 | .end = 0x7BB07BB0, /* AMBCTL1 setting when accessing flash */ |
| 129 | .flags = IORESOURCE_MEM, |
| 130 | }, { |
| 131 | .start = GPIO_PF0, |
Mike Frysinger | de8c43f | 2008-01-24 17:14:04 +0800 | [diff] [blame] | 132 | .flags = IORESOURCE_IRQ, |
| 133 | } |
| 134 | }; |
| 135 | |
| 136 | static struct platform_device stamp_flash_device = { |
Mike Frysinger | 9cd9c61 | 2008-05-13 12:31:32 +0800 | [diff] [blame] | 137 | .name = "bfin-async-flash", |
Mike Frysinger | de8c43f | 2008-01-24 17:14:04 +0800 | [diff] [blame] | 138 | .id = 0, |
| 139 | .dev = { |
| 140 | .platform_data = &stamp_flash_data, |
| 141 | }, |
| 142 | .num_resources = ARRAY_SIZE(stamp_flash_resource), |
| 143 | .resource = stamp_flash_resource, |
| 144 | }; |
Mike Frysinger | 793dc27 | 2008-03-26 08:09:12 +0800 | [diff] [blame] | 145 | #endif |
Mike Frysinger | de8c43f | 2008-01-24 17:14:04 +0800 | [diff] [blame] | 146 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 147 | #if defined(CONFIG_MTD_M25P80) || defined(CONFIG_MTD_M25P80_MODULE) |
| 148 | static struct mtd_partition bfin_spi_flash_partitions[] = { |
| 149 | { |
Robin Getz | aa58297 | 2008-08-05 17:47:29 +0800 | [diff] [blame] | 150 | .name = "bootloader(spi)", |
Mike Frysinger | edf0564 | 2008-02-25 11:38:11 +0800 | [diff] [blame] | 151 | .size = 0x00040000, |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 152 | .offset = 0, |
| 153 | .mask_flags = MTD_CAP_ROM |
Mike Frysinger | 1f83b8f | 2007-07-12 22:58:21 +0800 | [diff] [blame] | 154 | }, { |
Robin Getz | aa58297 | 2008-08-05 17:47:29 +0800 | [diff] [blame] | 155 | .name = "linux kernel(spi)", |
Grace Pan | 6ecb5b6 | 2009-01-07 23:14:38 +0800 | [diff] [blame] | 156 | .size = 0x180000, |
Mike Frysinger | edf0564 | 2008-02-25 11:38:11 +0800 | [diff] [blame] | 157 | .offset = MTDPART_OFS_APPEND, |
Mike Frysinger | 1f83b8f | 2007-07-12 22:58:21 +0800 | [diff] [blame] | 158 | }, { |
Robin Getz | aa58297 | 2008-08-05 17:47:29 +0800 | [diff] [blame] | 159 | .name = "file system(spi)", |
Mike Frysinger | edf0564 | 2008-02-25 11:38:11 +0800 | [diff] [blame] | 160 | .size = MTDPART_SIZ_FULL, |
| 161 | .offset = MTDPART_OFS_APPEND, |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 162 | } |
| 163 | }; |
| 164 | |
| 165 | static struct flash_platform_data bfin_spi_flash_data = { |
| 166 | .name = "m25p80", |
| 167 | .parts = bfin_spi_flash_partitions, |
| 168 | .nr_parts = ARRAY_SIZE(bfin_spi_flash_partitions), |
| 169 | .type = "m25p64", |
| 170 | }; |
| 171 | |
| 172 | /* SPI flash chip (m25p64) */ |
| 173 | static struct bfin5xx_spi_chip spi_flash_chip_info = { |
| 174 | .enable_dma = 0, /* use dma transfer with this chip*/ |
| 175 | .bits_per_word = 8, |
| 176 | }; |
| 177 | #endif |
| 178 | |
Mike Frysinger | a261eec | 2009-05-20 14:05:36 +0000 | [diff] [blame] | 179 | #if defined(CONFIG_BFIN_SPI_ADC) || defined(CONFIG_BFIN_SPI_ADC_MODULE) |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 180 | /* SPI ADC chip */ |
| 181 | static struct bfin5xx_spi_chip spi_adc_chip_info = { |
| 182 | .enable_dma = 1, /* use dma transfer with this chip*/ |
| 183 | .bits_per_word = 16, |
| 184 | }; |
| 185 | #endif |
| 186 | |
Barry Song | d40bd71 | 2010-02-22 10:31:06 +0000 | [diff] [blame^] | 187 | #if defined(CONFIG_SND_BLACKFIN_AD183X) || defined(CONFIG_SND_BLACKFIN_AD183X_MODULE) |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 188 | static struct bfin5xx_spi_chip ad1836_spi_chip_info = { |
| 189 | .enable_dma = 0, |
| 190 | .bits_per_word = 16, |
| 191 | }; |
| 192 | #endif |
| 193 | |
Michael Hennerich | 6e66893 | 2008-02-09 01:54:09 +0800 | [diff] [blame] | 194 | #if defined(CONFIG_SPI_SPIDEV) || defined(CONFIG_SPI_SPIDEV_MODULE) |
| 195 | static struct bfin5xx_spi_chip spidev_chip_info = { |
| 196 | .enable_dma = 0, |
| 197 | .bits_per_word = 8, |
| 198 | }; |
| 199 | #endif |
| 200 | |
Yi Li | 2120b68 | 2009-07-16 10:12:30 +0000 | [diff] [blame] | 201 | #if defined(CONFIG_MMC_SPI) || defined(CONFIG_MMC_SPI_MODULE) |
| 202 | #define MMC_SPI_CARD_DETECT_INT IRQ_PF5 |
| 203 | static int bfin_mmc_spi_init(struct device *dev, |
| 204 | irqreturn_t (*detect_int)(int, void *), void *data) |
| 205 | { |
| 206 | return request_irq(MMC_SPI_CARD_DETECT_INT, detect_int, |
| 207 | IRQF_TRIGGER_FALLING | IRQF_TRIGGER_RISING, |
| 208 | "mmc-spi-detect", data); |
| 209 | } |
| 210 | |
| 211 | static void bfin_mmc_spi_exit(struct device *dev, void *data) |
| 212 | { |
| 213 | free_irq(MMC_SPI_CARD_DETECT_INT, data); |
| 214 | } |
| 215 | |
| 216 | static struct mmc_spi_platform_data bfin_mmc_spi_pdata = { |
| 217 | .init = bfin_mmc_spi_init, |
| 218 | .exit = bfin_mmc_spi_exit, |
| 219 | .detect_delay = 100, /* msecs */ |
| 220 | }; |
| 221 | |
| 222 | static struct bfin5xx_spi_chip mmc_spi_chip_info = { |
| 223 | .enable_dma = 0, |
| 224 | .bits_per_word = 8, |
| 225 | .pio_interrupt = 0, |
| 226 | }; |
| 227 | #endif |
| 228 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 229 | static struct spi_board_info bfin_spi_board_info[] __initdata = { |
| 230 | #if defined(CONFIG_MTD_M25P80) || defined(CONFIG_MTD_M25P80_MODULE) |
| 231 | { |
| 232 | /* the modalias must be the same as spi device driver name */ |
| 233 | .modalias = "m25p80", /* Name of spi_driver for this device */ |
| 234 | .max_speed_hz = 25000000, /* max spi clock (SCK) speed in HZ */ |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 235 | .bus_num = 0, /* Framework bus number */ |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 236 | .chip_select = 2, /* Framework chip select. On STAMP537 it is SPISSEL2*/ |
| 237 | .platform_data = &bfin_spi_flash_data, |
| 238 | .controller_data = &spi_flash_chip_info, |
| 239 | .mode = SPI_MODE_3, |
| 240 | }, |
| 241 | #endif |
| 242 | |
Mike Frysinger | a261eec | 2009-05-20 14:05:36 +0000 | [diff] [blame] | 243 | #if defined(CONFIG_BFIN_SPI_ADC) || defined(CONFIG_BFIN_SPI_ADC_MODULE) |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 244 | { |
| 245 | .modalias = "bfin_spi_adc", /* Name of spi_driver for this device */ |
| 246 | .max_speed_hz = 6250000, /* max spi clock (SCK) speed in HZ */ |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 247 | .bus_num = 0, /* Framework bus number */ |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 248 | .chip_select = 1, /* Framework chip select. */ |
| 249 | .platform_data = NULL, /* No spi_driver specific config */ |
| 250 | .controller_data = &spi_adc_chip_info, |
| 251 | }, |
| 252 | #endif |
| 253 | |
Barry Song | d40bd71 | 2010-02-22 10:31:06 +0000 | [diff] [blame^] | 254 | #if defined(CONFIG_SND_BLACKFIN_AD183X) || defined(CONFIG_SND_BLACKFIN_AD183X_MODULE) |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 255 | { |
Barry Song | dac9817 | 2009-08-13 21:07:37 +0000 | [diff] [blame] | 256 | .modalias = "ad1836", |
Cliff Cai | 858c5e9 | 2009-07-22 06:34:55 +0000 | [diff] [blame] | 257 | .max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */ |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 258 | .bus_num = 0, |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 259 | .chip_select = CONFIG_SND_BLACKFIN_SPI_PFBIT, |
| 260 | .controller_data = &ad1836_spi_chip_info, |
| 261 | }, |
| 262 | #endif |
| 263 | |
Michael Hennerich | 6e66893 | 2008-02-09 01:54:09 +0800 | [diff] [blame] | 264 | #if defined(CONFIG_SPI_SPIDEV) || defined(CONFIG_SPI_SPIDEV_MODULE) |
| 265 | { |
| 266 | .modalias = "spidev", |
| 267 | .max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */ |
| 268 | .bus_num = 0, |
| 269 | .chip_select = 1, |
| 270 | .controller_data = &spidev_chip_info, |
| 271 | }, |
| 272 | #endif |
Yi Li | 2120b68 | 2009-07-16 10:12:30 +0000 | [diff] [blame] | 273 | #if defined(CONFIG_MMC_SPI) || defined(CONFIG_MMC_SPI_MODULE) |
| 274 | { |
| 275 | .modalias = "mmc_spi", |
| 276 | .max_speed_hz = 20000000, /* max spi clock (SCK) speed in HZ */ |
| 277 | .bus_num = 0, |
| 278 | .chip_select = 4, |
| 279 | .platform_data = &bfin_mmc_spi_pdata, |
| 280 | .controller_data = &mmc_spi_chip_info, |
| 281 | .mode = SPI_MODE_3, |
| 282 | }, |
| 283 | #endif |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 284 | }; |
| 285 | |
Mike Frysinger | 5bda272 | 2008-06-07 15:03:01 +0800 | [diff] [blame] | 286 | #if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE) |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 287 | /* SPI (0) */ |
| 288 | static struct resource bfin_spi0_resource[] = { |
| 289 | [0] = { |
| 290 | .start = SPI0_REGBASE, |
| 291 | .end = SPI0_REGBASE + 0xFF, |
| 292 | .flags = IORESOURCE_MEM, |
| 293 | }, |
| 294 | [1] = { |
| 295 | .start = CH_SPI, |
| 296 | .end = CH_SPI, |
Yi Li | 5312269 | 2009-06-05 12:11:11 +0000 | [diff] [blame] | 297 | .flags = IORESOURCE_DMA, |
| 298 | }, |
| 299 | [2] = { |
| 300 | .start = IRQ_SPI, |
| 301 | .end = IRQ_SPI, |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 302 | .flags = IORESOURCE_IRQ, |
| 303 | } |
| 304 | }; |
| 305 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 306 | /* SPI controller data */ |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 307 | static struct bfin5xx_spi_master bfin_spi0_info = { |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 308 | .num_chipselect = 8, |
| 309 | .enable_dma = 1, /* master has the ability to do dma transfer */ |
Bryan Wu | 5d448dd | 2007-11-12 23:24:42 +0800 | [diff] [blame] | 310 | .pin_req = {P_SPI0_SCK, P_SPI0_MISO, P_SPI0_MOSI, 0}, |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 311 | }; |
| 312 | |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 313 | static struct platform_device bfin_spi0_device = { |
| 314 | .name = "bfin-spi", |
| 315 | .id = 0, /* Bus number */ |
| 316 | .num_resources = ARRAY_SIZE(bfin_spi0_resource), |
| 317 | .resource = bfin_spi0_resource, |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 318 | .dev = { |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 319 | .platform_data = &bfin_spi0_info, /* Passed to driver */ |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 320 | }, |
| 321 | }; |
| 322 | #endif /* spi master and devices */ |
| 323 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 324 | #if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE) |
Sonic Zhang | 6bd1fbe | 2009-09-09 10:46:19 +0000 | [diff] [blame] | 325 | #ifdef CONFIG_SERIAL_BFIN_UART0 |
| 326 | static struct resource bfin_uart0_resources[] = { |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 327 | { |
Sonic Zhang | 6bd1fbe | 2009-09-09 10:46:19 +0000 | [diff] [blame] | 328 | .start = BFIN_UART_THR, |
| 329 | .end = BFIN_UART_GCTL+2, |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 330 | .flags = IORESOURCE_MEM, |
| 331 | }, |
Sonic Zhang | 6bd1fbe | 2009-09-09 10:46:19 +0000 | [diff] [blame] | 332 | { |
| 333 | .start = IRQ_UART0_RX, |
| 334 | .end = IRQ_UART0_RX + 1, |
| 335 | .flags = IORESOURCE_IRQ, |
| 336 | }, |
| 337 | { |
| 338 | .start = IRQ_UART0_ERROR, |
| 339 | .end = IRQ_UART0_ERROR, |
| 340 | .flags = IORESOURCE_IRQ, |
| 341 | }, |
| 342 | { |
| 343 | .start = CH_UART0_TX, |
| 344 | .end = CH_UART0_TX, |
| 345 | .flags = IORESOURCE_DMA, |
| 346 | }, |
| 347 | { |
| 348 | .start = CH_UART0_RX, |
| 349 | .end = CH_UART0_RX, |
| 350 | .flags = IORESOURCE_DMA, |
| 351 | }, |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 352 | }; |
| 353 | |
Sonic Zhang | 6bd1fbe | 2009-09-09 10:46:19 +0000 | [diff] [blame] | 354 | unsigned short bfin_uart0_peripherals[] = { |
| 355 | P_UART0_TX, P_UART0_RX, 0 |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 356 | }; |
Sonic Zhang | 6bd1fbe | 2009-09-09 10:46:19 +0000 | [diff] [blame] | 357 | |
| 358 | static struct platform_device bfin_uart0_device = { |
| 359 | .name = "bfin-uart", |
| 360 | .id = 0, |
| 361 | .num_resources = ARRAY_SIZE(bfin_uart0_resources), |
| 362 | .resource = bfin_uart0_resources, |
| 363 | .dev = { |
| 364 | .platform_data = &bfin_uart0_peripherals, /* Passed to driver */ |
| 365 | }, |
| 366 | }; |
| 367 | #endif |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 368 | #endif |
| 369 | |
Graf Yang | 5be36d2 | 2008-04-25 03:09:15 +0800 | [diff] [blame] | 370 | #if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE) |
Graf Yang | 5be36d2 | 2008-04-25 03:09:15 +0800 | [diff] [blame] | 371 | #ifdef CONFIG_BFIN_SIR0 |
Graf Yang | 42bd8bc | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 372 | static struct resource bfin_sir0_resources[] = { |
Graf Yang | 5be36d2 | 2008-04-25 03:09:15 +0800 | [diff] [blame] | 373 | { |
| 374 | .start = 0xFFC00400, |
| 375 | .end = 0xFFC004FF, |
| 376 | .flags = IORESOURCE_MEM, |
| 377 | }, |
Graf Yang | 42bd8bc | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 378 | { |
| 379 | .start = IRQ_UART0_RX, |
| 380 | .end = IRQ_UART0_RX+1, |
| 381 | .flags = IORESOURCE_IRQ, |
| 382 | }, |
| 383 | { |
| 384 | .start = CH_UART0_RX, |
| 385 | .end = CH_UART0_RX+1, |
| 386 | .flags = IORESOURCE_DMA, |
| 387 | }, |
Graf Yang | 5be36d2 | 2008-04-25 03:09:15 +0800 | [diff] [blame] | 388 | }; |
| 389 | |
Graf Yang | 42bd8bc | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 390 | static struct platform_device bfin_sir0_device = { |
Graf Yang | 5be36d2 | 2008-04-25 03:09:15 +0800 | [diff] [blame] | 391 | .name = "bfin_sir", |
| 392 | .id = 0, |
Graf Yang | 42bd8bc | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 393 | .num_resources = ARRAY_SIZE(bfin_sir0_resources), |
| 394 | .resource = bfin_sir0_resources, |
Graf Yang | 5be36d2 | 2008-04-25 03:09:15 +0800 | [diff] [blame] | 395 | }; |
| 396 | #endif |
Graf Yang | 42bd8bc | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 397 | #endif |
Graf Yang | 5be36d2 | 2008-04-25 03:09:15 +0800 | [diff] [blame] | 398 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 399 | #if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE) |
Sonic Zhang | df5de26 | 2009-09-23 05:01:56 +0000 | [diff] [blame] | 400 | #ifdef CONFIG_SERIAL_BFIN_SPORT0_UART |
| 401 | static struct resource bfin_sport0_uart_resources[] = { |
| 402 | { |
| 403 | .start = SPORT0_TCR1, |
| 404 | .end = SPORT0_MRCS3+4, |
| 405 | .flags = IORESOURCE_MEM, |
| 406 | }, |
| 407 | { |
| 408 | .start = IRQ_SPORT0_RX, |
| 409 | .end = IRQ_SPORT0_RX+1, |
| 410 | .flags = IORESOURCE_IRQ, |
| 411 | }, |
| 412 | { |
| 413 | .start = IRQ_SPORT0_ERROR, |
| 414 | .end = IRQ_SPORT0_ERROR, |
| 415 | .flags = IORESOURCE_IRQ, |
| 416 | }, |
| 417 | }; |
| 418 | |
| 419 | unsigned short bfin_sport0_peripherals[] = { |
| 420 | P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS, |
| 421 | P_SPORT0_DRPRI, P_SPORT0_RSCLK, P_SPORT0_DRSEC, P_SPORT0_DTSEC, 0 |
| 422 | }; |
| 423 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 424 | static struct platform_device bfin_sport0_uart_device = { |
| 425 | .name = "bfin-sport-uart", |
| 426 | .id = 0, |
Sonic Zhang | df5de26 | 2009-09-23 05:01:56 +0000 | [diff] [blame] | 427 | .num_resources = ARRAY_SIZE(bfin_sport0_uart_resources), |
| 428 | .resource = bfin_sport0_uart_resources, |
| 429 | .dev = { |
| 430 | .platform_data = &bfin_sport0_peripherals, /* Passed to driver */ |
| 431 | }, |
| 432 | }; |
| 433 | #endif |
| 434 | #ifdef CONFIG_SERIAL_BFIN_SPORT1_UART |
| 435 | static struct resource bfin_sport1_uart_resources[] = { |
| 436 | { |
| 437 | .start = SPORT1_TCR1, |
| 438 | .end = SPORT1_MRCS3+4, |
| 439 | .flags = IORESOURCE_MEM, |
| 440 | }, |
| 441 | { |
| 442 | .start = IRQ_SPORT1_RX, |
| 443 | .end = IRQ_SPORT1_RX+1, |
| 444 | .flags = IORESOURCE_IRQ, |
| 445 | }, |
| 446 | { |
| 447 | .start = IRQ_SPORT1_ERROR, |
| 448 | .end = IRQ_SPORT1_ERROR, |
| 449 | .flags = IORESOURCE_IRQ, |
| 450 | }, |
| 451 | }; |
| 452 | |
| 453 | unsigned short bfin_sport1_peripherals[] = { |
| 454 | P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS, |
| 455 | P_SPORT1_DRPRI, P_SPORT1_RSCLK, P_SPORT1_DRSEC, P_SPORT1_DTSEC, 0 |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 456 | }; |
| 457 | |
| 458 | static struct platform_device bfin_sport1_uart_device = { |
| 459 | .name = "bfin-sport-uart", |
| 460 | .id = 1, |
Sonic Zhang | df5de26 | 2009-09-23 05:01:56 +0000 | [diff] [blame] | 461 | .num_resources = ARRAY_SIZE(bfin_sport1_uart_resources), |
| 462 | .resource = bfin_sport1_uart_resources, |
| 463 | .dev = { |
| 464 | .platform_data = &bfin_sport1_peripherals, /* Passed to driver */ |
| 465 | }, |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 466 | }; |
| 467 | #endif |
Sonic Zhang | df5de26 | 2009-09-23 05:01:56 +0000 | [diff] [blame] | 468 | #endif |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 469 | |
Michael Hennerich | 2463ef2 | 2008-01-27 16:49:48 +0800 | [diff] [blame] | 470 | #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE) |
| 471 | #include <linux/input.h> |
| 472 | #include <linux/gpio_keys.h> |
| 473 | |
| 474 | static struct gpio_keys_button bfin_gpio_keys_table[] = { |
Michael Hennerich | f1bceb4 | 2008-02-02 16:17:52 +0800 | [diff] [blame] | 475 | {BTN_0, GPIO_PF5, 0, "gpio-keys: BTN0"}, |
| 476 | {BTN_1, GPIO_PF6, 0, "gpio-keys: BTN1"}, |
| 477 | {BTN_2, GPIO_PF8, 0, "gpio-keys: BTN2"}, |
Michael Hennerich | 2463ef2 | 2008-01-27 16:49:48 +0800 | [diff] [blame] | 478 | }; |
| 479 | |
| 480 | static struct gpio_keys_platform_data bfin_gpio_keys_data = { |
| 481 | .buttons = bfin_gpio_keys_table, |
| 482 | .nbuttons = ARRAY_SIZE(bfin_gpio_keys_table), |
| 483 | }; |
| 484 | |
| 485 | static struct platform_device bfin_device_gpiokeys = { |
| 486 | .name = "gpio-keys", |
| 487 | .dev = { |
| 488 | .platform_data = &bfin_gpio_keys_data, |
| 489 | }, |
| 490 | }; |
| 491 | #endif |
| 492 | |
Bryan Wu | e316395 | 2008-01-24 16:19:15 +0800 | [diff] [blame] | 493 | #if defined(CONFIG_I2C_GPIO) || defined(CONFIG_I2C_GPIO_MODULE) |
| 494 | #include <linux/i2c-gpio.h> |
| 495 | |
| 496 | static struct i2c_gpio_platform_data i2c_gpio_data = { |
| 497 | .sda_pin = 2, |
| 498 | .scl_pin = 3, |
| 499 | .sda_is_open_drain = 0, |
| 500 | .scl_is_open_drain = 0, |
| 501 | .udelay = 40, |
| 502 | }; |
| 503 | |
| 504 | static struct platform_device i2c_gpio_device = { |
| 505 | .name = "i2c-gpio", |
| 506 | .id = 0, |
| 507 | .dev = { |
| 508 | .platform_data = &i2c_gpio_data, |
| 509 | }, |
| 510 | }; |
| 511 | #endif |
| 512 | |
Bryan Wu | 81d9c7f | 2008-03-26 10:02:13 +0800 | [diff] [blame] | 513 | static struct i2c_board_info __initdata bfin_i2c_board_info[] = { |
| 514 | #if defined(CONFIG_JOYSTICK_AD7142) || defined(CONFIG_JOYSTICK_AD7142_MODULE) |
| 515 | { |
| 516 | I2C_BOARD_INFO("ad7142_joystick", 0x2C), |
Bryan Wu | 81d9c7f | 2008-03-26 10:02:13 +0800 | [diff] [blame] | 517 | .irq = 39, |
| 518 | }, |
| 519 | #endif |
Michael Hennerich | ebd5833 | 2009-07-02 11:00:38 +0000 | [diff] [blame] | 520 | #if defined(CONFIG_BFIN_TWI_LCD) || defined(CONFIG_BFIN_TWI_LCD_MODULE) |
Bryan Wu | 81d9c7f | 2008-03-26 10:02:13 +0800 | [diff] [blame] | 521 | { |
| 522 | I2C_BOARD_INFO("pcf8574_lcd", 0x22), |
Bryan Wu | 81d9c7f | 2008-03-26 10:02:13 +0800 | [diff] [blame] | 523 | }, |
| 524 | #endif |
Michael Hennerich | 204844e | 2009-06-30 14:57:22 +0000 | [diff] [blame] | 525 | #if defined(CONFIG_INPUT_PCF8574) || defined(CONFIG_INPUT_PCF8574_MODULE) |
Bryan Wu | 81d9c7f | 2008-03-26 10:02:13 +0800 | [diff] [blame] | 526 | { |
| 527 | I2C_BOARD_INFO("pcf8574_keypad", 0x27), |
Bryan Wu | 81d9c7f | 2008-03-26 10:02:13 +0800 | [diff] [blame] | 528 | .irq = 39, |
| 529 | }, |
| 530 | #endif |
Michael Hennerich | 50c4c08 | 2009-09-22 13:10:09 +0000 | [diff] [blame] | 531 | #if defined(CONFIG_FB_BFIN_7393) || defined(CONFIG_FB_BFIN_7393_MODULE) |
| 532 | { |
| 533 | I2C_BOARD_INFO("bfin-adv7393", 0x2B), |
| 534 | }, |
| 535 | #endif |
Bryan Wu | 81d9c7f | 2008-03-26 10:02:13 +0800 | [diff] [blame] | 536 | }; |
Bryan Wu | 81d9c7f | 2008-03-26 10:02:13 +0800 | [diff] [blame] | 537 | |
Michael Hennerich | 14b0320 | 2008-05-07 11:41:26 +0800 | [diff] [blame] | 538 | static const unsigned int cclk_vlev_datasheet[] = |
| 539 | { |
| 540 | VRPAIR(VLEV_085, 250000000), |
| 541 | VRPAIR(VLEV_090, 376000000), |
| 542 | VRPAIR(VLEV_095, 426000000), |
| 543 | VRPAIR(VLEV_100, 426000000), |
| 544 | VRPAIR(VLEV_105, 476000000), |
| 545 | VRPAIR(VLEV_110, 476000000), |
| 546 | VRPAIR(VLEV_115, 476000000), |
| 547 | VRPAIR(VLEV_120, 600000000), |
| 548 | VRPAIR(VLEV_125, 600000000), |
| 549 | VRPAIR(VLEV_130, 600000000), |
| 550 | }; |
| 551 | |
| 552 | static struct bfin_dpmc_platform_data bfin_dmpc_vreg_data = { |
| 553 | .tuple_tab = cclk_vlev_datasheet, |
| 554 | .tabsize = ARRAY_SIZE(cclk_vlev_datasheet), |
| 555 | .vr_settling_time = 25 /* us */, |
| 556 | }; |
| 557 | |
| 558 | static struct platform_device bfin_dpmc = { |
| 559 | .name = "bfin dpmc", |
| 560 | .dev = { |
| 561 | .platform_data = &bfin_dmpc_vreg_data, |
| 562 | }, |
| 563 | }; |
| 564 | |
Barry Song | 7e1082b | 2010-01-12 03:59:18 +0000 | [diff] [blame] | 565 | #if defined(CONFIG_SND_BF5XX_I2S) || defined(CONFIG_SND_BF5XX_I2S_MODULE) |
| 566 | static struct platform_device bfin_i2s = { |
| 567 | .name = "bfin-i2s", |
| 568 | .id = CONFIG_SND_BF5XX_SPORT_NUM, |
| 569 | /* TODO: add platform data here */ |
| 570 | }; |
| 571 | #endif |
| 572 | |
| 573 | #if defined(CONFIG_SND_BF5XX_TDM) || defined(CONFIG_SND_BF5XX_TDM_MODULE) |
| 574 | static struct platform_device bfin_tdm = { |
| 575 | .name = "bfin-tdm", |
| 576 | .id = CONFIG_SND_BF5XX_SPORT_NUM, |
| 577 | /* TODO: add platform data here */ |
| 578 | }; |
| 579 | #endif |
| 580 | |
| 581 | #if defined(CONFIG_SND_BF5XX_AC97) || defined(CONFIG_SND_BF5XX_AC97_MODULE) |
| 582 | static struct platform_device bfin_ac97 = { |
| 583 | .name = "bfin-ac97", |
| 584 | .id = CONFIG_SND_BF5XX_SPORT_NUM, |
| 585 | /* TODO: add platform data here */ |
| 586 | }; |
| 587 | #endif |
| 588 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 589 | static struct platform_device *stamp_devices[] __initdata = { |
Michael Hennerich | 14b0320 | 2008-05-07 11:41:26 +0800 | [diff] [blame] | 590 | |
| 591 | &bfin_dpmc, |
| 592 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 593 | #if defined(CONFIG_RTC_DRV_BFIN) || defined(CONFIG_RTC_DRV_BFIN_MODULE) |
| 594 | &rtc_device, |
| 595 | #endif |
| 596 | |
| 597 | #if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE) |
| 598 | &smc91x_device, |
| 599 | #endif |
| 600 | |
| 601 | #if defined(CONFIG_USB_NET2272) || defined(CONFIG_USB_NET2272_MODULE) |
| 602 | &net2272_bfin_device, |
| 603 | #endif |
| 604 | |
| 605 | #if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE) |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 606 | &bfin_spi0_device, |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 607 | #endif |
| 608 | |
| 609 | #if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE) |
Sonic Zhang | 6bd1fbe | 2009-09-09 10:46:19 +0000 | [diff] [blame] | 610 | #ifdef CONFIG_SERIAL_BFIN_UART0 |
| 611 | &bfin_uart0_device, |
| 612 | #endif |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 613 | #endif |
| 614 | |
Graf Yang | 5be36d2 | 2008-04-25 03:09:15 +0800 | [diff] [blame] | 615 | #if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE) |
Graf Yang | 42bd8bc | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 616 | #ifdef CONFIG_BFIN_SIR0 |
| 617 | &bfin_sir0_device, |
| 618 | #endif |
Graf Yang | 5be36d2 | 2008-04-25 03:09:15 +0800 | [diff] [blame] | 619 | #endif |
| 620 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 621 | #if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE) |
Sonic Zhang | df5de26 | 2009-09-23 05:01:56 +0000 | [diff] [blame] | 622 | #ifdef CONFIG_SERIAL_BFIN_SPORT0_UART |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 623 | &bfin_sport0_uart_device, |
Sonic Zhang | df5de26 | 2009-09-23 05:01:56 +0000 | [diff] [blame] | 624 | #endif |
| 625 | #ifdef CONFIG_SERIAL_BFIN_SPORT1_UART |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 626 | &bfin_sport1_uart_device, |
| 627 | #endif |
Sonic Zhang | df5de26 | 2009-09-23 05:01:56 +0000 | [diff] [blame] | 628 | #endif |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 629 | |
Michael Hennerich | 2463ef2 | 2008-01-27 16:49:48 +0800 | [diff] [blame] | 630 | #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE) |
| 631 | &bfin_device_gpiokeys, |
| 632 | #endif |
Bryan Wu | e316395 | 2008-01-24 16:19:15 +0800 | [diff] [blame] | 633 | |
| 634 | #if defined(CONFIG_I2C_GPIO) || defined(CONFIG_I2C_GPIO_MODULE) |
| 635 | &i2c_gpio_device, |
| 636 | #endif |
Mike Frysinger | cad2ab6 | 2008-02-22 17:01:31 +0800 | [diff] [blame] | 637 | |
Mike Frysinger | 9cd9c61 | 2008-05-13 12:31:32 +0800 | [diff] [blame] | 638 | #if defined(CONFIG_MTD_BFIN_ASYNC) || defined(CONFIG_MTD_BFIN_ASYNC_MODULE) |
Mike Frysinger | de8c43f | 2008-01-24 17:14:04 +0800 | [diff] [blame] | 639 | &stamp_flash_device, |
Mike Frysinger | 793dc27 | 2008-03-26 08:09:12 +0800 | [diff] [blame] | 640 | #endif |
Barry Song | 7e1082b | 2010-01-12 03:59:18 +0000 | [diff] [blame] | 641 | |
| 642 | #if defined(CONFIG_SND_BF5XX_I2S) || defined(CONFIG_SND_BF5XX_I2S_MODULE) |
| 643 | &bfin_i2s, |
| 644 | #endif |
| 645 | |
| 646 | #if defined(CONFIG_SND_BF5XX_TDM) || defined(CONFIG_SND_BF5XX_TDM_MODULE) |
| 647 | &bfin_tdm, |
| 648 | #endif |
| 649 | |
| 650 | #if defined(CONFIG_SND_BF5XX_AC97) || defined(CONFIG_SND_BF5XX_AC97_MODULE) |
| 651 | &bfin_ac97, |
| 652 | #endif |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 653 | }; |
| 654 | |
| 655 | static int __init stamp_init(void) |
| 656 | { |
Mike Frysinger | c0fc525 | 2007-05-21 18:09:25 +0800 | [diff] [blame] | 657 | int ret; |
| 658 | |
Harvey Harrison | b85d858 | 2008-04-23 09:39:01 +0800 | [diff] [blame] | 659 | printk(KERN_INFO "%s(): registering device resources\n", __func__); |
Bryan Wu | 81d9c7f | 2008-03-26 10:02:13 +0800 | [diff] [blame] | 660 | |
Bryan Wu | 81d9c7f | 2008-03-26 10:02:13 +0800 | [diff] [blame] | 661 | i2c_register_board_info(0, bfin_i2c_board_info, |
| 662 | ARRAY_SIZE(bfin_i2c_board_info)); |
Bryan Wu | 81d9c7f | 2008-03-26 10:02:13 +0800 | [diff] [blame] | 663 | |
Mike Frysinger | c0fc525 | 2007-05-21 18:09:25 +0800 | [diff] [blame] | 664 | ret = platform_add_devices(stamp_devices, ARRAY_SIZE(stamp_devices)); |
| 665 | if (ret < 0) |
| 666 | return ret; |
| 667 | |
| 668 | #if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE) |
Mike Frysinger | c0fc525 | 2007-05-21 18:09:25 +0800 | [diff] [blame] | 669 | /* setup BF533_STAMP CPLD to route AMS3 to Ethernet MAC */ |
Mike Frysinger | 9cd9c61 | 2008-05-13 12:31:32 +0800 | [diff] [blame] | 670 | bfin_write_FIO_DIR(bfin_read_FIO_DIR() | PF0); |
| 671 | bfin_write_FIO_FLAG_S(PF0); |
Mike Frysinger | c0fc525 | 2007-05-21 18:09:25 +0800 | [diff] [blame] | 672 | SSYNC(); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 673 | #endif |
Mike Frysinger | c0fc525 | 2007-05-21 18:09:25 +0800 | [diff] [blame] | 674 | |
Mike Frysinger | 5bda272 | 2008-06-07 15:03:01 +0800 | [diff] [blame] | 675 | 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] | 676 | return 0; |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 677 | } |
| 678 | |
| 679 | arch_initcall(stamp_init); |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 680 | |
Sonic Zhang | c13ce9f | 2009-09-23 09:37:46 +0000 | [diff] [blame] | 681 | static struct platform_device *stamp_early_devices[] __initdata = { |
| 682 | #if defined(CONFIG_SERIAL_BFIN_CONSOLE) || defined(CONFIG_EARLY_PRINTK) |
| 683 | #ifdef CONFIG_SERIAL_BFIN_UART0 |
| 684 | &bfin_uart0_device, |
| 685 | #endif |
| 686 | #endif |
| 687 | |
| 688 | #if defined(CONFIG_SERIAL_BFIN_SPORT_CONSOLE) |
| 689 | #ifdef CONFIG_SERIAL_BFIN_SPORT0_UART |
| 690 | &bfin_sport0_uart_device, |
| 691 | #endif |
| 692 | #ifdef CONFIG_SERIAL_BFIN_SPORT1_UART |
| 693 | &bfin_sport1_uart_device, |
| 694 | #endif |
| 695 | #endif |
| 696 | }; |
| 697 | |
| 698 | void __init native_machine_early_platform_add_devices(void) |
| 699 | { |
| 700 | printk(KERN_INFO "register early platform devices\n"); |
| 701 | early_platform_add_devices(stamp_early_devices, |
| 702 | ARRAY_SIZE(stamp_early_devices)); |
| 703 | } |
| 704 | |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 705 | void native_machine_restart(char *cmd) |
| 706 | { |
Mike Frysinger | 9cd9c61 | 2008-05-13 12:31:32 +0800 | [diff] [blame] | 707 | /* workaround pull up on cpld / flash pin not being strong enough */ |
| 708 | bfin_write_FIO_INEN(~PF0); |
| 709 | bfin_write_FIO_DIR(PF0); |
| 710 | bfin_write_FIO_FLAG_C(PF0); |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 711 | } |