blob: 729fd7c263360be6bd10a3dc80333cc64e223095 [file] [log] [blame]
Bryan Wu1394f032007-05-06 14:50:22 -07001/*
2 * File: arch/blackfin/mach-bf533/stamp.c
3 * Based on: arch/blackfin/mach-bf533/ezkit.c
4 * Author: Aidan Williams <aidan@nicta.com.au>
5 *
6 * Created: 2005
7 * Description: Board Info File for the BF533-STAMP
8 *
9 * Modified:
10 * Copyright 2005 National ICT Australia (NICTA)
11 * Copyright 2004-2006 Analog Devices Inc.
12 *
13 * Bugs: Enter bugs at http://blackfin.uclinux.org/
14 *
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.
19 *
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.
24 *
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
29 */
30
31#include <linux/device.h>
32#include <linux/platform_device.h>
33#include <linux/mtd/mtd.h>
34#include <linux/mtd/partitions.h>
Mike Frysingerde8c43f2008-01-24 17:14:04 +080035#include <linux/mtd/physmap.h>
Bryan Wu1394f032007-05-06 14:50:22 -070036#include <linux/spi/spi.h>
37#include <linux/spi/flash.h>
Yi Li2120b682009-07-16 10:12:30 +000038#include <linux/spi/mmc_spi.h>
Bryan Wu1394f032007-05-06 14:50:22 -070039#if defined(CONFIG_USB_ISP1362_HCD) || defined(CONFIG_USB_ISP1362_HCD_MODULE)
Mike Frysingerf02bcec2007-11-15 21:29:15 +080040#include <linux/usb/isp1362.h>
Bryan Wu1394f032007-05-06 14:50:22 -070041#endif
Mike Frysinger1f83b8f2007-07-12 22:58:21 +080042#include <linux/irq.h>
Bryan Wu81d9c7f2008-03-26 10:02:13 +080043#include <linux/i2c.h>
Bryan Wuc6c4d7b2007-10-11 01:20:06 +080044#include <asm/dma.h>
Bryan Wu1394f032007-05-06 14:50:22 -070045#include <asm/bfin5xx_spi.h>
Bryan Wuc6c4d7b2007-10-11 01:20:06 +080046#include <asm/reboot.h>
Bryan Wu5d448dd2007-11-12 23:24:42 +080047#include <asm/portmux.h>
Michael Hennerich14b03202008-05-07 11:41:26 +080048#include <asm/dpmc.h>
Bryan Wu1394f032007-05-06 14:50:22 -070049
50/*
51 * Name the Board for the /proc/cpuinfo
52 */
Mike Frysingerfe85cad2008-11-18 17:48:22 +080053const char bfin_board_name[] = "ADI BF533-STAMP";
Bryan Wu1394f032007-05-06 14:50:22 -070054
55#if defined(CONFIG_RTC_DRV_BFIN) || defined(CONFIG_RTC_DRV_BFIN_MODULE)
56static struct platform_device rtc_device = {
57 .name = "rtc-bfin",
58 .id = -1,
59};
60#endif
61
62/*
63 * Driver needs to know address, irq and flag pin.
64 */
65#if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE)
Michael Hennerich61f09b52009-07-24 08:48:31 +000066#include <linux/smc91x.h>
67
68static struct smc91x_platdata smc91x_info = {
69 .flags = SMC91X_USE_16BIT | SMC91X_NOWAIT,
70 .leda = RPC_LED_100_10,
71 .ledb = RPC_LED_TX_RX,
72};
73
Bryan Wu1394f032007-05-06 14:50:22 -070074static struct resource smc91x_resources[] = {
75 {
76 .name = "smc91x-regs",
77 .start = 0x20300300,
78 .end = 0x20300300 + 16,
79 .flags = IORESOURCE_MEM,
Mike Frysinger1f83b8f2007-07-12 22:58:21 +080080 }, {
Bryan Wu1394f032007-05-06 14:50:22 -070081 .start = IRQ_PF7,
82 .end = IRQ_PF7,
83 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
84 },
85};
86
87static struct platform_device smc91x_device = {
88 .name = "smc91x",
89 .id = 0,
90 .num_resources = ARRAY_SIZE(smc91x_resources),
91 .resource = smc91x_resources,
Michael Hennerich61f09b52009-07-24 08:48:31 +000092 .dev = {
93 .platform_data = &smc91x_info,
94 },
Bryan Wu1394f032007-05-06 14:50:22 -070095};
96#endif
97
Bryan Wuc6c4d7b2007-10-11 01:20:06 +080098#if defined(CONFIG_FB_BFIN_7393) || defined(CONFIG_FB_BFIN_7393_MODULE)
99static struct platform_device bfin_fb_adv7393_device = {
100 .name = "bfin-adv7393",
101};
102#endif
103
Bryan Wu1394f032007-05-06 14:50:22 -0700104#if defined(CONFIG_USB_NET2272) || defined(CONFIG_USB_NET2272_MODULE)
105static struct resource net2272_bfin_resources[] = {
106 {
107 .start = 0x20300000,
108 .end = 0x20300000 + 0x100,
109 .flags = IORESOURCE_MEM,
Mike Frysinger1f83b8f2007-07-12 22:58:21 +0800110 }, {
Bryan Wu1394f032007-05-06 14:50:22 -0700111 .start = IRQ_PF10,
112 .end = IRQ_PF10,
113 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
114 },
115};
116
117static struct platform_device net2272_bfin_device = {
118 .name = "net2272",
119 .id = -1,
120 .num_resources = ARRAY_SIZE(net2272_bfin_resources),
121 .resource = net2272_bfin_resources,
122};
123#endif
124
Mike Frysinger9cd9c612008-05-13 12:31:32 +0800125#if defined(CONFIG_MTD_BFIN_ASYNC) || defined(CONFIG_MTD_BFIN_ASYNC_MODULE)
Mike Frysingerde8c43f2008-01-24 17:14:04 +0800126static struct mtd_partition stamp_partitions[] = {
127 {
Robin Getzaa582972008-08-05 17:47:29 +0800128 .name = "bootloader(nor)",
Mike Frysingeredf05642008-02-25 11:38:11 +0800129 .size = 0x40000,
Mike Frysingerde8c43f2008-01-24 17:14:04 +0800130 .offset = 0,
131 }, {
Robin Getzaa582972008-08-05 17:47:29 +0800132 .name = "linux kernel(nor)",
Grace Pan6ecb5b62009-01-07 23:14:38 +0800133 .size = 0x180000,
Mike Frysingerde8c43f2008-01-24 17:14:04 +0800134 .offset = MTDPART_OFS_APPEND,
135 }, {
Robin Getzaa582972008-08-05 17:47:29 +0800136 .name = "file system(nor)",
Mike Frysingerde8c43f2008-01-24 17:14:04 +0800137 .size = MTDPART_SIZ_FULL,
138 .offset = MTDPART_OFS_APPEND,
139 }
140};
141
142static struct physmap_flash_data stamp_flash_data = {
143 .width = 2,
144 .parts = stamp_partitions,
145 .nr_parts = ARRAY_SIZE(stamp_partitions),
146};
147
148static struct resource stamp_flash_resource[] = {
149 {
150 .name = "cfi_probe",
151 .start = 0x20000000,
152 .end = 0x203fffff,
153 .flags = IORESOURCE_MEM,
154 }, {
Mike Frysinger9cd9c612008-05-13 12:31:32 +0800155 .start = 0x7BB07BB0, /* AMBCTL0 setting when accessing flash */
156 .end = 0x7BB07BB0, /* AMBCTL1 setting when accessing flash */
157 .flags = IORESOURCE_MEM,
158 }, {
159 .start = GPIO_PF0,
Mike Frysingerde8c43f2008-01-24 17:14:04 +0800160 .flags = IORESOURCE_IRQ,
161 }
162};
163
164static struct platform_device stamp_flash_device = {
Mike Frysinger9cd9c612008-05-13 12:31:32 +0800165 .name = "bfin-async-flash",
Mike Frysingerde8c43f2008-01-24 17:14:04 +0800166 .id = 0,
167 .dev = {
168 .platform_data = &stamp_flash_data,
169 },
170 .num_resources = ARRAY_SIZE(stamp_flash_resource),
171 .resource = stamp_flash_resource,
172};
Mike Frysinger793dc272008-03-26 08:09:12 +0800173#endif
Mike Frysingerde8c43f2008-01-24 17:14:04 +0800174
Bryan Wu1394f032007-05-06 14:50:22 -0700175#if defined(CONFIG_MTD_M25P80) || defined(CONFIG_MTD_M25P80_MODULE)
176static struct mtd_partition bfin_spi_flash_partitions[] = {
177 {
Robin Getzaa582972008-08-05 17:47:29 +0800178 .name = "bootloader(spi)",
Mike Frysingeredf05642008-02-25 11:38:11 +0800179 .size = 0x00040000,
Bryan Wu1394f032007-05-06 14:50:22 -0700180 .offset = 0,
181 .mask_flags = MTD_CAP_ROM
Mike Frysinger1f83b8f2007-07-12 22:58:21 +0800182 }, {
Robin Getzaa582972008-08-05 17:47:29 +0800183 .name = "linux kernel(spi)",
Grace Pan6ecb5b62009-01-07 23:14:38 +0800184 .size = 0x180000,
Mike Frysingeredf05642008-02-25 11:38:11 +0800185 .offset = MTDPART_OFS_APPEND,
Mike Frysinger1f83b8f2007-07-12 22:58:21 +0800186 }, {
Robin Getzaa582972008-08-05 17:47:29 +0800187 .name = "file system(spi)",
Mike Frysingeredf05642008-02-25 11:38:11 +0800188 .size = MTDPART_SIZ_FULL,
189 .offset = MTDPART_OFS_APPEND,
Bryan Wu1394f032007-05-06 14:50:22 -0700190 }
191};
192
193static struct flash_platform_data bfin_spi_flash_data = {
194 .name = "m25p80",
195 .parts = bfin_spi_flash_partitions,
196 .nr_parts = ARRAY_SIZE(bfin_spi_flash_partitions),
197 .type = "m25p64",
198};
199
200/* SPI flash chip (m25p64) */
201static struct bfin5xx_spi_chip spi_flash_chip_info = {
202 .enable_dma = 0, /* use dma transfer with this chip*/
203 .bits_per_word = 8,
204};
205#endif
206
Mike Frysingera261eec2009-05-20 14:05:36 +0000207#if defined(CONFIG_BFIN_SPI_ADC) || defined(CONFIG_BFIN_SPI_ADC_MODULE)
Bryan Wu1394f032007-05-06 14:50:22 -0700208/* SPI ADC chip */
209static struct bfin5xx_spi_chip spi_adc_chip_info = {
210 .enable_dma = 1, /* use dma transfer with this chip*/
211 .bits_per_word = 16,
212};
213#endif
214
215#if defined(CONFIG_SND_BLACKFIN_AD1836) || defined(CONFIG_SND_BLACKFIN_AD1836_MODULE)
216static struct bfin5xx_spi_chip ad1836_spi_chip_info = {
217 .enable_dma = 0,
218 .bits_per_word = 16,
219};
220#endif
221
Michael Hennerich6e668932008-02-09 01:54:09 +0800222#if defined(CONFIG_SPI_SPIDEV) || defined(CONFIG_SPI_SPIDEV_MODULE)
223static struct bfin5xx_spi_chip spidev_chip_info = {
224 .enable_dma = 0,
225 .bits_per_word = 8,
226};
227#endif
228
Yi Li2120b682009-07-16 10:12:30 +0000229#if defined(CONFIG_MMC_SPI) || defined(CONFIG_MMC_SPI_MODULE)
230#define MMC_SPI_CARD_DETECT_INT IRQ_PF5
231static int bfin_mmc_spi_init(struct device *dev,
232 irqreturn_t (*detect_int)(int, void *), void *data)
233{
234 return request_irq(MMC_SPI_CARD_DETECT_INT, detect_int,
235 IRQF_TRIGGER_FALLING | IRQF_TRIGGER_RISING,
236 "mmc-spi-detect", data);
237}
238
239static void bfin_mmc_spi_exit(struct device *dev, void *data)
240{
241 free_irq(MMC_SPI_CARD_DETECT_INT, data);
242}
243
244static struct mmc_spi_platform_data bfin_mmc_spi_pdata = {
245 .init = bfin_mmc_spi_init,
246 .exit = bfin_mmc_spi_exit,
247 .detect_delay = 100, /* msecs */
248};
249
250static struct bfin5xx_spi_chip mmc_spi_chip_info = {
251 .enable_dma = 0,
252 .bits_per_word = 8,
253 .pio_interrupt = 0,
254};
255#endif
256
Bryan Wu1394f032007-05-06 14:50:22 -0700257static struct spi_board_info bfin_spi_board_info[] __initdata = {
258#if defined(CONFIG_MTD_M25P80) || defined(CONFIG_MTD_M25P80_MODULE)
259 {
260 /* the modalias must be the same as spi device driver name */
261 .modalias = "m25p80", /* Name of spi_driver for this device */
262 .max_speed_hz = 25000000, /* max spi clock (SCK) speed in HZ */
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800263 .bus_num = 0, /* Framework bus number */
Bryan Wu1394f032007-05-06 14:50:22 -0700264 .chip_select = 2, /* Framework chip select. On STAMP537 it is SPISSEL2*/
265 .platform_data = &bfin_spi_flash_data,
266 .controller_data = &spi_flash_chip_info,
267 .mode = SPI_MODE_3,
268 },
269#endif
270
Mike Frysingera261eec2009-05-20 14:05:36 +0000271#if defined(CONFIG_BFIN_SPI_ADC) || defined(CONFIG_BFIN_SPI_ADC_MODULE)
Bryan Wu1394f032007-05-06 14:50:22 -0700272 {
273 .modalias = "bfin_spi_adc", /* Name of spi_driver for this device */
274 .max_speed_hz = 6250000, /* max spi clock (SCK) speed in HZ */
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800275 .bus_num = 0, /* Framework bus number */
Bryan Wu1394f032007-05-06 14:50:22 -0700276 .chip_select = 1, /* Framework chip select. */
277 .platform_data = NULL, /* No spi_driver specific config */
278 .controller_data = &spi_adc_chip_info,
279 },
280#endif
281
282#if defined(CONFIG_SND_BLACKFIN_AD1836) || defined(CONFIG_SND_BLACKFIN_AD1836_MODULE)
283 {
Barry Songdac98172009-08-13 21:07:37 +0000284 .modalias = "ad1836",
Cliff Cai858c5e92009-07-22 06:34:55 +0000285 .max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800286 .bus_num = 0,
Bryan Wu1394f032007-05-06 14:50:22 -0700287 .chip_select = CONFIG_SND_BLACKFIN_SPI_PFBIT,
288 .controller_data = &ad1836_spi_chip_info,
289 },
290#endif
291
Michael Hennerich6e668932008-02-09 01:54:09 +0800292#if defined(CONFIG_SPI_SPIDEV) || defined(CONFIG_SPI_SPIDEV_MODULE)
293 {
294 .modalias = "spidev",
295 .max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */
296 .bus_num = 0,
297 .chip_select = 1,
298 .controller_data = &spidev_chip_info,
299 },
300#endif
Yi Li2120b682009-07-16 10:12:30 +0000301#if defined(CONFIG_MMC_SPI) || defined(CONFIG_MMC_SPI_MODULE)
302 {
303 .modalias = "mmc_spi",
304 .max_speed_hz = 20000000, /* max spi clock (SCK) speed in HZ */
305 .bus_num = 0,
306 .chip_select = 4,
307 .platform_data = &bfin_mmc_spi_pdata,
308 .controller_data = &mmc_spi_chip_info,
309 .mode = SPI_MODE_3,
310 },
311#endif
Bryan Wu1394f032007-05-06 14:50:22 -0700312};
313
Mike Frysinger5bda2722008-06-07 15:03:01 +0800314#if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800315/* SPI (0) */
316static struct resource bfin_spi0_resource[] = {
317 [0] = {
318 .start = SPI0_REGBASE,
319 .end = SPI0_REGBASE + 0xFF,
320 .flags = IORESOURCE_MEM,
321 },
322 [1] = {
323 .start = CH_SPI,
324 .end = CH_SPI,
Yi Li53122692009-06-05 12:11:11 +0000325 .flags = IORESOURCE_DMA,
326 },
327 [2] = {
328 .start = IRQ_SPI,
329 .end = IRQ_SPI,
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800330 .flags = IORESOURCE_IRQ,
331 }
332};
333
Bryan Wu1394f032007-05-06 14:50:22 -0700334/* SPI controller data */
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800335static struct bfin5xx_spi_master bfin_spi0_info = {
Bryan Wu1394f032007-05-06 14:50:22 -0700336 .num_chipselect = 8,
337 .enable_dma = 1, /* master has the ability to do dma transfer */
Bryan Wu5d448dd2007-11-12 23:24:42 +0800338 .pin_req = {P_SPI0_SCK, P_SPI0_MISO, P_SPI0_MOSI, 0},
Bryan Wu1394f032007-05-06 14:50:22 -0700339};
340
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800341static struct platform_device bfin_spi0_device = {
342 .name = "bfin-spi",
343 .id = 0, /* Bus number */
344 .num_resources = ARRAY_SIZE(bfin_spi0_resource),
345 .resource = bfin_spi0_resource,
Bryan Wu1394f032007-05-06 14:50:22 -0700346 .dev = {
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800347 .platform_data = &bfin_spi0_info, /* Passed to driver */
Bryan Wu1394f032007-05-06 14:50:22 -0700348 },
349};
350#endif /* spi master and devices */
351
352#if defined(CONFIG_FB_BF537_LQ035) || defined(CONFIG_FB_BF537_LQ035_MODULE)
353static struct platform_device bfin_fb_device = {
354 .name = "bf537-fb",
355};
356#endif
357
358#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
359static struct resource bfin_uart_resources[] = {
360 {
361 .start = 0xFFC00400,
362 .end = 0xFFC004FF,
363 .flags = IORESOURCE_MEM,
364 },
365};
366
367static struct platform_device bfin_uart_device = {
368 .name = "bfin-uart",
369 .id = 1,
370 .num_resources = ARRAY_SIZE(bfin_uart_resources),
371 .resource = bfin_uart_resources,
372};
373#endif
374
Graf Yang5be36d22008-04-25 03:09:15 +0800375#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
Graf Yang5be36d22008-04-25 03:09:15 +0800376#ifdef CONFIG_BFIN_SIR0
Graf Yang42bd8bc2009-01-07 23:14:39 +0800377static struct resource bfin_sir0_resources[] = {
Graf Yang5be36d22008-04-25 03:09:15 +0800378 {
379 .start = 0xFFC00400,
380 .end = 0xFFC004FF,
381 .flags = IORESOURCE_MEM,
382 },
Graf Yang42bd8bc2009-01-07 23:14:39 +0800383 {
384 .start = IRQ_UART0_RX,
385 .end = IRQ_UART0_RX+1,
386 .flags = IORESOURCE_IRQ,
387 },
388 {
389 .start = CH_UART0_RX,
390 .end = CH_UART0_RX+1,
391 .flags = IORESOURCE_DMA,
392 },
Graf Yang5be36d22008-04-25 03:09:15 +0800393};
394
Graf Yang42bd8bc2009-01-07 23:14:39 +0800395static struct platform_device bfin_sir0_device = {
Graf Yang5be36d22008-04-25 03:09:15 +0800396 .name = "bfin_sir",
397 .id = 0,
Graf Yang42bd8bc2009-01-07 23:14:39 +0800398 .num_resources = ARRAY_SIZE(bfin_sir0_resources),
399 .resource = bfin_sir0_resources,
Graf Yang5be36d22008-04-25 03:09:15 +0800400};
401#endif
Graf Yang42bd8bc2009-01-07 23:14:39 +0800402#endif
Graf Yang5be36d22008-04-25 03:09:15 +0800403
Bryan Wu1394f032007-05-06 14:50:22 -0700404#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
405static struct platform_device bfin_sport0_uart_device = {
406 .name = "bfin-sport-uart",
407 .id = 0,
408};
409
410static struct platform_device bfin_sport1_uart_device = {
411 .name = "bfin-sport-uart",
412 .id = 1,
413};
414#endif
415
Michael Hennerich2463ef22008-01-27 16:49:48 +0800416#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
417#include <linux/input.h>
418#include <linux/gpio_keys.h>
419
420static struct gpio_keys_button bfin_gpio_keys_table[] = {
Michael Hennerichf1bceb42008-02-02 16:17:52 +0800421 {BTN_0, GPIO_PF5, 0, "gpio-keys: BTN0"},
422 {BTN_1, GPIO_PF6, 0, "gpio-keys: BTN1"},
423 {BTN_2, GPIO_PF8, 0, "gpio-keys: BTN2"},
Michael Hennerich2463ef22008-01-27 16:49:48 +0800424};
425
426static struct gpio_keys_platform_data bfin_gpio_keys_data = {
427 .buttons = bfin_gpio_keys_table,
428 .nbuttons = ARRAY_SIZE(bfin_gpio_keys_table),
429};
430
431static struct platform_device bfin_device_gpiokeys = {
432 .name = "gpio-keys",
433 .dev = {
434 .platform_data = &bfin_gpio_keys_data,
435 },
436};
437#endif
438
Mike Frysingercad2ab62008-02-22 17:01:31 +0800439static struct resource bfin_gpios_resources = {
440 .start = 0,
441 .end = MAX_BLACKFIN_GPIOS - 1,
442 .flags = IORESOURCE_IRQ,
443};
444
445static struct platform_device bfin_gpios_device = {
446 .name = "simple-gpio",
447 .id = -1,
448 .num_resources = 1,
449 .resource = &bfin_gpios_resources,
450};
451
Bryan Wue3163952008-01-24 16:19:15 +0800452#if defined(CONFIG_I2C_GPIO) || defined(CONFIG_I2C_GPIO_MODULE)
453#include <linux/i2c-gpio.h>
454
455static struct i2c_gpio_platform_data i2c_gpio_data = {
456 .sda_pin = 2,
457 .scl_pin = 3,
458 .sda_is_open_drain = 0,
459 .scl_is_open_drain = 0,
460 .udelay = 40,
461};
462
463static struct platform_device i2c_gpio_device = {
464 .name = "i2c-gpio",
465 .id = 0,
466 .dev = {
467 .platform_data = &i2c_gpio_data,
468 },
469};
470#endif
471
Bryan Wu81d9c7f2008-03-26 10:02:13 +0800472static struct i2c_board_info __initdata bfin_i2c_board_info[] = {
473#if defined(CONFIG_JOYSTICK_AD7142) || defined(CONFIG_JOYSTICK_AD7142_MODULE)
474 {
475 I2C_BOARD_INFO("ad7142_joystick", 0x2C),
Bryan Wu81d9c7f2008-03-26 10:02:13 +0800476 .irq = 39,
477 },
478#endif
Michael Hennerichebd58332009-07-02 11:00:38 +0000479#if defined(CONFIG_BFIN_TWI_LCD) || defined(CONFIG_BFIN_TWI_LCD_MODULE)
Bryan Wu81d9c7f2008-03-26 10:02:13 +0800480 {
481 I2C_BOARD_INFO("pcf8574_lcd", 0x22),
Bryan Wu81d9c7f2008-03-26 10:02:13 +0800482 },
483#endif
Michael Hennerich204844e2009-06-30 14:57:22 +0000484#if defined(CONFIG_INPUT_PCF8574) || defined(CONFIG_INPUT_PCF8574_MODULE)
Bryan Wu81d9c7f2008-03-26 10:02:13 +0800485 {
486 I2C_BOARD_INFO("pcf8574_keypad", 0x27),
Bryan Wu81d9c7f2008-03-26 10:02:13 +0800487 .irq = 39,
488 },
489#endif
490};
Bryan Wu81d9c7f2008-03-26 10:02:13 +0800491
Michael Hennerich14b03202008-05-07 11:41:26 +0800492static const unsigned int cclk_vlev_datasheet[] =
493{
494 VRPAIR(VLEV_085, 250000000),
495 VRPAIR(VLEV_090, 376000000),
496 VRPAIR(VLEV_095, 426000000),
497 VRPAIR(VLEV_100, 426000000),
498 VRPAIR(VLEV_105, 476000000),
499 VRPAIR(VLEV_110, 476000000),
500 VRPAIR(VLEV_115, 476000000),
501 VRPAIR(VLEV_120, 600000000),
502 VRPAIR(VLEV_125, 600000000),
503 VRPAIR(VLEV_130, 600000000),
504};
505
506static struct bfin_dpmc_platform_data bfin_dmpc_vreg_data = {
507 .tuple_tab = cclk_vlev_datasheet,
508 .tabsize = ARRAY_SIZE(cclk_vlev_datasheet),
509 .vr_settling_time = 25 /* us */,
510};
511
512static struct platform_device bfin_dpmc = {
513 .name = "bfin dpmc",
514 .dev = {
515 .platform_data = &bfin_dmpc_vreg_data,
516 },
517};
518
Bryan Wu1394f032007-05-06 14:50:22 -0700519static struct platform_device *stamp_devices[] __initdata = {
Michael Hennerich14b03202008-05-07 11:41:26 +0800520
521 &bfin_dpmc,
522
Bryan Wu1394f032007-05-06 14:50:22 -0700523#if defined(CONFIG_RTC_DRV_BFIN) || defined(CONFIG_RTC_DRV_BFIN_MODULE)
524 &rtc_device,
525#endif
526
527#if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE)
528 &smc91x_device,
529#endif
530
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800531#if defined(CONFIG_FB_BFIN_7393) || defined(CONFIG_FB_BFIN_7393_MODULE)
532 &bfin_fb_adv7393_device,
533#endif
534
Bryan Wu1394f032007-05-06 14:50:22 -0700535#if defined(CONFIG_USB_NET2272) || defined(CONFIG_USB_NET2272_MODULE)
536 &net2272_bfin_device,
537#endif
538
539#if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800540 &bfin_spi0_device,
Bryan Wu1394f032007-05-06 14:50:22 -0700541#endif
542
543#if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
544 &bfin_uart_device,
545#endif
546
Graf Yang5be36d22008-04-25 03:09:15 +0800547#if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
Graf Yang42bd8bc2009-01-07 23:14:39 +0800548#ifdef CONFIG_BFIN_SIR0
549 &bfin_sir0_device,
550#endif
Graf Yang5be36d22008-04-25 03:09:15 +0800551#endif
552
Bryan Wu1394f032007-05-06 14:50:22 -0700553#if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
554 &bfin_sport0_uart_device,
555 &bfin_sport1_uart_device,
556#endif
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800557
Michael Hennerich2463ef22008-01-27 16:49:48 +0800558#if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
559 &bfin_device_gpiokeys,
560#endif
Bryan Wue3163952008-01-24 16:19:15 +0800561
562#if defined(CONFIG_I2C_GPIO) || defined(CONFIG_I2C_GPIO_MODULE)
563 &i2c_gpio_device,
564#endif
Mike Frysingercad2ab62008-02-22 17:01:31 +0800565
566 &bfin_gpios_device,
Mike Frysinger793dc272008-03-26 08:09:12 +0800567
Mike Frysinger9cd9c612008-05-13 12:31:32 +0800568#if defined(CONFIG_MTD_BFIN_ASYNC) || defined(CONFIG_MTD_BFIN_ASYNC_MODULE)
Mike Frysingerde8c43f2008-01-24 17:14:04 +0800569 &stamp_flash_device,
Mike Frysinger793dc272008-03-26 08:09:12 +0800570#endif
Bryan Wu1394f032007-05-06 14:50:22 -0700571};
572
573static int __init stamp_init(void)
574{
Mike Frysingerc0fc5252007-05-21 18:09:25 +0800575 int ret;
576
Harvey Harrisonb85d8582008-04-23 09:39:01 +0800577 printk(KERN_INFO "%s(): registering device resources\n", __func__);
Bryan Wu81d9c7f2008-03-26 10:02:13 +0800578
Bryan Wu81d9c7f2008-03-26 10:02:13 +0800579 i2c_register_board_info(0, bfin_i2c_board_info,
580 ARRAY_SIZE(bfin_i2c_board_info));
Bryan Wu81d9c7f2008-03-26 10:02:13 +0800581
Mike Frysingerc0fc5252007-05-21 18:09:25 +0800582 ret = platform_add_devices(stamp_devices, ARRAY_SIZE(stamp_devices));
583 if (ret < 0)
584 return ret;
585
586#if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE)
Mike Frysingerc0fc5252007-05-21 18:09:25 +0800587 /* setup BF533_STAMP CPLD to route AMS3 to Ethernet MAC */
Mike Frysinger9cd9c612008-05-13 12:31:32 +0800588 bfin_write_FIO_DIR(bfin_read_FIO_DIR() | PF0);
589 bfin_write_FIO_FLAG_S(PF0);
Mike Frysingerc0fc5252007-05-21 18:09:25 +0800590 SSYNC();
Bryan Wu1394f032007-05-06 14:50:22 -0700591#endif
Mike Frysingerc0fc5252007-05-21 18:09:25 +0800592
Mike Frysinger5bda2722008-06-07 15:03:01 +0800593 spi_register_board_info(bfin_spi_board_info, ARRAY_SIZE(bfin_spi_board_info));
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800594 return 0;
Bryan Wu1394f032007-05-06 14:50:22 -0700595}
596
597arch_initcall(stamp_init);
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800598
599void native_machine_restart(char *cmd)
600{
Mike Frysinger9cd9c612008-05-13 12:31:32 +0800601 /* workaround pull up on cpld / flash pin not being strong enough */
602 bfin_write_FIO_INEN(~PF0);
603 bfin_write_FIO_DIR(PF0);
604 bfin_write_FIO_FLAG_C(PF0);
Bryan Wuc6c4d7b2007-10-11 01:20:06 +0800605}