async: make sure independent async domains can't accidentally entangle
[linux-2.6/mini2440.git] / arch / blackfin / mach-bf533 / boards / blackstamp.c
blob0765872a8ada70a9114bfc98266ad7798e384ca9
1 /*
2 * File: arch/blackfin/mach-bf533/blackstamp.c
3 * Based on: arch/blackfin/mach-bf533/stamp.c
4 * Author: Benjamin Matthews <bmat@lle.rochester.edu>
5 * Aidan Williams <aidan@nicta.com.au>
7 * Created: 2008
8 * Description: Board Info File for the BlackStamp
10 * Copyright 2005 National ICT Australia (NICTA)
11 * Copyright 2004-2008 Analog Devices Inc.
13 * Enter bugs at http://blackfin.uclinux.org/
15 * More info about the BlackStamp at:
16 * http://blackfin.uclinux.org/gf/project/blackstamp/
18 * Licensed under the GPL-2 or later.
21 #include <linux/device.h>
22 #include <linux/platform_device.h>
23 #include <linux/mtd/mtd.h>
24 #include <linux/mtd/partitions.h>
25 #include <linux/mtd/physmap.h>
26 #include <linux/spi/spi.h>
27 #include <linux/spi/flash.h>
28 #include <linux/irq.h>
29 #include <linux/i2c.h>
30 #include <asm/dma.h>
31 #include <asm/bfin5xx_spi.h>
32 #include <asm/portmux.h>
33 #include <asm/dpmc.h>
36 * Name the Board for the /proc/cpuinfo
38 const char bfin_board_name[] = "BlackStamp";
40 #if defined(CONFIG_RTC_DRV_BFIN) || defined(CONFIG_RTC_DRV_BFIN_MODULE)
41 static struct platform_device rtc_device = {
42 .name = "rtc-bfin",
43 .id = -1,
45 #endif
48 * Driver needs to know address, irq and flag pin.
50 #if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE)
51 static struct resource smc91x_resources[] = {
53 .name = "smc91x-regs",
54 .start = 0x20300300,
55 .end = 0x20300300 + 16,
56 .flags = IORESOURCE_MEM,
57 }, {
58 .start = IRQ_PF3,
59 .end = IRQ_PF3,
60 .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL,
64 static struct platform_device smc91x_device = {
65 .name = "smc91x",
66 .id = 0,
67 .num_resources = ARRAY_SIZE(smc91x_resources),
68 .resource = smc91x_resources,
70 #endif
72 #if defined(CONFIG_MTD_M25P80) || defined(CONFIG_MTD_M25P80_MODULE)
73 static struct mtd_partition bfin_spi_flash_partitions[] = {
75 .name = "bootloader(spi)",
76 .size = 0x00040000,
77 .offset = 0,
78 .mask_flags = MTD_CAP_ROM
79 }, {
80 .name = "linux kernel(spi)",
81 .size = 0x180000,
82 .offset = MTDPART_OFS_APPEND,
83 }, {
84 .name = "file system(spi)",
85 .size = MTDPART_SIZ_FULL,
86 .offset = MTDPART_OFS_APPEND,
90 static struct flash_platform_data bfin_spi_flash_data = {
91 .name = "m25p80",
92 .parts = bfin_spi_flash_partitions,
93 .nr_parts = ARRAY_SIZE(bfin_spi_flash_partitions),
94 .type = "m25p64",
97 /* SPI flash chip (m25p64) */
98 static struct bfin5xx_spi_chip spi_flash_chip_info = {
99 .enable_dma = 0, /* use dma transfer with this chip*/
100 .bits_per_word = 8,
102 #endif
104 #if defined(CONFIG_MMC_SPI) || defined(CONFIG_MMC_SPI_MODULE)
105 static struct bfin5xx_spi_chip mmc_spi_chip_info = {
106 .enable_dma = 0,
107 .bits_per_word = 8,
109 #endif
111 #if defined(CONFIG_SPI_SPIDEV) || defined(CONFIG_SPI_SPIDEV_MODULE)
112 static struct bfin5xx_spi_chip spidev_chip_info = {
113 .enable_dma = 0,
114 .bits_per_word = 8,
116 #endif
118 static struct spi_board_info bfin_spi_board_info[] __initdata = {
119 #if defined(CONFIG_MTD_M25P80) || defined(CONFIG_MTD_M25P80_MODULE)
121 /* the modalias must be the same as spi device driver name */
122 .modalias = "m25p80", /* Name of spi_driver for this device */
123 .max_speed_hz = 20000000, /* max spi clock (SCK) speed in HZ */
124 .bus_num = 0, /* Framework bus number */
125 .chip_select = 2, /* Framework chip select. */
126 .platform_data = &bfin_spi_flash_data,
127 .controller_data = &spi_flash_chip_info,
128 .mode = SPI_MODE_3,
130 #endif
132 #if defined(CONFIG_MMC_SPI) || defined(CONFIG_MMC_SPI_MODULE)
134 .modalias = "mmc_spi",
135 .max_speed_hz = 20000000, /* max spi clock (SCK) speed in HZ */
136 .bus_num = 0,
137 .chip_select = 5,
138 .controller_data = &mmc_spi_chip_info,
139 .mode = SPI_MODE_3,
141 #endif
143 #if defined(CONFIG_SPI_SPIDEV) || defined(CONFIG_SPI_SPIDEV_MODULE)
145 .modalias = "spidev",
146 .max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */
147 .bus_num = 0,
148 .chip_select = 7,
149 .controller_data = &spidev_chip_info,
151 #endif
154 #if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
155 /* SPI (0) */
156 static struct resource bfin_spi0_resource[] = {
157 [0] = {
158 .start = SPI0_REGBASE,
159 .end = SPI0_REGBASE + 0xFF,
160 .flags = IORESOURCE_MEM,
162 [1] = {
163 .start = CH_SPI,
164 .end = CH_SPI,
165 .flags = IORESOURCE_IRQ,
169 /* SPI controller data */
170 static struct bfin5xx_spi_master bfin_spi0_info = {
171 .num_chipselect = 8,
172 .enable_dma = 1, /* master has the ability to do dma transfer */
173 .pin_req = {P_SPI0_SCK, P_SPI0_MISO, P_SPI0_MOSI, 0},
176 static struct platform_device bfin_spi0_device = {
177 .name = "bfin-spi",
178 .id = 0, /* Bus number */
179 .num_resources = ARRAY_SIZE(bfin_spi0_resource),
180 .resource = bfin_spi0_resource,
181 .dev = {
182 .platform_data = &bfin_spi0_info, /* Passed to driver */
185 #endif /* spi master and devices */
187 #if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
188 static struct resource bfin_uart_resources[] = {
190 .start = 0xFFC00400,
191 .end = 0xFFC004FF,
192 .flags = IORESOURCE_MEM,
196 static struct platform_device bfin_uart_device = {
197 .name = "bfin-uart",
198 .id = 1,
199 .num_resources = ARRAY_SIZE(bfin_uart_resources),
200 .resource = bfin_uart_resources,
202 #endif
204 #if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
205 #ifdef CONFIG_BFIN_SIR0
206 static struct resource bfin_sir0_resources[] = {
208 .start = 0xFFC00400,
209 .end = 0xFFC004FF,
210 .flags = IORESOURCE_MEM,
213 .start = IRQ_UART0_RX,
214 .end = IRQ_UART0_RX+1,
215 .flags = IORESOURCE_IRQ,
218 .start = CH_UART0_RX,
219 .end = CH_UART0_RX+1,
220 .flags = IORESOURCE_DMA,
224 static struct platform_device bfin_sir0_device = {
225 .name = "bfin_sir",
226 .id = 0,
227 .num_resources = ARRAY_SIZE(bfin_sir0_resources),
228 .resource = bfin_sir0_resources,
230 #endif
231 #endif
233 #if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
234 static struct platform_device bfin_sport0_uart_device = {
235 .name = "bfin-sport-uart",
236 .id = 0,
239 static struct platform_device bfin_sport1_uart_device = {
240 .name = "bfin-sport-uart",
241 .id = 1,
243 #endif
245 #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
246 #include <linux/input.h>
247 #include <linux/gpio_keys.h>
249 static struct gpio_keys_button bfin_gpio_keys_table[] = {
250 {BTN_0, GPIO_PF4, 0, "gpio-keys: BTN0"},
251 {BTN_1, GPIO_PF5, 0, "gpio-keys: BTN1"},
252 {BTN_2, GPIO_PF6, 0, "gpio-keys: BTN2"},
253 }; /* Mapped to the first three PF Test Points */
255 static struct gpio_keys_platform_data bfin_gpio_keys_data = {
256 .buttons = bfin_gpio_keys_table,
257 .nbuttons = ARRAY_SIZE(bfin_gpio_keys_table),
260 static struct platform_device bfin_device_gpiokeys = {
261 .name = "gpio-keys",
262 .dev = {
263 .platform_data = &bfin_gpio_keys_data,
266 #endif
268 static struct resource bfin_gpios_resources = {
269 .start = 0,
270 .end = MAX_BLACKFIN_GPIOS - 1,
271 .flags = IORESOURCE_IRQ,
274 static struct platform_device bfin_gpios_device = {
275 .name = "simple-gpio",
276 .id = -1,
277 .num_resources = 1,
278 .resource = &bfin_gpios_resources,
281 #if defined(CONFIG_I2C_GPIO) || defined(CONFIG_I2C_GPIO_MODULE)
282 #include <linux/i2c-gpio.h>
284 static struct i2c_gpio_platform_data i2c_gpio_data = {
285 .sda_pin = 8,
286 .scl_pin = 9,
287 .sda_is_open_drain = 0,
288 .scl_is_open_drain = 0,
289 .udelay = 40,
290 }; /* This hasn't actually been used these pins
291 * are (currently) free pins on the expansion connector */
293 static struct platform_device i2c_gpio_device = {
294 .name = "i2c-gpio",
295 .id = 0,
296 .dev = {
297 .platform_data = &i2c_gpio_data,
300 #endif
302 static struct i2c_board_info __initdata bfin_i2c_board_info[] = {
305 static const unsigned int cclk_vlev_datasheet[] =
307 VRPAIR(VLEV_085, 250000000),
308 VRPAIR(VLEV_090, 376000000),
309 VRPAIR(VLEV_095, 426000000),
310 VRPAIR(VLEV_100, 426000000),
311 VRPAIR(VLEV_105, 476000000),
312 VRPAIR(VLEV_110, 476000000),
313 VRPAIR(VLEV_115, 476000000),
314 VRPAIR(VLEV_120, 600000000),
315 VRPAIR(VLEV_125, 600000000),
316 VRPAIR(VLEV_130, 600000000),
319 static struct bfin_dpmc_platform_data bfin_dmpc_vreg_data = {
320 .tuple_tab = cclk_vlev_datasheet,
321 .tabsize = ARRAY_SIZE(cclk_vlev_datasheet),
322 .vr_settling_time = 25 /* us */,
325 static struct platform_device bfin_dpmc = {
326 .name = "bfin dpmc",
327 .dev = {
328 .platform_data = &bfin_dmpc_vreg_data,
332 static struct platform_device *stamp_devices[] __initdata = {
334 &bfin_dpmc,
336 #if defined(CONFIG_RTC_DRV_BFIN) || defined(CONFIG_RTC_DRV_BFIN_MODULE)
337 &rtc_device,
338 #endif
340 #if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE)
341 &smc91x_device,
342 #endif
345 #if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE)
346 &bfin_spi0_device,
347 #endif
349 #if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE)
350 &bfin_uart_device,
351 #endif
353 #if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE)
354 #ifdef CONFIG_BFIN_SIR0
355 &bfin_sir0_device,
356 #endif
357 #endif
359 #if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE)
360 &bfin_sport0_uart_device,
361 &bfin_sport1_uart_device,
362 #endif
364 #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE)
365 &bfin_device_gpiokeys,
366 #endif
368 #if defined(CONFIG_I2C_GPIO) || defined(CONFIG_I2C_GPIO_MODULE)
369 &i2c_gpio_device,
370 #endif
372 &bfin_gpios_device,
375 static int __init blackstamp_init(void)
377 int ret;
379 printk(KERN_INFO "%s(): registering device resources\n", __func__);
381 i2c_register_board_info(0, bfin_i2c_board_info,
382 ARRAY_SIZE(bfin_i2c_board_info));
384 ret = platform_add_devices(stamp_devices, ARRAY_SIZE(stamp_devices));
385 if (ret < 0)
386 return ret;
388 #if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE)
389 /* setup BF533_STAMP CPLD to route AMS3 to Ethernet MAC */
390 bfin_write_FIO_DIR(bfin_read_FIO_DIR() | PF0);
391 bfin_write_FIO_FLAG_S(PF0);
392 SSYNC();
393 #endif
395 spi_register_board_info(bfin_spi_board_info, ARRAY_SIZE(bfin_spi_board_info));
396 return 0;
399 arch_initcall(blackstamp_init);