blob: 53dc9762f8768e1a8d664d1be41431959b0d315c [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Dirk Behme7379f452009-01-28 21:40:16 +01002/*
3 * (C) Copyright 2004-2008
4 * Texas Instruments, <www.ti.com>
5 *
6 * Author :
7 * Nishanth Menon <nm@ti.com>
8 *
9 * Derived from Beagle Board and 3430 SDP code by
10 * Sunil Kumar <sunilsaini05@gmail.com>
11 * Shashi Ranjan <shashiranjanmca05@gmail.com>
12 * Richard Woodruff <r-woodruff2@ti.com>
13 * Syed Mohammed Khasim <khasim@ti.com>
14 *
Dirk Behme7379f452009-01-28 21:40:16 +010015 */
16#include <common.h>
Simon Glassb3f4ca12014-10-22 21:37:15 -060017#include <dm.h>
Simon Glass9fb625c2019-08-01 09:46:51 -060018#include <env.h>
Simon Glass691d7192020-05-10 11:40:02 -060019#include <init.h>
Simon Glass90526e92020-05-10 11:39:56 -060020#include <net.h>
Simon Glassb3f4ca12014-10-22 21:37:15 -060021#include <ns16550.h>
Ben Warren1ab70f62009-12-14 16:30:39 -080022#include <netdev.h>
Tom Rixcd782632009-06-28 12:52:29 -050023#include <twl4030.h>
Ladislav Michl0568dd02016-07-12 20:28:16 +020024#include <linux/mtd/omap_gpmc.h>
Dirk Behme7379f452009-01-28 21:40:16 +010025#include <asm/io.h>
Nishanth Menonc2800b12014-04-08 09:50:52 -050026#include <asm/arch/mem.h>
Tom Rinid6906cb2011-09-03 21:50:35 -040027#include <asm/arch/mmc_host_def.h>
Dirk Behme7379f452009-01-28 21:40:16 +010028#include <asm/arch/mux.h>
29#include <asm/arch/sys_proto.h>
30#include <asm/mach-types.h>
31#include "zoom1.h"
32
John Rigby29565322010-12-20 18:27:51 -070033DECLARE_GLOBAL_DATA_PTR;
34
Ladislav Michl0568dd02016-07-12 20:28:16 +020035/*
36 * gpmc_cfg is initialized by gpmc_init and we use it here.
37 * GPMC definitions for Ethenet Controller LAN9211
38 */
Nishanth Menonc2800b12014-04-08 09:50:52 -050039static const u32 gpmc_lab_enet[] = {
40 ZOOM1_ENET_GPMC_CONF1,
41 ZOOM1_ENET_GPMC_CONF2,
42 ZOOM1_ENET_GPMC_CONF3,
43 ZOOM1_ENET_GPMC_CONF4,
44 ZOOM1_ENET_GPMC_CONF5,
45 ZOOM1_ENET_GPMC_CONF6,
46 /*CONF7- computed as params */
47};
48
Simon Glassb3f4ca12014-10-22 21:37:15 -060049static const struct ns16550_platdata zoom1_serial = {
Adam Ford2f6ed3b2016-03-07 21:08:49 -060050 .base = OMAP34XX_UART3,
51 .reg_shift = 2,
Heiko Schocher17fa0322017-01-18 08:05:49 +010052 .clock = V_NS16550_CLK,
53 .fcr = UART_FCR_DEFVAL,
Simon Glassb3f4ca12014-10-22 21:37:15 -060054};
55
56U_BOOT_DEVICE(zoom1_uart) = {
Thomas Chouc7b96862015-11-19 21:48:12 +080057 "ns16550_serial",
Simon Glassb3f4ca12014-10-22 21:37:15 -060058 &zoom1_serial
59};
60
Tom Rix58911512009-04-01 22:02:20 -050061/*
Dirk Behme7379f452009-01-28 21:40:16 +010062 * Routine: board_init
63 * Description: Early hardware init.
Tom Rix58911512009-04-01 22:02:20 -050064 */
Dirk Behme7379f452009-01-28 21:40:16 +010065int board_init(void)
66{
Dirk Behme7379f452009-01-28 21:40:16 +010067 gpmc_init(); /* in SRAM or SDRAM, finish GPMC */
Nishanth Menonc2800b12014-04-08 09:50:52 -050068 /* CS1 is Ethernet LAN9211 */
69 enable_gpmc_cs_config(gpmc_lab_enet, &gpmc_cfg->cs[1],
70 DEBUG_BASE, GPMC_SIZE_16M);
Dirk Behme7379f452009-01-28 21:40:16 +010071 /* board id for Linux */
72 gd->bd->bi_arch_number = MACH_TYPE_OMAP_LDP;
73 /* boot param addr */
74 gd->bd->bi_boot_params = (OMAP34XX_SDRC_CS0 + 0x100);
75
76 return 0;
77}
78
Tom Rix58911512009-04-01 22:02:20 -050079/*
Dirk Behme7379f452009-01-28 21:40:16 +010080 * Routine: misc_init_r
81 * Description: Configure zoom board specific configurations
Tom Rix58911512009-04-01 22:02:20 -050082 */
Dirk Behme7379f452009-01-28 21:40:16 +010083int misc_init_r(void)
84{
Tom Rix2c155132009-06-28 12:52:30 -050085 twl4030_power_init();
Grazvydas Ignotasead39d72009-12-10 17:10:21 +020086 twl4030_led_init(TWL4030_LED_LEDEN_LEDAON | TWL4030_LED_LEDEN_LEDBON);
Paul Kocialkowski679f82c2015-08-27 19:37:13 +020087 omap_die_id_display();
Tom Rixcd782632009-06-28 12:52:29 -050088
89 /*
90 * Board Reset
91 * The board is reset by holding the red button on the
92 * top right front face for eight seconds.
93 */
94 twl4030_power_reset_init();
95
Dirk Behme7379f452009-01-28 21:40:16 +010096 return 0;
97}
98
Tom Rix58911512009-04-01 22:02:20 -050099/*
Dirk Behme7379f452009-01-28 21:40:16 +0100100 * Routine: set_muxconf_regs
101 * Description: Setting up the configuration Mux registers specific to the
102 * hardware. Many pins need to be moved from protect to primary
103 * mode.
Tom Rix58911512009-04-01 22:02:20 -0500104 */
Dirk Behme7379f452009-01-28 21:40:16 +0100105void set_muxconf_regs(void)
106{
107 /* platform specific muxes */
108 MUX_ZOOM1_MDK();
109}
Ben Warren1ab70f62009-12-14 16:30:39 -0800110
Masahiro Yamada4aa2ba32017-05-09 20:31:39 +0900111#ifdef CONFIG_MMC
Tom Rinid6906cb2011-09-03 21:50:35 -0400112int board_mmc_init(bd_t *bis)
113{
Nikita Kiryanove3913f52012-12-03 02:19:47 +0000114 return omap_mmc_init(0, 0, 0, -1, -1);
Tom Rinid6906cb2011-09-03 21:50:35 -0400115}
Paul Kocialkowskiaac54502014-11-08 20:55:47 +0100116
117void board_mmc_power_init(void)
118{
119 twl4030_power_mmc_init(0);
120}
Tom Rinid6906cb2011-09-03 21:50:35 -0400121#endif
122
Ben Warren1ab70f62009-12-14 16:30:39 -0800123#ifdef CONFIG_CMD_NET
124int board_eth_init(bd_t *bis)
125{
126 int rc = 0;
Nishanth Menon9d70e772014-04-08 09:50:53 -0500127
128#ifdef CONFIG_SMC911X
129#define STR_ENV_ETHADDR "ethaddr"
130
131 struct eth_device *dev;
132 uchar eth_addr[6];
133
134 rc = smc911x_initialize(0, CONFIG_SMC911X_BASE);
Simon Glass35affd72017-08-03 12:22:14 -0600135 if (!eth_env_get_enetaddr(STR_ENV_ETHADDR, eth_addr)) {
Nishanth Menon9d70e772014-04-08 09:50:53 -0500136 dev = eth_get_dev_by_index(0);
137 if (dev) {
Simon Glassfd1e9592017-08-03 12:22:11 -0600138 eth_env_set_enetaddr(STR_ENV_ETHADDR, dev->enetaddr);
Nishanth Menon9d70e772014-04-08 09:50:53 -0500139 } else {
140 printf("zoom1: Couldn't get eth device\n");
141 rc = -1;
142 }
143 }
Ben Warren1ab70f62009-12-14 16:30:39 -0800144#endif
Nishanth Menon9d70e772014-04-08 09:50:53 -0500145
Ben Warren1ab70f62009-12-14 16:30:39 -0800146 return rc;
147}
148#endif