blob: e6c2526ea1520bc1f328de172fcf92f056b649a0 [file] [log] [blame]
Dirk Behme7379f452009-01-28 21:40:16 +01001/*
2 * (C) Copyright 2004-2008
3 * Texas Instruments, <www.ti.com>
4 *
5 * Author :
6 * Nishanth Menon <nm@ti.com>
7 *
8 * Derived from Beagle Board and 3430 SDP code by
9 * Sunil Kumar <sunilsaini05@gmail.com>
10 * Shashi Ranjan <shashiranjanmca05@gmail.com>
11 * Richard Woodruff <r-woodruff2@ti.com>
12 * Syed Mohammed Khasim <khasim@ti.com>
13 *
14 *
Wolfgang Denk1a459662013-07-08 09:37:19 +020015 * SPDX-License-Identifier: GPL-2.0+
Dirk Behme7379f452009-01-28 21:40:16 +010016 */
17#include <common.h>
Simon Glassb3f4ca12014-10-22 21:37:15 -060018#include <dm.h>
19#include <ns16550.h>
Ben Warren1ab70f62009-12-14 16:30:39 -080020#include <netdev.h>
Tom Rixcd782632009-06-28 12:52:29 -050021#include <twl4030.h>
Ladislav Michl0568dd02016-07-12 20:28:16 +020022#include <linux/mtd/omap_gpmc.h>
Dirk Behme7379f452009-01-28 21:40:16 +010023#include <asm/io.h>
Nishanth Menonc2800b12014-04-08 09:50:52 -050024#include <asm/arch/mem.h>
Tom Rinid6906cb2011-09-03 21:50:35 -040025#include <asm/arch/mmc_host_def.h>
Dirk Behme7379f452009-01-28 21:40:16 +010026#include <asm/arch/mux.h>
27#include <asm/arch/sys_proto.h>
28#include <asm/mach-types.h>
29#include "zoom1.h"
30
John Rigby29565322010-12-20 18:27:51 -070031DECLARE_GLOBAL_DATA_PTR;
32
Ladislav Michl0568dd02016-07-12 20:28:16 +020033/*
34 * gpmc_cfg is initialized by gpmc_init and we use it here.
35 * GPMC definitions for Ethenet Controller LAN9211
36 */
Nishanth Menonc2800b12014-04-08 09:50:52 -050037static const u32 gpmc_lab_enet[] = {
38 ZOOM1_ENET_GPMC_CONF1,
39 ZOOM1_ENET_GPMC_CONF2,
40 ZOOM1_ENET_GPMC_CONF3,
41 ZOOM1_ENET_GPMC_CONF4,
42 ZOOM1_ENET_GPMC_CONF5,
43 ZOOM1_ENET_GPMC_CONF6,
44 /*CONF7- computed as params */
45};
46
Simon Glassb3f4ca12014-10-22 21:37:15 -060047static const struct ns16550_platdata zoom1_serial = {
Adam Ford2f6ed3b2016-03-07 21:08:49 -060048 .base = OMAP34XX_UART3,
49 .reg_shift = 2,
Heiko Schocher17fa0322017-01-18 08:05:49 +010050 .clock = V_NS16550_CLK,
51 .fcr = UART_FCR_DEFVAL,
Simon Glassb3f4ca12014-10-22 21:37:15 -060052};
53
54U_BOOT_DEVICE(zoom1_uart) = {
Thomas Chouc7b96862015-11-19 21:48:12 +080055 "ns16550_serial",
Simon Glassb3f4ca12014-10-22 21:37:15 -060056 &zoom1_serial
57};
58
Tom Rix58911512009-04-01 22:02:20 -050059/*
Dirk Behme7379f452009-01-28 21:40:16 +010060 * Routine: board_init
61 * Description: Early hardware init.
Tom Rix58911512009-04-01 22:02:20 -050062 */
Dirk Behme7379f452009-01-28 21:40:16 +010063int board_init(void)
64{
Dirk Behme7379f452009-01-28 21:40:16 +010065 gpmc_init(); /* in SRAM or SDRAM, finish GPMC */
Nishanth Menonc2800b12014-04-08 09:50:52 -050066 /* CS1 is Ethernet LAN9211 */
67 enable_gpmc_cs_config(gpmc_lab_enet, &gpmc_cfg->cs[1],
68 DEBUG_BASE, GPMC_SIZE_16M);
Dirk Behme7379f452009-01-28 21:40:16 +010069 /* board id for Linux */
70 gd->bd->bi_arch_number = MACH_TYPE_OMAP_LDP;
71 /* boot param addr */
72 gd->bd->bi_boot_params = (OMAP34XX_SDRC_CS0 + 0x100);
73
74 return 0;
75}
76
Tom Rix58911512009-04-01 22:02:20 -050077/*
Dirk Behme7379f452009-01-28 21:40:16 +010078 * Routine: misc_init_r
79 * Description: Configure zoom board specific configurations
Tom Rix58911512009-04-01 22:02:20 -050080 */
Dirk Behme7379f452009-01-28 21:40:16 +010081int misc_init_r(void)
82{
Tom Rix2c155132009-06-28 12:52:30 -050083 twl4030_power_init();
Grazvydas Ignotasead39d72009-12-10 17:10:21 +020084 twl4030_led_init(TWL4030_LED_LEDEN_LEDAON | TWL4030_LED_LEDEN_LEDBON);
Paul Kocialkowski679f82c2015-08-27 19:37:13 +020085 omap_die_id_display();
Tom Rixcd782632009-06-28 12:52:29 -050086
87 /*
88 * Board Reset
89 * The board is reset by holding the red button on the
90 * top right front face for eight seconds.
91 */
92 twl4030_power_reset_init();
93
Dirk Behme7379f452009-01-28 21:40:16 +010094 return 0;
95}
96
Tom Rix58911512009-04-01 22:02:20 -050097/*
Dirk Behme7379f452009-01-28 21:40:16 +010098 * Routine: set_muxconf_regs
99 * Description: Setting up the configuration Mux registers specific to the
100 * hardware. Many pins need to be moved from protect to primary
101 * mode.
Tom Rix58911512009-04-01 22:02:20 -0500102 */
Dirk Behme7379f452009-01-28 21:40:16 +0100103void set_muxconf_regs(void)
104{
105 /* platform specific muxes */
106 MUX_ZOOM1_MDK();
107}
Ben Warren1ab70f62009-12-14 16:30:39 -0800108
Masahiro Yamada4aa2ba32017-05-09 20:31:39 +0900109#ifdef CONFIG_MMC
Tom Rinid6906cb2011-09-03 21:50:35 -0400110int board_mmc_init(bd_t *bis)
111{
Nikita Kiryanove3913f52012-12-03 02:19:47 +0000112 return omap_mmc_init(0, 0, 0, -1, -1);
Tom Rinid6906cb2011-09-03 21:50:35 -0400113}
Paul Kocialkowskiaac54502014-11-08 20:55:47 +0100114
115void board_mmc_power_init(void)
116{
117 twl4030_power_mmc_init(0);
118}
Tom Rinid6906cb2011-09-03 21:50:35 -0400119#endif
120
Ben Warren1ab70f62009-12-14 16:30:39 -0800121#ifdef CONFIG_CMD_NET
122int board_eth_init(bd_t *bis)
123{
124 int rc = 0;
Nishanth Menon9d70e772014-04-08 09:50:53 -0500125
126#ifdef CONFIG_SMC911X
127#define STR_ENV_ETHADDR "ethaddr"
128
129 struct eth_device *dev;
130 uchar eth_addr[6];
131
132 rc = smc911x_initialize(0, CONFIG_SMC911X_BASE);
Simon Glass35affd72017-08-03 12:22:14 -0600133 if (!eth_env_get_enetaddr(STR_ENV_ETHADDR, eth_addr)) {
Nishanth Menon9d70e772014-04-08 09:50:53 -0500134 dev = eth_get_dev_by_index(0);
135 if (dev) {
Simon Glassfd1e9592017-08-03 12:22:11 -0600136 eth_env_set_enetaddr(STR_ENV_ETHADDR, dev->enetaddr);
Nishanth Menon9d70e772014-04-08 09:50:53 -0500137 } else {
138 printf("zoom1: Couldn't get eth device\n");
139 rc = -1;
140 }
141 }
Ben Warren1ab70f62009-12-14 16:30:39 -0800142#endif
Nishanth Menon9d70e772014-04-08 09:50:53 -0500143
Ben Warren1ab70f62009-12-14 16:30:39 -0800144 return rc;
145}
146#endif