blob: 054e7ccdedf9bf4f222b22ecaab0fa2805b4d68f [file] [log] [blame]
Stefano Babic92e30c02011-11-30 23:56:53 +00001/*
2 * Copyright (C) 2011
3 * Stefano Babic, DENX Software Engineering, sbabic@denx.de.
4 *
5 * Copyright (C) 2009 TechNexion Ltd.
6 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02007 * SPDX-License-Identifier: GPL-2.0+
Stefano Babic92e30c02011-11-30 23:56:53 +00008 */
9
10#include <common.h>
11#include <netdev.h>
12#include <asm/io.h>
13#include <asm/arch/mem.h>
14#include <asm/arch/mux.h>
15#include <asm/arch/sys_proto.h>
16#include <asm/omap_gpio.h>
17#include <asm/arch/mmc_host_def.h>
18#include <i2c.h>
19#include <asm/gpio.h>
Stefano Babic8c589d62012-02-07 23:28:58 +000020#ifdef CONFIG_USB_EHCI
21#include <usb.h>
22#include <asm/ehci-omap.h>
23#endif
Stefano Babic92e30c02011-11-30 23:56:53 +000024#include "twister.h"
25
26DECLARE_GLOBAL_DATA_PTR;
27
28/* Timing definitions for Ethernet Controller */
29static const u32 gpmc_smc911[] = {
30 NET_GPMC_CONFIG1,
31 NET_GPMC_CONFIG2,
32 NET_GPMC_CONFIG3,
33 NET_GPMC_CONFIG4,
34 NET_GPMC_CONFIG5,
35 NET_GPMC_CONFIG6,
36};
37
38static const u32 gpmc_XR16L2751[] = {
39 XR16L2751_GPMC_CONFIG1,
40 XR16L2751_GPMC_CONFIG2,
41 XR16L2751_GPMC_CONFIG3,
42 XR16L2751_GPMC_CONFIG4,
43 XR16L2751_GPMC_CONFIG5,
44 XR16L2751_GPMC_CONFIG6,
45};
46
Stefano Babic8c589d62012-02-07 23:28:58 +000047#ifdef CONFIG_USB_EHCI
48static struct omap_usbhs_board_data usbhs_bdata = {
49 .port_mode[0] = OMAP_EHCI_PORT_MODE_PHY,
50 .port_mode[1] = OMAP_EHCI_PORT_MODE_PHY,
51 .port_mode[2] = OMAP_USBHS_PORT_MODE_UNUSED,
52};
53
Troy Kisky127efc42013-10-10 15:27:57 -070054int ehci_hcd_init(int index, enum usb_init_type init,
55 struct ehci_hccr **hccr, struct ehci_hcor **hcor)
Stefano Babic8c589d62012-02-07 23:28:58 +000056{
Mateusz Zalega16297cf2013-10-04 19:22:26 +020057 return omap_ehci_hcd_init(index, &usbhs_bdata, hccr, hcor);
Stefano Babic8c589d62012-02-07 23:28:58 +000058}
59
Lucas Stach676ae062012-09-26 00:14:35 +020060int ehci_hcd_stop(int index)
Stefano Babic8c589d62012-02-07 23:28:58 +000061{
62 return omap_ehci_hcd_stop();
63}
64#endif
65
Stefano Babic92e30c02011-11-30 23:56:53 +000066int board_init(void)
67{
68 gpmc_init(); /* in SRAM or SDRAM, finish GPMC */
69
70 /* boot param addr */
71 gd->bd->bi_boot_params = (OMAP34XX_SDRC_CS0 + 0x100);
72
73 /* Chip select 1 and 3 are used for XR16L2751 UART controller */
74 enable_gpmc_cs_config(gpmc_XR16L2751, &gpmc_cfg->cs[1],
75 XR16L2751_UART1_BASE, GPMC_SIZE_16M);
76
77 enable_gpmc_cs_config(gpmc_XR16L2751, &gpmc_cfg->cs[3],
78 XR16L2751_UART2_BASE, GPMC_SIZE_16M);
79
80 gpio_request(CONFIG_OMAP_EHCI_PHY1_RESET_GPIO, "USB_PHY1_RESET");
81 gpio_direction_output(CONFIG_OMAP_EHCI_PHY1_RESET_GPIO, 1);
82
83 return 0;
84}
85
Stefano Babic31f5b652012-11-23 05:19:25 +000086#ifndef CONFIG_SPL_BUILD
Stefano Babic92e30c02011-11-30 23:56:53 +000087int misc_init_r(void)
88{
Stefano Babic0b26b872012-08-29 01:22:00 +000089 char *eth_addr;
Stefano Babic31f5b652012-11-23 05:19:25 +000090 struct tam3517_module_info info;
91 int ret;
Stefano Babic0b26b872012-08-29 01:22:00 +000092
Stefano Babic92e30c02011-11-30 23:56:53 +000093 dieid_num_r();
94
Stefano Babic0b26b872012-08-29 01:22:00 +000095 eth_addr = getenv("ethaddr");
96 if (eth_addr)
97 return 0;
98
Stefano Babic31f5b652012-11-23 05:19:25 +000099 TAM3517_READ_EEPROM(&info, ret);
100 if (!ret)
101 TAM3517_READ_MAC_FROM_EEPROM(&info);
Stefano Babic0b26b872012-08-29 01:22:00 +0000102
Stefano Babic92e30c02011-11-30 23:56:53 +0000103 return 0;
104}
Stefano Babic31f5b652012-11-23 05:19:25 +0000105#endif
Stefano Babic92e30c02011-11-30 23:56:53 +0000106
107/*
108 * Routine: set_muxconf_regs
109 * Description: Setting up the configuration Mux registers specific to the
110 * hardware. Many pins need to be moved from protect to primary
111 * mode.
112 */
113void set_muxconf_regs(void)
114{
115 MUX_TWISTER();
116}
117
118int board_eth_init(bd_t *bis)
119{
120 davinci_emac_initialize();
121
122 /* init cs for extern lan */
123 enable_gpmc_cs_config(gpmc_smc911, &gpmc_cfg->cs[5],
124 CONFIG_SMC911X_BASE, GPMC_SIZE_16M);
125 if (smc911x_initialize(0, CONFIG_SMC911X_BASE) <= 0)
126 printf("\nError initializing SMC911x controlleri\n");
127
128 return 0;
129}
130
131#if defined(CONFIG_OMAP_HSMMC) && \
132 !defined(CONFIG_SPL_BUILD)
133int board_mmc_init(bd_t *bis)
134{
Nikita Kiryanove3913f52012-12-03 02:19:47 +0000135 return omap_mmc_init(0, 0, 0, -1, -1);
Stefano Babic92e30c02011-11-30 23:56:53 +0000136}
137#endif
Stefano Babic84c21fb2012-03-15 04:01:44 +0000138
139#ifdef CONFIG_SPL_OS_BOOT
140/*
141 * Do board specific preperation before SPL
142 * Linux boot
143 */
144void spl_board_prepare_for_linux(void)
145{
146 /* init cs for extern lan */
147 enable_gpmc_cs_config(gpmc_smc911, &gpmc_cfg->cs[5],
148 CONFIG_SMC911X_BASE, GPMC_SIZE_16M);
149}
150int spl_start_uboot(void)
151{
152 int val = 0;
Stefano Babic30372962013-02-23 00:53:26 +0000153 if (!gpio_request(SPL_OS_BOOT_KEY, "U-Boot key")) {
154 gpio_direction_input(SPL_OS_BOOT_KEY);
155 val = gpio_get_value(SPL_OS_BOOT_KEY);
156 gpio_free(SPL_OS_BOOT_KEY);
Stefano Babic84c21fb2012-03-15 04:01:44 +0000157 }
158 return val;
159}
160#endif