davinci: EMAC platform support
[linux-2.6] / arch / arm / mach-davinci / board-dm644x-evm.c
1 /*
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>
16 #include <linux/gpio.h>
17 #include <linux/leds.h>
18 #include <linux/memory.h>
19
20 #include <linux/i2c.h>
21 #include <linux/i2c/pcf857x.h>
22 #include <linux/i2c/at24.h>
23 #include <linux/etherdevice.h>
24 #include <linux/mtd/mtd.h>
25 #include <linux/mtd/nand.h>
26 #include <linux/mtd/partitions.h>
27 #include <linux/mtd/physmap.h>
28 #include <linux/io.h>
29 #include <linux/phy.h>
30 #include <linux/clk.h>
31
32 #include <asm/setup.h>
33 #include <asm/mach-types.h>
34
35 #include <asm/mach/arch.h>
36 #include <asm/mach/map.h>
37 #include <asm/mach/flash.h>
38
39 #include <mach/dm644x.h>
40 #include <mach/common.h>
41 #include <mach/emac.h>
42 #include <mach/i2c.h>
43 #include <mach/serial.h>
44 #include <mach/mux.h>
45 #include <mach/psc.h>
46 #include <mach/nand.h>
47 #include <mach/mmc.h>
48
49 #define DM644X_EVM_PHY_MASK             (0x2)
50 #define DM644X_EVM_MDIO_FREQUENCY       (2200000) /* PHY bus frequency */
51
52 #define DAVINCI_CFC_ATA_BASE              0x01C66000
53
54 #define DAVINCI_ASYNC_EMIF_CONTROL_BASE   0x01e00000
55 #define DAVINCI_ASYNC_EMIF_DATA_CE0_BASE  0x02000000
56 #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
59
60 #define LXT971_PHY_ID   (0x001378e2)
61 #define LXT971_PHY_MASK (0xfffffff0)
62
63 static 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
68 static struct mtd_partition davinci_evm_norflash_partitions[] = {
69         /* bootloader (UBL, U-Boot, etc) in first 5 sectors */
70         {
71                 .name           = "bootloader",
72                 .offset         = 0,
73                 .size           = 5 * SZ_64K,
74                 .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
99 static struct physmap_flash_data davinci_evm_norflash_data = {
100         .width          = 2,
101         .parts          = davinci_evm_norflash_partitions,
102         .nr_parts       = ARRAY_SIZE(davinci_evm_norflash_partitions),
103 };
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 */
107 static 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,
110         .flags          = IORESOURCE_MEM,
111 };
112
113 static struct platform_device davinci_evm_norflash_device = {
114         .name           = "physmap-flash",
115         .id             = 0,
116         .dev            = {
117                 .platform_data  = &davinci_evm_norflash_data,
118         },
119         .num_resources  = 1,
120         .resource       = &davinci_evm_norflash_resource,
121 };
122
123 /* 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  */
127 struct mtd_partition davinci_evm_nandflash_partition[] = {
128         /* 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          */
135         {
136                 .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,
152                 .size           = MTDPART_SIZ_FULL,
153                 .mask_flags     = 0,
154         }
155         /* 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          */
159 };
160
161 static 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,
165         .options        = NAND_USE_FLASH_BBT,
166 };
167
168 static 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
180 static 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
190 static u64 davinci_fb_dma_mask = DMA_BIT_MASK(32);
191
192 static struct platform_device davinci_fb_device = {
193         .name           = "davincifb",
194         .id             = -1,
195         .dev = {
196                 .dma_mask               = &davinci_fb_dma_mask,
197                 .coherent_dma_mask      = DMA_BIT_MASK(32),
198         },
199         .num_resources = 0,
200 };
201
202 static struct platform_device rtc_dev = {
203         .name           = "rtc_davinci_evm",
204         .id             = -1,
205 };
206
207 static 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
220 static u64 ide_dma_mask = DMA_BIT_MASK(32);
221
222 static 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,
229                 .coherent_dma_mask      = DMA_BIT_MASK(32),
230         },
231 };
232
233 /*----------------------------------------------------------------------*/
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
244 static 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
258 static const struct gpio_led_platform_data evm_led_data = {
259         .num_leds       = ARRAY_SIZE(evm_leds),
260         .leds           = evm_leds,
261 };
262
263 static struct platform_device *evm_led_dev;
264
265 static int
266 evm_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
292 static int
293 evm_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
302 static 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
311 static int sw_gpio;
312
313 static ssize_t
314 sw_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
322 static DEVICE_ATTR(user_sw, S_IRUGO, sw_show, NULL);
323
324 static int
325 evm_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
354 static int
355 evm_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
368 static 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
378 static int
379 evm_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
411         /* irlml6401 switches over 1A, in under 8 msec;
412          * now it can be managed by nDRV_VBUS ...
413          */
414         setup_usb(500, 8);
415
416         return 0;
417 }
418
419 static int
420 evm_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
432 static 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  */
445 static struct memory_accessor *at24_mem_acc;
446
447 static void at24_setup(struct memory_accessor *mem_acc, void *context)
448 {
449         char mac_addr[ETH_ALEN];
450
451         at24_mem_acc = mem_acc;
452
453         /* Read MAC addr from EEPROM */
454         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);
458         }
459 }
460
461 static struct at24_platform_data eeprom_info = {
462         .byte_len       = (256*1024) / 8,
463         .page_size      = 64,
464         .flags          = AT24_FLAG_ADDR16,
465         .setup          = at24_setup,
466 };
467
468 /*
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  */
473 static struct i2c_client *dm6446evm_msp;
474
475 static 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
482 static int dm6446evm_msp_remove(struct i2c_client *client)
483 {
484         dm6446evm_msp = NULL;
485         return 0;
486 }
487
488 static const struct i2c_device_id dm6446evm_msp_ids[] = {
489         { "dm6446evm_msp", 0, },
490         { /* end of list */ },
491 };
492
493 static 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
500 static 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
538 static 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
545 static 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
552 static 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
559 static struct i2c_board_info __initdata i2c_info[] =  {
560         {
561                 I2C_BOARD_INFO("dm6446evm_msp", 0x23),
562         },
563         {
564                 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)
581          * - 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  */
588 static struct davinci_i2c_platform_data i2c_pdata = {
589         .bus_freq       = 20 /* kHz */,
590         .bus_delay      = 100 /* usec */,
591 };
592
593 static void __init evm_init_i2c(void)
594 {
595         davinci_init_i2c(&i2c_pdata);
596         i2c_add_driver(&dm6446evm_msp_driver);
597         i2c_register_board_info(1, i2c_info, ARRAY_SIZE(i2c_info));
598 }
599
600 static struct platform_device *davinci_evm_devices[] __initdata = {
601         &davinci_fb_device,
602         &rtc_dev,
603 };
604
605 static struct davinci_uart_config uart_config __initdata = {
606         .enabled_uarts = (1 << 0),
607 };
608
609 static void __init
610 davinci_evm_map_io(void)
611 {
612         davinci_map_common_io();
613         dm644x_init();
614 }
615
616 static 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
650 static __init void davinci_evm_init(void)
651 {
652         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         }
680
681         platform_add_devices(davinci_evm_devices,
682                              ARRAY_SIZE(davinci_evm_devices));
683         evm_init_i2c();
684
685         davinci_setup_mmc(0, &dm6446evm_mmc_config);
686
687         davinci_serial_init(&uart_config);
688
689         dm644x_init_emac(&dm644x_evm_emac_pdata);
690
691         /* Register the fixup for PHY on DaVinci */
692         phy_register_fixup_for_uid(LXT971_PHY_ID, LXT971_PHY_MASK,
693                                         davinci_phy_fixup);
694
695 }
696
697 static __init void davinci_evm_irq_init(void)
698 {
699         davinci_irq_init();
700 }
701
702 MACHINE_START(DAVINCI_EVM, "DaVinci DM644x EVM")
703         /* Maintainer: MontaVista Software <source@mvista.com> */
704         .phys_io      = IO_PHYS,
705         .io_pg_offst  = (__IO_ADDRESS(IO_PHYS) >> 18) & 0xfffc,
706         .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,
711 MACHINE_END