blob: 9c3ce311d5d7ea3579a432cff8332e5952561942 [file] [log] [blame]
Kevin Hilman7c6337e2007-04-30 19:37:19 +01001/*
2 * TI DaVinci EVM board support
3 *
4 * Author: Kevin Hilman, MontaVista Software, Inc. <source@mvista.com>
5 *
6 * 2007 (c) MontaVista Software, Inc. This file is licensed under
7 * the terms of the GNU General Public License version 2. This program
8 * is licensed "as is" without any warranty of any kind, whether express
9 * or implied.
10 */
11#include <linux/kernel.h>
12#include <linux/module.h>
13#include <linux/init.h>
14#include <linux/dma-mapping.h>
15#include <linux/platform_device.h>
David Brownell7bff3c42008-09-07 23:43:02 -070016#include <linux/gpio.h>
17#include <linux/leds.h>
Kevin Hilmand0e47fb2009-04-14 11:30:11 -050018#include <linux/memory.h>
David Brownell3e9c18e2009-04-15 14:19:21 -050019#include <linux/etherdevice.h>
David Brownell7bff3c42008-09-07 23:43:02 -070020
21#include <linux/i2c.h>
22#include <linux/i2c/pcf857x.h>
23#include <linux/i2c/at24.h>
David Brownell3e9c18e2009-04-15 14:19:21 -050024
Kevin Hilman7c6337e2007-04-30 19:37:19 +010025#include <linux/mtd/mtd.h>
Kevin Hilmand0e47fb2009-04-14 11:30:11 -050026#include <linux/mtd/nand.h>
Kevin Hilman7c6337e2007-04-30 19:37:19 +010027#include <linux/mtd/partitions.h>
28#include <linux/mtd/physmap.h>
Russell Kingfced80c2008-09-06 12:10:45 +010029#include <linux/io.h>
Kevin Hilmand0e47fb2009-04-14 11:30:11 -050030#include <linux/phy.h>
31#include <linux/clk.h>
Kevin Hilman7c6337e2007-04-30 19:37:19 +010032
33#include <asm/setup.h>
Kevin Hilman7c6337e2007-04-30 19:37:19 +010034#include <asm/mach-types.h>
Kevin Hilman7c6337e2007-04-30 19:37:19 +010035
36#include <asm/mach/arch.h>
37#include <asm/mach/map.h>
38#include <asm/mach/flash.h>
39
Kevin Hilmand0e47fb2009-04-14 11:30:11 -050040#include <mach/dm644x.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010041#include <mach/common.h>
David Brownell7bff3c42008-09-07 23:43:02 -070042#include <mach/i2c.h>
Kevin Hilmand0e47fb2009-04-14 11:30:11 -050043#include <mach/serial.h>
44#include <mach/mux.h>
45#include <mach/psc.h>
46#include <mach/nand.h>
Kevin Hilman2dbf56ae2009-05-11 15:55:03 -070047#include <mach/mmc.h>
Kevin Hilmand0e47fb2009-04-14 11:30:11 -050048
49#define DM644X_EVM_PHY_MASK (0x2)
50#define DM644X_EVM_MDIO_FREQUENCY (2200000) /* PHY bus frequency */
Kevin Hilman7c6337e2007-04-30 19:37:19 +010051
Kevin Hilmanf5c122d2009-04-14 07:04:16 -050052#define DAVINCI_CFC_ATA_BASE 0x01C66000
Kevin Hilmand0e47fb2009-04-14 11:30:11 -050053
54#define DAVINCI_ASYNC_EMIF_CONTROL_BASE 0x01e00000
Kevin Hilmanf5c122d2009-04-14 07:04:16 -050055#define DAVINCI_ASYNC_EMIF_DATA_CE0_BASE 0x02000000
Kevin Hilmand0e47fb2009-04-14 11:30:11 -050056#define DAVINCI_ASYNC_EMIF_DATA_CE1_BASE 0x04000000
57#define DAVINCI_ASYNC_EMIF_DATA_CE2_BASE 0x06000000
58#define DAVINCI_ASYNC_EMIF_DATA_CE3_BASE 0x08000000
Kevin Hilmanf5c122d2009-04-14 07:04:16 -050059
Kevin Hilmand0e47fb2009-04-14 11:30:11 -050060#define LXT971_PHY_ID (0x001378e2)
61#define LXT971_PHY_MASK (0xfffffff0)
Kevin Hilman7c6337e2007-04-30 19:37:19 +010062
David Brownell7bff3c42008-09-07 23:43:02 -070063static struct mtd_partition davinci_evm_norflash_partitions[] = {
Kevin Hilmand0e47fb2009-04-14 11:30:11 -050064 /* bootloader (UBL, U-Boot, etc) in first 5 sectors */
Kevin Hilman7c6337e2007-04-30 19:37:19 +010065 {
66 .name = "bootloader",
67 .offset = 0,
Kevin Hilmand0e47fb2009-04-14 11:30:11 -050068 .size = 5 * SZ_64K,
Kevin Hilman7c6337e2007-04-30 19:37:19 +010069 .mask_flags = MTD_WRITEABLE, /* force read-only */
70 },
71 /* bootloader params in the next 1 sectors */
72 {
73 .name = "params",
74 .offset = MTDPART_OFS_APPEND,
75 .size = SZ_64K,
76 .mask_flags = 0,
77 },
78 /* kernel */
79 {
80 .name = "kernel",
81 .offset = MTDPART_OFS_APPEND,
82 .size = SZ_2M,
83 .mask_flags = 0
84 },
85 /* file system */
86 {
87 .name = "filesystem",
88 .offset = MTDPART_OFS_APPEND,
89 .size = MTDPART_SIZ_FULL,
90 .mask_flags = 0
91 }
92};
93
David Brownell7bff3c42008-09-07 23:43:02 -070094static struct physmap_flash_data davinci_evm_norflash_data = {
Kevin Hilman7c6337e2007-04-30 19:37:19 +010095 .width = 2,
David Brownell7bff3c42008-09-07 23:43:02 -070096 .parts = davinci_evm_norflash_partitions,
97 .nr_parts = ARRAY_SIZE(davinci_evm_norflash_partitions),
Kevin Hilman7c6337e2007-04-30 19:37:19 +010098};
99
100/* NOTE: CFI probe will correctly detect flash part as 32M, but EMIF
101 * limits addresses to 16M, so using addresses past 16M will wrap */
David Brownell7bff3c42008-09-07 23:43:02 -0700102static struct resource davinci_evm_norflash_resource = {
103 .start = DAVINCI_ASYNC_EMIF_DATA_CE0_BASE,
104 .end = DAVINCI_ASYNC_EMIF_DATA_CE0_BASE + SZ_16M - 1,
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100105 .flags = IORESOURCE_MEM,
106};
107
David Brownell7bff3c42008-09-07 23:43:02 -0700108static struct platform_device davinci_evm_norflash_device = {
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100109 .name = "physmap-flash",
110 .id = 0,
111 .dev = {
David Brownell7bff3c42008-09-07 23:43:02 -0700112 .platform_data = &davinci_evm_norflash_data,
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100113 },
114 .num_resources = 1,
David Brownell7bff3c42008-09-07 23:43:02 -0700115 .resource = &davinci_evm_norflash_resource,
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100116};
117
David Brownell3e9c18e2009-04-15 14:19:21 -0500118/* DM644x EVM includes a 64 MByte small-page NAND flash (16K blocks).
119 * It may used instead of the (default) NOR chip to boot, using TI's
120 * tools to install the secondary boot loader (UBL) and U-Boot.
121 */
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500122struct mtd_partition davinci_evm_nandflash_partition[] = {
David Brownell3e9c18e2009-04-15 14:19:21 -0500123 /* Bootloader layout depends on whose u-boot is installed, but we
124 * can hide all the details.
125 * - block 0 for u-boot environment ... in mainline u-boot
126 * - block 1 for UBL (plus up to four backup copies in blocks 2..5)
127 * - blocks 6...? for u-boot
128 * - blocks 16..23 for u-boot environment ... in TI's u-boot
129 */
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500130 {
David Brownell3e9c18e2009-04-15 14:19:21 -0500131 .name = "bootloader",
132 .offset = 0,
133 .size = SZ_256K + SZ_128K,
134 .mask_flags = MTD_WRITEABLE, /* force read-only */
135 },
136 /* Kernel */
137 {
138 .name = "kernel",
139 .offset = MTDPART_OFS_APPEND,
140 .size = SZ_4M,
141 .mask_flags = 0,
142 },
143 /* File system (older GIT kernels started this on the 5MB mark) */
144 {
145 .name = "filesystem",
146 .offset = MTDPART_OFS_APPEND,
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500147 .size = MTDPART_SIZ_FULL,
148 .mask_flags = 0,
149 }
David Brownell3e9c18e2009-04-15 14:19:21 -0500150 /* A few blocks at end hold a flash BBT ... created by TI's CCS
151 * using flashwriter_nand.out, but ignored by TI's versions of
152 * Linux and u-boot. We boot faster by using them.
153 */
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500154};
David Brownell7bff3c42008-09-07 23:43:02 -0700155
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500156static struct davinci_nand_pdata davinci_evm_nandflash_data = {
157 .parts = davinci_evm_nandflash_partition,
158 .nr_parts = ARRAY_SIZE(davinci_evm_nandflash_partition),
159 .ecc_mode = NAND_ECC_HW,
David Brownell3e9c18e2009-04-15 14:19:21 -0500160 .options = NAND_USE_FLASH_BBT,
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500161};
162
163static struct resource davinci_evm_nandflash_resource[] = {
164 {
165 .start = DAVINCI_ASYNC_EMIF_DATA_CE0_BASE,
166 .end = DAVINCI_ASYNC_EMIF_DATA_CE0_BASE + SZ_16M - 1,
167 .flags = IORESOURCE_MEM,
168 }, {
169 .start = DAVINCI_ASYNC_EMIF_CONTROL_BASE,
170 .end = DAVINCI_ASYNC_EMIF_CONTROL_BASE + SZ_4K - 1,
171 .flags = IORESOURCE_MEM,
172 },
173};
174
175static struct platform_device davinci_evm_nandflash_device = {
176 .name = "davinci_nand",
177 .id = 0,
178 .dev = {
179 .platform_data = &davinci_evm_nandflash_data,
180 },
181 .num_resources = ARRAY_SIZE(davinci_evm_nandflash_resource),
182 .resource = davinci_evm_nandflash_resource,
183};
184
David Brownell3e9c18e2009-04-15 14:19:21 -0500185static u64 davinci_fb_dma_mask = DMA_BIT_MASK(32);
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500186
187static struct platform_device davinci_fb_device = {
188 .name = "davincifb",
189 .id = -1,
190 .dev = {
191 .dma_mask = &davinci_fb_dma_mask,
David Brownell3e9c18e2009-04-15 14:19:21 -0500192 .coherent_dma_mask = DMA_BIT_MASK(32),
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500193 },
194 .num_resources = 0,
195};
196
197static struct platform_device rtc_dev = {
198 .name = "rtc_davinci_evm",
199 .id = -1,
200};
David Brownell7bff3c42008-09-07 23:43:02 -0700201
202static struct resource ide_resources[] = {
203 {
204 .start = DAVINCI_CFC_ATA_BASE,
205 .end = DAVINCI_CFC_ATA_BASE + 0x7ff,
206 .flags = IORESOURCE_MEM,
207 },
208 {
209 .start = IRQ_IDE,
210 .end = IRQ_IDE,
211 .flags = IORESOURCE_IRQ,
212 },
213};
214
Kevin Hilmana029b702009-05-07 14:25:48 +0100215static u64 ide_dma_mask = DMA_BIT_MASK(32);
David Brownell7bff3c42008-09-07 23:43:02 -0700216
217static struct platform_device ide_dev = {
218 .name = "palm_bk3710",
219 .id = -1,
220 .resource = ide_resources,
221 .num_resources = ARRAY_SIZE(ide_resources),
222 .dev = {
223 .dma_mask = &ide_dma_mask,
Kevin Hilmana029b702009-05-07 14:25:48 +0100224 .coherent_dma_mask = DMA_BIT_MASK(32),
David Brownell7bff3c42008-09-07 23:43:02 -0700225 },
226};
227
David Brownell7bff3c42008-09-07 23:43:02 -0700228/*----------------------------------------------------------------------*/
229
230/*
231 * I2C GPIO expanders
232 */
233
234#define PCF_Uxx_BASE(x) (DAVINCI_N_GPIO + ((x) * 8))
235
236
237/* U2 -- LEDs */
238
239static struct gpio_led evm_leds[] = {
240 { .name = "DS8", .active_low = 1,
241 .default_trigger = "heartbeat", },
242 { .name = "DS7", .active_low = 1, },
243 { .name = "DS6", .active_low = 1, },
244 { .name = "DS5", .active_low = 1, },
245 { .name = "DS4", .active_low = 1, },
246 { .name = "DS3", .active_low = 1, },
247 { .name = "DS2", .active_low = 1,
248 .default_trigger = "mmc0", },
249 { .name = "DS1", .active_low = 1,
250 .default_trigger = "ide-disk", },
251};
252
253static const struct gpio_led_platform_data evm_led_data = {
254 .num_leds = ARRAY_SIZE(evm_leds),
255 .leds = evm_leds,
256};
257
258static struct platform_device *evm_led_dev;
259
260static int
261evm_led_setup(struct i2c_client *client, int gpio, unsigned ngpio, void *c)
262{
263 struct gpio_led *leds = evm_leds;
264 int status;
265
266 while (ngpio--) {
267 leds->gpio = gpio++;
268 leds++;
269 }
270
271 /* what an extremely annoying way to be forced to handle
272 * device unregistration ...
273 */
274 evm_led_dev = platform_device_alloc("leds-gpio", 0);
275 platform_device_add_data(evm_led_dev,
276 &evm_led_data, sizeof evm_led_data);
277
278 evm_led_dev->dev.parent = &client->dev;
279 status = platform_device_add(evm_led_dev);
280 if (status < 0) {
281 platform_device_put(evm_led_dev);
282 evm_led_dev = NULL;
283 }
284 return status;
285}
286
287static int
288evm_led_teardown(struct i2c_client *client, int gpio, unsigned ngpio, void *c)
289{
290 if (evm_led_dev) {
291 platform_device_unregister(evm_led_dev);
292 evm_led_dev = NULL;
293 }
294 return 0;
295}
296
297static struct pcf857x_platform_data pcf_data_u2 = {
298 .gpio_base = PCF_Uxx_BASE(0),
299 .setup = evm_led_setup,
300 .teardown = evm_led_teardown,
301};
302
303
304/* U18 - A/V clock generator and user switch */
305
306static int sw_gpio;
307
308static ssize_t
309sw_show(struct device *d, struct device_attribute *a, char *buf)
310{
311 char *s = gpio_get_value_cansleep(sw_gpio) ? "on\n" : "off\n";
312
313 strcpy(buf, s);
314 return strlen(s);
315}
316
317static DEVICE_ATTR(user_sw, S_IRUGO, sw_show, NULL);
318
319static int
320evm_u18_setup(struct i2c_client *client, int gpio, unsigned ngpio, void *c)
321{
322 int status;
323
324 /* export dip switch option */
325 sw_gpio = gpio + 7;
326 status = gpio_request(sw_gpio, "user_sw");
327 if (status == 0)
328 status = gpio_direction_input(sw_gpio);
329 if (status == 0)
330 status = device_create_file(&client->dev, &dev_attr_user_sw);
331 else
332 gpio_free(sw_gpio);
333 if (status != 0)
334 sw_gpio = -EINVAL;
335
336 /* audio PLL: 48 kHz (vs 44.1 or 32), single rate (vs double) */
337 gpio_request(gpio + 3, "pll_fs2");
338 gpio_direction_output(gpio + 3, 0);
339
340 gpio_request(gpio + 2, "pll_fs1");
341 gpio_direction_output(gpio + 2, 0);
342
343 gpio_request(gpio + 1, "pll_sr");
344 gpio_direction_output(gpio + 1, 0);
345
346 return 0;
347}
348
349static int
350evm_u18_teardown(struct i2c_client *client, int gpio, unsigned ngpio, void *c)
351{
352 gpio_free(gpio + 1);
353 gpio_free(gpio + 2);
354 gpio_free(gpio + 3);
355
356 if (sw_gpio > 0) {
357 device_remove_file(&client->dev, &dev_attr_user_sw);
358 gpio_free(sw_gpio);
359 }
360 return 0;
361}
362
363static struct pcf857x_platform_data pcf_data_u18 = {
364 .gpio_base = PCF_Uxx_BASE(1),
365 .n_latch = (1 << 3) | (1 << 2) | (1 << 1),
366 .setup = evm_u18_setup,
367 .teardown = evm_u18_teardown,
368};
369
370
371/* U35 - various I/O signals used to manage USB, CF, ATA, etc */
372
373static int
374evm_u35_setup(struct i2c_client *client, int gpio, unsigned ngpio, void *c)
375{
376 /* p0 = nDRV_VBUS (initial: don't supply it) */
377 gpio_request(gpio + 0, "nDRV_VBUS");
378 gpio_direction_output(gpio + 0, 1);
379
380 /* p1 = VDDIMX_EN */
381 gpio_request(gpio + 1, "VDDIMX_EN");
382 gpio_direction_output(gpio + 1, 1);
383
384 /* p2 = VLYNQ_EN */
385 gpio_request(gpio + 2, "VLYNQ_EN");
386 gpio_direction_output(gpio + 2, 1);
387
388 /* p3 = n3V3_CF_RESET (initial: stay in reset) */
389 gpio_request(gpio + 3, "nCF_RESET");
390 gpio_direction_output(gpio + 3, 0);
391
392 /* (p4 unused) */
393
394 /* p5 = 1V8_WLAN_RESET (initial: stay in reset) */
395 gpio_request(gpio + 5, "WLAN_RESET");
396 gpio_direction_output(gpio + 5, 1);
397
398 /* p6 = nATA_SEL (initial: select) */
399 gpio_request(gpio + 6, "nATA_SEL");
400 gpio_direction_output(gpio + 6, 0);
401
402 /* p7 = nCF_SEL (initial: deselect) */
403 gpio_request(gpio + 7, "nCF_SEL");
404 gpio_direction_output(gpio + 7, 1);
405
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500406 /* irlml6401 switches over 1A, in under 8 msec;
407 * now it can be managed by nDRV_VBUS ...
408 */
David Brownell34f32c92009-02-20 13:45:17 -0800409 setup_usb(500, 8);
410
David Brownell7bff3c42008-09-07 23:43:02 -0700411 return 0;
412}
413
414static int
415evm_u35_teardown(struct i2c_client *client, int gpio, unsigned ngpio, void *c)
416{
417 gpio_free(gpio + 7);
418 gpio_free(gpio + 6);
419 gpio_free(gpio + 5);
420 gpio_free(gpio + 3);
421 gpio_free(gpio + 2);
422 gpio_free(gpio + 1);
423 gpio_free(gpio + 0);
424 return 0;
425}
426
427static struct pcf857x_platform_data pcf_data_u35 = {
428 .gpio_base = PCF_Uxx_BASE(2),
429 .setup = evm_u35_setup,
430 .teardown = evm_u35_teardown,
431};
432
433/*----------------------------------------------------------------------*/
434
435/* Most of this EEPROM is unused, but U-Boot uses some data:
436 * - 0x7f00, 6 bytes Ethernet Address
437 * - 0x0039, 1 byte NTSC vs PAL (bit 0x80 == PAL)
438 * - ... newer boards may have more
439 */
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500440static struct memory_accessor *at24_mem_acc;
441
442static void at24_setup(struct memory_accessor *mem_acc, void *context)
443{
444 DECLARE_MAC_BUF(mac_str);
445 char mac_addr[6];
446
447 at24_mem_acc = mem_acc;
448
449 /* Read MAC addr from EEPROM */
450 if (at24_mem_acc->read(at24_mem_acc, mac_addr, 0x7f00, 6) == 6) {
451 printk(KERN_INFO "Read MAC addr from EEPROM: %s\n",
452 print_mac(mac_str, mac_addr));
453 }
454}
455
David Brownell7bff3c42008-09-07 23:43:02 -0700456static struct at24_platform_data eeprom_info = {
457 .byte_len = (256*1024) / 8,
458 .page_size = 64,
459 .flags = AT24_FLAG_ADDR16,
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500460 .setup = at24_setup,
David Brownell7bff3c42008-09-07 23:43:02 -0700461};
462
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500463int dm6446evm_eeprom_read(void *buf, off_t off, size_t count)
464{
465 if (at24_mem_acc)
466 return at24_mem_acc->read(at24_mem_acc, buf, off, count);
467 return -ENODEV;
468}
469EXPORT_SYMBOL(dm6446evm_eeprom_read);
470
471int dm6446evm_eeprom_write(void *buf, off_t off, size_t count)
472{
473 if (at24_mem_acc)
474 return at24_mem_acc->write(at24_mem_acc, buf, off, count);
475 return -ENODEV;
476}
477EXPORT_SYMBOL(dm6446evm_eeprom_write);
478
479/*
480 * MSP430 supports RTC, card detection, input from IR remote, and
481 * a bit more. It triggers interrupts on GPIO(7) from pressing
482 * buttons on the IR remote, and for card detect switches.
483 */
484static struct i2c_client *dm6446evm_msp;
485
486static int dm6446evm_msp_probe(struct i2c_client *client,
487 const struct i2c_device_id *id)
488{
489 dm6446evm_msp = client;
490 return 0;
491}
492
493static int dm6446evm_msp_remove(struct i2c_client *client)
494{
495 dm6446evm_msp = NULL;
496 return 0;
497}
498
499static const struct i2c_device_id dm6446evm_msp_ids[] = {
500 { "dm6446evm_msp", 0, },
501 { /* end of list */ },
502};
503
504static struct i2c_driver dm6446evm_msp_driver = {
505 .driver.name = "dm6446evm_msp",
506 .id_table = dm6446evm_msp_ids,
507 .probe = dm6446evm_msp_probe,
508 .remove = dm6446evm_msp_remove,
509};
510
511static int dm6444evm_msp430_get_pins(void)
512{
513 static const char txbuf[2] = { 2, 4, };
514 char buf[4];
515 struct i2c_msg msg[2] = {
516 {
517 .addr = dm6446evm_msp->addr,
518 .flags = 0,
519 .len = 2,
520 .buf = (void __force *)txbuf,
521 },
522 {
523 .addr = dm6446evm_msp->addr,
524 .flags = I2C_M_RD,
525 .len = 4,
526 .buf = buf,
527 },
528 };
529 int status;
530
531 if (!dm6446evm_msp)
532 return -ENXIO;
533
534 /* Command 4 == get input state, returns port 2 and port3 data
535 * S Addr W [A] len=2 [A] cmd=4 [A]
536 * RS Addr R [A] [len=4] A [cmd=4] A [port2] A [port3] N P
537 */
538 status = i2c_transfer(dm6446evm_msp->adapter, msg, 2);
539 if (status < 0)
540 return status;
541
542 dev_dbg(&dm6446evm_msp->dev,
543 "PINS: %02x %02x %02x %02x\n",
544 buf[0], buf[1], buf[2], buf[3]);
545
546 return (buf[3] << 8) | buf[2];
547}
548
Kevin Hilman2dbf56ae2009-05-11 15:55:03 -0700549static int dm6444evm_mmc_get_cd(int module)
550{
551 int status = dm6444evm_msp430_get_pins();
552
553 return (status < 0) ? status : !(status & BIT(1));
554}
555
556static int dm6444evm_mmc_get_ro(int module)
557{
558 int status = dm6444evm_msp430_get_pins();
559
560 return (status < 0) ? status : status & BIT(6 + 8);
561}
562
563static struct davinci_mmc_config dm6446evm_mmc_config = {
564 .get_cd = dm6444evm_mmc_get_cd,
565 .get_ro = dm6444evm_mmc_get_ro,
566 .wires = 4,
567 .version = MMC_CTLR_VERSION_1
568};
569
David Brownell7bff3c42008-09-07 23:43:02 -0700570static struct i2c_board_info __initdata i2c_info[] = {
571 {
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500572 I2C_BOARD_INFO("dm6446evm_msp", 0x23),
573 },
574 {
David Brownell7bff3c42008-09-07 23:43:02 -0700575 I2C_BOARD_INFO("pcf8574", 0x38),
576 .platform_data = &pcf_data_u2,
577 },
578 {
579 I2C_BOARD_INFO("pcf8574", 0x39),
580 .platform_data = &pcf_data_u18,
581 },
582 {
583 I2C_BOARD_INFO("pcf8574", 0x3a),
584 .platform_data = &pcf_data_u35,
585 },
586 {
587 I2C_BOARD_INFO("24c256", 0x50),
588 .platform_data = &eeprom_info,
589 },
590 /* ALSO:
591 * - tvl320aic33 audio codec (0x1b)
David Brownell7bff3c42008-09-07 23:43:02 -0700592 * - tvp5146 video decoder (0x5d)
593 */
594};
595
596/* The msp430 uses a slow bitbanged I2C implementation (ergo 20 KHz),
597 * which requires 100 usec of idle bus after i2c writes sent to it.
598 */
599static struct davinci_i2c_platform_data i2c_pdata = {
600 .bus_freq = 20 /* kHz */,
601 .bus_delay = 100 /* usec */,
602};
603
604static void __init evm_init_i2c(void)
605{
606 davinci_init_i2c(&i2c_pdata);
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500607 i2c_add_driver(&dm6446evm_msp_driver);
David Brownell7bff3c42008-09-07 23:43:02 -0700608 i2c_register_board_info(1, i2c_info, ARRAY_SIZE(i2c_info));
609}
610
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100611static struct platform_device *davinci_evm_devices[] __initdata = {
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500612 &davinci_fb_device,
613 &rtc_dev,
614};
615
616static struct davinci_uart_config uart_config __initdata = {
617 .enabled_uarts = (1 << 0),
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100618};
619
620static void __init
621davinci_evm_map_io(void)
622{
623 davinci_map_common_io();
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500624 dm644x_init();
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100625}
626
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500627static int davinci_phy_fixup(struct phy_device *phydev)
628{
629 unsigned int control;
630 /* CRITICAL: Fix for increasing PHY signal drive strength for
631 * TX lockup issue. On DaVinci EVM, the Intel LXT971 PHY
632 * signal strength was low causing TX to fail randomly. The
633 * fix is to Set bit 11 (Increased MII drive strength) of PHY
634 * register 26 (Digital Config register) on this phy. */
635 control = phy_read(phydev, 26);
636 phy_write(phydev, 26, (control | 0x800));
637 return 0;
638}
639
640#if defined(CONFIG_BLK_DEV_PALMCHIP_BK3710) || \
641 defined(CONFIG_BLK_DEV_PALMCHIP_BK3710_MODULE)
642#define HAS_ATA 1
643#else
644#define HAS_ATA 0
645#endif
646
647#if defined(CONFIG_MTD_PHYSMAP) || \
648 defined(CONFIG_MTD_PHYSMAP_MODULE)
649#define HAS_NOR 1
650#else
651#define HAS_NOR 0
652#endif
653
654#if defined(CONFIG_MTD_NAND_DAVINCI) || \
655 defined(CONFIG_MTD_NAND_DAVINCI_MODULE)
656#define HAS_NAND 1
657#else
658#define HAS_NAND 0
659#endif
660
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100661static __init void davinci_evm_init(void)
662{
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500663 struct clk *aemif_clk;
664
665 aemif_clk = clk_get(NULL, "aemif");
666 clk_enable(aemif_clk);
667
668 if (HAS_ATA) {
669 if (HAS_NAND || HAS_NOR)
670 pr_warning("WARNING: both IDE and Flash are "
671 "enabled, but they share AEMIF pins.\n"
672 "\tDisable IDE for NAND/NOR support.\n");
673 davinci_cfg_reg(DM644X_HPIEN_DISABLE);
674 davinci_cfg_reg(DM644X_ATAEN);
675 davinci_cfg_reg(DM644X_HDIREN);
676 platform_device_register(&ide_dev);
677 } else if (HAS_NAND || HAS_NOR) {
678 davinci_cfg_reg(DM644X_HPIEN_DISABLE);
679 davinci_cfg_reg(DM644X_ATAEN_DISABLE);
680
681 /* only one device will be jumpered and detected */
682 if (HAS_NAND) {
683 platform_device_register(&davinci_evm_nandflash_device);
684 evm_leds[7].default_trigger = "nand-disk";
685 if (HAS_NOR)
686 pr_warning("WARNING: both NAND and NOR flash "
687 "are enabled; disable one of them.\n");
688 } else if (HAS_NOR)
689 platform_device_register(&davinci_evm_norflash_device);
690 }
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100691
692 platform_add_devices(davinci_evm_devices,
693 ARRAY_SIZE(davinci_evm_devices));
David Brownell7bff3c42008-09-07 23:43:02 -0700694 evm_init_i2c();
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500695
Kevin Hilman2dbf56ae2009-05-11 15:55:03 -0700696 davinci_setup_mmc(0, &dm6446evm_mmc_config);
697
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500698 davinci_serial_init(&uart_config);
699
700 /* Register the fixup for PHY on DaVinci */
701 phy_register_fixup_for_uid(LXT971_PHY_ID, LXT971_PHY_MASK,
702 davinci_phy_fixup);
703
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100704}
705
706static __init void davinci_evm_irq_init(void)
707{
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100708 davinci_irq_init();
709}
710
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500711MACHINE_START(DAVINCI_EVM, "DaVinci DM644x EVM")
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100712 /* Maintainer: MontaVista Software <source@mvista.com> */
713 .phys_io = IO_PHYS,
Kevin Hilmanac7643e2008-09-15 04:09:14 -0700714 .io_pg_offst = (__IO_ADDRESS(IO_PHYS) >> 18) & 0xfffc,
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100715 .boot_params = (DAVINCI_DDR_BASE + 0x100),
716 .map_io = davinci_evm_map_io,
717 .init_irq = davinci_evm_irq_init,
718 .timer = &davinci_timer,
719 .init_machine = davinci_evm_init,
720MACHINE_END