blob: 1166886e1d331021112025ae120eb4009f220433 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Stefano Babic1047c0c2011-11-30 23:56:53 +00002/*
3 * Copyright (C) 2011
4 * Stefano Babic, DENX Software Engineering, sbabic@denx.de.
5 *
6 * Copyright (C) 2009 TechNexion Ltd.
Stefano Babic1047c0c2011-11-30 23:56:53 +00007 */
8
9#include <common.h>
10#include <netdev.h>
11#include <asm/io.h>
12#include <asm/arch/mem.h>
13#include <asm/arch/mux.h>
14#include <asm/arch/sys_proto.h>
15#include <asm/omap_gpio.h>
16#include <asm/arch/mmc_host_def.h>
17#include <i2c.h>
Jeroen Hofsteeafa67562014-10-08 22:57:58 +020018#include <spl.h>
19#include <mmc.h>
Stefano Babic1047c0c2011-11-30 23:56:53 +000020#include <asm/gpio.h>
Tom Riniceed5d22017-05-12 22:33:27 -040021#ifdef CONFIG_USB_EHCI_HCD
Stefano Babicb1492262012-02-07 23:28:58 +000022#include <usb.h>
23#include <asm/ehci-omap.h>
24#endif
Stefano Babic1047c0c2011-11-30 23:56:53 +000025#include "twister.h"
26
27DECLARE_GLOBAL_DATA_PTR;
28
29/* Timing definitions for Ethernet Controller */
30static const u32 gpmc_smc911[] = {
31 NET_GPMC_CONFIG1,
32 NET_GPMC_CONFIG2,
33 NET_GPMC_CONFIG3,
34 NET_GPMC_CONFIG4,
35 NET_GPMC_CONFIG5,
36 NET_GPMC_CONFIG6,
37};
38
39static const u32 gpmc_XR16L2751[] = {
40 XR16L2751_GPMC_CONFIG1,
41 XR16L2751_GPMC_CONFIG2,
42 XR16L2751_GPMC_CONFIG3,
43 XR16L2751_GPMC_CONFIG4,
44 XR16L2751_GPMC_CONFIG5,
45 XR16L2751_GPMC_CONFIG6,
46};
47
Tom Riniceed5d22017-05-12 22:33:27 -040048#ifdef CONFIG_USB_EHCI_HCD
Stefano Babicb1492262012-02-07 23:28:58 +000049static struct omap_usbhs_board_data usbhs_bdata = {
50 .port_mode[0] = OMAP_EHCI_PORT_MODE_PHY,
51 .port_mode[1] = OMAP_EHCI_PORT_MODE_PHY,
52 .port_mode[2] = OMAP_USBHS_PORT_MODE_UNUSED,
53};
54
Troy Kisky7d6bbb92013-10-10 15:27:57 -070055int ehci_hcd_init(int index, enum usb_init_type init,
56 struct ehci_hccr **hccr, struct ehci_hcor **hcor)
Stefano Babicb1492262012-02-07 23:28:58 +000057{
Mateusz Zalegad862f892013-10-04 19:22:26 +020058 return omap_ehci_hcd_init(index, &usbhs_bdata, hccr, hcor);
Stefano Babicb1492262012-02-07 23:28:58 +000059}
60
Lucas Stach3494a4c2012-09-26 00:14:35 +020061int ehci_hcd_stop(int index)
Stefano Babicb1492262012-02-07 23:28:58 +000062{
63 return omap_ehci_hcd_stop();
64}
65#endif
66
Stefano Babic1047c0c2011-11-30 23:56:53 +000067int board_init(void)
68{
69 gpmc_init(); /* in SRAM or SDRAM, finish GPMC */
70
71 /* boot param addr */
72 gd->bd->bi_boot_params = (OMAP34XX_SDRC_CS0 + 0x100);
73
74 /* Chip select 1 and 3 are used for XR16L2751 UART controller */
75 enable_gpmc_cs_config(gpmc_XR16L2751, &gpmc_cfg->cs[1],
76 XR16L2751_UART1_BASE, GPMC_SIZE_16M);
77
78 enable_gpmc_cs_config(gpmc_XR16L2751, &gpmc_cfg->cs[3],
79 XR16L2751_UART2_BASE, GPMC_SIZE_16M);
80
81 gpio_request(CONFIG_OMAP_EHCI_PHY1_RESET_GPIO, "USB_PHY1_RESET");
82 gpio_direction_output(CONFIG_OMAP_EHCI_PHY1_RESET_GPIO, 1);
83
84 return 0;
85}
86
Stefano Babic0a152e62012-11-23 05:19:25 +000087#ifndef CONFIG_SPL_BUILD
Stefano Babic1047c0c2011-11-30 23:56:53 +000088int misc_init_r(void)
89{
Stefano Babic95123d12012-08-29 01:22:00 +000090 char *eth_addr;
Stefano Babic0a152e62012-11-23 05:19:25 +000091 struct tam3517_module_info info;
92 int ret;
Stefano Babic95123d12012-08-29 01:22:00 +000093
Paul Kocialkowski6bc318e2015-08-27 19:37:13 +020094 omap_die_id_display();
Stefano Babic1047c0c2011-11-30 23:56:53 +000095
Simon Glass64b723f2017-08-03 12:22:12 -060096 eth_addr = env_get("ethaddr");
Stefano Babic95123d12012-08-29 01:22:00 +000097 if (eth_addr)
98 return 0;
99
Stefano Babic0a152e62012-11-23 05:19:25 +0000100 TAM3517_READ_EEPROM(&info, ret);
101 if (!ret)
102 TAM3517_READ_MAC_FROM_EEPROM(&info);
Stefano Babic95123d12012-08-29 01:22:00 +0000103
Stefano Babic1047c0c2011-11-30 23:56:53 +0000104 return 0;
105}
Stefano Babic0a152e62012-11-23 05:19:25 +0000106#endif
Stefano Babic1047c0c2011-11-30 23:56:53 +0000107
108/*
109 * Routine: set_muxconf_regs
110 * Description: Setting up the configuration Mux registers specific to the
111 * hardware. Many pins need to be moved from protect to primary
112 * mode.
113 */
114void set_muxconf_regs(void)
115{
116 MUX_TWISTER();
117}
118
119int board_eth_init(bd_t *bis)
120{
121 davinci_emac_initialize();
122
123 /* init cs for extern lan */
124 enable_gpmc_cs_config(gpmc_smc911, &gpmc_cfg->cs[5],
125 CONFIG_SMC911X_BASE, GPMC_SIZE_16M);
126 if (smc911x_initialize(0, CONFIG_SMC911X_BASE) <= 0)
127 printf("\nError initializing SMC911x controlleri\n");
128
129 return 0;
130}
131
Masahiro Yamadab2c88682017-01-10 13:32:07 +0900132#if defined(CONFIG_MMC_OMAP_HS) && \
Stefano Babic1047c0c2011-11-30 23:56:53 +0000133 !defined(CONFIG_SPL_BUILD)
134int board_mmc_init(bd_t *bis)
135{
Nikita Kiryanov4be9dbc2012-12-03 02:19:47 +0000136 return omap_mmc_init(0, 0, 0, -1, -1);
Stefano Babic1047c0c2011-11-30 23:56:53 +0000137}
138#endif
Stefano Babic7f0461e2012-03-15 04:01:44 +0000139
140#ifdef CONFIG_SPL_OS_BOOT
141/*
Robert P. J. Dayc5b1e5d2016-09-07 14:27:59 -0400142 * Do board specific preparation before SPL
Stefano Babic7f0461e2012-03-15 04:01:44 +0000143 * Linux boot
144 */
145void spl_board_prepare_for_linux(void)
146{
147 /* init cs for extern lan */
148 enable_gpmc_cs_config(gpmc_smc911, &gpmc_cfg->cs[5],
149 CONFIG_SMC911X_BASE, GPMC_SIZE_16M);
150}
151int spl_start_uboot(void)
152{
153 int val = 0;
Stefano Babicf51b4c72013-02-23 00:53:26 +0000154 if (!gpio_request(SPL_OS_BOOT_KEY, "U-Boot key")) {
155 gpio_direction_input(SPL_OS_BOOT_KEY);
156 val = gpio_get_value(SPL_OS_BOOT_KEY);
157 gpio_free(SPL_OS_BOOT_KEY);
Stefano Babic7f0461e2012-03-15 04:01:44 +0000158 }
159 return val;
160}
161#endif