GNU Linux-libre 5.15.137-gnu
[releases.git] / arch / arm / mach-davinci / board-da830-evm.c
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * TI DA830/OMAP L137 EVM board
4  *
5  * Author: Mark A. Greer <mgreer@mvista.com>
6  * Derived from: arch/arm/mach-davinci/board-dm644x-evm.c
7  *
8  * 2007, 2009 (c) MontaVista Software, Inc.
9  */
10 #include <linux/kernel.h>
11 #include <linux/init.h>
12 #include <linux/console.h>
13 #include <linux/interrupt.h>
14 #include <linux/gpio.h>
15 #include <linux/gpio/machine.h>
16 #include <linux/platform_device.h>
17 #include <linux/i2c.h>
18 #include <linux/platform_data/pcf857x.h>
19 #include <linux/property.h>
20 #include <linux/mtd/mtd.h>
21 #include <linux/mtd/partitions.h>
22 #include <linux/spi/spi.h>
23 #include <linux/spi/flash.h>
24 #include <linux/platform_data/gpio-davinci.h>
25 #include <linux/platform_data/mtd-davinci.h>
26 #include <linux/platform_data/mtd-davinci-aemif.h>
27 #include <linux/platform_data/spi-davinci.h>
28 #include <linux/platform_data/usb-davinci.h>
29 #include <linux/platform_data/ti-aemif.h>
30 #include <linux/regulator/fixed.h>
31 #include <linux/regulator/machine.h>
32 #include <linux/nvmem-provider.h>
33
34 #include <asm/mach-types.h>
35 #include <asm/mach/arch.h>
36
37 #include <mach/common.h>
38 #include <mach/mux.h>
39 #include <mach/da8xx.h>
40
41 #include "irqs.h"
42
43 #define DA830_EVM_PHY_ID                ""
44 /*
45  * USB1 VBUS is controlled by GPIO1[15], over-current is reported on GPIO2[4].
46  */
47 #define ON_BD_USB_DRV   GPIO_TO_PIN(1, 15)
48 #define ON_BD_USB_OVC   GPIO_TO_PIN(2, 4)
49
50 static const short da830_evm_usb11_pins[] = {
51         DA830_GPIO1_15, DA830_GPIO2_4,
52         -1
53 };
54
55 static struct regulator_consumer_supply da830_evm_usb_supplies[] = {
56         REGULATOR_SUPPLY("vbus", NULL),
57 };
58
59 static struct regulator_init_data da830_evm_usb_vbus_data = {
60         .consumer_supplies      = da830_evm_usb_supplies,
61         .num_consumer_supplies  = ARRAY_SIZE(da830_evm_usb_supplies),
62         .constraints    = {
63                 .valid_ops_mask = REGULATOR_CHANGE_STATUS,
64         },
65 };
66
67 static struct fixed_voltage_config da830_evm_usb_vbus = {
68         .supply_name            = "vbus",
69         .microvolts             = 33000000,
70         .init_data              = &da830_evm_usb_vbus_data,
71 };
72
73 static struct platform_device da830_evm_usb_vbus_device = {
74         .name           = "reg-fixed-voltage",
75         .id             = 0,
76         .dev            = {
77                 .platform_data = &da830_evm_usb_vbus,
78         },
79 };
80
81 static struct gpiod_lookup_table da830_evm_usb_oc_gpio_lookup = {
82         .dev_id         = "ohci-da8xx",
83         .table = {
84                 GPIO_LOOKUP("davinci_gpio", ON_BD_USB_OVC, "oc", 0),
85                 { }
86         },
87 };
88
89 static struct gpiod_lookup_table da830_evm_usb_vbus_gpio_lookup = {
90         .dev_id         = "reg-fixed-voltage.0",
91         .table = {
92                 GPIO_LOOKUP("davinci_gpio", ON_BD_USB_DRV, NULL, 0),
93                 { }
94         },
95 };
96
97 static struct gpiod_lookup_table *da830_evm_usb_gpio_lookups[] = {
98         &da830_evm_usb_oc_gpio_lookup,
99         &da830_evm_usb_vbus_gpio_lookup,
100 };
101
102 static struct da8xx_ohci_root_hub da830_evm_usb11_pdata = {
103         /* TPS2065 switch @ 5V */
104         .potpgt         = (3 + 1) / 2,  /* 3 ms max */
105 };
106
107 static __init void da830_evm_usb_init(void)
108 {
109         int ret;
110
111         ret = da8xx_register_usb_phy_clocks();
112         if (ret)
113                 pr_warn("%s: USB PHY CLK registration failed: %d\n",
114                         __func__, ret);
115
116         gpiod_add_lookup_tables(da830_evm_usb_gpio_lookups,
117                                 ARRAY_SIZE(da830_evm_usb_gpio_lookups));
118
119         ret = da8xx_register_usb_phy();
120         if (ret)
121                 pr_warn("%s: USB PHY registration failed: %d\n",
122                         __func__, ret);
123
124         ret = davinci_cfg_reg(DA830_USB0_DRVVBUS);
125         if (ret)
126                 pr_warn("%s: USB 2.0 PinMux setup failed: %d\n", __func__, ret);
127         else {
128                 /*
129                  * TPS2065 switch @ 5V supplies 1 A (sustains 1.5 A),
130                  * with the power on to power good time of 3 ms.
131                  */
132                 ret = da8xx_register_usb20(1000, 3);
133                 if (ret)
134                         pr_warn("%s: USB 2.0 registration failed: %d\n",
135                                 __func__, ret);
136         }
137
138         ret = davinci_cfg_reg_list(da830_evm_usb11_pins);
139         if (ret) {
140                 pr_warn("%s: USB 1.1 PinMux setup failed: %d\n", __func__, ret);
141                 return;
142         }
143
144         ret = platform_device_register(&da830_evm_usb_vbus_device);
145         if (ret) {
146                 pr_warn("%s: Unable to register the vbus supply\n", __func__);
147                 return;
148         }
149
150         ret = da8xx_register_usb11(&da830_evm_usb11_pdata);
151         if (ret)
152                 pr_warn("%s: USB 1.1 registration failed: %d\n", __func__, ret);
153 }
154
155 static const short da830_evm_mcasp1_pins[] = {
156         DA830_AHCLKX1, DA830_ACLKX1, DA830_AFSX1, DA830_AHCLKR1, DA830_AFSR1,
157         DA830_AMUTE1, DA830_AXR1_0, DA830_AXR1_1, DA830_AXR1_2, DA830_AXR1_5,
158         DA830_ACLKR1, DA830_AXR1_6, DA830_AXR1_7, DA830_AXR1_8, DA830_AXR1_10,
159         DA830_AXR1_11,
160         -1
161 };
162
163 static u8 da830_iis_serializer_direction[] = {
164         RX_MODE,        INACTIVE_MODE,  INACTIVE_MODE,  INACTIVE_MODE,
165         INACTIVE_MODE,  TX_MODE,        INACTIVE_MODE,  INACTIVE_MODE,
166         INACTIVE_MODE,  INACTIVE_MODE,  INACTIVE_MODE,  INACTIVE_MODE,
167 };
168
169 static struct snd_platform_data da830_evm_snd_data = {
170         .tx_dma_offset  = 0x2000,
171         .rx_dma_offset  = 0x2000,
172         .op_mode        = DAVINCI_MCASP_IIS_MODE,
173         .num_serializer = ARRAY_SIZE(da830_iis_serializer_direction),
174         .tdm_slots      = 2,
175         .serial_dir     = da830_iis_serializer_direction,
176         .asp_chan_q     = EVENTQ_0,
177         .version        = MCASP_VERSION_2,
178         .txnumevt       = 1,
179         .rxnumevt       = 1,
180 };
181
182 /*
183  * GPIO2[1] is used as MMC_SD_WP and GPIO2[2] as MMC_SD_INS.
184  */
185 static const short da830_evm_mmc_sd_pins[] = {
186         DA830_MMCSD_DAT_0, DA830_MMCSD_DAT_1, DA830_MMCSD_DAT_2,
187         DA830_MMCSD_DAT_3, DA830_MMCSD_DAT_4, DA830_MMCSD_DAT_5,
188         DA830_MMCSD_DAT_6, DA830_MMCSD_DAT_7, DA830_MMCSD_CLK,
189         DA830_MMCSD_CMD,   DA830_GPIO2_1,     DA830_GPIO2_2,
190         -1
191 };
192
193 #define DA830_MMCSD_WP_PIN              GPIO_TO_PIN(2, 1)
194 #define DA830_MMCSD_CD_PIN              GPIO_TO_PIN(2, 2)
195
196 static struct gpiod_lookup_table mmc_gpios_table = {
197         .dev_id = "da830-mmc.0",
198         .table = {
199                 /* gpio chip 1 contains gpio range 32-63 */
200                 GPIO_LOOKUP("davinci_gpio", DA830_MMCSD_CD_PIN, "cd",
201                             GPIO_ACTIVE_LOW),
202                 GPIO_LOOKUP("davinci_gpio", DA830_MMCSD_WP_PIN, "wp",
203                             GPIO_ACTIVE_LOW),
204                 { }
205         },
206 };
207
208 static struct davinci_mmc_config da830_evm_mmc_config = {
209         .wires                  = 8,
210         .max_freq               = 50000000,
211         .caps                   = MMC_CAP_MMC_HIGHSPEED | MMC_CAP_SD_HIGHSPEED,
212 };
213
214 static inline void da830_evm_init_mmc(void)
215 {
216         int ret;
217
218         ret = davinci_cfg_reg_list(da830_evm_mmc_sd_pins);
219         if (ret) {
220                 pr_warn("%s: mmc/sd mux setup failed: %d\n", __func__, ret);
221                 return;
222         }
223
224         gpiod_add_lookup_table(&mmc_gpios_table);
225
226         ret = da8xx_register_mmcsd0(&da830_evm_mmc_config);
227         if (ret) {
228                 pr_warn("%s: mmc/sd registration failed: %d\n", __func__, ret);
229                 gpiod_remove_lookup_table(&mmc_gpios_table);
230         }
231 }
232
233 #define HAS_MMC         IS_ENABLED(CONFIG_MMC_DAVINCI)
234
235 #ifdef CONFIG_DA830_UI_NAND
236 static struct mtd_partition da830_evm_nand_partitions[] = {
237         /* bootloader (U-Boot, etc) in first sector */
238         [0] = {
239                 .name           = "bootloader",
240                 .offset         = 0,
241                 .size           = SZ_128K,
242                 .mask_flags     = MTD_WRITEABLE,        /* force read-only */
243         },
244         /* bootloader params in the next sector */
245         [1] = {
246                 .name           = "params",
247                 .offset         = MTDPART_OFS_APPEND,
248                 .size           = SZ_128K,
249                 .mask_flags     = MTD_WRITEABLE,        /* force read-only */
250         },
251         /* kernel */
252         [2] = {
253                 .name           = "kernel",
254                 .offset         = MTDPART_OFS_APPEND,
255                 .size           = SZ_2M,
256                 .mask_flags     = 0,
257         },
258         /* file system */
259         [3] = {
260                 .name           = "filesystem",
261                 .offset         = MTDPART_OFS_APPEND,
262                 .size           = MTDPART_SIZ_FULL,
263                 .mask_flags     = 0,
264         }
265 };
266
267 /* flash bbt descriptors */
268 static uint8_t da830_evm_nand_bbt_pattern[] = { 'B', 'b', 't', '0' };
269 static uint8_t da830_evm_nand_mirror_pattern[] = { '1', 't', 'b', 'B' };
270
271 static struct nand_bbt_descr da830_evm_nand_bbt_main_descr = {
272         .options        = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE |
273                           NAND_BBT_WRITE | NAND_BBT_2BIT |
274                           NAND_BBT_VERSION | NAND_BBT_PERCHIP,
275         .offs           = 2,
276         .len            = 4,
277         .veroffs        = 16,
278         .maxblocks      = 4,
279         .pattern        = da830_evm_nand_bbt_pattern
280 };
281
282 static struct nand_bbt_descr da830_evm_nand_bbt_mirror_descr = {
283         .options        = NAND_BBT_LASTBLOCK | NAND_BBT_CREATE |
284                           NAND_BBT_WRITE | NAND_BBT_2BIT |
285                           NAND_BBT_VERSION | NAND_BBT_PERCHIP,
286         .offs           = 2,
287         .len            = 4,
288         .veroffs        = 16,
289         .maxblocks      = 4,
290         .pattern        = da830_evm_nand_mirror_pattern
291 };
292
293 static struct davinci_aemif_timing da830_evm_nandflash_timing = {
294         .wsetup         = 24,
295         .wstrobe        = 21,
296         .whold          = 14,
297         .rsetup         = 19,
298         .rstrobe        = 50,
299         .rhold          = 0,
300         .ta             = 20,
301 };
302
303 static struct davinci_nand_pdata da830_evm_nand_pdata = {
304         .core_chipsel   = 1,
305         .parts          = da830_evm_nand_partitions,
306         .nr_parts       = ARRAY_SIZE(da830_evm_nand_partitions),
307         .engine_type    = NAND_ECC_ENGINE_TYPE_ON_HOST,
308         .ecc_bits       = 4,
309         .bbt_options    = NAND_BBT_USE_FLASH,
310         .bbt_td         = &da830_evm_nand_bbt_main_descr,
311         .bbt_md         = &da830_evm_nand_bbt_mirror_descr,
312         .timing         = &da830_evm_nandflash_timing,
313 };
314
315 static struct resource da830_evm_nand_resources[] = {
316         [0] = {         /* First memory resource is NAND I/O window */
317                 .start  = DA8XX_AEMIF_CS3_BASE,
318                 .end    = DA8XX_AEMIF_CS3_BASE + PAGE_SIZE - 1,
319                 .flags  = IORESOURCE_MEM,
320         },
321         [1] = {         /* Second memory resource is AEMIF control registers */
322                 .start  = DA8XX_AEMIF_CTL_BASE,
323                 .end    = DA8XX_AEMIF_CTL_BASE + SZ_32K - 1,
324                 .flags  = IORESOURCE_MEM,
325         },
326 };
327
328 static struct platform_device da830_evm_aemif_devices[] = {
329         {
330                 .name           = "davinci_nand",
331                 .id             = 1,
332                 .dev            = {
333                         .platform_data  = &da830_evm_nand_pdata,
334                 },
335                 .num_resources  = ARRAY_SIZE(da830_evm_nand_resources),
336                 .resource       = da830_evm_nand_resources,
337         },
338 };
339
340 static struct resource da830_evm_aemif_resource[] = {
341         {
342                 .start  = DA8XX_AEMIF_CTL_BASE,
343                 .end    = DA8XX_AEMIF_CTL_BASE + SZ_32K - 1,
344                 .flags  = IORESOURCE_MEM,
345         },
346 };
347
348 static struct aemif_abus_data da830_evm_aemif_abus_data[] = {
349         {
350                 .cs     = 3,
351         },
352 };
353
354 static struct aemif_platform_data da830_evm_aemif_pdata = {
355         .abus_data              = da830_evm_aemif_abus_data,
356         .num_abus_data          = ARRAY_SIZE(da830_evm_aemif_abus_data),
357         .sub_devices            = da830_evm_aemif_devices,
358         .num_sub_devices        = ARRAY_SIZE(da830_evm_aemif_devices),
359         .cs_offset              = 2,
360 };
361
362 static struct platform_device da830_evm_aemif_device = {
363         .name           = "ti-aemif",
364         .id             = -1,
365         .dev = {
366                 .platform_data = &da830_evm_aemif_pdata,
367         },
368         .resource       = da830_evm_aemif_resource,
369         .num_resources  = ARRAY_SIZE(da830_evm_aemif_resource),
370 };
371
372 /*
373  * UI board NAND/NOR flashes only use 8-bit data bus.
374  */
375 static const short da830_evm_emif25_pins[] = {
376         DA830_EMA_D_0, DA830_EMA_D_1, DA830_EMA_D_2, DA830_EMA_D_3,
377         DA830_EMA_D_4, DA830_EMA_D_5, DA830_EMA_D_6, DA830_EMA_D_7,
378         DA830_EMA_A_0, DA830_EMA_A_1, DA830_EMA_A_2, DA830_EMA_A_3,
379         DA830_EMA_A_4, DA830_EMA_A_5, DA830_EMA_A_6, DA830_EMA_A_7,
380         DA830_EMA_A_8, DA830_EMA_A_9, DA830_EMA_A_10, DA830_EMA_A_11,
381         DA830_EMA_A_12, DA830_EMA_BA_0, DA830_EMA_BA_1, DA830_NEMA_WE,
382         DA830_NEMA_CS_2, DA830_NEMA_CS_3, DA830_NEMA_OE, DA830_EMA_WAIT_0,
383         -1
384 };
385
386 static inline void da830_evm_init_nand(int mux_mode)
387 {
388         int ret;
389
390         if (HAS_MMC) {
391                 pr_warn("WARNING: both MMC/SD and NAND are enabled, but they share AEMIF pins\n"
392                         "\tDisable MMC/SD for NAND support\n");
393                 return;
394         }
395
396         ret = davinci_cfg_reg_list(da830_evm_emif25_pins);
397         if (ret)
398                 pr_warn("%s: emif25 mux setup failed: %d\n", __func__, ret);
399
400         ret = platform_device_register(&da830_evm_aemif_device);
401         if (ret)
402                 pr_warn("%s: AEMIF device not registered\n", __func__);
403
404         gpio_direction_output(mux_mode, 1);
405 }
406 #else
407 static inline void da830_evm_init_nand(int mux_mode) { }
408 #endif
409
410 #ifdef CONFIG_DA830_UI_LCD
411 static inline void da830_evm_init_lcdc(int mux_mode)
412 {
413         int ret;
414
415         ret = davinci_cfg_reg_list(da830_lcdcntl_pins);
416         if (ret)
417                 pr_warn("%s: lcdcntl mux setup failed: %d\n", __func__, ret);
418
419         ret = da8xx_register_lcdc(&sharp_lcd035q3dg01_pdata);
420         if (ret)
421                 pr_warn("%s: lcd setup failed: %d\n", __func__, ret);
422
423         gpio_direction_output(mux_mode, 0);
424 }
425 #else
426 static inline void da830_evm_init_lcdc(int mux_mode) { }
427 #endif
428
429 static struct nvmem_cell_info da830_evm_nvmem_cells[] = {
430         {
431                 .name           = "macaddr",
432                 .offset         = 0x7f00,
433                 .bytes          = ETH_ALEN,
434         }
435 };
436
437 static struct nvmem_cell_table da830_evm_nvmem_cell_table = {
438         .nvmem_name     = "1-00500",
439         .cells          = da830_evm_nvmem_cells,
440         .ncells         = ARRAY_SIZE(da830_evm_nvmem_cells),
441 };
442
443 static struct nvmem_cell_lookup da830_evm_nvmem_cell_lookup = {
444         .nvmem_name     = "1-00500",
445         .cell_name      = "macaddr",
446         .dev_id         = "davinci_emac.1",
447         .con_id         = "mac-address",
448 };
449
450 static const struct property_entry da830_evm_i2c_eeprom_properties[] = {
451         PROPERTY_ENTRY_U32("pagesize", 64),
452         { }
453 };
454
455 static const struct software_node da830_evm_i2c_eeprom_node = {
456         .properties = da830_evm_i2c_eeprom_properties,
457 };
458
459 static int __init da830_evm_ui_expander_setup(struct i2c_client *client,
460                 int gpio, unsigned ngpio, void *context)
461 {
462         gpio_request(gpio + 6, "UI MUX_MODE");
463
464         /* Drive mux mode low to match the default without UI card */
465         gpio_direction_output(gpio + 6, 0);
466
467         da830_evm_init_lcdc(gpio + 6);
468
469         da830_evm_init_nand(gpio + 6);
470
471         return 0;
472 }
473
474 static int da830_evm_ui_expander_teardown(struct i2c_client *client, int gpio,
475                 unsigned ngpio, void *context)
476 {
477         gpio_free(gpio + 6);
478         return 0;
479 }
480
481 static struct pcf857x_platform_data __initdata da830_evm_ui_expander_info = {
482         .gpio_base      = DAVINCI_N_GPIO,
483         .setup          = da830_evm_ui_expander_setup,
484         .teardown       = da830_evm_ui_expander_teardown,
485 };
486
487 static struct i2c_board_info __initdata da830_evm_i2c_devices[] = {
488         {
489                 I2C_BOARD_INFO("24c256", 0x50),
490                 .swnode = &da830_evm_i2c_eeprom_node,
491         },
492         {
493                 I2C_BOARD_INFO("tlv320aic3x", 0x18),
494         },
495         {
496                 I2C_BOARD_INFO("pcf8574", 0x3f),
497                 .platform_data  = &da830_evm_ui_expander_info,
498         },
499 };
500
501 static struct davinci_i2c_platform_data da830_evm_i2c_0_pdata = {
502         .bus_freq       = 100,  /* kHz */
503         .bus_delay      = 0,    /* usec */
504 };
505
506 /*
507  * The following EDMA channels/slots are not being used by drivers (for
508  * example: Timer, GPIO, UART events etc) on da830/omap-l137 EVM, hence
509  * they are being reserved for codecs on the DSP side.
510  */
511 static const s16 da830_dma_rsv_chans[][2] = {
512         /* (offset, number) */
513         { 8,  2},
514         {12,  2},
515         {24,  4},
516         {30,  2},
517         {-1, -1}
518 };
519
520 static const s16 da830_dma_rsv_slots[][2] = {
521         /* (offset, number) */
522         { 8,  2},
523         {12,  2},
524         {24,  4},
525         {30, 26},
526         {-1, -1}
527 };
528
529 static struct edma_rsv_info da830_edma_rsv[] = {
530         {
531                 .rsv_chans      = da830_dma_rsv_chans,
532                 .rsv_slots      = da830_dma_rsv_slots,
533         },
534 };
535
536 static struct mtd_partition da830evm_spiflash_part[] = {
537         [0] = {
538                 .name = "DSP-UBL",
539                 .offset = 0,
540                 .size = SZ_8K,
541                 .mask_flags = MTD_WRITEABLE,
542         },
543         [1] = {
544                 .name = "ARM-UBL",
545                 .offset = MTDPART_OFS_APPEND,
546                 .size = SZ_16K + SZ_8K,
547                 .mask_flags = MTD_WRITEABLE,
548         },
549         [2] = {
550                 .name = "U-Boot",
551                 .offset = MTDPART_OFS_APPEND,
552                 .size = SZ_256K - SZ_32K,
553                 .mask_flags = MTD_WRITEABLE,
554         },
555         [3] = {
556                 .name = "U-Boot-Environment",
557                 .offset = MTDPART_OFS_APPEND,
558                 .size = SZ_16K,
559                 .mask_flags = 0,
560         },
561         [4] = {
562                 .name = "Kernel",
563                 .offset = MTDPART_OFS_APPEND,
564                 .size = MTDPART_SIZ_FULL,
565                 .mask_flags = 0,
566         },
567 };
568
569 static struct flash_platform_data da830evm_spiflash_data = {
570         .name           = "m25p80",
571         .parts          = da830evm_spiflash_part,
572         .nr_parts       = ARRAY_SIZE(da830evm_spiflash_part),
573         .type           = "w25x32",
574 };
575
576 static struct davinci_spi_config da830evm_spiflash_cfg = {
577         .io_type        = SPI_IO_TYPE_DMA,
578         .c2tdelay       = 8,
579         .t2cdelay       = 8,
580 };
581
582 static struct spi_board_info da830evm_spi_info[] = {
583         {
584                 .modalias               = "m25p80",
585                 .platform_data          = &da830evm_spiflash_data,
586                 .controller_data        = &da830evm_spiflash_cfg,
587                 .mode                   = SPI_MODE_0,
588                 .max_speed_hz           = 30000000,
589                 .bus_num                = 0,
590                 .chip_select            = 0,
591         },
592 };
593
594 static __init void da830_evm_init(void)
595 {
596         struct davinci_soc_info *soc_info = &davinci_soc_info;
597         int ret;
598
599         da830_register_clocks();
600
601         ret = da830_register_gpio();
602         if (ret)
603                 pr_warn("%s: GPIO init failed: %d\n", __func__, ret);
604
605         ret = da830_register_edma(da830_edma_rsv);
606         if (ret)
607                 pr_warn("%s: edma registration failed: %d\n", __func__, ret);
608
609         ret = davinci_cfg_reg_list(da830_i2c0_pins);
610         if (ret)
611                 pr_warn("%s: i2c0 mux setup failed: %d\n", __func__, ret);
612
613         ret = da8xx_register_i2c(0, &da830_evm_i2c_0_pdata);
614         if (ret)
615                 pr_warn("%s: i2c0 registration failed: %d\n", __func__, ret);
616
617         da830_evm_usb_init();
618
619         soc_info->emac_pdata->rmii_en = 1;
620         soc_info->emac_pdata->phy_id = DA830_EVM_PHY_ID;
621
622         ret = davinci_cfg_reg_list(da830_cpgmac_pins);
623         if (ret)
624                 pr_warn("%s: cpgmac mux setup failed: %d\n", __func__, ret);
625
626         ret = da8xx_register_emac();
627         if (ret)
628                 pr_warn("%s: emac registration failed: %d\n", __func__, ret);
629
630         ret = da8xx_register_watchdog();
631         if (ret)
632                 pr_warn("%s: watchdog registration failed: %d\n",
633                         __func__, ret);
634
635         davinci_serial_init(da8xx_serial_device);
636
637         nvmem_add_cell_table(&da830_evm_nvmem_cell_table);
638         nvmem_add_cell_lookups(&da830_evm_nvmem_cell_lookup, 1);
639
640         i2c_register_board_info(1, da830_evm_i2c_devices,
641                         ARRAY_SIZE(da830_evm_i2c_devices));
642
643         ret = davinci_cfg_reg_list(da830_evm_mcasp1_pins);
644         if (ret)
645                 pr_warn("%s: mcasp1 mux setup failed: %d\n", __func__, ret);
646
647         da8xx_register_mcasp(1, &da830_evm_snd_data);
648
649         da830_evm_init_mmc();
650
651         ret = da8xx_register_rtc();
652         if (ret)
653                 pr_warn("%s: rtc setup failed: %d\n", __func__, ret);
654
655         ret = spi_register_board_info(da830evm_spi_info,
656                                       ARRAY_SIZE(da830evm_spi_info));
657         if (ret)
658                 pr_warn("%s: spi info registration failed: %d\n",
659                         __func__, ret);
660
661         ret = da8xx_register_spi_bus(0, ARRAY_SIZE(da830evm_spi_info));
662         if (ret)
663                 pr_warn("%s: spi 0 registration failed: %d\n", __func__, ret);
664
665         regulator_has_full_constraints();
666 }
667
668 #ifdef CONFIG_SERIAL_8250_CONSOLE
669 static int __init da830_evm_console_init(void)
670 {
671         if (!machine_is_davinci_da830_evm())
672                 return 0;
673
674         return add_preferred_console("ttyS", 2, "115200");
675 }
676 console_initcall(da830_evm_console_init);
677 #endif
678
679 static void __init da830_evm_map_io(void)
680 {
681         da830_init();
682 }
683
684 MACHINE_START(DAVINCI_DA830_EVM, "DaVinci DA830/OMAP-L137/AM17x EVM")
685         .atag_offset    = 0x100,
686         .map_io         = da830_evm_map_io,
687         .init_irq       = da830_init_irq,
688         .init_time      = da830_init_time,
689         .init_machine   = da830_evm_init,
690         .init_late      = davinci_init_late,
691         .dma_zone_size  = SZ_128M,
692 MACHINE_END