blob: 7438d3792372b63b683767cf5500126330d41770 [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Dirk Behmebab104e2009-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 Behmebab104e2009-01-28 21:40:16 +010015 */
16#include <common.h>
Simon Glassbc0f4ea2014-10-22 21:37:15 -060017#include <dm.h>
Simon Glass5e6201b2019-08-01 09:46:51 -060018#include <env.h>
Simon Glass274e0b02020-05-10 11:39:56 -060019#include <net.h>
Simon Glassbc0f4ea2014-10-22 21:37:15 -060020#include <ns16550.h>
Ben Warrenf0e37d12009-12-14 16:30:39 -080021#include <netdev.h>
Tom Rix330a90a2009-06-28 12:52:29 -050022#include <twl4030.h>
Ladislav Michld5b1c272016-07-12 20:28:16 +020023#include <linux/mtd/omap_gpmc.h>
Dirk Behmebab104e2009-01-28 21:40:16 +010024#include <asm/io.h>
Nishanth Menon8c8e01d2014-04-08 09:50:52 -050025#include <asm/arch/mem.h>
Tom Rinifba34162011-09-03 21:50:35 -040026#include <asm/arch/mmc_host_def.h>
Dirk Behmebab104e2009-01-28 21:40:16 +010027#include <asm/arch/mux.h>
28#include <asm/arch/sys_proto.h>
29#include <asm/mach-types.h>
30#include "zoom1.h"
31
John Rigby0d21ed02010-12-20 18:27:51 -070032DECLARE_GLOBAL_DATA_PTR;
33
Ladislav Michld5b1c272016-07-12 20:28:16 +020034/*
35 * gpmc_cfg is initialized by gpmc_init and we use it here.
36 * GPMC definitions for Ethenet Controller LAN9211
37 */
Nishanth Menon8c8e01d2014-04-08 09:50:52 -050038static const u32 gpmc_lab_enet[] = {
39 ZOOM1_ENET_GPMC_CONF1,
40 ZOOM1_ENET_GPMC_CONF2,
41 ZOOM1_ENET_GPMC_CONF3,
42 ZOOM1_ENET_GPMC_CONF4,
43 ZOOM1_ENET_GPMC_CONF5,
44 ZOOM1_ENET_GPMC_CONF6,
45 /*CONF7- computed as params */
46};
47
Simon Glassbc0f4ea2014-10-22 21:37:15 -060048static const struct ns16550_platdata zoom1_serial = {
Adam Fordd1e22fa2016-03-07 21:08:49 -060049 .base = OMAP34XX_UART3,
50 .reg_shift = 2,
Heiko Schocher06f108e2017-01-18 08:05:49 +010051 .clock = V_NS16550_CLK,
52 .fcr = UART_FCR_DEFVAL,
Simon Glassbc0f4ea2014-10-22 21:37:15 -060053};
54
55U_BOOT_DEVICE(zoom1_uart) = {
Thomas Chou52ac4432015-11-19 21:48:12 +080056 "ns16550_serial",
Simon Glassbc0f4ea2014-10-22 21:37:15 -060057 &zoom1_serial
58};
59
Tom Rix558bb832009-04-01 22:02:20 -050060/*
Dirk Behmebab104e2009-01-28 21:40:16 +010061 * Routine: board_init
62 * Description: Early hardware init.
Tom Rix558bb832009-04-01 22:02:20 -050063 */
Dirk Behmebab104e2009-01-28 21:40:16 +010064int board_init(void)
65{
Dirk Behmebab104e2009-01-28 21:40:16 +010066 gpmc_init(); /* in SRAM or SDRAM, finish GPMC */
Nishanth Menon8c8e01d2014-04-08 09:50:52 -050067 /* CS1 is Ethernet LAN9211 */
68 enable_gpmc_cs_config(gpmc_lab_enet, &gpmc_cfg->cs[1],
69 DEBUG_BASE, GPMC_SIZE_16M);
Dirk Behmebab104e2009-01-28 21:40:16 +010070 /* board id for Linux */
71 gd->bd->bi_arch_number = MACH_TYPE_OMAP_LDP;
72 /* boot param addr */
73 gd->bd->bi_boot_params = (OMAP34XX_SDRC_CS0 + 0x100);
74
75 return 0;
76}
77
Tom Rix558bb832009-04-01 22:02:20 -050078/*
Dirk Behmebab104e2009-01-28 21:40:16 +010079 * Routine: misc_init_r
80 * Description: Configure zoom board specific configurations
Tom Rix558bb832009-04-01 22:02:20 -050081 */
Dirk Behmebab104e2009-01-28 21:40:16 +010082int misc_init_r(void)
83{
Tom Rix0f2a8042009-06-28 12:52:30 -050084 twl4030_power_init();
Grazvydas Ignotas17887bf2009-12-10 17:10:21 +020085 twl4030_led_init(TWL4030_LED_LEDEN_LEDAON | TWL4030_LED_LEDEN_LEDBON);
Paul Kocialkowski6bc318e2015-08-27 19:37:13 +020086 omap_die_id_display();
Tom Rix330a90a2009-06-28 12:52:29 -050087
88 /*
89 * Board Reset
90 * The board is reset by holding the red button on the
91 * top right front face for eight seconds.
92 */
93 twl4030_power_reset_init();
94
Dirk Behmebab104e2009-01-28 21:40:16 +010095 return 0;
96}
97
Tom Rix558bb832009-04-01 22:02:20 -050098/*
Dirk Behmebab104e2009-01-28 21:40:16 +010099 * Routine: set_muxconf_regs
100 * Description: Setting up the configuration Mux registers specific to the
101 * hardware. Many pins need to be moved from protect to primary
102 * mode.
Tom Rix558bb832009-04-01 22:02:20 -0500103 */
Dirk Behmebab104e2009-01-28 21:40:16 +0100104void set_muxconf_regs(void)
105{
106 /* platform specific muxes */
107 MUX_ZOOM1_MDK();
108}
Ben Warrenf0e37d12009-12-14 16:30:39 -0800109
Masahiro Yamada0a780172017-05-09 20:31:39 +0900110#ifdef CONFIG_MMC
Tom Rinifba34162011-09-03 21:50:35 -0400111int board_mmc_init(bd_t *bis)
112{
Nikita Kiryanov4be9dbc2012-12-03 02:19:47 +0000113 return omap_mmc_init(0, 0, 0, -1, -1);
Tom Rinifba34162011-09-03 21:50:35 -0400114}
Paul Kocialkowski69559892014-11-08 20:55:47 +0100115
116void board_mmc_power_init(void)
117{
118 twl4030_power_mmc_init(0);
119}
Tom Rinifba34162011-09-03 21:50:35 -0400120#endif
121
Ben Warrenf0e37d12009-12-14 16:30:39 -0800122#ifdef CONFIG_CMD_NET
123int board_eth_init(bd_t *bis)
124{
125 int rc = 0;
Nishanth Menon71770702014-04-08 09:50:53 -0500126
127#ifdef CONFIG_SMC911X
128#define STR_ENV_ETHADDR "ethaddr"
129
130 struct eth_device *dev;
131 uchar eth_addr[6];
132
133 rc = smc911x_initialize(0, CONFIG_SMC911X_BASE);
Simon Glass399a9ce2017-08-03 12:22:14 -0600134 if (!eth_env_get_enetaddr(STR_ENV_ETHADDR, eth_addr)) {
Nishanth Menon71770702014-04-08 09:50:53 -0500135 dev = eth_get_dev_by_index(0);
136 if (dev) {
Simon Glass8551d552017-08-03 12:22:11 -0600137 eth_env_set_enetaddr(STR_ENV_ETHADDR, dev->enetaddr);
Nishanth Menon71770702014-04-08 09:50:53 -0500138 } else {
139 printf("zoom1: Couldn't get eth device\n");
140 rc = -1;
141 }
142 }
Ben Warrenf0e37d12009-12-14 16:30:39 -0800143#endif
Nishanth Menon71770702014-04-08 09:50:53 -0500144
Ben Warrenf0e37d12009-12-14 16:30:39 -0800145 return rc;
146}
147#endif