blob: 9ef002637a665f7e405e5873bddee8f640da49af [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>
Dirk Behme7379f452009-01-28 21:40:16 +010022#include <asm/io.h>
Nishanth Menonc2800b12014-04-08 09:50:52 -050023#include <asm/arch/mem.h>
Tom Rinid6906cb2011-09-03 21:50:35 -040024#include <asm/arch/mmc_host_def.h>
Dirk Behme7379f452009-01-28 21:40:16 +010025#include <asm/arch/mux.h>
26#include <asm/arch/sys_proto.h>
27#include <asm/mach-types.h>
28#include "zoom1.h"
29
John Rigby29565322010-12-20 18:27:51 -070030DECLARE_GLOBAL_DATA_PTR;
31
Nishanth Menonc2800b12014-04-08 09:50:52 -050032/* gpmc_cfg is initialized by gpmc_init and we use it here */
33extern struct gpmc *gpmc_cfg;
34
35/* GPMC definitions for Ethenet Controller LAN9211 */
36static const u32 gpmc_lab_enet[] = {
37 ZOOM1_ENET_GPMC_CONF1,
38 ZOOM1_ENET_GPMC_CONF2,
39 ZOOM1_ENET_GPMC_CONF3,
40 ZOOM1_ENET_GPMC_CONF4,
41 ZOOM1_ENET_GPMC_CONF5,
42 ZOOM1_ENET_GPMC_CONF6,
43 /*CONF7- computed as params */
44};
45
Simon Glassb3f4ca12014-10-22 21:37:15 -060046static const struct ns16550_platdata zoom1_serial = {
47 OMAP34XX_UART3,
48 2,
49 V_NS16550_CLK
50};
51
52U_BOOT_DEVICE(zoom1_uart) = {
53 "serial_omap",
54 &zoom1_serial
55};
56
Tom Rix58911512009-04-01 22:02:20 -050057/*
Dirk Behme7379f452009-01-28 21:40:16 +010058 * Routine: board_init
59 * Description: Early hardware init.
Tom Rix58911512009-04-01 22:02:20 -050060 */
Dirk Behme7379f452009-01-28 21:40:16 +010061int board_init(void)
62{
Dirk Behme7379f452009-01-28 21:40:16 +010063 gpmc_init(); /* in SRAM or SDRAM, finish GPMC */
Nishanth Menonc2800b12014-04-08 09:50:52 -050064 /* CS1 is Ethernet LAN9211 */
65 enable_gpmc_cs_config(gpmc_lab_enet, &gpmc_cfg->cs[1],
66 DEBUG_BASE, GPMC_SIZE_16M);
Dirk Behme7379f452009-01-28 21:40:16 +010067 /* board id for Linux */
68 gd->bd->bi_arch_number = MACH_TYPE_OMAP_LDP;
69 /* boot param addr */
70 gd->bd->bi_boot_params = (OMAP34XX_SDRC_CS0 + 0x100);
71
72 return 0;
73}
74
Tom Rix58911512009-04-01 22:02:20 -050075/*
Dirk Behme7379f452009-01-28 21:40:16 +010076 * Routine: misc_init_r
77 * Description: Configure zoom board specific configurations
Tom Rix58911512009-04-01 22:02:20 -050078 */
Dirk Behme7379f452009-01-28 21:40:16 +010079int misc_init_r(void)
80{
Tom Rix2c155132009-06-28 12:52:30 -050081 twl4030_power_init();
Grazvydas Ignotasead39d72009-12-10 17:10:21 +020082 twl4030_led_init(TWL4030_LED_LEDEN_LEDAON | TWL4030_LED_LEDEN_LEDBON);
Dirk Behmee6a6a702009-03-12 19:30:50 +010083 dieid_num_r();
Tom Rixcd782632009-06-28 12:52:29 -050084
85 /*
86 * Board Reset
87 * The board is reset by holding the red button on the
88 * top right front face for eight seconds.
89 */
90 twl4030_power_reset_init();
91
Dirk Behme7379f452009-01-28 21:40:16 +010092 return 0;
93}
94
Tom Rix58911512009-04-01 22:02:20 -050095/*
Dirk Behme7379f452009-01-28 21:40:16 +010096 * Routine: set_muxconf_regs
97 * Description: Setting up the configuration Mux registers specific to the
98 * hardware. Many pins need to be moved from protect to primary
99 * mode.
Tom Rix58911512009-04-01 22:02:20 -0500100 */
Dirk Behme7379f452009-01-28 21:40:16 +0100101void set_muxconf_regs(void)
102{
103 /* platform specific muxes */
104 MUX_ZOOM1_MDK();
105}
Ben Warren1ab70f62009-12-14 16:30:39 -0800106
Tom Rinid6906cb2011-09-03 21:50:35 -0400107#ifdef CONFIG_GENERIC_MMC
108int board_mmc_init(bd_t *bis)
109{
Nikita Kiryanove3913f52012-12-03 02:19:47 +0000110 return omap_mmc_init(0, 0, 0, -1, -1);
Tom Rinid6906cb2011-09-03 21:50:35 -0400111}
112#endif
113
Ben Warren1ab70f62009-12-14 16:30:39 -0800114#ifdef CONFIG_CMD_NET
115int board_eth_init(bd_t *bis)
116{
117 int rc = 0;
Nishanth Menon9d70e772014-04-08 09:50:53 -0500118
119#ifdef CONFIG_SMC911X
120#define STR_ENV_ETHADDR "ethaddr"
121
122 struct eth_device *dev;
123 uchar eth_addr[6];
124
125 rc = smc911x_initialize(0, CONFIG_SMC911X_BASE);
126 if (!eth_getenv_enetaddr(STR_ENV_ETHADDR, eth_addr)) {
127 dev = eth_get_dev_by_index(0);
128 if (dev) {
129 eth_setenv_enetaddr(STR_ENV_ETHADDR, dev->enetaddr);
130 } else {
131 printf("zoom1: Couldn't get eth device\n");
132 rc = -1;
133 }
134 }
Ben Warren1ab70f62009-12-14 16:30:39 -0800135#endif
Nishanth Menon9d70e772014-04-08 09:50:53 -0500136
Ben Warren1ab70f62009-12-14 16:30:39 -0800137 return rc;
138}
139#endif