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> |
Mike Frysinger | fc68911 | 2008-06-25 11:41:42 +0800 | [diff] [blame] | 10 | #include <linux/kernel.h> |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 11 | #include <linux/platform_device.h> |
| 12 | #include <linux/mtd/mtd.h> |
Mike Frysinger | fc68911 | 2008-06-25 11:41:42 +0800 | [diff] [blame] | 13 | #include <linux/mtd/nand.h> |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 14 | #include <linux/mtd/partitions.h> |
Mike Frysinger | fc68911 | 2008-06-25 11:41:42 +0800 | [diff] [blame] | 15 | #include <linux/mtd/plat-ram.h> |
Mike Frysinger | de8c43f | 2008-01-24 17:14:04 +0800 | [diff] [blame] | 16 | #include <linux/mtd/physmap.h> |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 17 | #include <linux/spi/spi.h> |
| 18 | #include <linux/spi/flash.h> |
| 19 | #if defined(CONFIG_USB_ISP1362_HCD) || defined(CONFIG_USB_ISP1362_HCD_MODULE) |
Mike Frysinger | f02bcec | 2007-11-15 21:29:15 +0800 | [diff] [blame] | 20 | #include <linux/usb/isp1362.h> |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 21 | #endif |
Jeff Garzik | 0a87e3e | 2008-02-01 18:02:30 -0500 | [diff] [blame] | 22 | #include <linux/ata_platform.h> |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 23 | #include <linux/irq.h> |
| 24 | #include <linux/interrupt.h> |
Bryan Wu | 81d9c7f | 2008-03-26 10:02:13 +0800 | [diff] [blame] | 25 | #include <linux/i2c.h> |
David Brownell | 27f5d75 | 2007-10-04 18:06:16 -0700 | [diff] [blame] | 26 | #include <linux/usb/sl811.h> |
Yi Li | f79ea4c | 2009-01-07 23:14:38 +0800 | [diff] [blame] | 27 | #include <linux/spi/mmc_spi.h> |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 28 | #include <asm/dma.h> |
Mike Frysinger | 1f83b8f | 2007-07-12 22:58:21 +0800 | [diff] [blame] | 29 | #include <asm/bfin5xx_spi.h> |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 30 | #include <asm/reboot.h> |
Bryan Wu | 5d448dd | 2007-11-12 23:24:42 +0800 | [diff] [blame] | 31 | #include <asm/portmux.h> |
Michael Hennerich | 14b0320 | 2008-05-07 11:41:26 +0800 | [diff] [blame] | 32 | #include <asm/dpmc.h> |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 33 | |
| 34 | /* |
| 35 | * Name the Board for the /proc/cpuinfo |
| 36 | */ |
Mike Frysinger | fe85cad | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 37 | const char bfin_board_name[] = "ADI BF537-STAMP"; |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 38 | |
| 39 | /* |
| 40 | * Driver needs to know address, irq and flag pin. |
| 41 | */ |
| 42 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 43 | #if defined(CONFIG_USB_ISP1760_HCD) || defined(CONFIG_USB_ISP1760_HCD_MODULE) |
Michael Hennerich | 3f37569 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 44 | #include <linux/usb/isp1760.h> |
| 45 | static struct resource bfin_isp1760_resources[] = { |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 46 | [0] = { |
Michael Hennerich | 3f37569 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 47 | .start = 0x203C0000, |
| 48 | .end = 0x203C0000 + 0x000fffff, |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 49 | .flags = IORESOURCE_MEM, |
| 50 | }, |
| 51 | [1] = { |
Michael Hennerich | 3f37569 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 52 | .start = IRQ_PF7, |
| 53 | .end = IRQ_PF7, |
Michael Hennerich | 6a6be3d | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 54 | .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_LOWLEVEL, |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 55 | }, |
| 56 | }; |
| 57 | |
Michael Hennerich | 3f37569 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 58 | static struct isp1760_platform_data isp1760_priv = { |
| 59 | .is_isp1761 = 0, |
Michael Hennerich | 3f37569 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 60 | .bus_width_16 = 1, |
| 61 | .port1_otg = 0, |
| 62 | .analog_oc = 0, |
| 63 | .dack_polarity_high = 0, |
| 64 | .dreq_polarity_high = 0, |
| 65 | }; |
| 66 | |
| 67 | static struct platform_device bfin_isp1760_device = { |
| 68 | .name = "isp1760-hcd", |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 69 | .id = 0, |
Michael Hennerich | 3f37569 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 70 | .dev = { |
| 71 | .platform_data = &isp1760_priv, |
| 72 | }, |
| 73 | .num_resources = ARRAY_SIZE(bfin_isp1760_resources), |
| 74 | .resource = bfin_isp1760_resources, |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 75 | }; |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 76 | #endif |
| 77 | |
Michael Hennerich | 2463ef2 | 2008-01-27 16:49:48 +0800 | [diff] [blame] | 78 | #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE) |
| 79 | #include <linux/input.h> |
| 80 | #include <linux/gpio_keys.h> |
| 81 | |
| 82 | static struct gpio_keys_button bfin_gpio_keys_table[] = { |
| 83 | {BTN_0, GPIO_PF2, 1, "gpio-keys: BTN0"}, |
| 84 | {BTN_1, GPIO_PF3, 1, "gpio-keys: BTN1"}, |
| 85 | {BTN_2, GPIO_PF4, 1, "gpio-keys: BTN2"}, |
| 86 | {BTN_3, GPIO_PF5, 1, "gpio-keys: BTN3"}, |
| 87 | }; |
| 88 | |
| 89 | static struct gpio_keys_platform_data bfin_gpio_keys_data = { |
| 90 | .buttons = bfin_gpio_keys_table, |
| 91 | .nbuttons = ARRAY_SIZE(bfin_gpio_keys_table), |
| 92 | }; |
| 93 | |
| 94 | static struct platform_device bfin_device_gpiokeys = { |
| 95 | .name = "gpio-keys", |
| 96 | .dev = { |
| 97 | .platform_data = &bfin_gpio_keys_data, |
| 98 | }, |
| 99 | }; |
| 100 | #endif |
| 101 | |
Mike Frysinger | cad2ab6 | 2008-02-22 17:01:31 +0800 | [diff] [blame] | 102 | static struct resource bfin_gpios_resources = { |
| 103 | .start = 0, |
| 104 | .end = MAX_BLACKFIN_GPIOS - 1, |
| 105 | .flags = IORESOURCE_IRQ, |
| 106 | }; |
| 107 | |
| 108 | static struct platform_device bfin_gpios_device = { |
| 109 | .name = "simple-gpio", |
| 110 | .id = -1, |
| 111 | .num_resources = 1, |
| 112 | .resource = &bfin_gpios_resources, |
| 113 | }; |
| 114 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 115 | #if defined(CONFIG_BFIN_CFPCMCIA) || defined(CONFIG_BFIN_CFPCMCIA_MODULE) |
| 116 | static struct resource bfin_pcmcia_cf_resources[] = { |
| 117 | { |
| 118 | .start = 0x20310000, /* IO PORT */ |
| 119 | .end = 0x20312000, |
| 120 | .flags = IORESOURCE_MEM, |
Mike Frysinger | 1f83b8f | 2007-07-12 22:58:21 +0800 | [diff] [blame] | 121 | }, { |
Simon Arlott | d2d50aa | 2007-06-11 15:31:30 +0800 | [diff] [blame] | 122 | .start = 0x20311000, /* Attribute Memory */ |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 123 | .end = 0x20311FFF, |
| 124 | .flags = IORESOURCE_MEM, |
Mike Frysinger | 1f83b8f | 2007-07-12 22:58:21 +0800 | [diff] [blame] | 125 | }, { |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 126 | .start = IRQ_PF4, |
| 127 | .end = IRQ_PF4, |
| 128 | .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_LOWLEVEL, |
Mike Frysinger | 1f83b8f | 2007-07-12 22:58:21 +0800 | [diff] [blame] | 129 | }, { |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 130 | .start = 6, /* Card Detect PF6 */ |
| 131 | .end = 6, |
| 132 | .flags = IORESOURCE_IRQ, |
| 133 | }, |
| 134 | }; |
| 135 | |
| 136 | static struct platform_device bfin_pcmcia_cf_device = { |
| 137 | .name = "bfin_cf_pcmcia", |
| 138 | .id = -1, |
| 139 | .num_resources = ARRAY_SIZE(bfin_pcmcia_cf_resources), |
| 140 | .resource = bfin_pcmcia_cf_resources, |
| 141 | }; |
| 142 | #endif |
| 143 | |
| 144 | #if defined(CONFIG_RTC_DRV_BFIN) || defined(CONFIG_RTC_DRV_BFIN_MODULE) |
| 145 | static struct platform_device rtc_device = { |
| 146 | .name = "rtc-bfin", |
| 147 | .id = -1, |
| 148 | }; |
| 149 | #endif |
| 150 | |
| 151 | #if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE) |
Michael Hennerich | 61f09b5 | 2009-07-24 08:48:31 +0000 | [diff] [blame] | 152 | #include <linux/smc91x.h> |
| 153 | |
| 154 | static struct smc91x_platdata smc91x_info = { |
| 155 | .flags = SMC91X_USE_16BIT | SMC91X_NOWAIT, |
| 156 | .leda = RPC_LED_100_10, |
| 157 | .ledb = RPC_LED_TX_RX, |
| 158 | }; |
| 159 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 160 | static struct resource smc91x_resources[] = { |
| 161 | { |
| 162 | .name = "smc91x-regs", |
| 163 | .start = 0x20300300, |
| 164 | .end = 0x20300300 + 16, |
| 165 | .flags = IORESOURCE_MEM, |
Mike Frysinger | 1f83b8f | 2007-07-12 22:58:21 +0800 | [diff] [blame] | 166 | }, { |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 167 | |
| 168 | .start = IRQ_PF7, |
| 169 | .end = IRQ_PF7, |
| 170 | .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL, |
| 171 | }, |
| 172 | }; |
| 173 | static struct platform_device smc91x_device = { |
| 174 | .name = "smc91x", |
| 175 | .id = 0, |
| 176 | .num_resources = ARRAY_SIZE(smc91x_resources), |
| 177 | .resource = smc91x_resources, |
Michael Hennerich | 61f09b5 | 2009-07-24 08:48:31 +0000 | [diff] [blame] | 178 | .dev = { |
| 179 | .platform_data = &smc91x_info, |
| 180 | }, |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 181 | }; |
| 182 | #endif |
| 183 | |
Alex Landau | f40d24d | 2007-07-12 12:11:48 +0800 | [diff] [blame] | 184 | #if defined(CONFIG_DM9000) || defined(CONFIG_DM9000_MODULE) |
| 185 | static struct resource dm9000_resources[] = { |
| 186 | [0] = { |
| 187 | .start = 0x203FB800, |
Barry Song | b3dec4a | 2009-07-27 06:42:50 +0000 | [diff] [blame] | 188 | .end = 0x203FB800 + 1, |
Alex Landau | f40d24d | 2007-07-12 12:11:48 +0800 | [diff] [blame] | 189 | .flags = IORESOURCE_MEM, |
| 190 | }, |
| 191 | [1] = { |
Barry Song | b3dec4a | 2009-07-27 06:42:50 +0000 | [diff] [blame] | 192 | .start = 0x203FB804, |
| 193 | .end = 0x203FB804 + 1, |
| 194 | .flags = IORESOURCE_MEM, |
| 195 | }, |
| 196 | [2] = { |
Alex Landau | f40d24d | 2007-07-12 12:11:48 +0800 | [diff] [blame] | 197 | .start = IRQ_PF9, |
| 198 | .end = IRQ_PF9, |
| 199 | .flags = (IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHEDGE), |
| 200 | }, |
| 201 | }; |
| 202 | |
| 203 | static struct platform_device dm9000_device = { |
| 204 | .name = "dm9000", |
| 205 | .id = -1, |
| 206 | .num_resources = ARRAY_SIZE(dm9000_resources), |
| 207 | .resource = dm9000_resources, |
| 208 | }; |
| 209 | #endif |
| 210 | |
Michael Hennerich | 561cc18 | 2007-11-17 23:56:08 +0800 | [diff] [blame] | 211 | #if defined(CONFIG_AX88180) || defined(CONFIG_AX88180_MODULE) |
| 212 | static struct resource ax88180_resources[] = { |
| 213 | [0] = { |
| 214 | .start = 0x20300000, |
| 215 | .end = 0x20300000 + 0x8000, |
| 216 | .flags = IORESOURCE_MEM, |
| 217 | }, |
| 218 | [1] = { |
| 219 | .start = IRQ_PF7, |
| 220 | .end = IRQ_PF7, |
| 221 | .flags = (IORESOURCE_IRQ | IORESOURCE_IRQ_LOWLEVEL), |
| 222 | }, |
| 223 | }; |
| 224 | |
| 225 | static struct platform_device ax88180_device = { |
| 226 | .name = "ax88180", |
| 227 | .id = -1, |
| 228 | .num_resources = ARRAY_SIZE(ax88180_resources), |
| 229 | .resource = ax88180_resources, |
| 230 | }; |
| 231 | #endif |
| 232 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 233 | #if defined(CONFIG_USB_SL811_HCD) || defined(CONFIG_USB_SL811_HCD_MODULE) |
| 234 | static struct resource sl811_hcd_resources[] = { |
| 235 | { |
| 236 | .start = 0x20340000, |
| 237 | .end = 0x20340000, |
| 238 | .flags = IORESOURCE_MEM, |
Mike Frysinger | 1f83b8f | 2007-07-12 22:58:21 +0800 | [diff] [blame] | 239 | }, { |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 240 | .start = 0x20340004, |
| 241 | .end = 0x20340004, |
| 242 | .flags = IORESOURCE_MEM, |
Mike Frysinger | 1f83b8f | 2007-07-12 22:58:21 +0800 | [diff] [blame] | 243 | }, { |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 244 | .start = CONFIG_USB_SL811_BFIN_IRQ, |
| 245 | .end = CONFIG_USB_SL811_BFIN_IRQ, |
| 246 | .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL, |
| 247 | }, |
| 248 | }; |
| 249 | |
| 250 | #if defined(CONFIG_USB_SL811_BFIN_USE_VBUS) |
| 251 | void sl811_port_power(struct device *dev, int is_on) |
| 252 | { |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 253 | gpio_request(CONFIG_USB_SL811_BFIN_GPIO_VBUS, "usb:SL811_VBUS"); |
Michael Hennerich | acbcd26 | 2008-01-22 18:36:20 +0800 | [diff] [blame] | 254 | gpio_direction_output(CONFIG_USB_SL811_BFIN_GPIO_VBUS, is_on); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 255 | } |
| 256 | #endif |
| 257 | |
| 258 | static struct sl811_platform_data sl811_priv = { |
| 259 | .potpg = 10, |
| 260 | .power = 250, /* == 500mA */ |
| 261 | #if defined(CONFIG_USB_SL811_BFIN_USE_VBUS) |
| 262 | .port_power = &sl811_port_power, |
| 263 | #endif |
| 264 | }; |
| 265 | |
| 266 | static struct platform_device sl811_hcd_device = { |
| 267 | .name = "sl811-hcd", |
| 268 | .id = 0, |
| 269 | .dev = { |
| 270 | .platform_data = &sl811_priv, |
| 271 | }, |
| 272 | .num_resources = ARRAY_SIZE(sl811_hcd_resources), |
| 273 | .resource = sl811_hcd_resources, |
| 274 | }; |
| 275 | #endif |
| 276 | |
| 277 | #if defined(CONFIG_USB_ISP1362_HCD) || defined(CONFIG_USB_ISP1362_HCD_MODULE) |
| 278 | static struct resource isp1362_hcd_resources[] = { |
| 279 | { |
| 280 | .start = 0x20360000, |
| 281 | .end = 0x20360000, |
| 282 | .flags = IORESOURCE_MEM, |
Mike Frysinger | 1f83b8f | 2007-07-12 22:58:21 +0800 | [diff] [blame] | 283 | }, { |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 284 | .start = 0x20360004, |
| 285 | .end = 0x20360004, |
| 286 | .flags = IORESOURCE_MEM, |
Mike Frysinger | 1f83b8f | 2007-07-12 22:58:21 +0800 | [diff] [blame] | 287 | }, { |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 288 | .start = CONFIG_USB_ISP1362_BFIN_GPIO_IRQ, |
| 289 | .end = CONFIG_USB_ISP1362_BFIN_GPIO_IRQ, |
| 290 | .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL, |
| 291 | }, |
| 292 | }; |
| 293 | |
| 294 | static struct isp1362_platform_data isp1362_priv = { |
| 295 | .sel15Kres = 1, |
| 296 | .clknotstop = 0, |
| 297 | .oc_enable = 0, |
| 298 | .int_act_high = 0, |
| 299 | .int_edge_triggered = 0, |
| 300 | .remote_wakeup_connected = 0, |
| 301 | .no_power_switching = 1, |
| 302 | .power_switching_mode = 0, |
| 303 | }; |
| 304 | |
| 305 | static struct platform_device isp1362_hcd_device = { |
| 306 | .name = "isp1362-hcd", |
| 307 | .id = 0, |
| 308 | .dev = { |
| 309 | .platform_data = &isp1362_priv, |
| 310 | }, |
| 311 | .num_resources = ARRAY_SIZE(isp1362_hcd_resources), |
| 312 | .resource = isp1362_hcd_resources, |
| 313 | }; |
| 314 | #endif |
| 315 | |
| 316 | #if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE) |
Graf Yang | 6531962 | 2009-02-04 16:49:45 +0800 | [diff] [blame] | 317 | static struct platform_device bfin_mii_bus = { |
| 318 | .name = "bfin_mii_bus", |
| 319 | }; |
| 320 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 321 | static struct platform_device bfin_mac_device = { |
| 322 | .name = "bfin_mac", |
Graf Yang | 6531962 | 2009-02-04 16:49:45 +0800 | [diff] [blame] | 323 | .dev.platform_data = &bfin_mii_bus, |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 324 | }; |
| 325 | #endif |
| 326 | |
| 327 | #if defined(CONFIG_USB_NET2272) || defined(CONFIG_USB_NET2272_MODULE) |
| 328 | static struct resource net2272_bfin_resources[] = { |
| 329 | { |
| 330 | .start = 0x20300000, |
| 331 | .end = 0x20300000 + 0x100, |
| 332 | .flags = IORESOURCE_MEM, |
Mike Frysinger | 1f83b8f | 2007-07-12 22:58:21 +0800 | [diff] [blame] | 333 | }, { |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 334 | .start = IRQ_PF7, |
| 335 | .end = IRQ_PF7, |
| 336 | .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL, |
| 337 | }, |
| 338 | }; |
| 339 | |
| 340 | static struct platform_device net2272_bfin_device = { |
| 341 | .name = "net2272", |
| 342 | .id = -1, |
| 343 | .num_resources = ARRAY_SIZE(net2272_bfin_resources), |
| 344 | .resource = net2272_bfin_resources, |
| 345 | }; |
| 346 | #endif |
| 347 | |
Mike Frysinger | fc68911 | 2008-06-25 11:41:42 +0800 | [diff] [blame] | 348 | #if defined(CONFIG_MTD_NAND_PLATFORM) || defined(CONFIG_MTD_NAND_PLATFORM_MODULE) |
| 349 | #ifdef CONFIG_MTD_PARTITIONS |
| 350 | const char *part_probes[] = { "cmdlinepart", "RedBoot", NULL }; |
| 351 | |
| 352 | static struct mtd_partition bfin_plat_nand_partitions[] = { |
| 353 | { |
Robin Getz | aa58297 | 2008-08-05 17:47:29 +0800 | [diff] [blame] | 354 | .name = "linux kernel(nand)", |
Mike Frysinger | fc68911 | 2008-06-25 11:41:42 +0800 | [diff] [blame] | 355 | .size = 0x400000, |
| 356 | .offset = 0, |
| 357 | }, { |
Robin Getz | aa58297 | 2008-08-05 17:47:29 +0800 | [diff] [blame] | 358 | .name = "file system(nand)", |
Mike Frysinger | fc68911 | 2008-06-25 11:41:42 +0800 | [diff] [blame] | 359 | .size = MTDPART_SIZ_FULL, |
| 360 | .offset = MTDPART_OFS_APPEND, |
| 361 | }, |
| 362 | }; |
| 363 | #endif |
| 364 | |
| 365 | #define BFIN_NAND_PLAT_CLE 2 |
| 366 | #define BFIN_NAND_PLAT_ALE 1 |
| 367 | static void bfin_plat_nand_cmd_ctrl(struct mtd_info *mtd, int cmd, unsigned int ctrl) |
| 368 | { |
| 369 | struct nand_chip *this = mtd->priv; |
| 370 | |
| 371 | if (cmd == NAND_CMD_NONE) |
| 372 | return; |
| 373 | |
| 374 | if (ctrl & NAND_CLE) |
| 375 | writeb(cmd, this->IO_ADDR_W + (1 << BFIN_NAND_PLAT_CLE)); |
| 376 | else |
| 377 | writeb(cmd, this->IO_ADDR_W + (1 << BFIN_NAND_PLAT_ALE)); |
| 378 | } |
| 379 | |
| 380 | #define BFIN_NAND_PLAT_READY GPIO_PF3 |
| 381 | static int bfin_plat_nand_dev_ready(struct mtd_info *mtd) |
| 382 | { |
| 383 | return gpio_get_value(BFIN_NAND_PLAT_READY); |
| 384 | } |
| 385 | |
| 386 | static struct platform_nand_data bfin_plat_nand_data = { |
| 387 | .chip = { |
| 388 | .chip_delay = 30, |
| 389 | #ifdef CONFIG_MTD_PARTITIONS |
| 390 | .part_probe_types = part_probes, |
| 391 | .partitions = bfin_plat_nand_partitions, |
| 392 | .nr_partitions = ARRAY_SIZE(bfin_plat_nand_partitions), |
| 393 | #endif |
| 394 | }, |
| 395 | .ctrl = { |
| 396 | .cmd_ctrl = bfin_plat_nand_cmd_ctrl, |
| 397 | .dev_ready = bfin_plat_nand_dev_ready, |
| 398 | }, |
| 399 | }; |
| 400 | |
| 401 | #define MAX(x, y) (x > y ? x : y) |
| 402 | static struct resource bfin_plat_nand_resources = { |
| 403 | .start = 0x20212000, |
| 404 | .end = 0x20212000 + (1 << MAX(BFIN_NAND_PLAT_CLE, BFIN_NAND_PLAT_ALE)), |
| 405 | .flags = IORESOURCE_IO, |
| 406 | }; |
| 407 | |
| 408 | static struct platform_device bfin_async_nand_device = { |
| 409 | .name = "gen_nand", |
| 410 | .id = -1, |
| 411 | .num_resources = 1, |
| 412 | .resource = &bfin_plat_nand_resources, |
| 413 | .dev = { |
| 414 | .platform_data = &bfin_plat_nand_data, |
| 415 | }, |
| 416 | }; |
| 417 | |
| 418 | static void bfin_plat_nand_init(void) |
| 419 | { |
| 420 | gpio_request(BFIN_NAND_PLAT_READY, "bfin_nand_plat"); |
| 421 | } |
| 422 | #else |
| 423 | static void bfin_plat_nand_init(void) {} |
| 424 | #endif |
| 425 | |
Mike Frysinger | 793dc27 | 2008-03-26 08:09:12 +0800 | [diff] [blame] | 426 | #if defined(CONFIG_MTD_PHYSMAP) || defined(CONFIG_MTD_PHYSMAP_MODULE) |
Mike Frysinger | de8c43f | 2008-01-24 17:14:04 +0800 | [diff] [blame] | 427 | static struct mtd_partition stamp_partitions[] = { |
| 428 | { |
Robin Getz | aa58297 | 2008-08-05 17:47:29 +0800 | [diff] [blame] | 429 | .name = "bootloader(nor)", |
Mike Frysinger | edf0564 | 2008-02-25 11:38:11 +0800 | [diff] [blame] | 430 | .size = 0x40000, |
Mike Frysinger | de8c43f | 2008-01-24 17:14:04 +0800 | [diff] [blame] | 431 | .offset = 0, |
| 432 | }, { |
Robin Getz | aa58297 | 2008-08-05 17:47:29 +0800 | [diff] [blame] | 433 | .name = "linux kernel(nor)", |
Grace Pan | 6ecb5b6 | 2009-01-07 23:14:38 +0800 | [diff] [blame] | 434 | .size = 0x180000, |
Mike Frysinger | de8c43f | 2008-01-24 17:14:04 +0800 | [diff] [blame] | 435 | .offset = MTDPART_OFS_APPEND, |
| 436 | }, { |
Robin Getz | aa58297 | 2008-08-05 17:47:29 +0800 | [diff] [blame] | 437 | .name = "file system(nor)", |
Grace Pan | 6ecb5b6 | 2009-01-07 23:14:38 +0800 | [diff] [blame] | 438 | .size = 0x400000 - 0x40000 - 0x180000 - 0x10000, |
Mike Frysinger | de8c43f | 2008-01-24 17:14:04 +0800 | [diff] [blame] | 439 | .offset = MTDPART_OFS_APPEND, |
| 440 | }, { |
Robin Getz | aa58297 | 2008-08-05 17:47:29 +0800 | [diff] [blame] | 441 | .name = "MAC Address(nor)", |
Mike Frysinger | de8c43f | 2008-01-24 17:14:04 +0800 | [diff] [blame] | 442 | .size = MTDPART_SIZ_FULL, |
| 443 | .offset = 0x3F0000, |
| 444 | .mask_flags = MTD_WRITEABLE, |
| 445 | } |
| 446 | }; |
| 447 | |
| 448 | static struct physmap_flash_data stamp_flash_data = { |
| 449 | .width = 2, |
| 450 | .parts = stamp_partitions, |
| 451 | .nr_parts = ARRAY_SIZE(stamp_partitions), |
| 452 | }; |
| 453 | |
| 454 | static struct resource stamp_flash_resource = { |
| 455 | .start = 0x20000000, |
| 456 | .end = 0x203fffff, |
| 457 | .flags = IORESOURCE_MEM, |
| 458 | }; |
| 459 | |
| 460 | static struct platform_device stamp_flash_device = { |
| 461 | .name = "physmap-flash", |
| 462 | .id = 0, |
| 463 | .dev = { |
| 464 | .platform_data = &stamp_flash_data, |
| 465 | }, |
| 466 | .num_resources = 1, |
| 467 | .resource = &stamp_flash_resource, |
| 468 | }; |
Mike Frysinger | 793dc27 | 2008-03-26 08:09:12 +0800 | [diff] [blame] | 469 | #endif |
Mike Frysinger | de8c43f | 2008-01-24 17:14:04 +0800 | [diff] [blame] | 470 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 471 | #if defined(CONFIG_MTD_M25P80) \ |
| 472 | || defined(CONFIG_MTD_M25P80_MODULE) |
| 473 | static struct mtd_partition bfin_spi_flash_partitions[] = { |
| 474 | { |
Robin Getz | aa58297 | 2008-08-05 17:47:29 +0800 | [diff] [blame] | 475 | .name = "bootloader(spi)", |
Mike Frysinger | edf0564 | 2008-02-25 11:38:11 +0800 | [diff] [blame] | 476 | .size = 0x00040000, |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 477 | .offset = 0, |
| 478 | .mask_flags = MTD_CAP_ROM |
Mike Frysinger | 1f83b8f | 2007-07-12 22:58:21 +0800 | [diff] [blame] | 479 | }, { |
Robin Getz | aa58297 | 2008-08-05 17:47:29 +0800 | [diff] [blame] | 480 | .name = "linux kernel(spi)", |
Grace Pan | 6ecb5b6 | 2009-01-07 23:14:38 +0800 | [diff] [blame] | 481 | .size = 0x180000, |
Mike Frysinger | edf0564 | 2008-02-25 11:38:11 +0800 | [diff] [blame] | 482 | .offset = MTDPART_OFS_APPEND, |
Mike Frysinger | 1f83b8f | 2007-07-12 22:58:21 +0800 | [diff] [blame] | 483 | }, { |
Robin Getz | aa58297 | 2008-08-05 17:47:29 +0800 | [diff] [blame] | 484 | .name = "file system(spi)", |
Mike Frysinger | edf0564 | 2008-02-25 11:38:11 +0800 | [diff] [blame] | 485 | .size = MTDPART_SIZ_FULL, |
| 486 | .offset = MTDPART_OFS_APPEND, |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 487 | } |
| 488 | }; |
| 489 | |
| 490 | static struct flash_platform_data bfin_spi_flash_data = { |
| 491 | .name = "m25p80", |
| 492 | .parts = bfin_spi_flash_partitions, |
| 493 | .nr_parts = ARRAY_SIZE(bfin_spi_flash_partitions), |
Michael Hennerich | 88a8078b3 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 494 | /* .type = "m25p64", */ |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 495 | }; |
| 496 | |
| 497 | /* SPI flash chip (m25p64) */ |
| 498 | static struct bfin5xx_spi_chip spi_flash_chip_info = { |
| 499 | .enable_dma = 0, /* use dma transfer with this chip*/ |
| 500 | .bits_per_word = 8, |
| 501 | }; |
| 502 | #endif |
| 503 | |
Mike Frysinger | a261eec | 2009-05-20 14:05:36 +0000 | [diff] [blame] | 504 | #if defined(CONFIG_BFIN_SPI_ADC) \ |
| 505 | || defined(CONFIG_BFIN_SPI_ADC_MODULE) |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 506 | /* SPI ADC chip */ |
| 507 | static struct bfin5xx_spi_chip spi_adc_chip_info = { |
| 508 | .enable_dma = 1, /* use dma transfer with this chip*/ |
| 509 | .bits_per_word = 16, |
| 510 | }; |
| 511 | #endif |
| 512 | |
Barry Song | 8312440 | 2009-08-06 21:03:02 +0000 | [diff] [blame] | 513 | #if defined(CONFIG_SND_BF5XX_SOC_AD1836) \ |
| 514 | || defined(CONFIG_SND_BF5XX_SOC_AD1836_MODULE) |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 515 | static struct bfin5xx_spi_chip ad1836_spi_chip_info = { |
| 516 | .enable_dma = 0, |
| 517 | .bits_per_word = 16, |
| 518 | }; |
| 519 | #endif |
| 520 | |
Barry Song | d4b834c | 2009-06-04 10:14:17 +0000 | [diff] [blame] | 521 | #if defined(CONFIG_SND_BF5XX_SOC_AD1938) \ |
| 522 | || defined(CONFIG_SND_BF5XX_SOC_AD1938_MODULE) |
| 523 | static struct bfin5xx_spi_chip ad1938_spi_chip_info = { |
| 524 | .enable_dma = 0, |
| 525 | .bits_per_word = 8, |
| 526 | .cs_gpio = GPIO_PF5, |
| 527 | }; |
| 528 | #endif |
| 529 | |
Barry Song | 427f277 | 2009-07-17 07:04:55 +0000 | [diff] [blame] | 530 | #if defined(CONFIG_INPUT_EVAL_AD7147EBZ) |
| 531 | #include <linux/input.h> |
| 532 | #include <linux/input/ad714x.h> |
| 533 | static struct bfin5xx_spi_chip ad7147_spi_chip_info = { |
| 534 | .enable_dma = 0, |
| 535 | .bits_per_word = 16, |
| 536 | }; |
| 537 | |
| 538 | static struct ad714x_slider_plat slider_plat[] = { |
| 539 | { |
| 540 | .start_stage = 0, |
| 541 | .end_stage = 7, |
| 542 | .max_coord = 128, |
| 543 | }, |
| 544 | }; |
| 545 | |
| 546 | static struct ad714x_button_plat button_plat[] = { |
| 547 | { |
| 548 | .keycode = BTN_FORWARD, |
| 549 | .l_mask = 0, |
| 550 | .h_mask = 0x600, |
| 551 | }, |
| 552 | { |
| 553 | .keycode = BTN_LEFT, |
| 554 | .l_mask = 0, |
| 555 | .h_mask = 0x500, |
| 556 | }, |
| 557 | { |
| 558 | .keycode = BTN_MIDDLE, |
| 559 | .l_mask = 0, |
| 560 | .h_mask = 0x800, |
| 561 | }, |
| 562 | { |
| 563 | .keycode = BTN_RIGHT, |
| 564 | .l_mask = 0x100, |
| 565 | .h_mask = 0x400, |
| 566 | }, |
| 567 | { |
| 568 | .keycode = BTN_BACK, |
| 569 | .l_mask = 0x200, |
| 570 | .h_mask = 0x400, |
| 571 | }, |
| 572 | }; |
| 573 | static struct ad714x_platform_data ad7147_platfrom_data = { |
| 574 | .slider_num = 1, |
| 575 | .button_num = 5, |
| 576 | .slider = slider_plat, |
| 577 | .button = button_plat, |
| 578 | .stage_cfg_reg = { |
| 579 | {0xFBFF, 0x1FFF, 0, 0x2626, 1600, 1600, 1600, 1600}, |
| 580 | {0xEFFF, 0x1FFF, 0, 0x2626, 1650, 1650, 1650, 1650}, |
| 581 | {0xFFFF, 0x1FFE, 0, 0x2626, 1650, 1650, 1650, 1650}, |
| 582 | {0xFFFF, 0x1FFB, 0, 0x2626, 1650, 1650, 1650, 1650}, |
| 583 | {0xFFFF, 0x1FEF, 0, 0x2626, 1650, 1650, 1650, 1650}, |
| 584 | {0xFFFF, 0x1FBF, 0, 0x2626, 1650, 1650, 1650, 1650}, |
| 585 | {0xFFFF, 0x1EFF, 0, 0x2626, 1650, 1650, 1650, 1650}, |
| 586 | {0xFFFF, 0x1BFF, 0, 0x2626, 1600, 1600, 1600, 1600}, |
| 587 | {0xFF7B, 0x3FFF, 0x506, 0x2626, 1100, 1100, 1150, 1150}, |
| 588 | {0xFDFE, 0x3FFF, 0x606, 0x2626, 1100, 1100, 1150, 1150}, |
| 589 | {0xFEBA, 0x1FFF, 0x1400, 0x2626, 1200, 1200, 1300, 1300}, |
| 590 | {0xFFEF, 0x1FFF, 0x0, 0x2626, 1100, 1100, 1150, 1150}, |
| 591 | }, |
| 592 | .sys_cfg_reg = {0x2B2, 0x0, 0x3233, 0x819, 0x832, 0xCFF, 0xCFF, 0x0}, |
| 593 | }; |
| 594 | #endif |
| 595 | |
| 596 | #if defined(CONFIG_INPUT_EVAL_AD7142EB) |
| 597 | #include <linux/input.h> |
| 598 | #include <linux/input/ad714x.h> |
| 599 | static struct ad714x_button_plat button_plat[] = { |
| 600 | { |
| 601 | .keycode = BTN_1, |
| 602 | .l_mask = 0, |
| 603 | .h_mask = 0x1, |
| 604 | }, |
| 605 | { |
| 606 | .keycode = BTN_2, |
| 607 | .l_mask = 0, |
| 608 | .h_mask = 0x2, |
| 609 | }, |
| 610 | { |
| 611 | .keycode = BTN_3, |
| 612 | .l_mask = 0, |
| 613 | .h_mask = 0x4, |
| 614 | }, |
| 615 | { |
| 616 | .keycode = BTN_4, |
| 617 | .l_mask = 0x0, |
| 618 | .h_mask = 0x8, |
| 619 | }, |
| 620 | }; |
| 621 | static struct ad714x_platform_data ad7142_platfrom_data = { |
| 622 | .button_num = 4, |
| 623 | .button = button_plat, |
| 624 | .stage_cfg_reg = { |
| 625 | /* fixme: figure out right setting for all comoponent according |
| 626 | * to hardware feature of EVAL-AD7142EB board */ |
| 627 | {0xE7FF, 0x3FFF, 0x0005, 0x2626, 0x01F4, 0x01F4, 0x028A, 0x028A}, |
| 628 | {0xFDBF, 0x3FFF, 0x0001, 0x2626, 0x01F4, 0x01F4, 0x028A, 0x028A}, |
| 629 | {0xFFFF, 0x2DFF, 0x0001, 0x2626, 0x01F4, 0x01F4, 0x028A, 0x028A}, |
| 630 | {0xFFFF, 0x37BF, 0x0001, 0x2626, 0x01F4, 0x01F4, 0x028A, 0x028A}, |
| 631 | {0xFFFF, 0x3FFF, 0x0000, 0x0606, 0x01F4, 0x01F4, 0x0320, 0x0320}, |
| 632 | {0xFFFF, 0x3FFF, 0x0000, 0x0606, 0x01F4, 0x01F4, 0x0320, 0x0320}, |
| 633 | {0xFFFF, 0x3FFF, 0x0000, 0x0606, 0x01F4, 0x01F4, 0x0320, 0x0320}, |
| 634 | {0xFFFF, 0x3FFF, 0x0000, 0x0606, 0x01F4, 0x01F4, 0x0320, 0x0320}, |
| 635 | {0xFFFF, 0x3FFF, 0x0000, 0x0606, 0x01F4, 0x01F4, 0x0320, 0x0320}, |
| 636 | {0xFFFF, 0x3FFF, 0x0000, 0x0606, 0x01F4, 0x01F4, 0x0320, 0x0320}, |
| 637 | {0xFFFF, 0x3FFF, 0x0000, 0x0606, 0x01F4, 0x01F4, 0x0320, 0x0320}, |
| 638 | {0xFFFF, 0x3FFF, 0x0000, 0x0606, 0x01F4, 0x01F4, 0x0320, 0x0320}, |
| 639 | }, |
| 640 | .sys_cfg_reg = {0x0B2, 0x0, 0x690, 0x664, 0x290F, 0xF, 0xF, 0x0}, |
| 641 | }; |
| 642 | #endif |
| 643 | |
Yi Li | f79ea4c | 2009-01-07 23:14:38 +0800 | [diff] [blame] | 644 | #if defined(CONFIG_MMC_SPI) || defined(CONFIG_MMC_SPI_MODULE) |
| 645 | #define MMC_SPI_CARD_DETECT_INT IRQ_PF5 |
| 646 | |
| 647 | static int bfin_mmc_spi_init(struct device *dev, |
| 648 | irqreturn_t (*detect_int)(int, void *), void *data) |
| 649 | { |
| 650 | return request_irq(MMC_SPI_CARD_DETECT_INT, detect_int, |
| 651 | IRQF_TRIGGER_FALLING, "mmc-spi-detect", data); |
| 652 | } |
| 653 | |
| 654 | static void bfin_mmc_spi_exit(struct device *dev, void *data) |
| 655 | { |
| 656 | free_irq(MMC_SPI_CARD_DETECT_INT, data); |
| 657 | } |
| 658 | |
| 659 | static struct mmc_spi_platform_data bfin_mmc_spi_pdata = { |
| 660 | .init = bfin_mmc_spi_init, |
| 661 | .exit = bfin_mmc_spi_exit, |
| 662 | .detect_delay = 100, /* msecs */ |
| 663 | }; |
| 664 | |
| 665 | static struct bfin5xx_spi_chip mmc_spi_chip_info = { |
| 666 | .enable_dma = 0, |
| 667 | .bits_per_word = 8, |
Yi Li | e68d1eb | 2009-06-03 09:46:22 +0000 | [diff] [blame] | 668 | .pio_interrupt = 0, |
Yi Li | f79ea4c | 2009-01-07 23:14:38 +0800 | [diff] [blame] | 669 | }; |
| 670 | #endif |
| 671 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 672 | #if defined(CONFIG_TOUCHSCREEN_AD7877) || defined(CONFIG_TOUCHSCREEN_AD7877_MODULE) |
Michael Hennerich | 46aa04f | 2008-10-13 11:30:17 +0800 | [diff] [blame] | 673 | #include <linux/spi/ad7877.h> |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 674 | static struct bfin5xx_spi_chip spi_ad7877_chip_info = { |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 675 | .enable_dma = 0, |
| 676 | .bits_per_word = 16, |
| 677 | }; |
| 678 | |
| 679 | static const struct ad7877_platform_data bfin_ad7877_ts_info = { |
| 680 | .model = 7877, |
| 681 | .vref_delay_usecs = 50, /* internal, no capacitor */ |
| 682 | .x_plate_ohms = 419, |
| 683 | .y_plate_ohms = 486, |
| 684 | .pressure_max = 1000, |
| 685 | .pressure_min = 0, |
| 686 | .stopacq_polarity = 1, |
| 687 | .first_conversion_delay = 3, |
| 688 | .acquisition_time = 1, |
| 689 | .averaging = 1, |
| 690 | .pen_down_acc_interval = 1, |
| 691 | }; |
| 692 | #endif |
| 693 | |
Michael Hennerich | 46aa04f | 2008-10-13 11:30:17 +0800 | [diff] [blame] | 694 | #if defined(CONFIG_TOUCHSCREEN_AD7879) || defined(CONFIG_TOUCHSCREEN_AD7879_MODULE) |
| 695 | #include <linux/spi/ad7879.h> |
Michael Hennerich | 46aa04f | 2008-10-13 11:30:17 +0800 | [diff] [blame] | 696 | static const struct ad7879_platform_data bfin_ad7879_ts_info = { |
| 697 | .model = 7879, /* Model = AD7879 */ |
| 698 | .x_plate_ohms = 620, /* 620 Ohm from the touch datasheet */ |
| 699 | .pressure_max = 10000, |
| 700 | .pressure_min = 0, |
| 701 | .first_conversion_delay = 3, /* wait 512us before do a first conversion */ |
| 702 | .acquisition_time = 1, /* 4us acquisition time per sample */ |
| 703 | .median = 2, /* do 8 measurements */ |
| 704 | .averaging = 1, /* take the average of 4 middle samples */ |
| 705 | .pen_down_acc_interval = 255, /* 9.4 ms */ |
| 706 | .gpio_output = 1, /* configure AUX/VBAT/GPIO as GPIO output */ |
| 707 | .gpio_default = 1, /* During initialization set GPIO = HIGH */ |
| 708 | }; |
| 709 | #endif |
| 710 | |
Michael Hennerich | ffc4d8b | 2009-05-29 15:41:18 +0000 | [diff] [blame] | 711 | #if defined(CONFIG_INPUT_ADXL34X) || defined(CONFIG_INPUT_ADXL34X_MODULE) |
| 712 | #include <linux/input.h> |
| 713 | #include <linux/spi/adxl34x.h> |
| 714 | static const struct adxl34x_platform_data adxl34x_info = { |
| 715 | .x_axis_offset = 0, |
| 716 | .y_axis_offset = 0, |
| 717 | .z_axis_offset = 0, |
| 718 | .tap_threshold = 0x31, |
| 719 | .tap_duration = 0x10, |
| 720 | .tap_latency = 0x60, |
| 721 | .tap_window = 0xF0, |
| 722 | .tap_axis_control = ADXL_TAP_X_EN | ADXL_TAP_Y_EN | ADXL_TAP_Z_EN, |
| 723 | .act_axis_control = 0xFF, |
| 724 | .activity_threshold = 5, |
| 725 | .inactivity_threshold = 3, |
| 726 | .inactivity_time = 4, |
| 727 | .free_fall_threshold = 0x7, |
| 728 | .free_fall_time = 0x20, |
| 729 | .data_rate = 0x8, |
| 730 | .data_range = ADXL_FULL_RES, |
| 731 | |
| 732 | .ev_type = EV_ABS, |
| 733 | .ev_code_x = ABS_X, /* EV_REL */ |
| 734 | .ev_code_y = ABS_Y, /* EV_REL */ |
| 735 | .ev_code_z = ABS_Z, /* EV_REL */ |
| 736 | |
| 737 | .ev_code_tap_x = BTN_TOUCH, /* EV_KEY */ |
| 738 | .ev_code_tap_y = BTN_TOUCH, /* EV_KEY */ |
| 739 | .ev_code_tap_z = BTN_TOUCH, /* EV_KEY */ |
| 740 | |
| 741 | /* .ev_code_ff = KEY_F,*/ /* EV_KEY */ |
| 742 | /* .ev_code_act_inactivity = KEY_A,*/ /* EV_KEY */ |
| 743 | .power_mode = ADXL_AUTO_SLEEP | ADXL_LINK, |
| 744 | .fifo_mode = ADXL_FIFO_STREAM, |
| 745 | }; |
| 746 | #endif |
| 747 | |
Michael Hennerich | f515015 | 2008-10-16 23:23:18 +0800 | [diff] [blame] | 748 | #if defined(CONFIG_TOUCHSCREEN_AD7879_SPI) || defined(CONFIG_TOUCHSCREEN_AD7879_SPI_MODULE) |
| 749 | static struct bfin5xx_spi_chip spi_ad7879_chip_info = { |
| 750 | .enable_dma = 0, |
| 751 | .bits_per_word = 16, |
| 752 | }; |
| 753 | #endif |
| 754 | |
Michael Hennerich | 6e66893 | 2008-02-09 01:54:09 +0800 | [diff] [blame] | 755 | #if defined(CONFIG_SPI_SPIDEV) || defined(CONFIG_SPI_SPIDEV_MODULE) |
| 756 | static struct bfin5xx_spi_chip spidev_chip_info = { |
| 757 | .enable_dma = 0, |
| 758 | .bits_per_word = 8, |
| 759 | }; |
| 760 | #endif |
| 761 | |
Michael Hennerich | 2043f3f | 2008-10-13 14:46:30 +0800 | [diff] [blame] | 762 | #if defined(CONFIG_FB_BFIN_LQ035Q1) || defined(CONFIG_FB_BFIN_LQ035Q1_MODULE) |
| 763 | static struct bfin5xx_spi_chip lq035q1_spi_chip_info = { |
| 764 | .enable_dma = 0, |
| 765 | .bits_per_word = 8, |
| 766 | }; |
| 767 | #endif |
| 768 | |
Michael Hennerich | 85a192e | 2009-01-07 23:14:38 +0800 | [diff] [blame] | 769 | #if defined(CONFIG_ENC28J60) || defined(CONFIG_ENC28J60_MODULE) |
| 770 | static struct bfin5xx_spi_chip enc28j60_spi_chip_info = { |
| 771 | .enable_dma = 1, |
| 772 | .bits_per_word = 8, |
| 773 | .cs_gpio = GPIO_PF10, |
| 774 | }; |
| 775 | #endif |
| 776 | |
Michael Hennerich | 8e9d5c7 | 2008-04-24 08:46:19 +0800 | [diff] [blame] | 777 | #if defined(CONFIG_MTD_DATAFLASH) \ |
| 778 | || defined(CONFIG_MTD_DATAFLASH_MODULE) |
Michael Hennerich | ceac265 | 2008-08-25 17:39:11 +0800 | [diff] [blame] | 779 | |
| 780 | static struct mtd_partition bfin_spi_dataflash_partitions[] = { |
| 781 | { |
| 782 | .name = "bootloader(spi)", |
| 783 | .size = 0x00040000, |
| 784 | .offset = 0, |
| 785 | .mask_flags = MTD_CAP_ROM |
| 786 | }, { |
| 787 | .name = "linux kernel(spi)", |
Grace Pan | 6ecb5b6 | 2009-01-07 23:14:38 +0800 | [diff] [blame] | 788 | .size = 0x180000, |
Michael Hennerich | ceac265 | 2008-08-25 17:39:11 +0800 | [diff] [blame] | 789 | .offset = MTDPART_OFS_APPEND, |
| 790 | }, { |
| 791 | .name = "file system(spi)", |
| 792 | .size = MTDPART_SIZ_FULL, |
| 793 | .offset = MTDPART_OFS_APPEND, |
| 794 | } |
| 795 | }; |
| 796 | |
| 797 | static struct flash_platform_data bfin_spi_dataflash_data = { |
| 798 | .name = "SPI Dataflash", |
| 799 | .parts = bfin_spi_dataflash_partitions, |
| 800 | .nr_parts = ARRAY_SIZE(bfin_spi_dataflash_partitions), |
| 801 | }; |
| 802 | |
Michael Hennerich | 8e9d5c7 | 2008-04-24 08:46:19 +0800 | [diff] [blame] | 803 | /* DataFlash chip */ |
| 804 | static struct bfin5xx_spi_chip data_flash_chip_info = { |
| 805 | .enable_dma = 0, /* use dma transfer with this chip*/ |
| 806 | .bits_per_word = 8, |
| 807 | }; |
| 808 | #endif |
| 809 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 810 | static struct spi_board_info bfin_spi_board_info[] __initdata = { |
| 811 | #if defined(CONFIG_MTD_M25P80) \ |
| 812 | || defined(CONFIG_MTD_M25P80_MODULE) |
| 813 | { |
| 814 | /* the modalias must be the same as spi device driver name */ |
| 815 | .modalias = "m25p80", /* Name of spi_driver for this device */ |
| 816 | .max_speed_hz = 25000000, /* max spi clock (SCK) speed in HZ */ |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 817 | .bus_num = 0, /* Framework bus number */ |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 818 | .chip_select = 1, /* Framework chip select. On STAMP537 it is SPISSEL1*/ |
| 819 | .platform_data = &bfin_spi_flash_data, |
| 820 | .controller_data = &spi_flash_chip_info, |
| 821 | .mode = SPI_MODE_3, |
| 822 | }, |
| 823 | #endif |
Michael Hennerich | 8e9d5c7 | 2008-04-24 08:46:19 +0800 | [diff] [blame] | 824 | #if defined(CONFIG_MTD_DATAFLASH) \ |
| 825 | || defined(CONFIG_MTD_DATAFLASH_MODULE) |
| 826 | { /* DataFlash chip */ |
| 827 | .modalias = "mtd_dataflash", |
Michael Hennerich | ceac265 | 2008-08-25 17:39:11 +0800 | [diff] [blame] | 828 | .max_speed_hz = 33250000, /* max spi clock (SCK) speed in HZ */ |
Michael Hennerich | 8e9d5c7 | 2008-04-24 08:46:19 +0800 | [diff] [blame] | 829 | .bus_num = 0, /* Framework bus number */ |
| 830 | .chip_select = 1, /* Framework chip select. On STAMP537 it is SPISSEL1*/ |
Michael Hennerich | ceac265 | 2008-08-25 17:39:11 +0800 | [diff] [blame] | 831 | .platform_data = &bfin_spi_dataflash_data, |
Michael Hennerich | 8e9d5c7 | 2008-04-24 08:46:19 +0800 | [diff] [blame] | 832 | .controller_data = &data_flash_chip_info, |
| 833 | .mode = SPI_MODE_3, |
| 834 | }, |
| 835 | #endif |
Mike Frysinger | a261eec | 2009-05-20 14:05:36 +0000 | [diff] [blame] | 836 | #if defined(CONFIG_BFIN_SPI_ADC) \ |
| 837 | || defined(CONFIG_BFIN_SPI_ADC_MODULE) |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 838 | { |
| 839 | .modalias = "bfin_spi_adc", /* Name of spi_driver for this device */ |
| 840 | .max_speed_hz = 6250000, /* max spi clock (SCK) speed in HZ */ |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 841 | .bus_num = 0, /* Framework bus number */ |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 842 | .chip_select = 1, /* Framework chip select. */ |
| 843 | .platform_data = NULL, /* No spi_driver specific config */ |
| 844 | .controller_data = &spi_adc_chip_info, |
| 845 | }, |
| 846 | #endif |
| 847 | |
Barry Song | 8312440 | 2009-08-06 21:03:02 +0000 | [diff] [blame] | 848 | #if defined(CONFIG_SND_BF5XX_SOC_AD1836) \ |
| 849 | || defined(CONFIG_SND_BF5XX_SOC_AD1836_MODULE) |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 850 | { |
Barry Song | dac9817 | 2009-08-13 21:07:37 +0000 | [diff] [blame] | 851 | .modalias = "ad1836", |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 852 | .max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */ |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 853 | .bus_num = 0, |
Barry Song | 8312440 | 2009-08-06 21:03:02 +0000 | [diff] [blame] | 854 | .chip_select = 4,/* CONFIG_SND_BLACKFIN_SPI_PFBIT */ |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 855 | .controller_data = &ad1836_spi_chip_info, |
Barry Song | 8312440 | 2009-08-06 21:03:02 +0000 | [diff] [blame] | 856 | .mode = SPI_MODE_3, |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 857 | }, |
| 858 | #endif |
Barry Song | d4b834c | 2009-06-04 10:14:17 +0000 | [diff] [blame] | 859 | |
| 860 | #if defined(CONFIG_SND_BF5XX_SOC_AD1938) || defined(CONFIG_SND_BF5XX_SOC_AD1938_MODULE) |
| 861 | { |
Barry Song | dac9817 | 2009-08-13 21:07:37 +0000 | [diff] [blame] | 862 | .modalias = "ad1938", |
Barry Song | d4b834c | 2009-06-04 10:14:17 +0000 | [diff] [blame] | 863 | .max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */ |
| 864 | .bus_num = 0, |
| 865 | .chip_select = 0,/* CONFIG_SND_BLACKFIN_SPI_PFBIT */ |
| 866 | .controller_data = &ad1938_spi_chip_info, |
| 867 | .mode = SPI_MODE_3, |
| 868 | }, |
| 869 | #endif |
| 870 | |
Barry Song | 427f277 | 2009-07-17 07:04:55 +0000 | [diff] [blame] | 871 | #if defined(CONFIG_INPUT_EVAL_AD7147EBZ) |
| 872 | { |
| 873 | .modalias = "ad714x_captouch", |
| 874 | .max_speed_hz = 1000000, /* max spi clock (SCK) speed in HZ */ |
| 875 | .irq = IRQ_PF4, |
| 876 | .bus_num = 0, |
| 877 | .chip_select = 5, |
| 878 | .mode = SPI_MODE_3, |
| 879 | .platform_data = &ad7147_platfrom_data, |
| 880 | .controller_data = &ad7147_spi_chip_info, |
| 881 | }, |
| 882 | #endif |
| 883 | |
Yi Li | f79ea4c | 2009-01-07 23:14:38 +0800 | [diff] [blame] | 884 | #if defined(CONFIG_MMC_SPI) || defined(CONFIG_MMC_SPI_MODULE) |
| 885 | { |
| 886 | .modalias = "mmc_spi", |
| 887 | .max_speed_hz = 20000000, /* max spi clock (SCK) speed in HZ */ |
| 888 | .bus_num = 0, |
| 889 | .chip_select = 4, |
| 890 | .platform_data = &bfin_mmc_spi_pdata, |
| 891 | .controller_data = &mmc_spi_chip_info, |
| 892 | .mode = SPI_MODE_3, |
| 893 | }, |
| 894 | #endif |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 895 | #if defined(CONFIG_TOUCHSCREEN_AD7877) || defined(CONFIG_TOUCHSCREEN_AD7877_MODULE) |
| 896 | { |
| 897 | .modalias = "ad7877", |
| 898 | .platform_data = &bfin_ad7877_ts_info, |
| 899 | .irq = IRQ_PF6, |
| 900 | .max_speed_hz = 12500000, /* max spi clock (SCK) speed in HZ */ |
Michael Hennerich | c7d4896 | 2007-11-15 21:33:31 +0800 | [diff] [blame] | 901 | .bus_num = 0, |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 902 | .chip_select = 1, |
| 903 | .controller_data = &spi_ad7877_chip_info, |
| 904 | }, |
| 905 | #endif |
Michael Hennerich | f515015 | 2008-10-16 23:23:18 +0800 | [diff] [blame] | 906 | #if defined(CONFIG_TOUCHSCREEN_AD7879_SPI) || defined(CONFIG_TOUCHSCREEN_AD7879_SPI_MODULE) |
Michael Hennerich | 46aa04f | 2008-10-13 11:30:17 +0800 | [diff] [blame] | 907 | { |
| 908 | .modalias = "ad7879", |
| 909 | .platform_data = &bfin_ad7879_ts_info, |
| 910 | .irq = IRQ_PF7, |
| 911 | .max_speed_hz = 5000000, /* max spi clock (SCK) speed in HZ */ |
| 912 | .bus_num = 0, |
| 913 | .chip_select = 1, |
| 914 | .controller_data = &spi_ad7879_chip_info, |
| 915 | .mode = SPI_CPHA | SPI_CPOL, |
| 916 | }, |
| 917 | #endif |
Michael Hennerich | 6e66893 | 2008-02-09 01:54:09 +0800 | [diff] [blame] | 918 | #if defined(CONFIG_SPI_SPIDEV) || defined(CONFIG_SPI_SPIDEV_MODULE) |
| 919 | { |
| 920 | .modalias = "spidev", |
| 921 | .max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */ |
| 922 | .bus_num = 0, |
| 923 | .chip_select = 1, |
| 924 | .controller_data = &spidev_chip_info, |
| 925 | }, |
| 926 | #endif |
Michael Hennerich | 2043f3f | 2008-10-13 14:46:30 +0800 | [diff] [blame] | 927 | #if defined(CONFIG_FB_BFIN_LQ035Q1) || defined(CONFIG_FB_BFIN_LQ035Q1_MODULE) |
| 928 | { |
| 929 | .modalias = "bfin-lq035q1-spi", |
| 930 | .max_speed_hz = 20000000, /* max spi clock (SCK) speed in HZ */ |
| 931 | .bus_num = 0, |
Michael Hennerich | 46aa04f | 2008-10-13 11:30:17 +0800 | [diff] [blame] | 932 | .chip_select = 2, |
Michael Hennerich | 2043f3f | 2008-10-13 14:46:30 +0800 | [diff] [blame] | 933 | .controller_data = &lq035q1_spi_chip_info, |
| 934 | .mode = SPI_CPHA | SPI_CPOL, |
| 935 | }, |
| 936 | #endif |
Michael Hennerich | 85a192e | 2009-01-07 23:14:38 +0800 | [diff] [blame] | 937 | #if defined(CONFIG_ENC28J60) || defined(CONFIG_ENC28J60_MODULE) |
| 938 | { |
| 939 | .modalias = "enc28j60", |
| 940 | .max_speed_hz = 20000000, /* max spi clock (SCK) speed in HZ */ |
| 941 | .irq = IRQ_PF6, |
| 942 | .bus_num = 0, |
| 943 | .chip_select = 0, /* GPIO controlled SSEL */ |
| 944 | .controller_data = &enc28j60_spi_chip_info, |
| 945 | .mode = SPI_MODE_0, |
| 946 | }, |
| 947 | #endif |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 948 | }; |
| 949 | |
Mike Frysinger | 5bda272 | 2008-06-07 15:03:01 +0800 | [diff] [blame] | 950 | #if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE) |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 951 | /* SPI controller data */ |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 952 | static struct bfin5xx_spi_master bfin_spi0_info = { |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 953 | .num_chipselect = 8, |
| 954 | .enable_dma = 1, /* master has the ability to do dma transfer */ |
Bryan Wu | 5d448dd | 2007-11-12 23:24:42 +0800 | [diff] [blame] | 955 | .pin_req = {P_SPI0_SCK, P_SPI0_MISO, P_SPI0_MOSI, 0}, |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 956 | }; |
| 957 | |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 958 | /* SPI (0) */ |
| 959 | static struct resource bfin_spi0_resource[] = { |
| 960 | [0] = { |
| 961 | .start = SPI0_REGBASE, |
| 962 | .end = SPI0_REGBASE + 0xFF, |
| 963 | .flags = IORESOURCE_MEM, |
| 964 | }, |
| 965 | [1] = { |
| 966 | .start = CH_SPI, |
| 967 | .end = CH_SPI, |
Yi Li | e68d1eb | 2009-06-03 09:46:22 +0000 | [diff] [blame] | 968 | .flags = IORESOURCE_DMA, |
| 969 | }, |
| 970 | [2] = { |
| 971 | .start = IRQ_SPI, |
| 972 | .end = IRQ_SPI, |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 973 | .flags = IORESOURCE_IRQ, |
| 974 | }, |
| 975 | }; |
| 976 | |
| 977 | static struct platform_device bfin_spi0_device = { |
| 978 | .name = "bfin-spi", |
| 979 | .id = 0, /* Bus number */ |
| 980 | .num_resources = ARRAY_SIZE(bfin_spi0_resource), |
| 981 | .resource = bfin_spi0_resource, |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 982 | .dev = { |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 983 | .platform_data = &bfin_spi0_info, /* Passed to driver */ |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 984 | }, |
| 985 | }; |
| 986 | #endif /* spi master and devices */ |
| 987 | |
Cliff Cai | 1e9aa95 | 2009-03-28 23:28:51 +0800 | [diff] [blame] | 988 | #if defined(CONFIG_SPI_BFIN_SPORT) || defined(CONFIG_SPI_BFIN_SPORT_MODULE) |
| 989 | |
| 990 | /* SPORT SPI controller data */ |
| 991 | static struct bfin5xx_spi_master bfin_sport_spi0_info = { |
| 992 | .num_chipselect = 1, /* master only supports one device */ |
| 993 | .enable_dma = 0, /* master don't support DMA */ |
| 994 | .pin_req = {P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_DRPRI, |
| 995 | P_SPORT0_RSCLK, P_SPORT0_TFS, P_SPORT0_RFS, 0}, |
| 996 | }; |
| 997 | |
| 998 | static struct resource bfin_sport_spi0_resource[] = { |
| 999 | [0] = { |
| 1000 | .start = SPORT0_TCR1, |
| 1001 | .end = SPORT0_TCR1 + 0xFF, |
| 1002 | .flags = IORESOURCE_MEM, |
| 1003 | }, |
| 1004 | [1] = { |
| 1005 | .start = IRQ_SPORT0_ERROR, |
| 1006 | .end = IRQ_SPORT0_ERROR, |
| 1007 | .flags = IORESOURCE_IRQ, |
| 1008 | }, |
| 1009 | }; |
| 1010 | |
| 1011 | static struct platform_device bfin_sport_spi0_device = { |
| 1012 | .name = "bfin-sport-spi", |
| 1013 | .id = 1, /* Bus number */ |
| 1014 | .num_resources = ARRAY_SIZE(bfin_sport_spi0_resource), |
| 1015 | .resource = bfin_sport_spi0_resource, |
| 1016 | .dev = { |
| 1017 | .platform_data = &bfin_sport_spi0_info, /* Passed to driver */ |
| 1018 | }, |
| 1019 | }; |
| 1020 | |
| 1021 | static struct bfin5xx_spi_master bfin_sport_spi1_info = { |
| 1022 | .num_chipselect = 1, /* master only supports one device */ |
| 1023 | .enable_dma = 0, /* master don't support DMA */ |
| 1024 | .pin_req = {P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_DRPRI, |
| 1025 | P_SPORT1_RSCLK, P_SPORT1_TFS, P_SPORT1_RFS, 0}, |
| 1026 | }; |
| 1027 | |
| 1028 | static struct resource bfin_sport_spi1_resource[] = { |
| 1029 | [0] = { |
| 1030 | .start = SPORT1_TCR1, |
| 1031 | .end = SPORT1_TCR1 + 0xFF, |
| 1032 | .flags = IORESOURCE_MEM, |
| 1033 | }, |
| 1034 | [1] = { |
| 1035 | .start = IRQ_SPORT1_ERROR, |
| 1036 | .end = IRQ_SPORT1_ERROR, |
| 1037 | .flags = IORESOURCE_IRQ, |
| 1038 | }, |
| 1039 | }; |
| 1040 | |
| 1041 | static struct platform_device bfin_sport_spi1_device = { |
| 1042 | .name = "bfin-sport-spi", |
| 1043 | .id = 2, /* Bus number */ |
| 1044 | .num_resources = ARRAY_SIZE(bfin_sport_spi1_resource), |
| 1045 | .resource = bfin_sport_spi1_resource, |
| 1046 | .dev = { |
| 1047 | .platform_data = &bfin_sport_spi1_info, /* Passed to driver */ |
| 1048 | }, |
| 1049 | }; |
| 1050 | |
| 1051 | #endif /* sport spi master and devices */ |
| 1052 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1053 | #if defined(CONFIG_FB_BF537_LQ035) || defined(CONFIG_FB_BF537_LQ035_MODULE) |
| 1054 | static struct platform_device bfin_fb_device = { |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 1055 | .name = "bf537-lq035", |
| 1056 | }; |
| 1057 | #endif |
| 1058 | |
Michael Hennerich | 2043f3f | 2008-10-13 14:46:30 +0800 | [diff] [blame] | 1059 | #if defined(CONFIG_FB_BFIN_LQ035Q1) || defined(CONFIG_FB_BFIN_LQ035Q1_MODULE) |
| 1060 | #include <asm/bfin-lq035q1.h> |
| 1061 | |
| 1062 | static struct bfin_lq035q1fb_disp_info bfin_lq035q1_data = { |
| 1063 | .mode = LQ035_NORM | LQ035_RGB | LQ035_RL | LQ035_TB, |
Michael Hennerich | 46aa04f | 2008-10-13 11:30:17 +0800 | [diff] [blame] | 1064 | .use_bl = 0, /* let something else control the LCD Blacklight */ |
Michael Hennerich | 2043f3f | 2008-10-13 14:46:30 +0800 | [diff] [blame] | 1065 | .gpio_bl = GPIO_PF7, |
| 1066 | }; |
| 1067 | |
| 1068 | static struct resource bfin_lq035q1_resources[] = { |
| 1069 | { |
| 1070 | .start = IRQ_PPI_ERROR, |
| 1071 | .end = IRQ_PPI_ERROR, |
| 1072 | .flags = IORESOURCE_IRQ, |
| 1073 | }, |
| 1074 | }; |
| 1075 | |
| 1076 | static struct platform_device bfin_lq035q1_device = { |
| 1077 | .name = "bfin-lq035q1", |
| 1078 | .id = -1, |
| 1079 | .num_resources = ARRAY_SIZE(bfin_lq035q1_resources), |
| 1080 | .resource = bfin_lq035q1_resources, |
| 1081 | .dev = { |
| 1082 | .platform_data = &bfin_lq035q1_data, |
| 1083 | }, |
| 1084 | }; |
| 1085 | #endif |
| 1086 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1087 | #if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE) |
| 1088 | static struct resource bfin_uart_resources[] = { |
Sonic Zhang | 233b28a | 2007-11-21 17:04:41 +0800 | [diff] [blame] | 1089 | #ifdef CONFIG_SERIAL_BFIN_UART0 |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1090 | { |
| 1091 | .start = 0xFFC00400, |
| 1092 | .end = 0xFFC004FF, |
| 1093 | .flags = IORESOURCE_MEM, |
Sonic Zhang | 233b28a | 2007-11-21 17:04:41 +0800 | [diff] [blame] | 1094 | }, |
| 1095 | #endif |
| 1096 | #ifdef CONFIG_SERIAL_BFIN_UART1 |
| 1097 | { |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1098 | .start = 0xFFC02000, |
| 1099 | .end = 0xFFC020FF, |
| 1100 | .flags = IORESOURCE_MEM, |
| 1101 | }, |
Sonic Zhang | 233b28a | 2007-11-21 17:04:41 +0800 | [diff] [blame] | 1102 | #endif |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1103 | }; |
| 1104 | |
| 1105 | static struct platform_device bfin_uart_device = { |
| 1106 | .name = "bfin-uart", |
| 1107 | .id = 1, |
| 1108 | .num_resources = ARRAY_SIZE(bfin_uart_resources), |
| 1109 | .resource = bfin_uart_resources, |
| 1110 | }; |
| 1111 | #endif |
| 1112 | |
Graf Yang | 5be36d2 | 2008-04-25 03:09:15 +0800 | [diff] [blame] | 1113 | #if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE) |
Graf Yang | 5be36d2 | 2008-04-25 03:09:15 +0800 | [diff] [blame] | 1114 | #ifdef CONFIG_BFIN_SIR0 |
Graf Yang | 42bd8bc | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 1115 | static struct resource bfin_sir0_resources[] = { |
Graf Yang | 5be36d2 | 2008-04-25 03:09:15 +0800 | [diff] [blame] | 1116 | { |
| 1117 | .start = 0xFFC00400, |
| 1118 | .end = 0xFFC004FF, |
| 1119 | .flags = IORESOURCE_MEM, |
| 1120 | }, |
Graf Yang | 42bd8bc | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 1121 | { |
| 1122 | .start = IRQ_UART0_RX, |
| 1123 | .end = IRQ_UART0_RX+1, |
| 1124 | .flags = IORESOURCE_IRQ, |
| 1125 | }, |
| 1126 | { |
| 1127 | .start = CH_UART0_RX, |
| 1128 | .end = CH_UART0_RX+1, |
| 1129 | .flags = IORESOURCE_DMA, |
| 1130 | }, |
| 1131 | }; |
| 1132 | |
| 1133 | static struct platform_device bfin_sir0_device = { |
| 1134 | .name = "bfin_sir", |
| 1135 | .id = 0, |
| 1136 | .num_resources = ARRAY_SIZE(bfin_sir0_resources), |
| 1137 | .resource = bfin_sir0_resources, |
| 1138 | }; |
Graf Yang | 5be36d2 | 2008-04-25 03:09:15 +0800 | [diff] [blame] | 1139 | #endif |
| 1140 | #ifdef CONFIG_BFIN_SIR1 |
Graf Yang | 42bd8bc | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 1141 | static struct resource bfin_sir1_resources[] = { |
Graf Yang | 5be36d2 | 2008-04-25 03:09:15 +0800 | [diff] [blame] | 1142 | { |
| 1143 | .start = 0xFFC02000, |
| 1144 | .end = 0xFFC020FF, |
| 1145 | .flags = IORESOURCE_MEM, |
| 1146 | }, |
Graf Yang | 42bd8bc | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 1147 | { |
| 1148 | .start = IRQ_UART1_RX, |
| 1149 | .end = IRQ_UART1_RX+1, |
| 1150 | .flags = IORESOURCE_IRQ, |
| 1151 | }, |
| 1152 | { |
| 1153 | .start = CH_UART1_RX, |
| 1154 | .end = CH_UART1_RX+1, |
| 1155 | .flags = IORESOURCE_DMA, |
| 1156 | }, |
Graf Yang | 5be36d2 | 2008-04-25 03:09:15 +0800 | [diff] [blame] | 1157 | }; |
| 1158 | |
Graf Yang | 42bd8bc | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 1159 | static struct platform_device bfin_sir1_device = { |
Graf Yang | 5be36d2 | 2008-04-25 03:09:15 +0800 | [diff] [blame] | 1160 | .name = "bfin_sir", |
Graf Yang | 42bd8bc | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 1161 | .id = 1, |
| 1162 | .num_resources = ARRAY_SIZE(bfin_sir1_resources), |
| 1163 | .resource = bfin_sir1_resources, |
Graf Yang | 5be36d2 | 2008-04-25 03:09:15 +0800 | [diff] [blame] | 1164 | }; |
| 1165 | #endif |
Graf Yang | 42bd8bc | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 1166 | #endif |
Graf Yang | 5be36d2 | 2008-04-25 03:09:15 +0800 | [diff] [blame] | 1167 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1168 | #if defined(CONFIG_I2C_BLACKFIN_TWI) || defined(CONFIG_I2C_BLACKFIN_TWI_MODULE) |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 1169 | static struct resource bfin_twi0_resource[] = { |
| 1170 | [0] = { |
| 1171 | .start = TWI0_REGBASE, |
| 1172 | .end = TWI0_REGBASE, |
| 1173 | .flags = IORESOURCE_MEM, |
| 1174 | }, |
| 1175 | [1] = { |
| 1176 | .start = IRQ_TWI, |
| 1177 | .end = IRQ_TWI, |
| 1178 | .flags = IORESOURCE_IRQ, |
| 1179 | }, |
| 1180 | }; |
| 1181 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1182 | static struct platform_device i2c_bfin_twi_device = { |
| 1183 | .name = "i2c-bfin-twi", |
| 1184 | .id = 0, |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 1185 | .num_resources = ARRAY_SIZE(bfin_twi0_resource), |
| 1186 | .resource = bfin_twi0_resource, |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1187 | }; |
| 1188 | #endif |
| 1189 | |
Michael Hennerich | 51ed9ad | 2009-01-07 23:14:38 +0800 | [diff] [blame] | 1190 | #if defined(CONFIG_KEYBOARD_ADP5588) || defined(CONFIG_KEYBOARD_ADP5588_MODULE) |
| 1191 | #include <linux/input.h> |
Michael Hennerich | f39d56e | 2008-12-02 14:08:58 +0000 | [diff] [blame] | 1192 | #include <linux/i2c/adp5588.h> |
Michael Hennerich | 51ed9ad | 2009-01-07 23:14:38 +0800 | [diff] [blame] | 1193 | static const unsigned short adp5588_keymap[ADP5588_KEYMAPSIZE] = { |
| 1194 | [0] = KEY_GRAVE, |
| 1195 | [1] = KEY_1, |
| 1196 | [2] = KEY_2, |
| 1197 | [3] = KEY_3, |
| 1198 | [4] = KEY_4, |
| 1199 | [5] = KEY_5, |
| 1200 | [6] = KEY_6, |
| 1201 | [7] = KEY_7, |
| 1202 | [8] = KEY_8, |
| 1203 | [9] = KEY_9, |
| 1204 | [10] = KEY_0, |
| 1205 | [11] = KEY_MINUS, |
| 1206 | [12] = KEY_EQUAL, |
| 1207 | [13] = KEY_BACKSLASH, |
| 1208 | [15] = KEY_KP0, |
| 1209 | [16] = KEY_Q, |
| 1210 | [17] = KEY_W, |
| 1211 | [18] = KEY_E, |
| 1212 | [19] = KEY_R, |
| 1213 | [20] = KEY_T, |
| 1214 | [21] = KEY_Y, |
| 1215 | [22] = KEY_U, |
| 1216 | [23] = KEY_I, |
| 1217 | [24] = KEY_O, |
| 1218 | [25] = KEY_P, |
| 1219 | [26] = KEY_LEFTBRACE, |
| 1220 | [27] = KEY_RIGHTBRACE, |
| 1221 | [29] = KEY_KP1, |
| 1222 | [30] = KEY_KP2, |
| 1223 | [31] = KEY_KP3, |
| 1224 | [32] = KEY_A, |
| 1225 | [33] = KEY_S, |
| 1226 | [34] = KEY_D, |
| 1227 | [35] = KEY_F, |
| 1228 | [36] = KEY_G, |
| 1229 | [37] = KEY_H, |
| 1230 | [38] = KEY_J, |
| 1231 | [39] = KEY_K, |
| 1232 | [40] = KEY_L, |
| 1233 | [41] = KEY_SEMICOLON, |
| 1234 | [42] = KEY_APOSTROPHE, |
| 1235 | [43] = KEY_BACKSLASH, |
| 1236 | [45] = KEY_KP4, |
| 1237 | [46] = KEY_KP5, |
| 1238 | [47] = KEY_KP6, |
| 1239 | [48] = KEY_102ND, |
| 1240 | [49] = KEY_Z, |
| 1241 | [50] = KEY_X, |
| 1242 | [51] = KEY_C, |
| 1243 | [52] = KEY_V, |
| 1244 | [53] = KEY_B, |
| 1245 | [54] = KEY_N, |
| 1246 | [55] = KEY_M, |
| 1247 | [56] = KEY_COMMA, |
| 1248 | [57] = KEY_DOT, |
| 1249 | [58] = KEY_SLASH, |
| 1250 | [60] = KEY_KPDOT, |
| 1251 | [61] = KEY_KP7, |
| 1252 | [62] = KEY_KP8, |
| 1253 | [63] = KEY_KP9, |
| 1254 | [64] = KEY_SPACE, |
| 1255 | [65] = KEY_BACKSPACE, |
| 1256 | [66] = KEY_TAB, |
| 1257 | [67] = KEY_KPENTER, |
| 1258 | [68] = KEY_ENTER, |
| 1259 | [69] = KEY_ESC, |
| 1260 | [70] = KEY_DELETE, |
| 1261 | [74] = KEY_KPMINUS, |
| 1262 | [76] = KEY_UP, |
| 1263 | [77] = KEY_DOWN, |
| 1264 | [78] = KEY_RIGHT, |
| 1265 | [79] = KEY_LEFT, |
| 1266 | }; |
| 1267 | |
| 1268 | static struct adp5588_kpad_platform_data adp5588_kpad_data = { |
| 1269 | .rows = 8, |
| 1270 | .cols = 10, |
| 1271 | .keymap = adp5588_keymap, |
| 1272 | .keymapsize = ARRAY_SIZE(adp5588_keymap), |
| 1273 | .repeat = 0, |
| 1274 | }; |
| 1275 | #endif |
| 1276 | |
Michael Hennerich | 3ea5721 | 2009-03-28 22:15:07 +0800 | [diff] [blame] | 1277 | #if defined(CONFIG_PMIC_ADP5520) || defined(CONFIG_PMIC_ADP5520_MODULE) |
| 1278 | #include <linux/mfd/adp5520.h> |
| 1279 | |
| 1280 | /* |
| 1281 | * ADP5520/5501 Backlight Data |
| 1282 | */ |
| 1283 | |
| 1284 | static struct adp5520_backlight_platfrom_data adp5520_backlight_data = { |
| 1285 | .fade_in = FADE_T_1200ms, |
| 1286 | .fade_out = FADE_T_1200ms, |
| 1287 | .fade_led_law = BL_LAW_LINEAR, |
| 1288 | .en_ambl_sens = 1, |
| 1289 | .abml_filt = BL_AMBL_FILT_640ms, |
| 1290 | .l1_daylight_max = BL_CUR_mA(15), |
| 1291 | .l1_daylight_dim = BL_CUR_mA(0), |
| 1292 | .l2_office_max = BL_CUR_mA(7), |
| 1293 | .l2_office_dim = BL_CUR_mA(0), |
| 1294 | .l3_dark_max = BL_CUR_mA(3), |
| 1295 | .l3_dark_dim = BL_CUR_mA(0), |
| 1296 | .l2_trip = L2_COMP_CURR_uA(700), |
| 1297 | .l2_hyst = L2_COMP_CURR_uA(50), |
| 1298 | .l3_trip = L3_COMP_CURR_uA(80), |
| 1299 | .l3_hyst = L3_COMP_CURR_uA(20), |
| 1300 | }; |
| 1301 | |
| 1302 | /* |
| 1303 | * ADP5520/5501 LEDs Data |
| 1304 | */ |
| 1305 | |
| 1306 | #include <linux/leds.h> |
| 1307 | |
| 1308 | static struct led_info adp5520_leds[] = { |
| 1309 | { |
| 1310 | .name = "adp5520-led1", |
| 1311 | .default_trigger = "none", |
| 1312 | .flags = FLAG_ID_ADP5520_LED1_ADP5501_LED0 | LED_OFFT_600ms, |
| 1313 | }, |
| 1314 | #ifdef ADP5520_EN_ALL_LEDS |
| 1315 | { |
| 1316 | .name = "adp5520-led2", |
| 1317 | .default_trigger = "none", |
| 1318 | .flags = FLAG_ID_ADP5520_LED2_ADP5501_LED1, |
| 1319 | }, |
| 1320 | { |
| 1321 | .name = "adp5520-led3", |
| 1322 | .default_trigger = "none", |
| 1323 | .flags = FLAG_ID_ADP5520_LED3_ADP5501_LED2, |
| 1324 | }, |
| 1325 | #endif |
| 1326 | }; |
| 1327 | |
| 1328 | static struct adp5520_leds_platfrom_data adp5520_leds_data = { |
| 1329 | .num_leds = ARRAY_SIZE(adp5520_leds), |
| 1330 | .leds = adp5520_leds, |
| 1331 | .fade_in = FADE_T_600ms, |
| 1332 | .fade_out = FADE_T_600ms, |
| 1333 | .led_on_time = LED_ONT_600ms, |
| 1334 | }; |
| 1335 | |
| 1336 | /* |
| 1337 | * ADP5520 GPIO Data |
| 1338 | */ |
| 1339 | |
| 1340 | static struct adp5520_gpio_platfrom_data adp5520_gpio_data = { |
| 1341 | .gpio_start = 50, |
| 1342 | .gpio_en_mask = GPIO_C1 | GPIO_C2 | GPIO_R2, |
| 1343 | .gpio_pullup_mask = GPIO_C1 | GPIO_C2 | GPIO_R2, |
| 1344 | }; |
| 1345 | |
| 1346 | /* |
| 1347 | * ADP5520 Keypad Data |
| 1348 | */ |
| 1349 | |
| 1350 | #include <linux/input.h> |
| 1351 | static const unsigned short adp5520_keymap[ADP5520_KEYMAPSIZE] = { |
| 1352 | [KEY(0, 0)] = KEY_GRAVE, |
| 1353 | [KEY(0, 1)] = KEY_1, |
| 1354 | [KEY(0, 2)] = KEY_2, |
| 1355 | [KEY(0, 3)] = KEY_3, |
| 1356 | [KEY(1, 0)] = KEY_4, |
| 1357 | [KEY(1, 1)] = KEY_5, |
| 1358 | [KEY(1, 2)] = KEY_6, |
| 1359 | [KEY(1, 3)] = KEY_7, |
| 1360 | [KEY(2, 0)] = KEY_8, |
| 1361 | [KEY(2, 1)] = KEY_9, |
| 1362 | [KEY(2, 2)] = KEY_0, |
| 1363 | [KEY(2, 3)] = KEY_MINUS, |
| 1364 | [KEY(3, 0)] = KEY_EQUAL, |
| 1365 | [KEY(3, 1)] = KEY_BACKSLASH, |
| 1366 | [KEY(3, 2)] = KEY_BACKSPACE, |
| 1367 | [KEY(3, 3)] = KEY_ENTER, |
| 1368 | }; |
| 1369 | |
| 1370 | static struct adp5520_keys_platfrom_data adp5520_keys_data = { |
| 1371 | .rows_en_mask = ROW_R3 | ROW_R2 | ROW_R1 | ROW_R0, |
| 1372 | .cols_en_mask = COL_C3 | COL_C2 | COL_C1 | COL_C0, |
| 1373 | .keymap = adp5520_keymap, |
| 1374 | .keymapsize = ARRAY_SIZE(adp5520_keymap), |
| 1375 | .repeat = 0, |
| 1376 | }; |
| 1377 | |
| 1378 | /* |
| 1379 | * ADP5520/5501 Multifuction Device Init Data |
| 1380 | */ |
| 1381 | |
| 1382 | static struct adp5520_subdev_info adp5520_subdevs[] = { |
| 1383 | { |
| 1384 | .name = "adp5520-backlight", |
| 1385 | .id = ID_ADP5520, |
| 1386 | .platform_data = &adp5520_backlight_data, |
| 1387 | }, |
| 1388 | { |
| 1389 | .name = "adp5520-led", |
| 1390 | .id = ID_ADP5520, |
| 1391 | .platform_data = &adp5520_leds_data, |
| 1392 | }, |
| 1393 | { |
| 1394 | .name = "adp5520-gpio", |
| 1395 | .id = ID_ADP5520, |
| 1396 | .platform_data = &adp5520_gpio_data, |
| 1397 | }, |
| 1398 | { |
| 1399 | .name = "adp5520-keys", |
| 1400 | .id = ID_ADP5520, |
| 1401 | .platform_data = &adp5520_keys_data, |
| 1402 | }, |
| 1403 | }; |
| 1404 | |
| 1405 | static struct adp5520_platform_data adp5520_pdev_data = { |
| 1406 | .num_subdevs = ARRAY_SIZE(adp5520_subdevs), |
| 1407 | .subdevs = adp5520_subdevs, |
| 1408 | }; |
| 1409 | |
| 1410 | #endif |
| 1411 | |
Michael Hennerich | ba877d4 | 2009-08-27 04:09:32 +0000 | [diff] [blame] | 1412 | #if defined(CONFIG_GPIO_ADP5588) || defined(CONFIG_GPIO_ADP5588_MODULE) |
| 1413 | #include <linux/i2c/adp5588.h> |
| 1414 | static struct adp5588_gpio_platfrom_data adp5588_gpio_data = { |
| 1415 | .gpio_start = 50, |
| 1416 | .pullup_dis_mask = 0, |
| 1417 | }; |
| 1418 | #endif |
| 1419 | |
Bryan Wu | 81d9c7f | 2008-03-26 10:02:13 +0800 | [diff] [blame] | 1420 | static struct i2c_board_info __initdata bfin_i2c_board_info[] = { |
Barry Song | 427f277 | 2009-07-17 07:04:55 +0000 | [diff] [blame] | 1421 | #if defined(CONFIG_INPUT_EVAL_AD7142EB) |
Bryan Wu | 81d9c7f | 2008-03-26 10:02:13 +0800 | [diff] [blame] | 1422 | { |
Barry Song | 427f277 | 2009-07-17 07:04:55 +0000 | [diff] [blame] | 1423 | I2C_BOARD_INFO("ad7142_captouch", 0x2C), |
Barry Song | 4c94c3e | 2009-07-07 07:41:50 +0000 | [diff] [blame] | 1424 | .irq = IRQ_PG5, |
Barry Song | 427f277 | 2009-07-17 07:04:55 +0000 | [diff] [blame] | 1425 | .platform_data = (void *)&ad7142_platfrom_data, |
Bryan Wu | 81d9c7f | 2008-03-26 10:02:13 +0800 | [diff] [blame] | 1426 | }, |
| 1427 | #endif |
Michael Hennerich | ebd5833 | 2009-07-02 11:00:38 +0000 | [diff] [blame] | 1428 | #if defined(CONFIG_BFIN_TWI_LCD) || defined(CONFIG_BFIN_TWI_LCD_MODULE) |
Bryan Wu | 81d9c7f | 2008-03-26 10:02:13 +0800 | [diff] [blame] | 1429 | { |
| 1430 | I2C_BOARD_INFO("pcf8574_lcd", 0x22), |
Bryan Wu | 81d9c7f | 2008-03-26 10:02:13 +0800 | [diff] [blame] | 1431 | }, |
| 1432 | #endif |
Michael Hennerich | 204844e | 2009-06-30 14:57:22 +0000 | [diff] [blame] | 1433 | #if defined(CONFIG_INPUT_PCF8574) || defined(CONFIG_INPUT_PCF8574_MODULE) |
Bryan Wu | 81d9c7f | 2008-03-26 10:02:13 +0800 | [diff] [blame] | 1434 | { |
| 1435 | I2C_BOARD_INFO("pcf8574_keypad", 0x27), |
Michael Hennerich | f515015 | 2008-10-16 23:23:18 +0800 | [diff] [blame] | 1436 | .irq = IRQ_PG6, |
| 1437 | }, |
| 1438 | #endif |
| 1439 | #if defined(CONFIG_TOUCHSCREEN_AD7879_I2C) || defined(CONFIG_TOUCHSCREEN_AD7879_I2C_MODULE) |
| 1440 | { |
| 1441 | I2C_BOARD_INFO("ad7879", 0x2F), |
| 1442 | .irq = IRQ_PG5, |
| 1443 | .platform_data = (void *)&bfin_ad7879_ts_info, |
Bryan Wu | 81d9c7f | 2008-03-26 10:02:13 +0800 | [diff] [blame] | 1444 | }, |
| 1445 | #endif |
Michael Hennerich | 51ed9ad | 2009-01-07 23:14:38 +0800 | [diff] [blame] | 1446 | #if defined(CONFIG_KEYBOARD_ADP5588) || defined(CONFIG_KEYBOARD_ADP5588_MODULE) |
| 1447 | { |
| 1448 | I2C_BOARD_INFO("adp5588-keys", 0x34), |
| 1449 | .irq = IRQ_PG0, |
| 1450 | .platform_data = (void *)&adp5588_kpad_data, |
| 1451 | }, |
| 1452 | #endif |
Michael Hennerich | 3ea5721 | 2009-03-28 22:15:07 +0800 | [diff] [blame] | 1453 | #if defined(CONFIG_PMIC_ADP5520) || defined(CONFIG_PMIC_ADP5520_MODULE) |
| 1454 | { |
| 1455 | I2C_BOARD_INFO("pmic-adp5520", 0x32), |
Mike Frysinger | 4f84b6e | 2009-06-10 20:45:48 -0400 | [diff] [blame] | 1456 | .irq = IRQ_PG0, |
Michael Hennerich | 3ea5721 | 2009-03-28 22:15:07 +0800 | [diff] [blame] | 1457 | .platform_data = (void *)&adp5520_pdev_data, |
| 1458 | }, |
| 1459 | #endif |
Michael Hennerich | ffc4d8b | 2009-05-29 15:41:18 +0000 | [diff] [blame] | 1460 | #if defined(CONFIG_INPUT_ADXL34X_I2C) || defined(CONFIG_INPUT_ADXL34X_I2C_MODULE) |
| 1461 | { |
| 1462 | I2C_BOARD_INFO("adxl34x", 0x53), |
| 1463 | .irq = IRQ_PG3, |
| 1464 | .platform_data = (void *)&adxl34x_info, |
| 1465 | }, |
| 1466 | #endif |
Michael Hennerich | ba877d4 | 2009-08-27 04:09:32 +0000 | [diff] [blame] | 1467 | #if defined(CONFIG_GPIO_ADP5588) || defined(CONFIG_GPIO_ADP5588_MODULE) |
| 1468 | { |
| 1469 | I2C_BOARD_INFO("adp5588-gpio", 0x34), |
| 1470 | .platform_data = (void *)&adp5588_gpio_data, |
| 1471 | }, |
| 1472 | #endif |
Michael Hennerich | 50c4c08 | 2009-09-22 13:10:09 +0000 | [diff] [blame^] | 1473 | #if defined(CONFIG_FB_BFIN_7393) || defined(CONFIG_FB_BFIN_7393_MODULE) |
| 1474 | { |
| 1475 | I2C_BOARD_INFO("bfin-adv7393", 0x2B), |
| 1476 | }, |
| 1477 | #endif |
Bryan Wu | 81d9c7f | 2008-03-26 10:02:13 +0800 | [diff] [blame] | 1478 | }; |
Bryan Wu | 81d9c7f | 2008-03-26 10:02:13 +0800 | [diff] [blame] | 1479 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1480 | #if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE) |
| 1481 | static struct platform_device bfin_sport0_uart_device = { |
| 1482 | .name = "bfin-sport-uart", |
| 1483 | .id = 0, |
| 1484 | }; |
| 1485 | |
| 1486 | static struct platform_device bfin_sport1_uart_device = { |
| 1487 | .name = "bfin-sport-uart", |
| 1488 | .id = 1, |
| 1489 | }; |
| 1490 | #endif |
| 1491 | |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 1492 | #if defined(CONFIG_PATA_PLATFORM) || defined(CONFIG_PATA_PLATFORM_MODULE) |
Michael Hennerich | 2c8beb2 | 2009-03-28 22:13:43 +0800 | [diff] [blame] | 1493 | #define CF_IDE_NAND_CARD_USE_HDD_INTERFACE |
| 1494 | /* #define CF_IDE_NAND_CARD_USE_CF_IN_COMMON_MEMORY_MODE */ |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 1495 | |
Michael Hennerich | 2c8beb2 | 2009-03-28 22:13:43 +0800 | [diff] [blame] | 1496 | #ifdef CF_IDE_NAND_CARD_USE_HDD_INTERFACE |
| 1497 | #define PATA_INT IRQ_PF5 |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 1498 | static struct pata_platform_info bfin_pata_platform_data = { |
| 1499 | .ioport_shift = 1, |
Mike Frysinger | 64e5c51 | 2007-10-30 11:56:13 +0800 | [diff] [blame] | 1500 | .irq_flags = IRQF_TRIGGER_HIGH | IRQF_DISABLED, |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 1501 | }; |
| 1502 | |
| 1503 | static struct resource bfin_pata_resources[] = { |
| 1504 | { |
| 1505 | .start = 0x20314020, |
| 1506 | .end = 0x2031403F, |
| 1507 | .flags = IORESOURCE_MEM, |
| 1508 | }, |
| 1509 | { |
| 1510 | .start = 0x2031401C, |
| 1511 | .end = 0x2031401F, |
| 1512 | .flags = IORESOURCE_MEM, |
| 1513 | }, |
| 1514 | { |
| 1515 | .start = PATA_INT, |
| 1516 | .end = PATA_INT, |
| 1517 | .flags = IORESOURCE_IRQ, |
| 1518 | }, |
| 1519 | }; |
Michael Hennerich | 2c8beb2 | 2009-03-28 22:13:43 +0800 | [diff] [blame] | 1520 | #elif defined(CF_IDE_NAND_CARD_USE_CF_IN_COMMON_MEMORY_MODE) |
| 1521 | static struct pata_platform_info bfin_pata_platform_data = { |
| 1522 | .ioport_shift = 0, |
| 1523 | }; |
Michael Hennerich | 648882d | 2009-04-21 12:05:50 +0000 | [diff] [blame] | 1524 | /* CompactFlash Storage Card Memory Mapped Adressing |
| 1525 | * /REG = A11 = 1 |
| 1526 | */ |
Michael Hennerich | 2c8beb2 | 2009-03-28 22:13:43 +0800 | [diff] [blame] | 1527 | static struct resource bfin_pata_resources[] = { |
| 1528 | { |
Michael Hennerich | 648882d | 2009-04-21 12:05:50 +0000 | [diff] [blame] | 1529 | .start = 0x20211800, |
| 1530 | .end = 0x20211807, |
Michael Hennerich | 2c8beb2 | 2009-03-28 22:13:43 +0800 | [diff] [blame] | 1531 | .flags = IORESOURCE_MEM, |
| 1532 | }, |
| 1533 | { |
Michael Hennerich | 648882d | 2009-04-21 12:05:50 +0000 | [diff] [blame] | 1534 | .start = 0x2021180E, /* Device Ctl */ |
| 1535 | .end = 0x2021180E, |
Michael Hennerich | 2c8beb2 | 2009-03-28 22:13:43 +0800 | [diff] [blame] | 1536 | .flags = IORESOURCE_MEM, |
| 1537 | }, |
| 1538 | }; |
| 1539 | #endif |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 1540 | |
| 1541 | static struct platform_device bfin_pata_device = { |
| 1542 | .name = "pata_platform", |
| 1543 | .id = -1, |
| 1544 | .num_resources = ARRAY_SIZE(bfin_pata_resources), |
| 1545 | .resource = bfin_pata_resources, |
| 1546 | .dev = { |
| 1547 | .platform_data = &bfin_pata_platform_data, |
| 1548 | } |
| 1549 | }; |
| 1550 | #endif |
| 1551 | |
Michael Hennerich | 14b0320 | 2008-05-07 11:41:26 +0800 | [diff] [blame] | 1552 | static const unsigned int cclk_vlev_datasheet[] = |
| 1553 | { |
| 1554 | VRPAIR(VLEV_085, 250000000), |
| 1555 | VRPAIR(VLEV_090, 376000000), |
| 1556 | VRPAIR(VLEV_095, 426000000), |
| 1557 | VRPAIR(VLEV_100, 426000000), |
| 1558 | VRPAIR(VLEV_105, 476000000), |
| 1559 | VRPAIR(VLEV_110, 476000000), |
| 1560 | VRPAIR(VLEV_115, 476000000), |
| 1561 | VRPAIR(VLEV_120, 500000000), |
| 1562 | VRPAIR(VLEV_125, 533000000), |
| 1563 | VRPAIR(VLEV_130, 600000000), |
| 1564 | }; |
| 1565 | |
| 1566 | static struct bfin_dpmc_platform_data bfin_dmpc_vreg_data = { |
| 1567 | .tuple_tab = cclk_vlev_datasheet, |
| 1568 | .tabsize = ARRAY_SIZE(cclk_vlev_datasheet), |
| 1569 | .vr_settling_time = 25 /* us */, |
| 1570 | }; |
| 1571 | |
| 1572 | static struct platform_device bfin_dpmc = { |
| 1573 | .name = "bfin dpmc", |
| 1574 | .dev = { |
| 1575 | .platform_data = &bfin_dmpc_vreg_data, |
| 1576 | }, |
| 1577 | }; |
| 1578 | |
Barry Song | 8312440 | 2009-08-06 21:03:02 +0000 | [diff] [blame] | 1579 | #if defined(CONFIG_SND_BF5XX_TDM) || defined(CONFIG_SND_BF5XX_TDM_MODULE) |
| 1580 | static struct platform_device bfin_tdm = { |
| 1581 | .name = "bfin-tdm", |
| 1582 | /* TODO: add platform data here */ |
| 1583 | }; |
| 1584 | #endif |
| 1585 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1586 | static struct platform_device *stamp_devices[] __initdata = { |
Michael Hennerich | 14b0320 | 2008-05-07 11:41:26 +0800 | [diff] [blame] | 1587 | |
| 1588 | &bfin_dpmc, |
| 1589 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1590 | #if defined(CONFIG_BFIN_CFPCMCIA) || defined(CONFIG_BFIN_CFPCMCIA_MODULE) |
| 1591 | &bfin_pcmcia_cf_device, |
| 1592 | #endif |
| 1593 | |
| 1594 | #if defined(CONFIG_RTC_DRV_BFIN) || defined(CONFIG_RTC_DRV_BFIN_MODULE) |
| 1595 | &rtc_device, |
| 1596 | #endif |
| 1597 | |
| 1598 | #if defined(CONFIG_USB_SL811_HCD) || defined(CONFIG_USB_SL811_HCD_MODULE) |
| 1599 | &sl811_hcd_device, |
| 1600 | #endif |
| 1601 | |
| 1602 | #if defined(CONFIG_USB_ISP1362_HCD) || defined(CONFIG_USB_ISP1362_HCD_MODULE) |
| 1603 | &isp1362_hcd_device, |
| 1604 | #endif |
| 1605 | |
Michael Hennerich | 3f37569 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 1606 | #if defined(CONFIG_USB_ISP1760_HCD) || defined(CONFIG_USB_ISP1760_HCD_MODULE) |
| 1607 | &bfin_isp1760_device, |
| 1608 | #endif |
| 1609 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1610 | #if defined(CONFIG_SMC91X) || defined(CONFIG_SMC91X_MODULE) |
| 1611 | &smc91x_device, |
| 1612 | #endif |
| 1613 | |
Alex Landau | f40d24d | 2007-07-12 12:11:48 +0800 | [diff] [blame] | 1614 | #if defined(CONFIG_DM9000) || defined(CONFIG_DM9000_MODULE) |
| 1615 | &dm9000_device, |
| 1616 | #endif |
| 1617 | |
Michael Hennerich | 561cc18 | 2007-11-17 23:56:08 +0800 | [diff] [blame] | 1618 | #if defined(CONFIG_AX88180) || defined(CONFIG_AX88180_MODULE) |
| 1619 | &ax88180_device, |
| 1620 | #endif |
| 1621 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1622 | #if defined(CONFIG_BFIN_MAC) || defined(CONFIG_BFIN_MAC_MODULE) |
Graf Yang | 6531962 | 2009-02-04 16:49:45 +0800 | [diff] [blame] | 1623 | &bfin_mii_bus, |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1624 | &bfin_mac_device, |
| 1625 | #endif |
| 1626 | |
| 1627 | #if defined(CONFIG_USB_NET2272) || defined(CONFIG_USB_NET2272_MODULE) |
| 1628 | &net2272_bfin_device, |
| 1629 | #endif |
| 1630 | |
| 1631 | #if defined(CONFIG_SPI_BFIN) || defined(CONFIG_SPI_BFIN_MODULE) |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 1632 | &bfin_spi0_device, |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1633 | #endif |
| 1634 | |
Cliff Cai | 1e9aa95 | 2009-03-28 23:28:51 +0800 | [diff] [blame] | 1635 | #if defined(CONFIG_SPI_BFIN_SPORT) || defined(CONFIG_SPI_BFIN_SPORT_MODULE) |
| 1636 | &bfin_sport_spi0_device, |
| 1637 | &bfin_sport_spi1_device, |
| 1638 | #endif |
| 1639 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1640 | #if defined(CONFIG_FB_BF537_LQ035) || defined(CONFIG_FB_BF537_LQ035_MODULE) |
| 1641 | &bfin_fb_device, |
| 1642 | #endif |
| 1643 | |
Michael Hennerich | 2043f3f | 2008-10-13 14:46:30 +0800 | [diff] [blame] | 1644 | #if defined(CONFIG_FB_BFIN_LQ035Q1) || defined(CONFIG_FB_BFIN_LQ035Q1_MODULE) |
| 1645 | &bfin_lq035q1_device, |
| 1646 | #endif |
| 1647 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1648 | #if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE) |
| 1649 | &bfin_uart_device, |
| 1650 | #endif |
| 1651 | |
Graf Yang | 5be36d2 | 2008-04-25 03:09:15 +0800 | [diff] [blame] | 1652 | #if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE) |
Graf Yang | 42bd8bc | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 1653 | #ifdef CONFIG_BFIN_SIR0 |
| 1654 | &bfin_sir0_device, |
| 1655 | #endif |
| 1656 | #ifdef CONFIG_BFIN_SIR1 |
| 1657 | &bfin_sir1_device, |
| 1658 | #endif |
Graf Yang | 5be36d2 | 2008-04-25 03:09:15 +0800 | [diff] [blame] | 1659 | #endif |
| 1660 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1661 | #if defined(CONFIG_I2C_BLACKFIN_TWI) || defined(CONFIG_I2C_BLACKFIN_TWI_MODULE) |
| 1662 | &i2c_bfin_twi_device, |
| 1663 | #endif |
| 1664 | |
| 1665 | #if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE) |
| 1666 | &bfin_sport0_uart_device, |
| 1667 | &bfin_sport1_uart_device, |
| 1668 | #endif |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 1669 | |
| 1670 | #if defined(CONFIG_PATA_PLATFORM) || defined(CONFIG_PATA_PLATFORM_MODULE) |
| 1671 | &bfin_pata_device, |
| 1672 | #endif |
Michael Hennerich | 2463ef2 | 2008-01-27 16:49:48 +0800 | [diff] [blame] | 1673 | |
| 1674 | #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE) |
| 1675 | &bfin_device_gpiokeys, |
| 1676 | #endif |
Mike Frysinger | cad2ab6 | 2008-02-22 17:01:31 +0800 | [diff] [blame] | 1677 | |
| 1678 | &bfin_gpios_device, |
Mike Frysinger | 793dc27 | 2008-03-26 08:09:12 +0800 | [diff] [blame] | 1679 | |
Mike Frysinger | fc68911 | 2008-06-25 11:41:42 +0800 | [diff] [blame] | 1680 | #if defined(CONFIG_MTD_NAND_PLATFORM) || defined(CONFIG_MTD_NAND_PLATFORM_MODULE) |
| 1681 | &bfin_async_nand_device, |
| 1682 | #endif |
| 1683 | |
Mike Frysinger | 793dc27 | 2008-03-26 08:09:12 +0800 | [diff] [blame] | 1684 | #if defined(CONFIG_MTD_PHYSMAP) || defined(CONFIG_MTD_PHYSMAP_MODULE) |
Mike Frysinger | de8c43f | 2008-01-24 17:14:04 +0800 | [diff] [blame] | 1685 | &stamp_flash_device, |
Mike Frysinger | 793dc27 | 2008-03-26 08:09:12 +0800 | [diff] [blame] | 1686 | #endif |
Barry Song | 8312440 | 2009-08-06 21:03:02 +0000 | [diff] [blame] | 1687 | |
| 1688 | #if defined(CONFIG_SND_BF5XX_TDM) || defined(CONFIG_SND_BF5XX_TDM_MODULE) |
| 1689 | &bfin_tdm, |
| 1690 | #endif |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1691 | }; |
| 1692 | |
| 1693 | static int __init stamp_init(void) |
| 1694 | { |
Harvey Harrison | b85d858 | 2008-04-23 09:39:01 +0800 | [diff] [blame] | 1695 | printk(KERN_INFO "%s(): registering device resources\n", __func__); |
Bryan Wu | 81d9c7f | 2008-03-26 10:02:13 +0800 | [diff] [blame] | 1696 | i2c_register_board_info(0, bfin_i2c_board_info, |
| 1697 | ARRAY_SIZE(bfin_i2c_board_info)); |
Mike Frysinger | fc68911 | 2008-06-25 11:41:42 +0800 | [diff] [blame] | 1698 | bfin_plat_nand_init(); |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1699 | platform_add_devices(stamp_devices, ARRAY_SIZE(stamp_devices)); |
Mike Frysinger | 5bda272 | 2008-06-07 15:03:01 +0800 | [diff] [blame] | 1700 | 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] | 1701 | |
Bryan Wu | 1394f03 | 2007-05-06 14:50:22 -0700 | [diff] [blame] | 1702 | return 0; |
| 1703 | } |
| 1704 | |
| 1705 | arch_initcall(stamp_init); |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 1706 | |
| 1707 | void native_machine_restart(char *cmd) |
| 1708 | { |
| 1709 | /* workaround reboot hang when booting from SPI */ |
| 1710 | if ((bfin_read_SYSCR() & 0x7) == 0x3) |
Sonic Zhang | b52dae3 | 2009-02-04 16:49:45 +0800 | [diff] [blame] | 1711 | bfin_reset_boot_spi_cs(P_DEFAULT_BOOT_SPI_CS); |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 1712 | } |
Mike Frysinger | 137b152 | 2007-11-22 16:07:03 +0800 | [diff] [blame] | 1713 | |
| 1714 | /* |
| 1715 | * Currently the MAC address is saved in Flash by U-Boot |
| 1716 | */ |
| 1717 | #define FLASH_MAC 0x203f0000 |
Mike Frysinger | 9862cc5 | 2007-11-15 21:21:20 +0800 | [diff] [blame] | 1718 | void bfin_get_ether_addr(char *addr) |
Mike Frysinger | 137b152 | 2007-11-22 16:07:03 +0800 | [diff] [blame] | 1719 | { |
| 1720 | *(u32 *)(&(addr[0])) = bfin_read32(FLASH_MAC); |
| 1721 | *(u16 *)(&(addr[4])) = bfin_read16(FLASH_MAC + 4); |
| 1722 | } |
Mike Frysinger | 9862cc5 | 2007-11-15 21:21:20 +0800 | [diff] [blame] | 1723 | EXPORT_SYMBOL(bfin_get_ether_addr); |