Roy Huang | 24a07a1 | 2007-07-12 22:41:45 +0800 | [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> |
Roy Huang | 24a07a1 | 2007-07-12 22:41:45 +0800 | [diff] [blame] | 5 | * |
Robin Getz | 96f1050 | 2009-09-24 14:11:24 +0000 | [diff] [blame] | 6 | * Licensed under the GPL-2 or later. |
Roy Huang | 24a07a1 | 2007-07-12 22:41:45 +0800 | [diff] [blame] | 7 | */ |
| 8 | |
| 9 | #include <linux/device.h> |
| 10 | #include <linux/platform_device.h> |
| 11 | #include <linux/mtd/mtd.h> |
| 12 | #include <linux/mtd/partitions.h> |
Mike Frysinger | de8c43f | 2008-01-24 17:14:04 +0800 | [diff] [blame] | 13 | #include <linux/mtd/physmap.h> |
Roy Huang | 24a07a1 | 2007-07-12 22:41:45 +0800 | [diff] [blame] | 14 | #include <linux/spi/spi.h> |
| 15 | #include <linux/spi/flash.h> |
Mike Frysinger | 1f83b8f | 2007-07-12 22:58:21 +0800 | [diff] [blame] | 16 | #include <linux/irq.h> |
Bryan Wu | 81d9c7f | 2008-03-26 10:02:13 +0800 | [diff] [blame] | 17 | #include <linux/i2c.h> |
Roy Huang | 24a07a1 | 2007-07-12 22:41:45 +0800 | [diff] [blame] | 18 | #include <linux/interrupt.h> |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 19 | #include <linux/usb/musb.h> |
Roy Huang | 24a07a1 | 2007-07-12 22:41:45 +0800 | [diff] [blame] | 20 | #include <asm/bfin5xx_spi.h> |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 21 | #include <asm/dma.h> |
| 22 | #include <asm/gpio.h> |
| 23 | #include <asm/nand.h> |
Michael Hennerich | 14b0320 | 2008-05-07 11:41:26 +0800 | [diff] [blame] | 24 | #include <asm/dpmc.h> |
Scott Jiang | 6f53dbb | 2011-03-01 09:43:50 +0000 | [diff] [blame] | 25 | #include <asm/bfin_sport.h> |
Bryan Wu | 5d448dd | 2007-11-12 23:24:42 +0800 | [diff] [blame] | 26 | #include <asm/portmux.h> |
Cliff Cai | 501674a | 2009-01-07 23:14:38 +0800 | [diff] [blame] | 27 | #include <asm/bfin_sdh.h> |
Bryan Wu | 639f657 | 2008-08-27 10:51:02 +0800 | [diff] [blame] | 28 | #include <mach/bf54x_keys.h> |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 29 | #include <linux/input.h> |
| 30 | #include <linux/spi/ad7877.h> |
Roy Huang | 24a07a1 | 2007-07-12 22:41:45 +0800 | [diff] [blame] | 31 | |
| 32 | /* |
| 33 | * Name the Board for the /proc/cpuinfo |
| 34 | */ |
Mike Frysinger | fe85cad | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 35 | const char bfin_board_name[] = "ADI BF548-EZKIT"; |
Roy Huang | 24a07a1 | 2007-07-12 22:41:45 +0800 | [diff] [blame] | 36 | |
| 37 | /* |
| 38 | * Driver needs to know address, irq and flag pin. |
| 39 | */ |
| 40 | |
Michael Hennerich | 0a6304a | 2008-07-26 16:14:57 +0800 | [diff] [blame] | 41 | #if defined(CONFIG_USB_ISP1760_HCD) || defined(CONFIG_USB_ISP1760_HCD_MODULE) |
Michael Hennerich | 3f37569 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 42 | #include <linux/usb/isp1760.h> |
| 43 | static struct resource bfin_isp1760_resources[] = { |
Michael Hennerich | 0a6304a | 2008-07-26 16:14:57 +0800 | [diff] [blame] | 44 | [0] = { |
Michael Hennerich | 0a6304a | 2008-07-26 16:14:57 +0800 | [diff] [blame] | 45 | .start = 0x2C0C0000, |
| 46 | .end = 0x2C0C0000 + 0xfffff, |
| 47 | .flags = IORESOURCE_MEM, |
| 48 | }, |
| 49 | [1] = { |
| 50 | .start = IRQ_PG7, |
| 51 | .end = IRQ_PG7, |
| 52 | .flags = IORESOURCE_IRQ, |
| 53 | }, |
| 54 | }; |
| 55 | |
Michael Hennerich | 3f37569 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 56 | static struct isp1760_platform_data isp1760_priv = { |
| 57 | .is_isp1761 = 0, |
Michael Hennerich | 3f37569 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 58 | .bus_width_16 = 1, |
| 59 | .port1_otg = 0, |
| 60 | .analog_oc = 0, |
| 61 | .dack_polarity_high = 0, |
| 62 | .dreq_polarity_high = 0, |
| 63 | }; |
| 64 | |
| 65 | static struct platform_device bfin_isp1760_device = { |
Michael Hennerich | c6feb76 | 2009-10-15 10:37:33 +0000 | [diff] [blame] | 66 | .name = "isp1760", |
Michael Hennerich | 0a6304a | 2008-07-26 16:14:57 +0800 | [diff] [blame] | 67 | .id = 0, |
Michael Hennerich | 3f37569 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 68 | .dev = { |
| 69 | .platform_data = &isp1760_priv, |
| 70 | }, |
| 71 | .num_resources = ARRAY_SIZE(bfin_isp1760_resources), |
| 72 | .resource = bfin_isp1760_resources, |
Michael Hennerich | 0a6304a | 2008-07-26 16:14:57 +0800 | [diff] [blame] | 73 | }; |
Michael Hennerich | 0a6304a | 2008-07-26 16:14:57 +0800 | [diff] [blame] | 74 | #endif |
| 75 | |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 76 | #if defined(CONFIG_FB_BF54X_LQ043) || defined(CONFIG_FB_BF54X_LQ043_MODULE) |
| 77 | |
Bryan Wu | 639f657 | 2008-08-27 10:51:02 +0800 | [diff] [blame] | 78 | #include <mach/bf54x-lq043.h> |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 79 | |
| 80 | static struct bfin_bf54xfb_mach_info bf54x_lq043_data = { |
Stefan Pledl | 0e101ec | 2009-07-29 08:09:45 +0000 | [diff] [blame] | 81 | .width = 95, |
| 82 | .height = 54, |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 83 | .xres = {480, 480, 480}, |
| 84 | .yres = {272, 272, 272}, |
| 85 | .bpp = {24, 24, 24}, |
| 86 | .disp = GPIO_PE3, |
| 87 | }; |
| 88 | |
| 89 | static struct resource bf54x_lq043_resources[] = { |
| 90 | { |
| 91 | .start = IRQ_EPPI0_ERR, |
| 92 | .end = IRQ_EPPI0_ERR, |
| 93 | .flags = IORESOURCE_IRQ, |
| 94 | }, |
| 95 | }; |
| 96 | |
| 97 | static struct platform_device bf54x_lq043_device = { |
| 98 | .name = "bf54x-lq043", |
| 99 | .id = -1, |
| 100 | .num_resources = ARRAY_SIZE(bf54x_lq043_resources), |
| 101 | .resource = bf54x_lq043_resources, |
| 102 | .dev = { |
| 103 | .platform_data = &bf54x_lq043_data, |
| 104 | }, |
| 105 | }; |
| 106 | #endif |
| 107 | |
| 108 | #if defined(CONFIG_KEYBOARD_BFIN) || defined(CONFIG_KEYBOARD_BFIN_MODULE) |
Michael Hennerich | 8f740ef | 2007-10-13 00:36:46 -0400 | [diff] [blame] | 109 | static const unsigned int bf548_keymap[] = { |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 110 | KEYVAL(0, 0, KEY_ENTER), |
| 111 | KEYVAL(0, 1, KEY_HELP), |
| 112 | KEYVAL(0, 2, KEY_0), |
| 113 | KEYVAL(0, 3, KEY_BACKSPACE), |
| 114 | KEYVAL(1, 0, KEY_TAB), |
| 115 | KEYVAL(1, 1, KEY_9), |
| 116 | KEYVAL(1, 2, KEY_8), |
| 117 | KEYVAL(1, 3, KEY_7), |
| 118 | KEYVAL(2, 0, KEY_DOWN), |
| 119 | KEYVAL(2, 1, KEY_6), |
| 120 | KEYVAL(2, 2, KEY_5), |
| 121 | KEYVAL(2, 3, KEY_4), |
| 122 | KEYVAL(3, 0, KEY_UP), |
| 123 | KEYVAL(3, 1, KEY_3), |
| 124 | KEYVAL(3, 2, KEY_2), |
| 125 | KEYVAL(3, 3, KEY_1), |
| 126 | }; |
| 127 | |
| 128 | static struct bfin_kpad_platform_data bf54x_kpad_data = { |
| 129 | .rows = 4, |
| 130 | .cols = 4, |
Michael Hennerich | 8f740ef | 2007-10-13 00:36:46 -0400 | [diff] [blame] | 131 | .keymap = bf548_keymap, |
| 132 | .keymapsize = ARRAY_SIZE(bf548_keymap), |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 133 | .repeat = 0, |
| 134 | .debounce_time = 5000, /* ns (5ms) */ |
| 135 | .coldrive_time = 1000, /* ns (1ms) */ |
| 136 | .keyup_test_interval = 50, /* ms (50ms) */ |
| 137 | }; |
| 138 | |
| 139 | static struct resource bf54x_kpad_resources[] = { |
| 140 | { |
| 141 | .start = IRQ_KEY, |
| 142 | .end = IRQ_KEY, |
| 143 | .flags = IORESOURCE_IRQ, |
| 144 | }, |
| 145 | }; |
| 146 | |
| 147 | static struct platform_device bf54x_kpad_device = { |
| 148 | .name = "bf54x-keys", |
| 149 | .id = -1, |
| 150 | .num_resources = ARRAY_SIZE(bf54x_kpad_resources), |
| 151 | .resource = bf54x_kpad_resources, |
| 152 | .dev = { |
| 153 | .platform_data = &bf54x_kpad_data, |
| 154 | }, |
| 155 | }; |
| 156 | #endif |
| 157 | |
Michael Hennerich | adfc046 | 2009-10-09 07:37:03 +0000 | [diff] [blame] | 158 | #if defined(CONFIG_INPUT_BFIN_ROTARY) || defined(CONFIG_INPUT_BFIN_ROTARY_MODULE) |
Michael Hennerich | aca5e4a | 2008-10-08 14:27:59 +0800 | [diff] [blame] | 159 | #include <asm/bfin_rotary.h> |
| 160 | |
| 161 | static struct bfin_rotary_platform_data bfin_rotary_data = { |
| 162 | /*.rotary_up_key = KEY_UP,*/ |
| 163 | /*.rotary_down_key = KEY_DOWN,*/ |
| 164 | .rotary_rel_code = REL_WHEEL, |
| 165 | .rotary_button_key = KEY_ENTER, |
| 166 | .debounce = 10, /* 0..17 */ |
| 167 | .mode = ROT_QUAD_ENC | ROT_DEBE, |
| 168 | }; |
| 169 | |
| 170 | static struct resource bfin_rotary_resources[] = { |
| 171 | { |
| 172 | .start = IRQ_CNT, |
| 173 | .end = IRQ_CNT, |
| 174 | .flags = IORESOURCE_IRQ, |
| 175 | }, |
| 176 | }; |
| 177 | |
| 178 | static struct platform_device bfin_rotary_device = { |
| 179 | .name = "bfin-rotary", |
| 180 | .id = -1, |
| 181 | .num_resources = ARRAY_SIZE(bfin_rotary_resources), |
| 182 | .resource = bfin_rotary_resources, |
| 183 | .dev = { |
| 184 | .platform_data = &bfin_rotary_data, |
| 185 | }, |
| 186 | }; |
| 187 | #endif |
| 188 | |
Michael Hennerich | ffc4d8b | 2009-05-29 15:41:18 +0000 | [diff] [blame] | 189 | #if defined(CONFIG_INPUT_ADXL34X) || defined(CONFIG_INPUT_ADXL34X_MODULE) |
Michael Hennerich | 57af8ed | 2009-10-16 12:35:20 +0000 | [diff] [blame] | 190 | #include <linux/input/adxl34x.h> |
Michael Hennerich | ffc4d8b | 2009-05-29 15:41:18 +0000 | [diff] [blame] | 191 | static const struct adxl34x_platform_data adxl34x_info = { |
| 192 | .x_axis_offset = 0, |
| 193 | .y_axis_offset = 0, |
| 194 | .z_axis_offset = 0, |
| 195 | .tap_threshold = 0x31, |
| 196 | .tap_duration = 0x10, |
| 197 | .tap_latency = 0x60, |
| 198 | .tap_window = 0xF0, |
| 199 | .tap_axis_control = ADXL_TAP_X_EN | ADXL_TAP_Y_EN | ADXL_TAP_Z_EN, |
| 200 | .act_axis_control = 0xFF, |
| 201 | .activity_threshold = 5, |
| 202 | .inactivity_threshold = 3, |
| 203 | .inactivity_time = 4, |
| 204 | .free_fall_threshold = 0x7, |
| 205 | .free_fall_time = 0x20, |
| 206 | .data_rate = 0x8, |
| 207 | .data_range = ADXL_FULL_RES, |
| 208 | |
| 209 | .ev_type = EV_ABS, |
| 210 | .ev_code_x = ABS_X, /* EV_REL */ |
| 211 | .ev_code_y = ABS_Y, /* EV_REL */ |
| 212 | .ev_code_z = ABS_Z, /* EV_REL */ |
| 213 | |
Michael Hennerich | 57af8ed | 2009-10-16 12:35:20 +0000 | [diff] [blame] | 214 | .ev_code_tap = {BTN_TOUCH, BTN_TOUCH, BTN_TOUCH}, /* EV_KEY x,y,z */ |
Michael Hennerich | ffc4d8b | 2009-05-29 15:41:18 +0000 | [diff] [blame] | 215 | |
| 216 | /* .ev_code_ff = KEY_F,*/ /* EV_KEY */ |
| 217 | /* .ev_code_act_inactivity = KEY_A,*/ /* EV_KEY */ |
| 218 | .power_mode = ADXL_AUTO_SLEEP | ADXL_LINK, |
| 219 | .fifo_mode = ADXL_FIFO_STREAM, |
Michael Hennerich | 5db4036 | 2009-10-29 13:48:10 +0000 | [diff] [blame] | 220 | .orientation_enable = ADXL_EN_ORIENTATION_3D, |
| 221 | .deadzone_angle = ADXL_DEADZONE_ANGLE_10p8, |
| 222 | .divisor_length = ADXL_LP_FILTER_DIVISOR_16, |
| 223 | /* EV_KEY {+Z, +Y, +X, -X, -Y, -Z} */ |
| 224 | .ev_codes_orient_3d = {BTN_Z, BTN_Y, BTN_X, BTN_A, BTN_B, BTN_C}, |
Michael Hennerich | ffc4d8b | 2009-05-29 15:41:18 +0000 | [diff] [blame] | 225 | }; |
| 226 | #endif |
| 227 | |
Roy Huang | 24a07a1 | 2007-07-12 22:41:45 +0800 | [diff] [blame] | 228 | #if defined(CONFIG_RTC_DRV_BFIN) || defined(CONFIG_RTC_DRV_BFIN_MODULE) |
| 229 | static struct platform_device rtc_device = { |
| 230 | .name = "rtc-bfin", |
| 231 | .id = -1, |
| 232 | }; |
| 233 | #endif |
| 234 | |
| 235 | #if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE) |
Roy Huang | 24a07a1 | 2007-07-12 22:41:45 +0800 | [diff] [blame] | 236 | #ifdef CONFIG_SERIAL_BFIN_UART0 |
Sonic Zhang | 6bd1fbe | 2009-09-09 10:46:19 +0000 | [diff] [blame] | 237 | static struct resource bfin_uart0_resources[] = { |
Roy Huang | 24a07a1 | 2007-07-12 22:41:45 +0800 | [diff] [blame] | 238 | { |
Sonic Zhang | 6bd1fbe | 2009-09-09 10:46:19 +0000 | [diff] [blame] | 239 | .start = UART0_DLL, |
| 240 | .end = UART0_RBR+2, |
Roy Huang | 24a07a1 | 2007-07-12 22:41:45 +0800 | [diff] [blame] | 241 | .flags = IORESOURCE_MEM, |
| 242 | }, |
Sonic Zhang | 6bd1fbe | 2009-09-09 10:46:19 +0000 | [diff] [blame] | 243 | { |
Sonic Zhang | edb0a64 | 2011-08-01 17:53:21 +0800 | [diff] [blame] | 244 | .start = IRQ_UART0_TX, |
| 245 | .end = IRQ_UART0_TX, |
| 246 | .flags = IORESOURCE_IRQ, |
| 247 | }, |
| 248 | { |
Sonic Zhang | 6bd1fbe | 2009-09-09 10:46:19 +0000 | [diff] [blame] | 249 | .start = IRQ_UART0_RX, |
Sonic Zhang | edb0a64 | 2011-08-01 17:53:21 +0800 | [diff] [blame] | 250 | .end = IRQ_UART0_RX, |
Sonic Zhang | 6bd1fbe | 2009-09-09 10:46:19 +0000 | [diff] [blame] | 251 | .flags = IORESOURCE_IRQ, |
| 252 | }, |
| 253 | { |
| 254 | .start = IRQ_UART0_ERROR, |
| 255 | .end = IRQ_UART0_ERROR, |
| 256 | .flags = IORESOURCE_IRQ, |
| 257 | }, |
| 258 | { |
| 259 | .start = CH_UART0_TX, |
| 260 | .end = CH_UART0_TX, |
| 261 | .flags = IORESOURCE_DMA, |
| 262 | }, |
| 263 | { |
| 264 | .start = CH_UART0_RX, |
| 265 | .end = CH_UART0_RX, |
| 266 | .flags = IORESOURCE_DMA, |
| 267 | }, |
| 268 | }; |
| 269 | |
Mike Frysinger | a8b1988 | 2010-11-24 09:23:04 +0000 | [diff] [blame] | 270 | static unsigned short bfin_uart0_peripherals[] = { |
Sonic Zhang | 6bd1fbe | 2009-09-09 10:46:19 +0000 | [diff] [blame] | 271 | P_UART0_TX, P_UART0_RX, 0 |
| 272 | }; |
| 273 | |
| 274 | static struct platform_device bfin_uart0_device = { |
| 275 | .name = "bfin-uart", |
| 276 | .id = 0, |
| 277 | .num_resources = ARRAY_SIZE(bfin_uart0_resources), |
| 278 | .resource = bfin_uart0_resources, |
| 279 | .dev = { |
| 280 | .platform_data = &bfin_uart0_peripherals, /* Passed to driver */ |
| 281 | }, |
| 282 | }; |
Roy Huang | 24a07a1 | 2007-07-12 22:41:45 +0800 | [diff] [blame] | 283 | #endif |
| 284 | #ifdef CONFIG_SERIAL_BFIN_UART1 |
Sonic Zhang | 6bd1fbe | 2009-09-09 10:46:19 +0000 | [diff] [blame] | 285 | static struct resource bfin_uart1_resources[] = { |
Roy Huang | 24a07a1 | 2007-07-12 22:41:45 +0800 | [diff] [blame] | 286 | { |
Sonic Zhang | 6bd1fbe | 2009-09-09 10:46:19 +0000 | [diff] [blame] | 287 | .start = UART1_DLL, |
| 288 | .end = UART1_RBR+2, |
Roy Huang | 24a07a1 | 2007-07-12 22:41:45 +0800 | [diff] [blame] | 289 | .flags = IORESOURCE_MEM, |
| 290 | }, |
Roy Huang | 24a07a1 | 2007-07-12 22:41:45 +0800 | [diff] [blame] | 291 | { |
Sonic Zhang | edb0a64 | 2011-08-01 17:53:21 +0800 | [diff] [blame] | 292 | .start = IRQ_UART1_TX, |
| 293 | .end = IRQ_UART1_TX, |
| 294 | .flags = IORESOURCE_IRQ, |
| 295 | }, |
| 296 | { |
Sonic Zhang | 6bd1fbe | 2009-09-09 10:46:19 +0000 | [diff] [blame] | 297 | .start = IRQ_UART1_RX, |
Sonic Zhang | edb0a64 | 2011-08-01 17:53:21 +0800 | [diff] [blame] | 298 | .end = IRQ_UART1_RX, |
Sonic Zhang | 6bd1fbe | 2009-09-09 10:46:19 +0000 | [diff] [blame] | 299 | .flags = IORESOURCE_IRQ, |
Roy Huang | 24a07a1 | 2007-07-12 22:41:45 +0800 | [diff] [blame] | 300 | }, |
Roy Huang | 24a07a1 | 2007-07-12 22:41:45 +0800 | [diff] [blame] | 301 | { |
Sonic Zhang | 6bd1fbe | 2009-09-09 10:46:19 +0000 | [diff] [blame] | 302 | .start = IRQ_UART1_ERROR, |
| 303 | .end = IRQ_UART1_ERROR, |
| 304 | .flags = IORESOURCE_IRQ, |
| 305 | }, |
| 306 | { |
| 307 | .start = CH_UART1_TX, |
| 308 | .end = CH_UART1_TX, |
| 309 | .flags = IORESOURCE_DMA, |
| 310 | }, |
| 311 | { |
| 312 | .start = CH_UART1_RX, |
| 313 | .end = CH_UART1_RX, |
| 314 | .flags = IORESOURCE_DMA, |
| 315 | }, |
| 316 | #ifdef CONFIG_BFIN_UART1_CTSRTS |
| 317 | { /* CTS pin -- 0 means not supported */ |
| 318 | .start = GPIO_PE10, |
| 319 | .end = GPIO_PE10, |
| 320 | .flags = IORESOURCE_IO, |
| 321 | }, |
| 322 | { /* RTS pin -- 0 means not supported */ |
| 323 | .start = GPIO_PE9, |
| 324 | .end = GPIO_PE9, |
| 325 | .flags = IORESOURCE_IO, |
Roy Huang | 24a07a1 | 2007-07-12 22:41:45 +0800 | [diff] [blame] | 326 | }, |
| 327 | #endif |
| 328 | }; |
| 329 | |
Mike Frysinger | a8b1988 | 2010-11-24 09:23:04 +0000 | [diff] [blame] | 330 | static unsigned short bfin_uart1_peripherals[] = { |
Sonic Zhang | 6bd1fbe | 2009-09-09 10:46:19 +0000 | [diff] [blame] | 331 | P_UART1_TX, P_UART1_RX, |
| 332 | #ifdef CONFIG_BFIN_UART1_CTSRTS |
| 333 | P_UART1_RTS, P_UART1_CTS, |
| 334 | #endif |
| 335 | 0 |
| 336 | }; |
| 337 | |
| 338 | static struct platform_device bfin_uart1_device = { |
Roy Huang | 24a07a1 | 2007-07-12 22:41:45 +0800 | [diff] [blame] | 339 | .name = "bfin-uart", |
| 340 | .id = 1, |
Sonic Zhang | 6bd1fbe | 2009-09-09 10:46:19 +0000 | [diff] [blame] | 341 | .num_resources = ARRAY_SIZE(bfin_uart1_resources), |
| 342 | .resource = bfin_uart1_resources, |
| 343 | .dev = { |
| 344 | .platform_data = &bfin_uart1_peripherals, /* Passed to driver */ |
| 345 | }, |
Roy Huang | 24a07a1 | 2007-07-12 22:41:45 +0800 | [diff] [blame] | 346 | }; |
| 347 | #endif |
Sonic Zhang | 6bd1fbe | 2009-09-09 10:46:19 +0000 | [diff] [blame] | 348 | #ifdef CONFIG_SERIAL_BFIN_UART2 |
| 349 | static struct resource bfin_uart2_resources[] = { |
| 350 | { |
| 351 | .start = UART2_DLL, |
| 352 | .end = UART2_RBR+2, |
| 353 | .flags = IORESOURCE_MEM, |
| 354 | }, |
| 355 | { |
Sonic Zhang | edb0a64 | 2011-08-01 17:53:21 +0800 | [diff] [blame] | 356 | .start = IRQ_UART2_TX, |
| 357 | .end = IRQ_UART2_TX, |
| 358 | .flags = IORESOURCE_IRQ, |
| 359 | }, |
| 360 | { |
Sonic Zhang | 6bd1fbe | 2009-09-09 10:46:19 +0000 | [diff] [blame] | 361 | .start = IRQ_UART2_RX, |
Sonic Zhang | edb0a64 | 2011-08-01 17:53:21 +0800 | [diff] [blame] | 362 | .end = IRQ_UART2_RX, |
Sonic Zhang | 6bd1fbe | 2009-09-09 10:46:19 +0000 | [diff] [blame] | 363 | .flags = IORESOURCE_IRQ, |
| 364 | }, |
| 365 | { |
| 366 | .start = IRQ_UART2_ERROR, |
| 367 | .end = IRQ_UART2_ERROR, |
| 368 | .flags = IORESOURCE_IRQ, |
| 369 | }, |
| 370 | { |
| 371 | .start = CH_UART2_TX, |
| 372 | .end = CH_UART2_TX, |
| 373 | .flags = IORESOURCE_DMA, |
| 374 | }, |
| 375 | { |
| 376 | .start = CH_UART2_RX, |
| 377 | .end = CH_UART2_RX, |
| 378 | .flags = IORESOURCE_DMA, |
| 379 | }, |
| 380 | }; |
| 381 | |
Mike Frysinger | a8b1988 | 2010-11-24 09:23:04 +0000 | [diff] [blame] | 382 | static unsigned short bfin_uart2_peripherals[] = { |
Sonic Zhang | 6bd1fbe | 2009-09-09 10:46:19 +0000 | [diff] [blame] | 383 | P_UART2_TX, P_UART2_RX, 0 |
| 384 | }; |
| 385 | |
| 386 | static struct platform_device bfin_uart2_device = { |
| 387 | .name = "bfin-uart", |
| 388 | .id = 2, |
| 389 | .num_resources = ARRAY_SIZE(bfin_uart2_resources), |
| 390 | .resource = bfin_uart2_resources, |
| 391 | .dev = { |
| 392 | .platform_data = &bfin_uart2_peripherals, /* Passed to driver */ |
| 393 | }, |
| 394 | }; |
| 395 | #endif |
| 396 | #ifdef CONFIG_SERIAL_BFIN_UART3 |
| 397 | static struct resource bfin_uart3_resources[] = { |
| 398 | { |
| 399 | .start = UART3_DLL, |
| 400 | .end = UART3_RBR+2, |
| 401 | .flags = IORESOURCE_MEM, |
| 402 | }, |
| 403 | { |
Sonic Zhang | edb0a64 | 2011-08-01 17:53:21 +0800 | [diff] [blame] | 404 | .start = IRQ_UART3_TX, |
| 405 | .end = IRQ_UART3_TX, |
| 406 | .flags = IORESOURCE_IRQ, |
| 407 | }, |
| 408 | { |
Sonic Zhang | 6bd1fbe | 2009-09-09 10:46:19 +0000 | [diff] [blame] | 409 | .start = IRQ_UART3_RX, |
Sonic Zhang | edb0a64 | 2011-08-01 17:53:21 +0800 | [diff] [blame] | 410 | .end = IRQ_UART3_RX, |
Sonic Zhang | 6bd1fbe | 2009-09-09 10:46:19 +0000 | [diff] [blame] | 411 | .flags = IORESOURCE_IRQ, |
| 412 | }, |
| 413 | { |
| 414 | .start = IRQ_UART3_ERROR, |
| 415 | .end = IRQ_UART3_ERROR, |
| 416 | .flags = IORESOURCE_IRQ, |
| 417 | }, |
| 418 | { |
| 419 | .start = CH_UART3_TX, |
| 420 | .end = CH_UART3_TX, |
| 421 | .flags = IORESOURCE_DMA, |
| 422 | }, |
| 423 | { |
| 424 | .start = CH_UART3_RX, |
| 425 | .end = CH_UART3_RX, |
| 426 | .flags = IORESOURCE_DMA, |
| 427 | }, |
| 428 | #ifdef CONFIG_BFIN_UART3_CTSRTS |
| 429 | { /* CTS pin -- 0 means not supported */ |
| 430 | .start = GPIO_PB3, |
| 431 | .end = GPIO_PB3, |
| 432 | .flags = IORESOURCE_IO, |
| 433 | }, |
| 434 | { /* RTS pin -- 0 means not supported */ |
| 435 | .start = GPIO_PB2, |
| 436 | .end = GPIO_PB2, |
| 437 | .flags = IORESOURCE_IO, |
| 438 | }, |
| 439 | #endif |
| 440 | }; |
| 441 | |
Mike Frysinger | a8b1988 | 2010-11-24 09:23:04 +0000 | [diff] [blame] | 442 | static unsigned short bfin_uart3_peripherals[] = { |
Sonic Zhang | 6bd1fbe | 2009-09-09 10:46:19 +0000 | [diff] [blame] | 443 | P_UART3_TX, P_UART3_RX, |
| 444 | #ifdef CONFIG_BFIN_UART3_CTSRTS |
| 445 | P_UART3_RTS, P_UART3_CTS, |
| 446 | #endif |
| 447 | 0 |
| 448 | }; |
| 449 | |
| 450 | static struct platform_device bfin_uart3_device = { |
| 451 | .name = "bfin-uart", |
| 452 | .id = 3, |
| 453 | .num_resources = ARRAY_SIZE(bfin_uart3_resources), |
| 454 | .resource = bfin_uart3_resources, |
| 455 | .dev = { |
| 456 | .platform_data = &bfin_uart3_peripherals, /* Passed to driver */ |
| 457 | }, |
| 458 | }; |
| 459 | #endif |
| 460 | #endif |
Roy Huang | 24a07a1 | 2007-07-12 22:41:45 +0800 | [diff] [blame] | 461 | |
Graf Yang | 5be36d2 | 2008-04-25 03:09:15 +0800 | [diff] [blame] | 462 | #if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE) |
Graf Yang | 5be36d2 | 2008-04-25 03:09:15 +0800 | [diff] [blame] | 463 | #ifdef CONFIG_BFIN_SIR0 |
Graf Yang | 42bd8bc | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 464 | static struct resource bfin_sir0_resources[] = { |
Graf Yang | 5be36d2 | 2008-04-25 03:09:15 +0800 | [diff] [blame] | 465 | { |
| 466 | .start = 0xFFC00400, |
| 467 | .end = 0xFFC004FF, |
| 468 | .flags = IORESOURCE_MEM, |
| 469 | }, |
Graf Yang | 42bd8bc | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 470 | { |
| 471 | .start = IRQ_UART0_RX, |
| 472 | .end = IRQ_UART0_RX+1, |
| 473 | .flags = IORESOURCE_IRQ, |
| 474 | }, |
| 475 | { |
| 476 | .start = CH_UART0_RX, |
| 477 | .end = CH_UART0_RX+1, |
| 478 | .flags = IORESOURCE_DMA, |
| 479 | }, |
| 480 | }; |
| 481 | static struct platform_device bfin_sir0_device = { |
| 482 | .name = "bfin_sir", |
| 483 | .id = 0, |
| 484 | .num_resources = ARRAY_SIZE(bfin_sir0_resources), |
| 485 | .resource = bfin_sir0_resources, |
| 486 | }; |
Graf Yang | 5be36d2 | 2008-04-25 03:09:15 +0800 | [diff] [blame] | 487 | #endif |
| 488 | #ifdef CONFIG_BFIN_SIR1 |
Graf Yang | 42bd8bc | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 489 | static struct resource bfin_sir1_resources[] = { |
Graf Yang | 5be36d2 | 2008-04-25 03:09:15 +0800 | [diff] [blame] | 490 | { |
| 491 | .start = 0xFFC02000, |
| 492 | .end = 0xFFC020FF, |
| 493 | .flags = IORESOURCE_MEM, |
| 494 | }, |
Graf Yang | 42bd8bc | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 495 | { |
| 496 | .start = IRQ_UART1_RX, |
| 497 | .end = IRQ_UART1_RX+1, |
| 498 | .flags = IORESOURCE_IRQ, |
| 499 | }, |
| 500 | { |
| 501 | .start = CH_UART1_RX, |
| 502 | .end = CH_UART1_RX+1, |
| 503 | .flags = IORESOURCE_DMA, |
| 504 | }, |
| 505 | }; |
| 506 | static struct platform_device bfin_sir1_device = { |
| 507 | .name = "bfin_sir", |
| 508 | .id = 1, |
| 509 | .num_resources = ARRAY_SIZE(bfin_sir1_resources), |
| 510 | .resource = bfin_sir1_resources, |
| 511 | }; |
Graf Yang | 5be36d2 | 2008-04-25 03:09:15 +0800 | [diff] [blame] | 512 | #endif |
| 513 | #ifdef CONFIG_BFIN_SIR2 |
Graf Yang | 42bd8bc | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 514 | static struct resource bfin_sir2_resources[] = { |
Graf Yang | 5be36d2 | 2008-04-25 03:09:15 +0800 | [diff] [blame] | 515 | { |
| 516 | .start = 0xFFC02100, |
| 517 | .end = 0xFFC021FF, |
| 518 | .flags = IORESOURCE_MEM, |
| 519 | }, |
Graf Yang | 42bd8bc | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 520 | { |
| 521 | .start = IRQ_UART2_RX, |
| 522 | .end = IRQ_UART2_RX+1, |
| 523 | .flags = IORESOURCE_IRQ, |
| 524 | }, |
| 525 | { |
| 526 | .start = CH_UART2_RX, |
| 527 | .end = CH_UART2_RX+1, |
| 528 | .flags = IORESOURCE_DMA, |
| 529 | }, |
| 530 | }; |
| 531 | static struct platform_device bfin_sir2_device = { |
| 532 | .name = "bfin_sir", |
| 533 | .id = 2, |
| 534 | .num_resources = ARRAY_SIZE(bfin_sir2_resources), |
| 535 | .resource = bfin_sir2_resources, |
| 536 | }; |
Graf Yang | 5be36d2 | 2008-04-25 03:09:15 +0800 | [diff] [blame] | 537 | #endif |
| 538 | #ifdef CONFIG_BFIN_SIR3 |
Graf Yang | 42bd8bc | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 539 | static struct resource bfin_sir3_resources[] = { |
Graf Yang | 5be36d2 | 2008-04-25 03:09:15 +0800 | [diff] [blame] | 540 | { |
| 541 | .start = 0xFFC03100, |
| 542 | .end = 0xFFC031FF, |
| 543 | .flags = IORESOURCE_MEM, |
| 544 | }, |
Graf Yang | 42bd8bc | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 545 | { |
| 546 | .start = IRQ_UART3_RX, |
| 547 | .end = IRQ_UART3_RX+1, |
| 548 | .flags = IORESOURCE_IRQ, |
| 549 | }, |
| 550 | { |
| 551 | .start = CH_UART3_RX, |
| 552 | .end = CH_UART3_RX+1, |
| 553 | .flags = IORESOURCE_DMA, |
| 554 | }, |
Graf Yang | 5be36d2 | 2008-04-25 03:09:15 +0800 | [diff] [blame] | 555 | }; |
Graf Yang | 42bd8bc | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 556 | static struct platform_device bfin_sir3_device = { |
Graf Yang | 5be36d2 | 2008-04-25 03:09:15 +0800 | [diff] [blame] | 557 | .name = "bfin_sir", |
Graf Yang | 42bd8bc | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 558 | .id = 3, |
| 559 | .num_resources = ARRAY_SIZE(bfin_sir3_resources), |
| 560 | .resource = bfin_sir3_resources, |
Graf Yang | 5be36d2 | 2008-04-25 03:09:15 +0800 | [diff] [blame] | 561 | }; |
| 562 | #endif |
Graf Yang | 42bd8bc | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 563 | #endif |
Graf Yang | 5be36d2 | 2008-04-25 03:09:15 +0800 | [diff] [blame] | 564 | |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 565 | #if defined(CONFIG_SMSC911X) || defined(CONFIG_SMSC911X_MODULE) |
Mike Frysinger | 7a8b71d | 2009-06-05 20:41:17 -0400 | [diff] [blame] | 566 | #include <linux/smsc911x.h> |
| 567 | |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 568 | static struct resource smsc911x_resources[] = { |
| 569 | { |
| 570 | .name = "smsc911x-memory", |
| 571 | .start = 0x24000000, |
| 572 | .end = 0x24000000 + 0xFF, |
| 573 | .flags = IORESOURCE_MEM, |
| 574 | }, |
| 575 | { |
| 576 | .start = IRQ_PE8, |
| 577 | .end = IRQ_PE8, |
| 578 | .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_LOWLEVEL, |
| 579 | }, |
| 580 | }; |
Mike Frysinger | 7a8b71d | 2009-06-05 20:41:17 -0400 | [diff] [blame] | 581 | |
| 582 | static struct smsc911x_platform_config smsc911x_config = { |
| 583 | .flags = SMSC911X_USE_32BIT, |
| 584 | .irq_polarity = SMSC911X_IRQ_POLARITY_ACTIVE_LOW, |
| 585 | .irq_type = SMSC911X_IRQ_TYPE_OPEN_DRAIN, |
| 586 | .phy_interface = PHY_INTERFACE_MODE_MII, |
| 587 | }; |
| 588 | |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 589 | static struct platform_device smsc911x_device = { |
| 590 | .name = "smsc911x", |
| 591 | .id = 0, |
| 592 | .num_resources = ARRAY_SIZE(smsc911x_resources), |
| 593 | .resource = smsc911x_resources, |
Mike Frysinger | 7a8b71d | 2009-06-05 20:41:17 -0400 | [diff] [blame] | 594 | .dev = { |
| 595 | .platform_data = &smsc911x_config, |
| 596 | }, |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 597 | }; |
| 598 | #endif |
| 599 | |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 600 | #if defined(CONFIG_USB_MUSB_HDRC) || defined(CONFIG_USB_MUSB_HDRC_MODULE) |
| 601 | static struct resource musb_resources[] = { |
| 602 | [0] = { |
| 603 | .start = 0xFFC03C00, |
| 604 | .end = 0xFFC040FF, |
| 605 | .flags = IORESOURCE_MEM, |
| 606 | }, |
| 607 | [1] = { /* general IRQ */ |
| 608 | .start = IRQ_USB_INT0, |
| 609 | .end = IRQ_USB_INT0, |
| 610 | .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL, |
Hema Kalliguddi | fcf173e | 2010-09-29 11:26:39 -0500 | [diff] [blame] | 611 | .name = "mc" |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 612 | }, |
| 613 | [2] = { /* DMA IRQ */ |
| 614 | .start = IRQ_USB_DMA, |
| 615 | .end = IRQ_USB_DMA, |
| 616 | .flags = IORESOURCE_IRQ | IORESOURCE_IRQ_HIGHLEVEL, |
Hema Kalliguddi | fcf173e | 2010-09-29 11:26:39 -0500 | [diff] [blame] | 617 | .name = "dma" |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 618 | }, |
| 619 | }; |
| 620 | |
Bryan Wu | 50041ac | 2008-10-08 13:39:40 +0800 | [diff] [blame] | 621 | static struct musb_hdrc_config musb_config = { |
| 622 | .multipoint = 0, |
| 623 | .dyn_fifo = 0, |
| 624 | .soft_con = 1, |
| 625 | .dma = 1, |
Bryan Wu | fea05da | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 626 | .num_eps = 8, |
| 627 | .dma_channels = 8, |
Bryan Wu | 50041ac | 2008-10-08 13:39:40 +0800 | [diff] [blame] | 628 | .gpio_vrsel = GPIO_PE7, |
Cliff Cai | 85eb0e4 | 2010-01-22 04:02:46 +0000 | [diff] [blame] | 629 | /* Some custom boards need to be active low, just set it to "0" |
| 630 | * if it is the case. |
| 631 | */ |
| 632 | .gpio_vrsel_active = 1, |
Bob Liu | 759a3f3 | 2010-09-17 11:09:57 +0000 | [diff] [blame] | 633 | .clkin = 24, /* musb CLKIN in MHZ */ |
Bryan Wu | 50041ac | 2008-10-08 13:39:40 +0800 | [diff] [blame] | 634 | }; |
| 635 | |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 636 | static struct musb_hdrc_platform_data musb_plat = { |
Bryan Wu | 2935077 | 2007-12-24 12:20:19 +0800 | [diff] [blame] | 637 | #if defined(CONFIG_USB_MUSB_OTG) |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 638 | .mode = MUSB_OTG, |
Bryan Wu | 2935077 | 2007-12-24 12:20:19 +0800 | [diff] [blame] | 639 | #elif defined(CONFIG_USB_MUSB_HDRC_HCD) |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 640 | .mode = MUSB_HOST, |
Bryan Wu | 2935077 | 2007-12-24 12:20:19 +0800 | [diff] [blame] | 641 | #elif defined(CONFIG_USB_GADGET_MUSB_HDRC) |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 642 | .mode = MUSB_PERIPHERAL, |
| 643 | #endif |
Bryan Wu | 50041ac | 2008-10-08 13:39:40 +0800 | [diff] [blame] | 644 | .config = &musb_config, |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 645 | }; |
| 646 | |
| 647 | static u64 musb_dmamask = ~(u32)0; |
| 648 | |
| 649 | static struct platform_device musb_device = { |
Felipe Balbi | 9cb0308 | 2010-12-02 09:21:05 +0200 | [diff] [blame] | 650 | .name = "musb-blackfin", |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 651 | .id = 0, |
| 652 | .dev = { |
| 653 | .dma_mask = &musb_dmamask, |
| 654 | .coherent_dma_mask = 0xffffffff, |
| 655 | .platform_data = &musb_plat, |
| 656 | }, |
| 657 | .num_resources = ARRAY_SIZE(musb_resources), |
| 658 | .resource = musb_resources, |
| 659 | }; |
| 660 | #endif |
| 661 | |
Sonic Zhang | df5de26 | 2009-09-23 05:01:56 +0000 | [diff] [blame] | 662 | #if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE) |
| 663 | #ifdef CONFIG_SERIAL_BFIN_SPORT0_UART |
| 664 | static struct resource bfin_sport0_uart_resources[] = { |
| 665 | { |
| 666 | .start = SPORT0_TCR1, |
| 667 | .end = SPORT0_MRCS3+4, |
| 668 | .flags = IORESOURCE_MEM, |
| 669 | }, |
| 670 | { |
| 671 | .start = IRQ_SPORT0_RX, |
| 672 | .end = IRQ_SPORT0_RX+1, |
| 673 | .flags = IORESOURCE_IRQ, |
| 674 | }, |
| 675 | { |
| 676 | .start = IRQ_SPORT0_ERROR, |
| 677 | .end = IRQ_SPORT0_ERROR, |
| 678 | .flags = IORESOURCE_IRQ, |
| 679 | }, |
| 680 | }; |
| 681 | |
Mike Frysinger | a8b1988 | 2010-11-24 09:23:04 +0000 | [diff] [blame] | 682 | static unsigned short bfin_sport0_peripherals[] = { |
Sonic Zhang | df5de26 | 2009-09-23 05:01:56 +0000 | [diff] [blame] | 683 | P_SPORT0_TFS, P_SPORT0_DTPRI, P_SPORT0_TSCLK, P_SPORT0_RFS, |
Sonic Zhang | e54b673 | 2010-11-12 02:45:38 +0000 | [diff] [blame] | 684 | P_SPORT0_DRPRI, P_SPORT0_RSCLK, 0 |
Sonic Zhang | df5de26 | 2009-09-23 05:01:56 +0000 | [diff] [blame] | 685 | }; |
| 686 | |
| 687 | static struct platform_device bfin_sport0_uart_device = { |
| 688 | .name = "bfin-sport-uart", |
| 689 | .id = 0, |
| 690 | .num_resources = ARRAY_SIZE(bfin_sport0_uart_resources), |
| 691 | .resource = bfin_sport0_uart_resources, |
| 692 | .dev = { |
| 693 | .platform_data = &bfin_sport0_peripherals, /* Passed to driver */ |
| 694 | }, |
| 695 | }; |
| 696 | #endif |
| 697 | #ifdef CONFIG_SERIAL_BFIN_SPORT1_UART |
| 698 | static struct resource bfin_sport1_uart_resources[] = { |
| 699 | { |
| 700 | .start = SPORT1_TCR1, |
| 701 | .end = SPORT1_MRCS3+4, |
| 702 | .flags = IORESOURCE_MEM, |
| 703 | }, |
| 704 | { |
| 705 | .start = IRQ_SPORT1_RX, |
| 706 | .end = IRQ_SPORT1_RX+1, |
| 707 | .flags = IORESOURCE_IRQ, |
| 708 | }, |
| 709 | { |
| 710 | .start = IRQ_SPORT1_ERROR, |
| 711 | .end = IRQ_SPORT1_ERROR, |
| 712 | .flags = IORESOURCE_IRQ, |
| 713 | }, |
| 714 | }; |
| 715 | |
Mike Frysinger | a8b1988 | 2010-11-24 09:23:04 +0000 | [diff] [blame] | 716 | static unsigned short bfin_sport1_peripherals[] = { |
Sonic Zhang | df5de26 | 2009-09-23 05:01:56 +0000 | [diff] [blame] | 717 | P_SPORT1_TFS, P_SPORT1_DTPRI, P_SPORT1_TSCLK, P_SPORT1_RFS, |
Sonic Zhang | e54b673 | 2010-11-12 02:45:38 +0000 | [diff] [blame] | 718 | P_SPORT1_DRPRI, P_SPORT1_RSCLK, 0 |
Sonic Zhang | df5de26 | 2009-09-23 05:01:56 +0000 | [diff] [blame] | 719 | }; |
| 720 | |
| 721 | static struct platform_device bfin_sport1_uart_device = { |
| 722 | .name = "bfin-sport-uart", |
| 723 | .id = 1, |
| 724 | .num_resources = ARRAY_SIZE(bfin_sport1_uart_resources), |
| 725 | .resource = bfin_sport1_uart_resources, |
| 726 | .dev = { |
| 727 | .platform_data = &bfin_sport1_peripherals, /* Passed to driver */ |
| 728 | }, |
| 729 | }; |
| 730 | #endif |
| 731 | #ifdef CONFIG_SERIAL_BFIN_SPORT2_UART |
| 732 | static struct resource bfin_sport2_uart_resources[] = { |
| 733 | { |
| 734 | .start = SPORT2_TCR1, |
| 735 | .end = SPORT2_MRCS3+4, |
| 736 | .flags = IORESOURCE_MEM, |
| 737 | }, |
| 738 | { |
| 739 | .start = IRQ_SPORT2_RX, |
| 740 | .end = IRQ_SPORT2_RX+1, |
| 741 | .flags = IORESOURCE_IRQ, |
| 742 | }, |
| 743 | { |
| 744 | .start = IRQ_SPORT2_ERROR, |
| 745 | .end = IRQ_SPORT2_ERROR, |
| 746 | .flags = IORESOURCE_IRQ, |
| 747 | }, |
| 748 | }; |
| 749 | |
Mike Frysinger | a8b1988 | 2010-11-24 09:23:04 +0000 | [diff] [blame] | 750 | static unsigned short bfin_sport2_peripherals[] = { |
Sonic Zhang | df5de26 | 2009-09-23 05:01:56 +0000 | [diff] [blame] | 751 | P_SPORT2_TFS, P_SPORT2_DTPRI, P_SPORT2_TSCLK, P_SPORT2_RFS, |
| 752 | P_SPORT2_DRPRI, P_SPORT2_RSCLK, P_SPORT2_DRSEC, P_SPORT2_DTSEC, 0 |
| 753 | }; |
| 754 | |
| 755 | static struct platform_device bfin_sport2_uart_device = { |
| 756 | .name = "bfin-sport-uart", |
| 757 | .id = 2, |
| 758 | .num_resources = ARRAY_SIZE(bfin_sport2_uart_resources), |
| 759 | .resource = bfin_sport2_uart_resources, |
| 760 | .dev = { |
| 761 | .platform_data = &bfin_sport2_peripherals, /* Passed to driver */ |
| 762 | }, |
| 763 | }; |
| 764 | #endif |
| 765 | #ifdef CONFIG_SERIAL_BFIN_SPORT3_UART |
| 766 | static struct resource bfin_sport3_uart_resources[] = { |
| 767 | { |
| 768 | .start = SPORT3_TCR1, |
| 769 | .end = SPORT3_MRCS3+4, |
| 770 | .flags = IORESOURCE_MEM, |
| 771 | }, |
| 772 | { |
| 773 | .start = IRQ_SPORT3_RX, |
| 774 | .end = IRQ_SPORT3_RX+1, |
| 775 | .flags = IORESOURCE_IRQ, |
| 776 | }, |
| 777 | { |
| 778 | .start = IRQ_SPORT3_ERROR, |
| 779 | .end = IRQ_SPORT3_ERROR, |
| 780 | .flags = IORESOURCE_IRQ, |
| 781 | }, |
| 782 | }; |
| 783 | |
Mike Frysinger | a8b1988 | 2010-11-24 09:23:04 +0000 | [diff] [blame] | 784 | static unsigned short bfin_sport3_peripherals[] = { |
Sonic Zhang | df5de26 | 2009-09-23 05:01:56 +0000 | [diff] [blame] | 785 | P_SPORT3_TFS, P_SPORT3_DTPRI, P_SPORT3_TSCLK, P_SPORT3_RFS, |
| 786 | P_SPORT3_DRPRI, P_SPORT3_RSCLK, P_SPORT3_DRSEC, P_SPORT3_DTSEC, 0 |
| 787 | }; |
| 788 | |
| 789 | static struct platform_device bfin_sport3_uart_device = { |
| 790 | .name = "bfin-sport-uart", |
| 791 | .id = 3, |
| 792 | .num_resources = ARRAY_SIZE(bfin_sport3_uart_resources), |
| 793 | .resource = bfin_sport3_uart_resources, |
| 794 | .dev = { |
| 795 | .platform_data = &bfin_sport3_peripherals, /* Passed to driver */ |
| 796 | }, |
| 797 | }; |
| 798 | #endif |
| 799 | #endif |
| 800 | |
Barry Song | 706a01b | 2009-11-02 07:29:07 +0000 | [diff] [blame] | 801 | #if defined(CONFIG_CAN_BFIN) || defined(CONFIG_CAN_BFIN_MODULE) |
Aaron Wu | 4c131c8 | 2010-12-22 06:21:03 +0000 | [diff] [blame] | 802 | |
| 803 | static unsigned short bfin_can0_peripherals[] = { |
Barry Song | 706a01b | 2009-11-02 07:29:07 +0000 | [diff] [blame] | 804 | P_CAN0_RX, P_CAN0_TX, 0 |
| 805 | }; |
| 806 | |
Aaron Wu | 4c131c8 | 2010-12-22 06:21:03 +0000 | [diff] [blame] | 807 | static struct resource bfin_can0_resources[] = { |
Barry Song | 706a01b | 2009-11-02 07:29:07 +0000 | [diff] [blame] | 808 | { |
| 809 | .start = 0xFFC02A00, |
| 810 | .end = 0xFFC02FFF, |
| 811 | .flags = IORESOURCE_MEM, |
| 812 | }, |
| 813 | { |
| 814 | .start = IRQ_CAN0_RX, |
| 815 | .end = IRQ_CAN0_RX, |
| 816 | .flags = IORESOURCE_IRQ, |
| 817 | }, |
| 818 | { |
| 819 | .start = IRQ_CAN0_TX, |
| 820 | .end = IRQ_CAN0_TX, |
| 821 | .flags = IORESOURCE_IRQ, |
| 822 | }, |
| 823 | { |
| 824 | .start = IRQ_CAN0_ERROR, |
| 825 | .end = IRQ_CAN0_ERROR, |
| 826 | .flags = IORESOURCE_IRQ, |
| 827 | }, |
| 828 | }; |
| 829 | |
Aaron Wu | 4c131c8 | 2010-12-22 06:21:03 +0000 | [diff] [blame] | 830 | static struct platform_device bfin_can0_device = { |
Barry Song | 706a01b | 2009-11-02 07:29:07 +0000 | [diff] [blame] | 831 | .name = "bfin_can", |
Aaron Wu | 4c131c8 | 2010-12-22 06:21:03 +0000 | [diff] [blame] | 832 | .id = 0, |
| 833 | .num_resources = ARRAY_SIZE(bfin_can0_resources), |
| 834 | .resource = bfin_can0_resources, |
Barry Song | 706a01b | 2009-11-02 07:29:07 +0000 | [diff] [blame] | 835 | .dev = { |
Aaron Wu | 4c131c8 | 2010-12-22 06:21:03 +0000 | [diff] [blame] | 836 | .platform_data = &bfin_can0_peripherals, /* Passed to driver */ |
Barry Song | 706a01b | 2009-11-02 07:29:07 +0000 | [diff] [blame] | 837 | }, |
| 838 | }; |
Aaron Wu | 4c131c8 | 2010-12-22 06:21:03 +0000 | [diff] [blame] | 839 | |
| 840 | static unsigned short bfin_can1_peripherals[] = { |
| 841 | P_CAN1_RX, P_CAN1_TX, 0 |
| 842 | }; |
| 843 | |
| 844 | static struct resource bfin_can1_resources[] = { |
| 845 | { |
| 846 | .start = 0xFFC03200, |
| 847 | .end = 0xFFC037FF, |
| 848 | .flags = IORESOURCE_MEM, |
| 849 | }, |
| 850 | { |
| 851 | .start = IRQ_CAN1_RX, |
| 852 | .end = IRQ_CAN1_RX, |
| 853 | .flags = IORESOURCE_IRQ, |
| 854 | }, |
| 855 | { |
| 856 | .start = IRQ_CAN1_TX, |
| 857 | .end = IRQ_CAN1_TX, |
| 858 | .flags = IORESOURCE_IRQ, |
| 859 | }, |
| 860 | { |
| 861 | .start = IRQ_CAN1_ERROR, |
| 862 | .end = IRQ_CAN1_ERROR, |
| 863 | .flags = IORESOURCE_IRQ, |
| 864 | }, |
| 865 | }; |
| 866 | |
| 867 | static struct platform_device bfin_can1_device = { |
| 868 | .name = "bfin_can", |
| 869 | .id = 1, |
| 870 | .num_resources = ARRAY_SIZE(bfin_can1_resources), |
| 871 | .resource = bfin_can1_resources, |
| 872 | .dev = { |
| 873 | .platform_data = &bfin_can1_peripherals, /* Passed to driver */ |
| 874 | }, |
| 875 | }; |
| 876 | |
Barry Song | 706a01b | 2009-11-02 07:29:07 +0000 | [diff] [blame] | 877 | #endif |
| 878 | |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 879 | #if defined(CONFIG_PATA_BF54X) || defined(CONFIG_PATA_BF54X_MODULE) |
| 880 | static struct resource bfin_atapi_resources[] = { |
| 881 | { |
| 882 | .start = 0xFFC03800, |
| 883 | .end = 0xFFC0386F, |
| 884 | .flags = IORESOURCE_MEM, |
| 885 | }, |
| 886 | { |
| 887 | .start = IRQ_ATAPI_ERR, |
| 888 | .end = IRQ_ATAPI_ERR, |
| 889 | .flags = IORESOURCE_IRQ, |
| 890 | }, |
| 891 | }; |
| 892 | |
| 893 | static struct platform_device bfin_atapi_device = { |
| 894 | .name = "pata-bf54x", |
| 895 | .id = -1, |
| 896 | .num_resources = ARRAY_SIZE(bfin_atapi_resources), |
| 897 | .resource = bfin_atapi_resources, |
| 898 | }; |
| 899 | #endif |
| 900 | |
| 901 | #if defined(CONFIG_MTD_NAND_BF5XX) || defined(CONFIG_MTD_NAND_BF5XX_MODULE) |
| 902 | static struct mtd_partition partition_info[] = { |
| 903 | { |
Mike Frysinger | 73775b8 | 2010-08-27 20:43:39 +0000 | [diff] [blame] | 904 | .name = "bootloader(nand)", |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 905 | .offset = 0, |
Mike Frysinger | 73775b8 | 2010-08-27 20:43:39 +0000 | [diff] [blame] | 906 | .size = 0x80000, |
| 907 | }, { |
| 908 | .name = "linux kernel(nand)", |
| 909 | .offset = MTDPART_OFS_APPEND, |
Mike Frysinger | f4585a0 | 2008-10-13 14:45:21 +0800 | [diff] [blame] | 910 | .size = 4 * 1024 * 1024, |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 911 | }, |
| 912 | { |
Robin Getz | aa58297 | 2008-08-05 17:47:29 +0800 | [diff] [blame] | 913 | .name = "file system(nand)", |
Mike Frysinger | edf0564 | 2008-02-25 11:38:11 +0800 | [diff] [blame] | 914 | .offset = MTDPART_OFS_APPEND, |
| 915 | .size = MTDPART_SIZ_FULL, |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 916 | }, |
| 917 | }; |
| 918 | |
| 919 | static struct bf5xx_nand_platform bf5xx_nand_platform = { |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 920 | .data_width = NFC_NWIDTH_8, |
| 921 | .partitions = partition_info, |
| 922 | .nr_partitions = ARRAY_SIZE(partition_info), |
| 923 | .rd_dly = 3, |
| 924 | .wr_dly = 3, |
| 925 | }; |
| 926 | |
| 927 | static struct resource bf5xx_nand_resources[] = { |
| 928 | { |
| 929 | .start = 0xFFC03B00, |
| 930 | .end = 0xFFC03B4F, |
| 931 | .flags = IORESOURCE_MEM, |
| 932 | }, |
| 933 | { |
| 934 | .start = CH_NFC, |
| 935 | .end = CH_NFC, |
| 936 | .flags = IORESOURCE_IRQ, |
| 937 | }, |
| 938 | }; |
| 939 | |
| 940 | static struct platform_device bf5xx_nand_device = { |
| 941 | .name = "bf5xx-nand", |
| 942 | .id = 0, |
| 943 | .num_resources = ARRAY_SIZE(bf5xx_nand_resources), |
| 944 | .resource = bf5xx_nand_resources, |
| 945 | .dev = { |
| 946 | .platform_data = &bf5xx_nand_platform, |
| 947 | }, |
| 948 | }; |
| 949 | #endif |
| 950 | |
Michael Hennerich | 3d7e6cf | 2008-03-03 17:40:28 -0700 | [diff] [blame] | 951 | #if defined(CONFIG_SDH_BFIN) || defined(CONFIG_SDH_BFIN_MODULE) |
Cliff Cai | 501674a | 2009-01-07 23:14:38 +0800 | [diff] [blame] | 952 | |
| 953 | static struct bfin_sd_host bfin_sdh_data = { |
| 954 | .dma_chan = CH_SDH, |
| 955 | .irq_int0 = IRQ_SDH_MASK0, |
| 956 | .pin_req = {P_SD_D0, P_SD_D1, P_SD_D2, P_SD_D3, P_SD_CLK, P_SD_CMD, 0}, |
| 957 | }; |
| 958 | |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 959 | static struct platform_device bf54x_sdh_device = { |
| 960 | .name = "bfin-sdh", |
| 961 | .id = 0, |
Cliff Cai | 501674a | 2009-01-07 23:14:38 +0800 | [diff] [blame] | 962 | .dev = { |
| 963 | .platform_data = &bfin_sdh_data, |
| 964 | }, |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 965 | }; |
| 966 | #endif |
| 967 | |
Mike Frysinger | 793dc27 | 2008-03-26 08:09:12 +0800 | [diff] [blame] | 968 | #if defined(CONFIG_MTD_PHYSMAP) || defined(CONFIG_MTD_PHYSMAP_MODULE) |
Mike Frysinger | de8c43f | 2008-01-24 17:14:04 +0800 | [diff] [blame] | 969 | static struct mtd_partition ezkit_partitions[] = { |
| 970 | { |
Robin Getz | aa58297 | 2008-08-05 17:47:29 +0800 | [diff] [blame] | 971 | .name = "bootloader(nor)", |
Mike Frysinger | 73775b8 | 2010-08-27 20:43:39 +0000 | [diff] [blame] | 972 | .size = 0x80000, |
Mike Frysinger | de8c43f | 2008-01-24 17:14:04 +0800 | [diff] [blame] | 973 | .offset = 0, |
| 974 | }, { |
Robin Getz | aa58297 | 2008-08-05 17:47:29 +0800 | [diff] [blame] | 975 | .name = "linux kernel(nor)", |
Mike Frysinger | 664d040 | 2008-10-09 17:28:36 +0800 | [diff] [blame] | 976 | .size = 0x400000, |
Mike Frysinger | de8c43f | 2008-01-24 17:14:04 +0800 | [diff] [blame] | 977 | .offset = MTDPART_OFS_APPEND, |
| 978 | }, { |
Robin Getz | aa58297 | 2008-08-05 17:47:29 +0800 | [diff] [blame] | 979 | .name = "file system(nor)", |
Mike Frysinger | 5607204 | 2011-05-09 18:46:17 -0400 | [diff] [blame] | 980 | .size = 0x1000000 - 0x80000 - 0x400000 - 0x8000 * 4, |
| 981 | .offset = MTDPART_OFS_APPEND, |
| 982 | }, { |
| 983 | .name = "config(nor)", |
| 984 | .size = 0x8000 * 3, |
| 985 | .offset = MTDPART_OFS_APPEND, |
| 986 | }, { |
| 987 | .name = "u-boot env(nor)", |
| 988 | .size = 0x8000, |
Mike Frysinger | de8c43f | 2008-01-24 17:14:04 +0800 | [diff] [blame] | 989 | .offset = MTDPART_OFS_APPEND, |
| 990 | } |
| 991 | }; |
| 992 | |
| 993 | static struct physmap_flash_data ezkit_flash_data = { |
| 994 | .width = 2, |
| 995 | .parts = ezkit_partitions, |
| 996 | .nr_parts = ARRAY_SIZE(ezkit_partitions), |
| 997 | }; |
| 998 | |
| 999 | static struct resource ezkit_flash_resource = { |
| 1000 | .start = 0x20000000, |
Mike Frysinger | 664d040 | 2008-10-09 17:28:36 +0800 | [diff] [blame] | 1001 | .end = 0x21ffffff, |
Mike Frysinger | de8c43f | 2008-01-24 17:14:04 +0800 | [diff] [blame] | 1002 | .flags = IORESOURCE_MEM, |
| 1003 | }; |
| 1004 | |
| 1005 | static struct platform_device ezkit_flash_device = { |
| 1006 | .name = "physmap-flash", |
| 1007 | .id = 0, |
| 1008 | .dev = { |
| 1009 | .platform_data = &ezkit_flash_data, |
| 1010 | }, |
| 1011 | .num_resources = 1, |
| 1012 | .resource = &ezkit_flash_resource, |
| 1013 | }; |
Mike Frysinger | 793dc27 | 2008-03-26 08:09:12 +0800 | [diff] [blame] | 1014 | #endif |
Mike Frysinger | de8c43f | 2008-01-24 17:14:04 +0800 | [diff] [blame] | 1015 | |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 1016 | #if defined(CONFIG_MTD_M25P80) \ |
| 1017 | || defined(CONFIG_MTD_M25P80_MODULE) |
| 1018 | /* SPI flash chip (m25p16) */ |
| 1019 | static struct mtd_partition bfin_spi_flash_partitions[] = { |
| 1020 | { |
Robin Getz | aa58297 | 2008-08-05 17:47:29 +0800 | [diff] [blame] | 1021 | .name = "bootloader(spi)", |
Mike Frysinger | 73775b8 | 2010-08-27 20:43:39 +0000 | [diff] [blame] | 1022 | .size = 0x00080000, |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 1023 | .offset = 0, |
| 1024 | .mask_flags = MTD_CAP_ROM |
| 1025 | }, { |
Robin Getz | aa58297 | 2008-08-05 17:47:29 +0800 | [diff] [blame] | 1026 | .name = "linux kernel(spi)", |
Mike Frysinger | edf0564 | 2008-02-25 11:38:11 +0800 | [diff] [blame] | 1027 | .size = MTDPART_SIZ_FULL, |
| 1028 | .offset = MTDPART_OFS_APPEND, |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 1029 | } |
| 1030 | }; |
| 1031 | |
| 1032 | static struct flash_platform_data bfin_spi_flash_data = { |
| 1033 | .name = "m25p80", |
| 1034 | .parts = bfin_spi_flash_partitions, |
| 1035 | .nr_parts = ARRAY_SIZE(bfin_spi_flash_partitions), |
| 1036 | .type = "m25p16", |
| 1037 | }; |
| 1038 | |
| 1039 | static struct bfin5xx_spi_chip spi_flash_chip_info = { |
| 1040 | .enable_dma = 0, /* use dma transfer with this chip*/ |
Bernd Schmidt | 37fa242 | 2008-04-24 05:19:02 +0800 | [diff] [blame] | 1041 | }; |
| 1042 | #endif |
| 1043 | |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 1044 | #if defined(CONFIG_TOUCHSCREEN_AD7877) || defined(CONFIG_TOUCHSCREEN_AD7877_MODULE) |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 1045 | static const struct ad7877_platform_data bfin_ad7877_ts_info = { |
| 1046 | .model = 7877, |
| 1047 | .vref_delay_usecs = 50, /* internal, no capacitor */ |
| 1048 | .x_plate_ohms = 419, |
| 1049 | .y_plate_ohms = 486, |
| 1050 | .pressure_max = 1000, |
| 1051 | .pressure_min = 0, |
| 1052 | .stopacq_polarity = 1, |
| 1053 | .first_conversion_delay = 3, |
| 1054 | .acquisition_time = 1, |
| 1055 | .averaging = 1, |
| 1056 | .pen_down_acc_interval = 1, |
| 1057 | }; |
| 1058 | #endif |
| 1059 | |
Mike Frysinger | 5bda272 | 2008-06-07 15:03:01 +0800 | [diff] [blame] | 1060 | static struct spi_board_info bfin_spi_board_info[] __initdata = { |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 1061 | #if defined(CONFIG_MTD_M25P80) \ |
| 1062 | || defined(CONFIG_MTD_M25P80_MODULE) |
| 1063 | { |
| 1064 | /* the modalias must be the same as spi device driver name */ |
| 1065 | .modalias = "m25p80", /* Name of spi_driver for this device */ |
| 1066 | .max_speed_hz = 25000000, /* max spi clock (SCK) speed in HZ */ |
| 1067 | .bus_num = 0, /* Framework bus number */ |
| 1068 | .chip_select = 1, /* SPI_SSEL1*/ |
| 1069 | .platform_data = &bfin_spi_flash_data, |
| 1070 | .controller_data = &spi_flash_chip_info, |
| 1071 | .mode = SPI_MODE_3, |
| 1072 | }, |
| 1073 | #endif |
Barry Song | 7ba8006 | 2010-01-28 09:37:21 +0000 | [diff] [blame] | 1074 | #if defined(CONFIG_SND_BF5XX_SOC_AD183X) \ |
| 1075 | || defined(CONFIG_SND_BF5XX_SOC_AD183X_MODULE) |
Bernd Schmidt | 37fa242 | 2008-04-24 05:19:02 +0800 | [diff] [blame] | 1076 | { |
Barry Song | 7ba8006 | 2010-01-28 09:37:21 +0000 | [diff] [blame] | 1077 | .modalias = "ad183x", |
Bernd Schmidt | 37fa242 | 2008-04-24 05:19:02 +0800 | [diff] [blame] | 1078 | .max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */ |
| 1079 | .bus_num = 1, |
Barry Song | 7ba8006 | 2010-01-28 09:37:21 +0000 | [diff] [blame] | 1080 | .chip_select = 4, |
Bernd Schmidt | 37fa242 | 2008-04-24 05:19:02 +0800 | [diff] [blame] | 1081 | }, |
| 1082 | #endif |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 1083 | #if defined(CONFIG_TOUCHSCREEN_AD7877) || defined(CONFIG_TOUCHSCREEN_AD7877_MODULE) |
Michael Hennerich | ffc4d8b | 2009-05-29 15:41:18 +0000 | [diff] [blame] | 1084 | { |
| 1085 | .modalias = "ad7877", |
| 1086 | .platform_data = &bfin_ad7877_ts_info, |
| 1087 | .irq = IRQ_PB4, /* old boards (<=Rev 1.3) use IRQ_PJ11 */ |
| 1088 | .max_speed_hz = 12500000, /* max spi clock (SCK) speed in HZ */ |
| 1089 | .bus_num = 0, |
| 1090 | .chip_select = 2, |
Michael Hennerich | ffc4d8b | 2009-05-29 15:41:18 +0000 | [diff] [blame] | 1091 | }, |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 1092 | #endif |
Michael Hennerich | 6e66893 | 2008-02-09 01:54:09 +0800 | [diff] [blame] | 1093 | #if defined(CONFIG_SPI_SPIDEV) || defined(CONFIG_SPI_SPIDEV_MODULE) |
| 1094 | { |
| 1095 | .modalias = "spidev", |
| 1096 | .max_speed_hz = 3125000, /* max spi clock (SCK) speed in HZ */ |
| 1097 | .bus_num = 0, |
| 1098 | .chip_select = 1, |
Michael Hennerich | 6e66893 | 2008-02-09 01:54:09 +0800 | [diff] [blame] | 1099 | }, |
| 1100 | #endif |
Michael Hennerich | ffc4d8b | 2009-05-29 15:41:18 +0000 | [diff] [blame] | 1101 | #if defined(CONFIG_INPUT_ADXL34X_SPI) || defined(CONFIG_INPUT_ADXL34X_SPI_MODULE) |
| 1102 | { |
| 1103 | .modalias = "adxl34x", |
| 1104 | .platform_data = &adxl34x_info, |
| 1105 | .irq = IRQ_PC5, |
| 1106 | .max_speed_hz = 5000000, /* max spi clock (SCK) speed in HZ */ |
| 1107 | .bus_num = 1, |
| 1108 | .chip_select = 2, |
Michael Hennerich | ffc4d8b | 2009-05-29 15:41:18 +0000 | [diff] [blame] | 1109 | .mode = SPI_MODE_3, |
| 1110 | }, |
| 1111 | #endif |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 1112 | }; |
Sonic Zhang | 7d157fb | 2011-11-07 18:40:10 +0800 | [diff] [blame] | 1113 | #if defined(CONFIG_SPI_BFIN5XX) || defined(CONFIG_SPI_BFIN5XX_MODULE) |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 1114 | /* SPI (0) */ |
| 1115 | static struct resource bfin_spi0_resource[] = { |
| 1116 | [0] = { |
| 1117 | .start = SPI0_REGBASE, |
| 1118 | .end = SPI0_REGBASE + 0xFF, |
| 1119 | .flags = IORESOURCE_MEM, |
| 1120 | }, |
| 1121 | [1] = { |
| 1122 | .start = CH_SPI0, |
| 1123 | .end = CH_SPI0, |
Yi Li | 5312269 | 2009-06-05 12:11:11 +0000 | [diff] [blame] | 1124 | .flags = IORESOURCE_DMA, |
| 1125 | }, |
| 1126 | [2] = { |
| 1127 | .start = IRQ_SPI0, |
| 1128 | .end = IRQ_SPI0, |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 1129 | .flags = IORESOURCE_IRQ, |
| 1130 | } |
| 1131 | }; |
| 1132 | |
| 1133 | /* SPI (1) */ |
| 1134 | static struct resource bfin_spi1_resource[] = { |
| 1135 | [0] = { |
| 1136 | .start = SPI1_REGBASE, |
| 1137 | .end = SPI1_REGBASE + 0xFF, |
| 1138 | .flags = IORESOURCE_MEM, |
| 1139 | }, |
| 1140 | [1] = { |
| 1141 | .start = CH_SPI1, |
| 1142 | .end = CH_SPI1, |
Yi Li | 5312269 | 2009-06-05 12:11:11 +0000 | [diff] [blame] | 1143 | .flags = IORESOURCE_DMA, |
| 1144 | }, |
| 1145 | [2] = { |
| 1146 | .start = IRQ_SPI1, |
| 1147 | .end = IRQ_SPI1, |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 1148 | .flags = IORESOURCE_IRQ, |
| 1149 | } |
| 1150 | }; |
| 1151 | |
| 1152 | /* SPI controller data */ |
Bryan Wu | 5d448dd | 2007-11-12 23:24:42 +0800 | [diff] [blame] | 1153 | static struct bfin5xx_spi_master bf54x_spi_master_info0 = { |
Mike Frysinger | c5af545 | 2010-06-16 19:29:51 +0000 | [diff] [blame] | 1154 | .num_chipselect = 4, |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 1155 | .enable_dma = 1, /* master has the ability to do dma transfer */ |
Bryan Wu | 5d448dd | 2007-11-12 23:24:42 +0800 | [diff] [blame] | 1156 | .pin_req = {P_SPI0_SCK, P_SPI0_MISO, P_SPI0_MOSI, 0}, |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 1157 | }; |
| 1158 | |
| 1159 | static struct platform_device bf54x_spi_master0 = { |
| 1160 | .name = "bfin-spi", |
| 1161 | .id = 0, /* Bus number */ |
| 1162 | .num_resources = ARRAY_SIZE(bfin_spi0_resource), |
| 1163 | .resource = bfin_spi0_resource, |
| 1164 | .dev = { |
Bryan Wu | 5d448dd | 2007-11-12 23:24:42 +0800 | [diff] [blame] | 1165 | .platform_data = &bf54x_spi_master_info0, /* Passed to driver */ |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 1166 | }, |
| 1167 | }; |
| 1168 | |
Bryan Wu | 5d448dd | 2007-11-12 23:24:42 +0800 | [diff] [blame] | 1169 | static struct bfin5xx_spi_master bf54x_spi_master_info1 = { |
Mike Frysinger | c5af545 | 2010-06-16 19:29:51 +0000 | [diff] [blame] | 1170 | .num_chipselect = 4, |
Bryan Wu | 5d448dd | 2007-11-12 23:24:42 +0800 | [diff] [blame] | 1171 | .enable_dma = 1, /* master has the ability to do dma transfer */ |
| 1172 | .pin_req = {P_SPI1_SCK, P_SPI1_MISO, P_SPI1_MOSI, 0}, |
| 1173 | }; |
| 1174 | |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 1175 | static struct platform_device bf54x_spi_master1 = { |
| 1176 | .name = "bfin-spi", |
| 1177 | .id = 1, /* Bus number */ |
| 1178 | .num_resources = ARRAY_SIZE(bfin_spi1_resource), |
| 1179 | .resource = bfin_spi1_resource, |
| 1180 | .dev = { |
Bryan Wu | 5d448dd | 2007-11-12 23:24:42 +0800 | [diff] [blame] | 1181 | .platform_data = &bf54x_spi_master_info1, /* Passed to driver */ |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 1182 | }, |
| 1183 | }; |
| 1184 | #endif /* spi master and devices */ |
| 1185 | |
Scott Jiang | df864c3 | 2011-12-31 14:08:38 -0500 | [diff] [blame] | 1186 | #if defined(CONFIG_VIDEO_BLACKFIN_CAPTURE) \ |
| 1187 | || defined(CONFIG_VIDEO_BLACKFIN_CAPTURE_MODULE) |
| 1188 | #include <linux/videodev2.h> |
| 1189 | #include <media/blackfin/bfin_capture.h> |
| 1190 | #include <media/blackfin/ppi.h> |
| 1191 | |
| 1192 | static const unsigned short ppi_req[] = { |
| 1193 | P_PPI1_D0, P_PPI1_D1, P_PPI1_D2, P_PPI1_D3, |
| 1194 | P_PPI1_D4, P_PPI1_D5, P_PPI1_D6, P_PPI1_D7, |
| 1195 | P_PPI1_CLK, P_PPI1_FS1, P_PPI1_FS2, |
| 1196 | 0, |
| 1197 | }; |
| 1198 | |
| 1199 | static const struct ppi_info ppi_info = { |
| 1200 | .type = PPI_TYPE_EPPI, |
| 1201 | .dma_ch = CH_EPPI1, |
| 1202 | .irq_err = IRQ_EPPI1_ERROR, |
| 1203 | .base = (void __iomem *)EPPI1_STATUS, |
| 1204 | .pin_req = ppi_req, |
| 1205 | }; |
| 1206 | |
| 1207 | #if defined(CONFIG_VIDEO_VS6624) \ |
| 1208 | || defined(CONFIG_VIDEO_VS6624_MODULE) |
| 1209 | static struct v4l2_input vs6624_inputs[] = { |
| 1210 | { |
| 1211 | .index = 0, |
| 1212 | .name = "Camera", |
| 1213 | .type = V4L2_INPUT_TYPE_CAMERA, |
| 1214 | .std = V4L2_STD_UNKNOWN, |
| 1215 | }, |
| 1216 | }; |
| 1217 | |
| 1218 | static struct bcap_route vs6624_routes[] = { |
| 1219 | { |
| 1220 | .input = 0, |
| 1221 | .output = 0, |
| 1222 | }, |
| 1223 | }; |
| 1224 | |
| 1225 | static const unsigned vs6624_ce_pin = GPIO_PG6; |
| 1226 | |
| 1227 | static struct bfin_capture_config bfin_capture_data = { |
| 1228 | .card_name = "BF548", |
| 1229 | .inputs = vs6624_inputs, |
| 1230 | .num_inputs = ARRAY_SIZE(vs6624_inputs), |
| 1231 | .routes = vs6624_routes, |
| 1232 | .i2c_adapter_id = 0, |
| 1233 | .board_info = { |
| 1234 | .type = "vs6624", |
| 1235 | .addr = 0x10, |
| 1236 | .platform_data = (void *)&vs6624_ce_pin, |
| 1237 | }, |
| 1238 | .ppi_info = &ppi_info, |
| 1239 | .ppi_control = (POLC | PACKEN | DLEN_8 | XFR_TYPE | 0x20), |
Scott Jiang | 4e937ac | 2012-01-09 17:06:56 -0500 | [diff] [blame] | 1240 | .int_mask = 0xFFFFFFFF, /* disable error interrupt on eppi */ |
| 1241 | .blank_clocks = 8, /* 8 clocks as SAV and EAV */ |
Scott Jiang | df864c3 | 2011-12-31 14:08:38 -0500 | [diff] [blame] | 1242 | }; |
| 1243 | #endif |
| 1244 | |
| 1245 | static struct platform_device bfin_capture_device = { |
| 1246 | .name = "bfin_capture", |
| 1247 | .dev = { |
| 1248 | .platform_data = &bfin_capture_data, |
| 1249 | }, |
| 1250 | }; |
| 1251 | #endif |
| 1252 | |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 1253 | #if defined(CONFIG_I2C_BLACKFIN_TWI) || defined(CONFIG_I2C_BLACKFIN_TWI_MODULE) |
| 1254 | static struct resource bfin_twi0_resource[] = { |
| 1255 | [0] = { |
| 1256 | .start = TWI0_REGBASE, |
| 1257 | .end = TWI0_REGBASE + 0xFF, |
| 1258 | .flags = IORESOURCE_MEM, |
| 1259 | }, |
| 1260 | [1] = { |
| 1261 | .start = IRQ_TWI0, |
| 1262 | .end = IRQ_TWI0, |
| 1263 | .flags = IORESOURCE_IRQ, |
| 1264 | }, |
| 1265 | }; |
| 1266 | |
| 1267 | static struct platform_device i2c_bfin_twi0_device = { |
| 1268 | .name = "i2c-bfin-twi", |
| 1269 | .id = 0, |
| 1270 | .num_resources = ARRAY_SIZE(bfin_twi0_resource), |
| 1271 | .resource = bfin_twi0_resource, |
| 1272 | }; |
| 1273 | |
Mike Frysinger | 7160e950 | 2007-11-21 16:03:07 +0800 | [diff] [blame] | 1274 | #if !defined(CONFIG_BF542) /* The BF542 only has 1 TWI */ |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 1275 | static struct resource bfin_twi1_resource[] = { |
| 1276 | [0] = { |
| 1277 | .start = TWI1_REGBASE, |
| 1278 | .end = TWI1_REGBASE + 0xFF, |
| 1279 | .flags = IORESOURCE_MEM, |
| 1280 | }, |
| 1281 | [1] = { |
| 1282 | .start = IRQ_TWI1, |
| 1283 | .end = IRQ_TWI1, |
| 1284 | .flags = IORESOURCE_IRQ, |
| 1285 | }, |
| 1286 | }; |
| 1287 | |
| 1288 | static struct platform_device i2c_bfin_twi1_device = { |
| 1289 | .name = "i2c-bfin-twi", |
| 1290 | .id = 1, |
| 1291 | .num_resources = ARRAY_SIZE(bfin_twi1_resource), |
| 1292 | .resource = bfin_twi1_resource, |
| 1293 | }; |
| 1294 | #endif |
Mike Frysinger | 7160e950 | 2007-11-21 16:03:07 +0800 | [diff] [blame] | 1295 | #endif |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 1296 | |
Bryan Wu | 81d9c7f | 2008-03-26 10:02:13 +0800 | [diff] [blame] | 1297 | static struct i2c_board_info __initdata bfin_i2c_board_info0[] = { |
Sonic Zhang | eeec0a1 | 2012-03-16 12:52:34 +0800 | [diff] [blame] | 1298 | #if defined(CONFIG_SND_SOC_SSM2602) || defined(CONFIG_SND_SOC_SSM2602_MODULE) |
| 1299 | { |
| 1300 | I2C_BOARD_INFO("ssm2602", 0x1b), |
| 1301 | }, |
| 1302 | #endif |
Bryan Wu | 81d9c7f | 2008-03-26 10:02:13 +0800 | [diff] [blame] | 1303 | }; |
| 1304 | |
| 1305 | #if !defined(CONFIG_BF542) /* The BF542 only has 1 TWI */ |
| 1306 | static struct i2c_board_info __initdata bfin_i2c_board_info1[] = { |
Michael Hennerich | ebd5833 | 2009-07-02 11:00:38 +0000 | [diff] [blame] | 1307 | #if defined(CONFIG_BFIN_TWI_LCD) || defined(CONFIG_BFIN_TWI_LCD_MODULE) |
Bryan Wu | 81d9c7f | 2008-03-26 10:02:13 +0800 | [diff] [blame] | 1308 | { |
| 1309 | I2C_BOARD_INFO("pcf8574_lcd", 0x22), |
Bryan Wu | 81d9c7f | 2008-03-26 10:02:13 +0800 | [diff] [blame] | 1310 | }, |
| 1311 | #endif |
Michael Hennerich | 204844e | 2009-06-30 14:57:22 +0000 | [diff] [blame] | 1312 | #if defined(CONFIG_INPUT_PCF8574) || defined(CONFIG_INPUT_PCF8574_MODULE) |
Bryan Wu | 81d9c7f | 2008-03-26 10:02:13 +0800 | [diff] [blame] | 1313 | { |
| 1314 | I2C_BOARD_INFO("pcf8574_keypad", 0x27), |
Bryan Wu | 81d9c7f | 2008-03-26 10:02:13 +0800 | [diff] [blame] | 1315 | .irq = 212, |
| 1316 | }, |
| 1317 | #endif |
Michael Hennerich | ffc4d8b | 2009-05-29 15:41:18 +0000 | [diff] [blame] | 1318 | #if defined(CONFIG_INPUT_ADXL34X_I2C) || defined(CONFIG_INPUT_ADXL34X_I2C_MODULE) |
| 1319 | { |
| 1320 | I2C_BOARD_INFO("adxl34x", 0x53), |
| 1321 | .irq = IRQ_PC5, |
| 1322 | .platform_data = (void *)&adxl34x_info, |
| 1323 | }, |
| 1324 | #endif |
steven miao | 39d3c1c | 2010-08-26 08:25:13 +0000 | [diff] [blame] | 1325 | #if defined(CONFIG_BFIN_TWI_LCD) || defined(CONFIG_BFIN_TWI_LCD_MODULE) |
| 1326 | { |
| 1327 | I2C_BOARD_INFO("ad5252", 0x2f), |
| 1328 | }, |
| 1329 | #endif |
Bryan Wu | 81d9c7f | 2008-03-26 10:02:13 +0800 | [diff] [blame] | 1330 | }; |
| 1331 | #endif |
Bryan Wu | 81d9c7f | 2008-03-26 10:02:13 +0800 | [diff] [blame] | 1332 | |
Michael Hennerich | 2463ef2 | 2008-01-27 16:49:48 +0800 | [diff] [blame] | 1333 | #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE) |
| 1334 | #include <linux/gpio_keys.h> |
| 1335 | |
| 1336 | static struct gpio_keys_button bfin_gpio_keys_table[] = { |
| 1337 | {BTN_0, GPIO_PB8, 1, "gpio-keys: BTN0"}, |
| 1338 | {BTN_1, GPIO_PB9, 1, "gpio-keys: BTN1"}, |
| 1339 | {BTN_2, GPIO_PB10, 1, "gpio-keys: BTN2"}, |
| 1340 | {BTN_3, GPIO_PB11, 1, "gpio-keys: BTN3"}, |
| 1341 | }; |
| 1342 | |
| 1343 | static struct gpio_keys_platform_data bfin_gpio_keys_data = { |
| 1344 | .buttons = bfin_gpio_keys_table, |
| 1345 | .nbuttons = ARRAY_SIZE(bfin_gpio_keys_table), |
| 1346 | }; |
| 1347 | |
| 1348 | static struct platform_device bfin_device_gpiokeys = { |
| 1349 | .name = "gpio-keys", |
| 1350 | .dev = { |
| 1351 | .platform_data = &bfin_gpio_keys_data, |
| 1352 | }, |
| 1353 | }; |
| 1354 | #endif |
| 1355 | |
Michael Hennerich | 14b0320 | 2008-05-07 11:41:26 +0800 | [diff] [blame] | 1356 | static const unsigned int cclk_vlev_datasheet[] = |
| 1357 | { |
| 1358 | /* |
| 1359 | * Internal VLEV BF54XSBBC1533 |
| 1360 | ****temporarily using these values until data sheet is updated |
| 1361 | */ |
| 1362 | VRPAIR(VLEV_085, 150000000), |
| 1363 | VRPAIR(VLEV_090, 250000000), |
| 1364 | VRPAIR(VLEV_110, 276000000), |
| 1365 | VRPAIR(VLEV_115, 301000000), |
| 1366 | VRPAIR(VLEV_120, 525000000), |
| 1367 | VRPAIR(VLEV_125, 550000000), |
| 1368 | VRPAIR(VLEV_130, 600000000), |
| 1369 | }; |
| 1370 | |
| 1371 | static struct bfin_dpmc_platform_data bfin_dmpc_vreg_data = { |
| 1372 | .tuple_tab = cclk_vlev_datasheet, |
| 1373 | .tabsize = ARRAY_SIZE(cclk_vlev_datasheet), |
| 1374 | .vr_settling_time = 25 /* us */, |
| 1375 | }; |
| 1376 | |
| 1377 | static struct platform_device bfin_dpmc = { |
| 1378 | .name = "bfin dpmc", |
| 1379 | .dev = { |
| 1380 | .platform_data = &bfin_dmpc_vreg_data, |
| 1381 | }, |
| 1382 | }; |
| 1383 | |
Scott Jiang | 6f53dbb | 2011-03-01 09:43:50 +0000 | [diff] [blame] | 1384 | #if defined(CONFIG_SND_BF5XX_I2S) || defined(CONFIG_SND_BF5XX_I2S_MODULE) || \ |
| 1385 | defined(CONFIG_SND_BF5XX_TDM) || defined(CONFIG_SND_BF5XX_TDM_MODULE) || \ |
| 1386 | defined(CONFIG_SND_BF5XX_AC97) || defined(CONFIG_SND_BF5XX_AC97_MODULE) |
| 1387 | |
| 1388 | #define SPORT_REQ(x) \ |
| 1389 | [x] = {P_SPORT##x##_TFS, P_SPORT##x##_DTPRI, P_SPORT##x##_TSCLK, \ |
| 1390 | P_SPORT##x##_RFS, P_SPORT##x##_DRPRI, P_SPORT##x##_RSCLK, 0} |
| 1391 | |
| 1392 | static const u16 bfin_snd_pin[][7] = { |
| 1393 | SPORT_REQ(0), |
| 1394 | SPORT_REQ(1), |
Sonic Zhang | eeec0a1 | 2012-03-16 12:52:34 +0800 | [diff] [blame] | 1395 | SPORT_REQ(2), |
| 1396 | SPORT_REQ(3), |
Scott Jiang | 6f53dbb | 2011-03-01 09:43:50 +0000 | [diff] [blame] | 1397 | }; |
| 1398 | |
| 1399 | static struct bfin_snd_platform_data bfin_snd_data[] = { |
| 1400 | { |
| 1401 | .pin_req = &bfin_snd_pin[0][0], |
| 1402 | }, |
| 1403 | { |
| 1404 | .pin_req = &bfin_snd_pin[1][0], |
| 1405 | }, |
Sonic Zhang | eeec0a1 | 2012-03-16 12:52:34 +0800 | [diff] [blame] | 1406 | { |
| 1407 | .pin_req = &bfin_snd_pin[2][0], |
| 1408 | }, |
| 1409 | { |
| 1410 | .pin_req = &bfin_snd_pin[3][0], |
| 1411 | }, |
Scott Jiang | 6f53dbb | 2011-03-01 09:43:50 +0000 | [diff] [blame] | 1412 | }; |
| 1413 | |
| 1414 | #define BFIN_SND_RES(x) \ |
| 1415 | [x] = { \ |
| 1416 | { \ |
| 1417 | .start = SPORT##x##_TCR1, \ |
| 1418 | .end = SPORT##x##_TCR1, \ |
| 1419 | .flags = IORESOURCE_MEM \ |
| 1420 | }, \ |
| 1421 | { \ |
| 1422 | .start = CH_SPORT##x##_RX, \ |
| 1423 | .end = CH_SPORT##x##_RX, \ |
| 1424 | .flags = IORESOURCE_DMA, \ |
| 1425 | }, \ |
| 1426 | { \ |
| 1427 | .start = CH_SPORT##x##_TX, \ |
| 1428 | .end = CH_SPORT##x##_TX, \ |
| 1429 | .flags = IORESOURCE_DMA, \ |
| 1430 | }, \ |
| 1431 | { \ |
| 1432 | .start = IRQ_SPORT##x##_ERROR, \ |
| 1433 | .end = IRQ_SPORT##x##_ERROR, \ |
| 1434 | .flags = IORESOURCE_IRQ, \ |
| 1435 | } \ |
| 1436 | } |
| 1437 | |
| 1438 | static struct resource bfin_snd_resources[][4] = { |
| 1439 | BFIN_SND_RES(0), |
| 1440 | BFIN_SND_RES(1), |
Sonic Zhang | eeec0a1 | 2012-03-16 12:52:34 +0800 | [diff] [blame] | 1441 | BFIN_SND_RES(2), |
| 1442 | BFIN_SND_RES(3), |
Scott Jiang | 6f53dbb | 2011-03-01 09:43:50 +0000 | [diff] [blame] | 1443 | }; |
Sonic Zhang | eeec0a1 | 2012-03-16 12:52:34 +0800 | [diff] [blame] | 1444 | #endif |
Scott Jiang | 6f53dbb | 2011-03-01 09:43:50 +0000 | [diff] [blame] | 1445 | |
Sonic Zhang | eeec0a1 | 2012-03-16 12:52:34 +0800 | [diff] [blame] | 1446 | #if defined(CONFIG_SND_BF5XX_I2S) || defined(CONFIG_SND_BF5XX_I2S_MODULE) |
| 1447 | static struct platform_device bfin_i2s_pcm = { |
| 1448 | .name = "bfin-i2s-pcm-audio", |
| 1449 | .id = -1, |
| 1450 | }; |
| 1451 | #endif |
| 1452 | |
| 1453 | #if defined(CONFIG_SND_BF5XX_TDM) || defined(CONFIG_SND_BF5XX_TDM_MODULE) |
| 1454 | static struct platform_device bfin_tdm_pcm = { |
| 1455 | .name = "bfin-tdm-pcm-audio", |
| 1456 | .id = -1, |
| 1457 | }; |
| 1458 | #endif |
| 1459 | |
| 1460 | #if defined(CONFIG_SND_BF5XX_AC97) || defined(CONFIG_SND_BF5XX_AC97_MODULE) |
| 1461 | static struct platform_device bfin_ac97_pcm = { |
| 1462 | .name = "bfin-ac97-pcm-audio", |
Scott Jiang | 6f53dbb | 2011-03-01 09:43:50 +0000 | [diff] [blame] | 1463 | .id = -1, |
| 1464 | }; |
| 1465 | #endif |
| 1466 | |
| 1467 | #if defined(CONFIG_SND_BF5XX_SOC_AD73311) || defined(CONFIG_SND_BF5XX_SOC_AD73311_MODULE) |
| 1468 | static struct platform_device bfin_ad73311_codec_device = { |
| 1469 | .name = "ad73311", |
| 1470 | .id = -1, |
| 1471 | }; |
| 1472 | #endif |
| 1473 | |
| 1474 | #if defined(CONFIG_SND_BF5XX_SOC_AD1980) || defined(CONFIG_SND_BF5XX_SOC_AD1980_MODULE) |
| 1475 | static struct platform_device bfin_ad1980_codec_device = { |
| 1476 | .name = "ad1980", |
| 1477 | .id = -1, |
| 1478 | }; |
| 1479 | #endif |
| 1480 | |
| 1481 | #if defined(CONFIG_SND_BF5XX_SOC_I2S) || defined(CONFIG_SND_BF5XX_SOC_I2S_MODULE) |
Barry Song | 439b486 | 2009-11-13 02:41:07 +0000 | [diff] [blame] | 1482 | static struct platform_device bfin_i2s = { |
| 1483 | .name = "bfin-i2s", |
| 1484 | .id = CONFIG_SND_BF5XX_SPORT_NUM, |
Scott Jiang | 6f53dbb | 2011-03-01 09:43:50 +0000 | [diff] [blame] | 1485 | .num_resources = ARRAY_SIZE(bfin_snd_resources[CONFIG_SND_BF5XX_SPORT_NUM]), |
| 1486 | .resource = bfin_snd_resources[CONFIG_SND_BF5XX_SPORT_NUM], |
| 1487 | .dev = { |
| 1488 | .platform_data = &bfin_snd_data[CONFIG_SND_BF5XX_SPORT_NUM], |
| 1489 | }, |
Barry Song | 439b486 | 2009-11-13 02:41:07 +0000 | [diff] [blame] | 1490 | }; |
| 1491 | #endif |
| 1492 | |
Scott Jiang | 6f53dbb | 2011-03-01 09:43:50 +0000 | [diff] [blame] | 1493 | #if defined(CONFIG_SND_BF5XX_SOC_TDM) || defined(CONFIG_SND_BF5XX_SOC_TDM_MODULE) |
Barry Song | 439b486 | 2009-11-13 02:41:07 +0000 | [diff] [blame] | 1494 | static struct platform_device bfin_tdm = { |
| 1495 | .name = "bfin-tdm", |
| 1496 | .id = CONFIG_SND_BF5XX_SPORT_NUM, |
Scott Jiang | 6f53dbb | 2011-03-01 09:43:50 +0000 | [diff] [blame] | 1497 | .num_resources = ARRAY_SIZE(bfin_snd_resources[CONFIG_SND_BF5XX_SPORT_NUM]), |
| 1498 | .resource = bfin_snd_resources[CONFIG_SND_BF5XX_SPORT_NUM], |
| 1499 | .dev = { |
| 1500 | .platform_data = &bfin_snd_data[CONFIG_SND_BF5XX_SPORT_NUM], |
| 1501 | }, |
Barry Song | 439b486 | 2009-11-13 02:41:07 +0000 | [diff] [blame] | 1502 | }; |
| 1503 | #endif |
| 1504 | |
Scott Jiang | 6f53dbb | 2011-03-01 09:43:50 +0000 | [diff] [blame] | 1505 | #if defined(CONFIG_SND_BF5XX_SOC_AC97) || defined(CONFIG_SND_BF5XX_SOC_AC97_MODULE) |
Barry Song | 439b486 | 2009-11-13 02:41:07 +0000 | [diff] [blame] | 1506 | static struct platform_device bfin_ac97 = { |
| 1507 | .name = "bfin-ac97", |
| 1508 | .id = CONFIG_SND_BF5XX_SPORT_NUM, |
Scott Jiang | 6f53dbb | 2011-03-01 09:43:50 +0000 | [diff] [blame] | 1509 | .num_resources = ARRAY_SIZE(bfin_snd_resources[CONFIG_SND_BF5XX_SPORT_NUM]), |
| 1510 | .resource = bfin_snd_resources[CONFIG_SND_BF5XX_SPORT_NUM], |
| 1511 | .dev = { |
| 1512 | .platform_data = &bfin_snd_data[CONFIG_SND_BF5XX_SPORT_NUM], |
| 1513 | }, |
Barry Song | 439b486 | 2009-11-13 02:41:07 +0000 | [diff] [blame] | 1514 | }; |
| 1515 | #endif |
| 1516 | |
Roy Huang | 24a07a1 | 2007-07-12 22:41:45 +0800 | [diff] [blame] | 1517 | static struct platform_device *ezkit_devices[] __initdata = { |
Michael Hennerich | 14b0320 | 2008-05-07 11:41:26 +0800 | [diff] [blame] | 1518 | |
| 1519 | &bfin_dpmc, |
| 1520 | |
Roy Huang | 24a07a1 | 2007-07-12 22:41:45 +0800 | [diff] [blame] | 1521 | #if defined(CONFIG_RTC_DRV_BFIN) || defined(CONFIG_RTC_DRV_BFIN_MODULE) |
| 1522 | &rtc_device, |
| 1523 | #endif |
| 1524 | |
| 1525 | #if defined(CONFIG_SERIAL_BFIN) || defined(CONFIG_SERIAL_BFIN_MODULE) |
Sonic Zhang | 6bd1fbe | 2009-09-09 10:46:19 +0000 | [diff] [blame] | 1526 | #ifdef CONFIG_SERIAL_BFIN_UART0 |
| 1527 | &bfin_uart0_device, |
| 1528 | #endif |
| 1529 | #ifdef CONFIG_SERIAL_BFIN_UART1 |
| 1530 | &bfin_uart1_device, |
| 1531 | #endif |
| 1532 | #ifdef CONFIG_SERIAL_BFIN_UART2 |
| 1533 | &bfin_uart2_device, |
| 1534 | #endif |
| 1535 | #ifdef CONFIG_SERIAL_BFIN_UART3 |
| 1536 | &bfin_uart3_device, |
| 1537 | #endif |
Roy Huang | 24a07a1 | 2007-07-12 22:41:45 +0800 | [diff] [blame] | 1538 | #endif |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 1539 | |
Graf Yang | 5be36d2 | 2008-04-25 03:09:15 +0800 | [diff] [blame] | 1540 | #if defined(CONFIG_BFIN_SIR) || defined(CONFIG_BFIN_SIR_MODULE) |
Graf Yang | 42bd8bc | 2009-01-07 23:14:39 +0800 | [diff] [blame] | 1541 | #ifdef CONFIG_BFIN_SIR0 |
| 1542 | &bfin_sir0_device, |
| 1543 | #endif |
| 1544 | #ifdef CONFIG_BFIN_SIR1 |
| 1545 | &bfin_sir1_device, |
| 1546 | #endif |
| 1547 | #ifdef CONFIG_BFIN_SIR2 |
| 1548 | &bfin_sir2_device, |
| 1549 | #endif |
| 1550 | #ifdef CONFIG_BFIN_SIR3 |
| 1551 | &bfin_sir3_device, |
| 1552 | #endif |
Graf Yang | 5be36d2 | 2008-04-25 03:09:15 +0800 | [diff] [blame] | 1553 | #endif |
| 1554 | |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 1555 | #if defined(CONFIG_FB_BF54X_LQ043) || defined(CONFIG_FB_BF54X_LQ043_MODULE) |
| 1556 | &bf54x_lq043_device, |
| 1557 | #endif |
| 1558 | |
| 1559 | #if defined(CONFIG_SMSC911X) || defined(CONFIG_SMSC911X_MODULE) |
| 1560 | &smsc911x_device, |
| 1561 | #endif |
| 1562 | |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 1563 | #if defined(CONFIG_USB_MUSB_HDRC) || defined(CONFIG_USB_MUSB_HDRC_MODULE) |
| 1564 | &musb_device, |
| 1565 | #endif |
| 1566 | |
Michael Hennerich | 3f37569 | 2008-11-18 17:48:22 +0800 | [diff] [blame] | 1567 | #if defined(CONFIG_USB_ISP1760_HCD) || defined(CONFIG_USB_ISP1760_HCD_MODULE) |
| 1568 | &bfin_isp1760_device, |
| 1569 | #endif |
| 1570 | |
Sonic Zhang | df5de26 | 2009-09-23 05:01:56 +0000 | [diff] [blame] | 1571 | #if defined(CONFIG_SERIAL_BFIN_SPORT) || defined(CONFIG_SERIAL_BFIN_SPORT_MODULE) |
| 1572 | #ifdef CONFIG_SERIAL_BFIN_SPORT0_UART |
| 1573 | &bfin_sport0_uart_device, |
| 1574 | #endif |
| 1575 | #ifdef CONFIG_SERIAL_BFIN_SPORT1_UART |
| 1576 | &bfin_sport1_uart_device, |
| 1577 | #endif |
| 1578 | #ifdef CONFIG_SERIAL_BFIN_SPORT2_UART |
| 1579 | &bfin_sport2_uart_device, |
| 1580 | #endif |
| 1581 | #ifdef CONFIG_SERIAL_BFIN_SPORT3_UART |
| 1582 | &bfin_sport3_uart_device, |
| 1583 | #endif |
| 1584 | #endif |
| 1585 | |
Barry Song | 706a01b | 2009-11-02 07:29:07 +0000 | [diff] [blame] | 1586 | #if defined(CONFIG_CAN_BFIN) || defined(CONFIG_CAN_BFIN_MODULE) |
Aaron Wu | 4c131c8 | 2010-12-22 06:21:03 +0000 | [diff] [blame] | 1587 | &bfin_can0_device, |
| 1588 | &bfin_can1_device, |
Barry Song | 706a01b | 2009-11-02 07:29:07 +0000 | [diff] [blame] | 1589 | #endif |
| 1590 | |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 1591 | #if defined(CONFIG_PATA_BF54X) || defined(CONFIG_PATA_BF54X_MODULE) |
| 1592 | &bfin_atapi_device, |
| 1593 | #endif |
| 1594 | |
| 1595 | #if defined(CONFIG_MTD_NAND_BF5XX) || defined(CONFIG_MTD_NAND_BF5XX_MODULE) |
| 1596 | &bf5xx_nand_device, |
| 1597 | #endif |
| 1598 | |
Michael Hennerich | 3d7e6cf | 2008-03-03 17:40:28 -0700 | [diff] [blame] | 1599 | #if defined(CONFIG_SDH_BFIN) || defined(CONFIG_SDH_BFIN_MODULE) |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 1600 | &bf54x_sdh_device, |
| 1601 | #endif |
| 1602 | |
Sonic Zhang | 7d157fb | 2011-11-07 18:40:10 +0800 | [diff] [blame] | 1603 | #if defined(CONFIG_SPI_BFIN5XX) || defined(CONFIG_SPI_BFIN5XX_MODULE) |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 1604 | &bf54x_spi_master0, |
Bryan Wu | d4b1d27 | 2007-10-21 17:03:55 +0800 | [diff] [blame] | 1605 | &bf54x_spi_master1, |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 1606 | #endif |
Scott Jiang | df864c3 | 2011-12-31 14:08:38 -0500 | [diff] [blame] | 1607 | #if defined(CONFIG_VIDEO_BLACKFIN_CAPTURE) \ |
| 1608 | || defined(CONFIG_VIDEO_BLACKFIN_CAPTURE_MODULE) |
| 1609 | &bfin_capture_device, |
| 1610 | #endif |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 1611 | |
| 1612 | #if defined(CONFIG_KEYBOARD_BFIN) || defined(CONFIG_KEYBOARD_BFIN_MODULE) |
| 1613 | &bf54x_kpad_device, |
| 1614 | #endif |
| 1615 | |
Michael Hennerich | adfc046 | 2009-10-09 07:37:03 +0000 | [diff] [blame] | 1616 | #if defined(CONFIG_INPUT_BFIN_ROTARY) || defined(CONFIG_INPUT_BFIN_ROTARY_MODULE) |
Michael Hennerich | aca5e4a | 2008-10-08 14:27:59 +0800 | [diff] [blame] | 1617 | &bfin_rotary_device, |
| 1618 | #endif |
| 1619 | |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 1620 | #if defined(CONFIG_I2C_BLACKFIN_TWI) || defined(CONFIG_I2C_BLACKFIN_TWI_MODULE) |
| 1621 | &i2c_bfin_twi0_device, |
Mike Frysinger | 7160e950 | 2007-11-21 16:03:07 +0800 | [diff] [blame] | 1622 | #if !defined(CONFIG_BF542) |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 1623 | &i2c_bfin_twi1_device, |
| 1624 | #endif |
Mike Frysinger | 7160e950 | 2007-11-21 16:03:07 +0800 | [diff] [blame] | 1625 | #endif |
Michael Hennerich | 2463ef2 | 2008-01-27 16:49:48 +0800 | [diff] [blame] | 1626 | |
| 1627 | #if defined(CONFIG_KEYBOARD_GPIO) || defined(CONFIG_KEYBOARD_GPIO_MODULE) |
| 1628 | &bfin_device_gpiokeys, |
| 1629 | #endif |
Mike Frysinger | cad2ab6 | 2008-02-22 17:01:31 +0800 | [diff] [blame] | 1630 | |
Mike Frysinger | 793dc27 | 2008-03-26 08:09:12 +0800 | [diff] [blame] | 1631 | #if defined(CONFIG_MTD_PHYSMAP) || defined(CONFIG_MTD_PHYSMAP_MODULE) |
Mike Frysinger | de8c43f | 2008-01-24 17:14:04 +0800 | [diff] [blame] | 1632 | &ezkit_flash_device, |
Mike Frysinger | 793dc27 | 2008-03-26 08:09:12 +0800 | [diff] [blame] | 1633 | #endif |
Barry Song | 439b486 | 2009-11-13 02:41:07 +0000 | [diff] [blame] | 1634 | |
Sonic Zhang | eeec0a1 | 2012-03-16 12:52:34 +0800 | [diff] [blame] | 1635 | #if defined(CONFIG_SND_BF5XX_I2S) || defined(CONFIG_SND_BF5XX_I2S_MODULE) |
| 1636 | &bfin_i2s_pcm, |
| 1637 | #endif |
| 1638 | #if defined(CONFIG_SND_BF5XX_TDM) || defined(CONFIG_SND_BF5XX_TDM_MODULE) |
| 1639 | &bfin_tdm_pcm, |
| 1640 | #endif |
| 1641 | #if defined(CONFIG_SND_BF5XX_AC97) || defined(CONFIG_SND_BF5XX_AC97_MODULE) |
| 1642 | &bfin_ac97_pcm, |
Scott Jiang | 6f53dbb | 2011-03-01 09:43:50 +0000 | [diff] [blame] | 1643 | #endif |
| 1644 | |
| 1645 | #if defined(CONFIG_SND_BF5XX_SOC_AD1980) || defined(CONFIG_SND_BF5XX_SOC_AD1980_MODULE) |
| 1646 | &bfin_ad1980_codec_device, |
| 1647 | #endif |
| 1648 | |
Barry Song | 439b486 | 2009-11-13 02:41:07 +0000 | [diff] [blame] | 1649 | #if defined(CONFIG_SND_BF5XX_I2S) || defined(CONFIG_SND_BF5XX_I2S_MODULE) |
| 1650 | &bfin_i2s, |
| 1651 | #endif |
| 1652 | |
| 1653 | #if defined(CONFIG_SND_BF5XX_TDM) || defined(CONFIG_SND_BF5XX_TDM_MODULE) |
| 1654 | &bfin_tdm, |
| 1655 | #endif |
| 1656 | |
| 1657 | #if defined(CONFIG_SND_BF5XX_AC97) || defined(CONFIG_SND_BF5XX_AC97_MODULE) |
| 1658 | &bfin_ac97, |
| 1659 | #endif |
Roy Huang | 24a07a1 | 2007-07-12 22:41:45 +0800 | [diff] [blame] | 1660 | }; |
| 1661 | |
Mike Frysinger | a01d7a7 | 2008-02-02 15:34:56 +0800 | [diff] [blame] | 1662 | static int __init ezkit_init(void) |
Roy Huang | 24a07a1 | 2007-07-12 22:41:45 +0800 | [diff] [blame] | 1663 | { |
Harvey Harrison | b85d858 | 2008-04-23 09:39:01 +0800 | [diff] [blame] | 1664 | printk(KERN_INFO "%s(): registering device resources\n", __func__); |
Bryan Wu | 81d9c7f | 2008-03-26 10:02:13 +0800 | [diff] [blame] | 1665 | |
Bryan Wu | 81d9c7f | 2008-03-26 10:02:13 +0800 | [diff] [blame] | 1666 | i2c_register_board_info(0, bfin_i2c_board_info0, |
| 1667 | ARRAY_SIZE(bfin_i2c_board_info0)); |
| 1668 | #if !defined(CONFIG_BF542) /* The BF542 only has 1 TWI */ |
| 1669 | i2c_register_board_info(1, bfin_i2c_board_info1, |
| 1670 | ARRAY_SIZE(bfin_i2c_board_info1)); |
| 1671 | #endif |
Bryan Wu | 81d9c7f | 2008-03-26 10:02:13 +0800 | [diff] [blame] | 1672 | |
Roy Huang | 24a07a1 | 2007-07-12 22:41:45 +0800 | [diff] [blame] | 1673 | platform_add_devices(ezkit_devices, ARRAY_SIZE(ezkit_devices)); |
Bryan Wu | c6c4d7b | 2007-10-11 01:20:06 +0800 | [diff] [blame] | 1674 | |
Mike Frysinger | 5bda272 | 2008-06-07 15:03:01 +0800 | [diff] [blame] | 1675 | 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] | 1676 | |
Roy Huang | 24a07a1 | 2007-07-12 22:41:45 +0800 | [diff] [blame] | 1677 | return 0; |
| 1678 | } |
| 1679 | |
Mike Frysinger | a01d7a7 | 2008-02-02 15:34:56 +0800 | [diff] [blame] | 1680 | arch_initcall(ezkit_init); |
Sonic Zhang | c13ce9f | 2009-09-23 09:37:46 +0000 | [diff] [blame] | 1681 | |
| 1682 | static struct platform_device *ezkit_early_devices[] __initdata = { |
| 1683 | #if defined(CONFIG_SERIAL_BFIN_CONSOLE) || defined(CONFIG_EARLY_PRINTK) |
| 1684 | #ifdef CONFIG_SERIAL_BFIN_UART0 |
| 1685 | &bfin_uart0_device, |
| 1686 | #endif |
| 1687 | #ifdef CONFIG_SERIAL_BFIN_UART1 |
| 1688 | &bfin_uart1_device, |
| 1689 | #endif |
| 1690 | #ifdef CONFIG_SERIAL_BFIN_UART2 |
| 1691 | &bfin_uart2_device, |
| 1692 | #endif |
| 1693 | #ifdef CONFIG_SERIAL_BFIN_UART3 |
| 1694 | &bfin_uart3_device, |
| 1695 | #endif |
| 1696 | #endif |
| 1697 | |
| 1698 | #if defined(CONFIG_SERIAL_BFIN_SPORT_CONSOLE) |
| 1699 | #ifdef CONFIG_SERIAL_BFIN_SPORT0_UART |
| 1700 | &bfin_sport0_uart_device, |
| 1701 | #endif |
| 1702 | #ifdef CONFIG_SERIAL_BFIN_SPORT1_UART |
| 1703 | &bfin_sport1_uart_device, |
| 1704 | #endif |
| 1705 | #ifdef CONFIG_SERIAL_BFIN_SPORT2_UART |
| 1706 | &bfin_sport2_uart_device, |
| 1707 | #endif |
| 1708 | #ifdef CONFIG_SERIAL_BFIN_SPORT3_UART |
| 1709 | &bfin_sport3_uart_device, |
| 1710 | #endif |
| 1711 | #endif |
| 1712 | }; |
| 1713 | |
| 1714 | void __init native_machine_early_platform_add_devices(void) |
| 1715 | { |
| 1716 | printk(KERN_INFO "register early platform devices\n"); |
| 1717 | early_platform_add_devices(ezkit_early_devices, |
| 1718 | ARRAY_SIZE(ezkit_early_devices)); |
| 1719 | } |