blob: 02e7cdaf8daa9793c56e14a9a369552acf88efb1 [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 Brownell7bff3c42008-09-07 23:43:02 -070019
20#include <linux/i2c.h>
21#include <linux/i2c/pcf857x.h>
22#include <linux/i2c/at24.h>
Kevin Hilmanac7b75b2009-05-07 06:19:40 -070023#include <linux/etherdevice.h>
Kevin Hilman7c6337e2007-04-30 19:37:19 +010024#include <linux/mtd/mtd.h>
Kevin Hilmand0e47fb2009-04-14 11:30:11 -050025#include <linux/mtd/nand.h>
Kevin Hilman7c6337e2007-04-30 19:37:19 +010026#include <linux/mtd/partitions.h>
27#include <linux/mtd/physmap.h>
Russell Kingfced80c2008-09-06 12:10:45 +010028#include <linux/io.h>
Kevin Hilmand0e47fb2009-04-14 11:30:11 -050029#include <linux/phy.h>
30#include <linux/clk.h>
Kevin Hilman7c6337e2007-04-30 19:37:19 +010031
32#include <asm/setup.h>
Kevin Hilman7c6337e2007-04-30 19:37:19 +010033#include <asm/mach-types.h>
Kevin Hilman7c6337e2007-04-30 19:37:19 +010034
35#include <asm/mach/arch.h>
36#include <asm/mach/map.h>
37#include <asm/mach/flash.h>
38
Kevin Hilmand0e47fb2009-04-14 11:30:11 -050039#include <mach/dm644x.h>
Russell Kinga09e64f2008-08-05 16:14:15 +010040#include <mach/common.h>
Kevin Hilmanac7b75b2009-05-07 06:19:40 -070041#include <mach/emac.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
Kevin Hilmanac7b75b2009-05-07 06:19:40 -070063static struct emac_platform_data dm644x_evm_emac_pdata = {
64 .phy_mask = DM644X_EVM_PHY_MASK,
65 .mdio_max_freq = DM644X_EVM_MDIO_FREQUENCY,
66};
67
David Brownell7bff3c42008-09-07 23:43:02 -070068static struct mtd_partition davinci_evm_norflash_partitions[] = {
Kevin Hilmand0e47fb2009-04-14 11:30:11 -050069 /* bootloader (UBL, U-Boot, etc) in first 5 sectors */
Kevin Hilman7c6337e2007-04-30 19:37:19 +010070 {
71 .name = "bootloader",
72 .offset = 0,
Kevin Hilmand0e47fb2009-04-14 11:30:11 -050073 .size = 5 * SZ_64K,
Kevin Hilman7c6337e2007-04-30 19:37:19 +010074 .mask_flags = MTD_WRITEABLE, /* force read-only */
75 },
76 /* bootloader params in the next 1 sectors */
77 {
78 .name = "params",
79 .offset = MTDPART_OFS_APPEND,
80 .size = SZ_64K,
81 .mask_flags = 0,
82 },
83 /* kernel */
84 {
85 .name = "kernel",
86 .offset = MTDPART_OFS_APPEND,
87 .size = SZ_2M,
88 .mask_flags = 0
89 },
90 /* file system */
91 {
92 .name = "filesystem",
93 .offset = MTDPART_OFS_APPEND,
94 .size = MTDPART_SIZ_FULL,
95 .mask_flags = 0
96 }
97};
98
David Brownell7bff3c42008-09-07 23:43:02 -070099static struct physmap_flash_data davinci_evm_norflash_data = {
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100100 .width = 2,
David Brownell7bff3c42008-09-07 23:43:02 -0700101 .parts = davinci_evm_norflash_partitions,
102 .nr_parts = ARRAY_SIZE(davinci_evm_norflash_partitions),
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100103};
104
105/* NOTE: CFI probe will correctly detect flash part as 32M, but EMIF
106 * limits addresses to 16M, so using addresses past 16M will wrap */
David Brownell7bff3c42008-09-07 23:43:02 -0700107static struct resource davinci_evm_norflash_resource = {
108 .start = DAVINCI_ASYNC_EMIF_DATA_CE0_BASE,
109 .end = DAVINCI_ASYNC_EMIF_DATA_CE0_BASE + SZ_16M - 1,
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100110 .flags = IORESOURCE_MEM,
111};
112
David Brownell7bff3c42008-09-07 23:43:02 -0700113static struct platform_device davinci_evm_norflash_device = {
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100114 .name = "physmap-flash",
115 .id = 0,
116 .dev = {
David Brownell7bff3c42008-09-07 23:43:02 -0700117 .platform_data = &davinci_evm_norflash_data,
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100118 },
119 .num_resources = 1,
David Brownell7bff3c42008-09-07 23:43:02 -0700120 .resource = &davinci_evm_norflash_resource,
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100121};
122
David Brownell3e9c18e2009-04-15 14:19:21 -0500123/* DM644x EVM includes a 64 MByte small-page NAND flash (16K blocks).
124 * It may used instead of the (default) NOR chip to boot, using TI's
125 * tools to install the secondary boot loader (UBL) and U-Boot.
126 */
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500127struct mtd_partition davinci_evm_nandflash_partition[] = {
David Brownell3e9c18e2009-04-15 14:19:21 -0500128 /* Bootloader layout depends on whose u-boot is installed, but we
129 * can hide all the details.
130 * - block 0 for u-boot environment ... in mainline u-boot
131 * - block 1 for UBL (plus up to four backup copies in blocks 2..5)
132 * - blocks 6...? for u-boot
133 * - blocks 16..23 for u-boot environment ... in TI's u-boot
134 */
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500135 {
David Brownell3e9c18e2009-04-15 14:19:21 -0500136 .name = "bootloader",
137 .offset = 0,
138 .size = SZ_256K + SZ_128K,
139 .mask_flags = MTD_WRITEABLE, /* force read-only */
140 },
141 /* Kernel */
142 {
143 .name = "kernel",
144 .offset = MTDPART_OFS_APPEND,
145 .size = SZ_4M,
146 .mask_flags = 0,
147 },
148 /* File system (older GIT kernels started this on the 5MB mark) */
149 {
150 .name = "filesystem",
151 .offset = MTDPART_OFS_APPEND,
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500152 .size = MTDPART_SIZ_FULL,
153 .mask_flags = 0,
154 }
David Brownell3e9c18e2009-04-15 14:19:21 -0500155 /* A few blocks at end hold a flash BBT ... created by TI's CCS
156 * using flashwriter_nand.out, but ignored by TI's versions of
157 * Linux and u-boot. We boot faster by using them.
158 */
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500159};
David Brownell7bff3c42008-09-07 23:43:02 -0700160
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500161static struct davinci_nand_pdata davinci_evm_nandflash_data = {
162 .parts = davinci_evm_nandflash_partition,
163 .nr_parts = ARRAY_SIZE(davinci_evm_nandflash_partition),
164 .ecc_mode = NAND_ECC_HW,
David Brownell3e9c18e2009-04-15 14:19:21 -0500165 .options = NAND_USE_FLASH_BBT,
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500166};
167
168static struct resource davinci_evm_nandflash_resource[] = {
169 {
170 .start = DAVINCI_ASYNC_EMIF_DATA_CE0_BASE,
171 .end = DAVINCI_ASYNC_EMIF_DATA_CE0_BASE + SZ_16M - 1,
172 .flags = IORESOURCE_MEM,
173 }, {
174 .start = DAVINCI_ASYNC_EMIF_CONTROL_BASE,
175 .end = DAVINCI_ASYNC_EMIF_CONTROL_BASE + SZ_4K - 1,
176 .flags = IORESOURCE_MEM,
177 },
178};
179
180static struct platform_device davinci_evm_nandflash_device = {
181 .name = "davinci_nand",
182 .id = 0,
183 .dev = {
184 .platform_data = &davinci_evm_nandflash_data,
185 },
186 .num_resources = ARRAY_SIZE(davinci_evm_nandflash_resource),
187 .resource = davinci_evm_nandflash_resource,
188};
189
David Brownell3e9c18e2009-04-15 14:19:21 -0500190static u64 davinci_fb_dma_mask = DMA_BIT_MASK(32);
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500191
192static struct platform_device davinci_fb_device = {
193 .name = "davincifb",
194 .id = -1,
195 .dev = {
196 .dma_mask = &davinci_fb_dma_mask,
David Brownell3e9c18e2009-04-15 14:19:21 -0500197 .coherent_dma_mask = DMA_BIT_MASK(32),
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500198 },
199 .num_resources = 0,
200};
201
202static struct platform_device rtc_dev = {
203 .name = "rtc_davinci_evm",
204 .id = -1,
205};
David Brownell7bff3c42008-09-07 23:43:02 -0700206
207static struct resource ide_resources[] = {
208 {
209 .start = DAVINCI_CFC_ATA_BASE,
210 .end = DAVINCI_CFC_ATA_BASE + 0x7ff,
211 .flags = IORESOURCE_MEM,
212 },
213 {
214 .start = IRQ_IDE,
215 .end = IRQ_IDE,
216 .flags = IORESOURCE_IRQ,
217 },
218};
219
Kevin Hilmana029b702009-05-07 14:25:48 +0100220static u64 ide_dma_mask = DMA_BIT_MASK(32);
David Brownell7bff3c42008-09-07 23:43:02 -0700221
222static struct platform_device ide_dev = {
223 .name = "palm_bk3710",
224 .id = -1,
225 .resource = ide_resources,
226 .num_resources = ARRAY_SIZE(ide_resources),
227 .dev = {
228 .dma_mask = &ide_dma_mask,
Kevin Hilmana029b702009-05-07 14:25:48 +0100229 .coherent_dma_mask = DMA_BIT_MASK(32),
David Brownell7bff3c42008-09-07 23:43:02 -0700230 },
231};
232
David Brownell7bff3c42008-09-07 23:43:02 -0700233/*----------------------------------------------------------------------*/
234
235/*
236 * I2C GPIO expanders
237 */
238
239#define PCF_Uxx_BASE(x) (DAVINCI_N_GPIO + ((x) * 8))
240
241
242/* U2 -- LEDs */
243
244static struct gpio_led evm_leds[] = {
245 { .name = "DS8", .active_low = 1,
246 .default_trigger = "heartbeat", },
247 { .name = "DS7", .active_low = 1, },
248 { .name = "DS6", .active_low = 1, },
249 { .name = "DS5", .active_low = 1, },
250 { .name = "DS4", .active_low = 1, },
251 { .name = "DS3", .active_low = 1, },
252 { .name = "DS2", .active_low = 1,
253 .default_trigger = "mmc0", },
254 { .name = "DS1", .active_low = 1,
255 .default_trigger = "ide-disk", },
256};
257
258static const struct gpio_led_platform_data evm_led_data = {
259 .num_leds = ARRAY_SIZE(evm_leds),
260 .leds = evm_leds,
261};
262
263static struct platform_device *evm_led_dev;
264
265static int
266evm_led_setup(struct i2c_client *client, int gpio, unsigned ngpio, void *c)
267{
268 struct gpio_led *leds = evm_leds;
269 int status;
270
271 while (ngpio--) {
272 leds->gpio = gpio++;
273 leds++;
274 }
275
276 /* what an extremely annoying way to be forced to handle
277 * device unregistration ...
278 */
279 evm_led_dev = platform_device_alloc("leds-gpio", 0);
280 platform_device_add_data(evm_led_dev,
281 &evm_led_data, sizeof evm_led_data);
282
283 evm_led_dev->dev.parent = &client->dev;
284 status = platform_device_add(evm_led_dev);
285 if (status < 0) {
286 platform_device_put(evm_led_dev);
287 evm_led_dev = NULL;
288 }
289 return status;
290}
291
292static int
293evm_led_teardown(struct i2c_client *client, int gpio, unsigned ngpio, void *c)
294{
295 if (evm_led_dev) {
296 platform_device_unregister(evm_led_dev);
297 evm_led_dev = NULL;
298 }
299 return 0;
300}
301
302static struct pcf857x_platform_data pcf_data_u2 = {
303 .gpio_base = PCF_Uxx_BASE(0),
304 .setup = evm_led_setup,
305 .teardown = evm_led_teardown,
306};
307
308
309/* U18 - A/V clock generator and user switch */
310
311static int sw_gpio;
312
313static ssize_t
314sw_show(struct device *d, struct device_attribute *a, char *buf)
315{
316 char *s = gpio_get_value_cansleep(sw_gpio) ? "on\n" : "off\n";
317
318 strcpy(buf, s);
319 return strlen(s);
320}
321
322static DEVICE_ATTR(user_sw, S_IRUGO, sw_show, NULL);
323
324static int
325evm_u18_setup(struct i2c_client *client, int gpio, unsigned ngpio, void *c)
326{
327 int status;
328
329 /* export dip switch option */
330 sw_gpio = gpio + 7;
331 status = gpio_request(sw_gpio, "user_sw");
332 if (status == 0)
333 status = gpio_direction_input(sw_gpio);
334 if (status == 0)
335 status = device_create_file(&client->dev, &dev_attr_user_sw);
336 else
337 gpio_free(sw_gpio);
338 if (status != 0)
339 sw_gpio = -EINVAL;
340
341 /* audio PLL: 48 kHz (vs 44.1 or 32), single rate (vs double) */
342 gpio_request(gpio + 3, "pll_fs2");
343 gpio_direction_output(gpio + 3, 0);
344
345 gpio_request(gpio + 2, "pll_fs1");
346 gpio_direction_output(gpio + 2, 0);
347
348 gpio_request(gpio + 1, "pll_sr");
349 gpio_direction_output(gpio + 1, 0);
350
351 return 0;
352}
353
354static int
355evm_u18_teardown(struct i2c_client *client, int gpio, unsigned ngpio, void *c)
356{
357 gpio_free(gpio + 1);
358 gpio_free(gpio + 2);
359 gpio_free(gpio + 3);
360
361 if (sw_gpio > 0) {
362 device_remove_file(&client->dev, &dev_attr_user_sw);
363 gpio_free(sw_gpio);
364 }
365 return 0;
366}
367
368static struct pcf857x_platform_data pcf_data_u18 = {
369 .gpio_base = PCF_Uxx_BASE(1),
370 .n_latch = (1 << 3) | (1 << 2) | (1 << 1),
371 .setup = evm_u18_setup,
372 .teardown = evm_u18_teardown,
373};
374
375
376/* U35 - various I/O signals used to manage USB, CF, ATA, etc */
377
378static int
379evm_u35_setup(struct i2c_client *client, int gpio, unsigned ngpio, void *c)
380{
381 /* p0 = nDRV_VBUS (initial: don't supply it) */
382 gpio_request(gpio + 0, "nDRV_VBUS");
383 gpio_direction_output(gpio + 0, 1);
384
385 /* p1 = VDDIMX_EN */
386 gpio_request(gpio + 1, "VDDIMX_EN");
387 gpio_direction_output(gpio + 1, 1);
388
389 /* p2 = VLYNQ_EN */
390 gpio_request(gpio + 2, "VLYNQ_EN");
391 gpio_direction_output(gpio + 2, 1);
392
393 /* p3 = n3V3_CF_RESET (initial: stay in reset) */
394 gpio_request(gpio + 3, "nCF_RESET");
395 gpio_direction_output(gpio + 3, 0);
396
397 /* (p4 unused) */
398
399 /* p5 = 1V8_WLAN_RESET (initial: stay in reset) */
400 gpio_request(gpio + 5, "WLAN_RESET");
401 gpio_direction_output(gpio + 5, 1);
402
403 /* p6 = nATA_SEL (initial: select) */
404 gpio_request(gpio + 6, "nATA_SEL");
405 gpio_direction_output(gpio + 6, 0);
406
407 /* p7 = nCF_SEL (initial: deselect) */
408 gpio_request(gpio + 7, "nCF_SEL");
409 gpio_direction_output(gpio + 7, 1);
410
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500411 /* irlml6401 switches over 1A, in under 8 msec;
412 * now it can be managed by nDRV_VBUS ...
413 */
David Brownell34f32c92009-02-20 13:45:17 -0800414 setup_usb(500, 8);
415
David Brownell7bff3c42008-09-07 23:43:02 -0700416 return 0;
417}
418
419static int
420evm_u35_teardown(struct i2c_client *client, int gpio, unsigned ngpio, void *c)
421{
422 gpio_free(gpio + 7);
423 gpio_free(gpio + 6);
424 gpio_free(gpio + 5);
425 gpio_free(gpio + 3);
426 gpio_free(gpio + 2);
427 gpio_free(gpio + 1);
428 gpio_free(gpio + 0);
429 return 0;
430}
431
432static struct pcf857x_platform_data pcf_data_u35 = {
433 .gpio_base = PCF_Uxx_BASE(2),
434 .setup = evm_u35_setup,
435 .teardown = evm_u35_teardown,
436};
437
438/*----------------------------------------------------------------------*/
439
440/* Most of this EEPROM is unused, but U-Boot uses some data:
441 * - 0x7f00, 6 bytes Ethernet Address
442 * - 0x0039, 1 byte NTSC vs PAL (bit 0x80 == PAL)
443 * - ... newer boards may have more
444 */
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500445static struct memory_accessor *at24_mem_acc;
446
447static void at24_setup(struct memory_accessor *mem_acc, void *context)
448{
Kevin Hilmanac7b75b2009-05-07 06:19:40 -0700449 char mac_addr[ETH_ALEN];
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500450
451 at24_mem_acc = mem_acc;
452
453 /* Read MAC addr from EEPROM */
Kevin Hilmanac7b75b2009-05-07 06:19:40 -0700454 if (at24_mem_acc->read(at24_mem_acc, mac_addr, 0x7f00, ETH_ALEN) ==
455 ETH_ALEN) {
456 printk(KERN_INFO "Read MAC addr from EEPROM: %pM\n", mac_addr);
457 memcpy(dm644x_evm_emac_pdata.mac_addr, mac_addr, ETH_ALEN);
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500458 }
459}
460
David Brownell7bff3c42008-09-07 23:43:02 -0700461static struct at24_platform_data eeprom_info = {
462 .byte_len = (256*1024) / 8,
463 .page_size = 64,
464 .flags = AT24_FLAG_ADDR16,
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500465 .setup = at24_setup,
David Brownell7bff3c42008-09-07 23:43:02 -0700466};
467
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500468/*
469 * MSP430 supports RTC, card detection, input from IR remote, and
470 * a bit more. It triggers interrupts on GPIO(7) from pressing
471 * buttons on the IR remote, and for card detect switches.
472 */
473static struct i2c_client *dm6446evm_msp;
474
475static int dm6446evm_msp_probe(struct i2c_client *client,
476 const struct i2c_device_id *id)
477{
478 dm6446evm_msp = client;
479 return 0;
480}
481
482static int dm6446evm_msp_remove(struct i2c_client *client)
483{
484 dm6446evm_msp = NULL;
485 return 0;
486}
487
488static const struct i2c_device_id dm6446evm_msp_ids[] = {
489 { "dm6446evm_msp", 0, },
490 { /* end of list */ },
491};
492
493static struct i2c_driver dm6446evm_msp_driver = {
494 .driver.name = "dm6446evm_msp",
495 .id_table = dm6446evm_msp_ids,
496 .probe = dm6446evm_msp_probe,
497 .remove = dm6446evm_msp_remove,
498};
499
500static int dm6444evm_msp430_get_pins(void)
501{
502 static const char txbuf[2] = { 2, 4, };
503 char buf[4];
504 struct i2c_msg msg[2] = {
505 {
506 .addr = dm6446evm_msp->addr,
507 .flags = 0,
508 .len = 2,
509 .buf = (void __force *)txbuf,
510 },
511 {
512 .addr = dm6446evm_msp->addr,
513 .flags = I2C_M_RD,
514 .len = 4,
515 .buf = buf,
516 },
517 };
518 int status;
519
520 if (!dm6446evm_msp)
521 return -ENXIO;
522
523 /* Command 4 == get input state, returns port 2 and port3 data
524 * S Addr W [A] len=2 [A] cmd=4 [A]
525 * RS Addr R [A] [len=4] A [cmd=4] A [port2] A [port3] N P
526 */
527 status = i2c_transfer(dm6446evm_msp->adapter, msg, 2);
528 if (status < 0)
529 return status;
530
531 dev_dbg(&dm6446evm_msp->dev,
532 "PINS: %02x %02x %02x %02x\n",
533 buf[0], buf[1], buf[2], buf[3]);
534
535 return (buf[3] << 8) | buf[2];
536}
537
Kevin Hilman2dbf56ae2009-05-11 15:55:03 -0700538static int dm6444evm_mmc_get_cd(int module)
539{
540 int status = dm6444evm_msp430_get_pins();
541
542 return (status < 0) ? status : !(status & BIT(1));
543}
544
545static int dm6444evm_mmc_get_ro(int module)
546{
547 int status = dm6444evm_msp430_get_pins();
548
549 return (status < 0) ? status : status & BIT(6 + 8);
550}
551
552static struct davinci_mmc_config dm6446evm_mmc_config = {
553 .get_cd = dm6444evm_mmc_get_cd,
554 .get_ro = dm6444evm_mmc_get_ro,
555 .wires = 4,
556 .version = MMC_CTLR_VERSION_1
557};
558
David Brownell7bff3c42008-09-07 23:43:02 -0700559static struct i2c_board_info __initdata i2c_info[] = {
560 {
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500561 I2C_BOARD_INFO("dm6446evm_msp", 0x23),
562 },
563 {
David Brownell7bff3c42008-09-07 23:43:02 -0700564 I2C_BOARD_INFO("pcf8574", 0x38),
565 .platform_data = &pcf_data_u2,
566 },
567 {
568 I2C_BOARD_INFO("pcf8574", 0x39),
569 .platform_data = &pcf_data_u18,
570 },
571 {
572 I2C_BOARD_INFO("pcf8574", 0x3a),
573 .platform_data = &pcf_data_u35,
574 },
575 {
576 I2C_BOARD_INFO("24c256", 0x50),
577 .platform_data = &eeprom_info,
578 },
579 /* ALSO:
580 * - tvl320aic33 audio codec (0x1b)
David Brownell7bff3c42008-09-07 23:43:02 -0700581 * - tvp5146 video decoder (0x5d)
582 */
583};
584
585/* The msp430 uses a slow bitbanged I2C implementation (ergo 20 KHz),
586 * which requires 100 usec of idle bus after i2c writes sent to it.
587 */
588static struct davinci_i2c_platform_data i2c_pdata = {
589 .bus_freq = 20 /* kHz */,
590 .bus_delay = 100 /* usec */,
591};
592
593static void __init evm_init_i2c(void)
594{
595 davinci_init_i2c(&i2c_pdata);
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500596 i2c_add_driver(&dm6446evm_msp_driver);
David Brownell7bff3c42008-09-07 23:43:02 -0700597 i2c_register_board_info(1, i2c_info, ARRAY_SIZE(i2c_info));
598}
599
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100600static struct platform_device *davinci_evm_devices[] __initdata = {
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500601 &davinci_fb_device,
602 &rtc_dev,
603};
604
605static struct davinci_uart_config uart_config __initdata = {
606 .enabled_uarts = (1 << 0),
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100607};
608
609static void __init
610davinci_evm_map_io(void)
611{
612 davinci_map_common_io();
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500613 dm644x_init();
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100614}
615
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500616static int davinci_phy_fixup(struct phy_device *phydev)
617{
618 unsigned int control;
619 /* CRITICAL: Fix for increasing PHY signal drive strength for
620 * TX lockup issue. On DaVinci EVM, the Intel LXT971 PHY
621 * signal strength was low causing TX to fail randomly. The
622 * fix is to Set bit 11 (Increased MII drive strength) of PHY
623 * register 26 (Digital Config register) on this phy. */
624 control = phy_read(phydev, 26);
625 phy_write(phydev, 26, (control | 0x800));
626 return 0;
627}
628
629#if defined(CONFIG_BLK_DEV_PALMCHIP_BK3710) || \
630 defined(CONFIG_BLK_DEV_PALMCHIP_BK3710_MODULE)
631#define HAS_ATA 1
632#else
633#define HAS_ATA 0
634#endif
635
636#if defined(CONFIG_MTD_PHYSMAP) || \
637 defined(CONFIG_MTD_PHYSMAP_MODULE)
638#define HAS_NOR 1
639#else
640#define HAS_NOR 0
641#endif
642
643#if defined(CONFIG_MTD_NAND_DAVINCI) || \
644 defined(CONFIG_MTD_NAND_DAVINCI_MODULE)
645#define HAS_NAND 1
646#else
647#define HAS_NAND 0
648#endif
649
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100650static __init void davinci_evm_init(void)
651{
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500652 struct clk *aemif_clk;
653
654 aemif_clk = clk_get(NULL, "aemif");
655 clk_enable(aemif_clk);
656
657 if (HAS_ATA) {
658 if (HAS_NAND || HAS_NOR)
659 pr_warning("WARNING: both IDE and Flash are "
660 "enabled, but they share AEMIF pins.\n"
661 "\tDisable IDE for NAND/NOR support.\n");
662 davinci_cfg_reg(DM644X_HPIEN_DISABLE);
663 davinci_cfg_reg(DM644X_ATAEN);
664 davinci_cfg_reg(DM644X_HDIREN);
665 platform_device_register(&ide_dev);
666 } else if (HAS_NAND || HAS_NOR) {
667 davinci_cfg_reg(DM644X_HPIEN_DISABLE);
668 davinci_cfg_reg(DM644X_ATAEN_DISABLE);
669
670 /* only one device will be jumpered and detected */
671 if (HAS_NAND) {
672 platform_device_register(&davinci_evm_nandflash_device);
673 evm_leds[7].default_trigger = "nand-disk";
674 if (HAS_NOR)
675 pr_warning("WARNING: both NAND and NOR flash "
676 "are enabled; disable one of them.\n");
677 } else if (HAS_NOR)
678 platform_device_register(&davinci_evm_norflash_device);
679 }
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100680
681 platform_add_devices(davinci_evm_devices,
682 ARRAY_SIZE(davinci_evm_devices));
David Brownell7bff3c42008-09-07 23:43:02 -0700683 evm_init_i2c();
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500684
Kevin Hilman2dbf56ae2009-05-11 15:55:03 -0700685 davinci_setup_mmc(0, &dm6446evm_mmc_config);
686
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500687 davinci_serial_init(&uart_config);
688
Kevin Hilmanac7b75b2009-05-07 06:19:40 -0700689 dm644x_init_emac(&dm644x_evm_emac_pdata);
690
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500691 /* Register the fixup for PHY on DaVinci */
692 phy_register_fixup_for_uid(LXT971_PHY_ID, LXT971_PHY_MASK,
693 davinci_phy_fixup);
694
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100695}
696
697static __init void davinci_evm_irq_init(void)
698{
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100699 davinci_irq_init();
700}
701
Kevin Hilmand0e47fb2009-04-14 11:30:11 -0500702MACHINE_START(DAVINCI_EVM, "DaVinci DM644x EVM")
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100703 /* Maintainer: MontaVista Software <source@mvista.com> */
704 .phys_io = IO_PHYS,
Kevin Hilmanac7643e2008-09-15 04:09:14 -0700705 .io_pg_offst = (__IO_ADDRESS(IO_PHYS) >> 18) & 0xfffc,
Kevin Hilman7c6337e2007-04-30 19:37:19 +0100706 .boot_params = (DAVINCI_DDR_BASE + 0x100),
707 .map_io = davinci_evm_map_io,
708 .init_irq = davinci_evm_irq_init,
709 .timer = &davinci_timer,
710 .init_machine = davinci_evm_init,
711MACHINE_END