blob: 461a852724eb6d7a76dd79d785599a26300a8fcb [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>
Ben Warren1ab70f62009-12-14 16:30:39 -080018#include <netdev.h>
Tom Rixcd782632009-06-28 12:52:29 -050019#include <twl4030.h>
Dirk Behme7379f452009-01-28 21:40:16 +010020#include <asm/io.h>
Nishanth Menonc2800b12014-04-08 09:50:52 -050021#include <asm/arch/mem.h>
Tom Rinid6906cb2011-09-03 21:50:35 -040022#include <asm/arch/mmc_host_def.h>
Dirk Behme7379f452009-01-28 21:40:16 +010023#include <asm/arch/mux.h>
24#include <asm/arch/sys_proto.h>
25#include <asm/mach-types.h>
26#include "zoom1.h"
27
John Rigby29565322010-12-20 18:27:51 -070028DECLARE_GLOBAL_DATA_PTR;
29
Nishanth Menonc2800b12014-04-08 09:50:52 -050030/* gpmc_cfg is initialized by gpmc_init and we use it here */
31extern struct gpmc *gpmc_cfg;
32
33/* GPMC definitions for Ethenet Controller LAN9211 */
34static const u32 gpmc_lab_enet[] = {
35 ZOOM1_ENET_GPMC_CONF1,
36 ZOOM1_ENET_GPMC_CONF2,
37 ZOOM1_ENET_GPMC_CONF3,
38 ZOOM1_ENET_GPMC_CONF4,
39 ZOOM1_ENET_GPMC_CONF5,
40 ZOOM1_ENET_GPMC_CONF6,
41 /*CONF7- computed as params */
42};
43
Tom Rix58911512009-04-01 22:02:20 -050044/*
Dirk Behme7379f452009-01-28 21:40:16 +010045 * Routine: board_init
46 * Description: Early hardware init.
Tom Rix58911512009-04-01 22:02:20 -050047 */
Dirk Behme7379f452009-01-28 21:40:16 +010048int board_init(void)
49{
Dirk Behme7379f452009-01-28 21:40:16 +010050 gpmc_init(); /* in SRAM or SDRAM, finish GPMC */
Nishanth Menonc2800b12014-04-08 09:50:52 -050051 /* CS1 is Ethernet LAN9211 */
52 enable_gpmc_cs_config(gpmc_lab_enet, &gpmc_cfg->cs[1],
53 DEBUG_BASE, GPMC_SIZE_16M);
Dirk Behme7379f452009-01-28 21:40:16 +010054 /* board id for Linux */
55 gd->bd->bi_arch_number = MACH_TYPE_OMAP_LDP;
56 /* boot param addr */
57 gd->bd->bi_boot_params = (OMAP34XX_SDRC_CS0 + 0x100);
58
59 return 0;
60}
61
Tom Rix58911512009-04-01 22:02:20 -050062/*
Dirk Behme7379f452009-01-28 21:40:16 +010063 * Routine: misc_init_r
64 * Description: Configure zoom board specific configurations
Tom Rix58911512009-04-01 22:02:20 -050065 */
Dirk Behme7379f452009-01-28 21:40:16 +010066int misc_init_r(void)
67{
Tom Rix2c155132009-06-28 12:52:30 -050068 twl4030_power_init();
Grazvydas Ignotasead39d72009-12-10 17:10:21 +020069 twl4030_led_init(TWL4030_LED_LEDEN_LEDAON | TWL4030_LED_LEDEN_LEDBON);
Dirk Behmee6a6a702009-03-12 19:30:50 +010070 dieid_num_r();
Tom Rixcd782632009-06-28 12:52:29 -050071
72 /*
73 * Board Reset
74 * The board is reset by holding the red button on the
75 * top right front face for eight seconds.
76 */
77 twl4030_power_reset_init();
78
Dirk Behme7379f452009-01-28 21:40:16 +010079 return 0;
80}
81
Tom Rix58911512009-04-01 22:02:20 -050082/*
Dirk Behme7379f452009-01-28 21:40:16 +010083 * Routine: set_muxconf_regs
84 * Description: Setting up the configuration Mux registers specific to the
85 * hardware. Many pins need to be moved from protect to primary
86 * mode.
Tom Rix58911512009-04-01 22:02:20 -050087 */
Dirk Behme7379f452009-01-28 21:40:16 +010088void set_muxconf_regs(void)
89{
90 /* platform specific muxes */
91 MUX_ZOOM1_MDK();
92}
Ben Warren1ab70f62009-12-14 16:30:39 -080093
Tom Rinid6906cb2011-09-03 21:50:35 -040094#ifdef CONFIG_GENERIC_MMC
95int board_mmc_init(bd_t *bis)
96{
Nikita Kiryanove3913f52012-12-03 02:19:47 +000097 return omap_mmc_init(0, 0, 0, -1, -1);
Tom Rinid6906cb2011-09-03 21:50:35 -040098}
99#endif
100
Ben Warren1ab70f62009-12-14 16:30:39 -0800101#ifdef CONFIG_CMD_NET
102int board_eth_init(bd_t *bis)
103{
104 int rc = 0;
Nishanth Menon9d70e772014-04-08 09:50:53 -0500105
106#ifdef CONFIG_SMC911X
107#define STR_ENV_ETHADDR "ethaddr"
108
109 struct eth_device *dev;
110 uchar eth_addr[6];
111
112 rc = smc911x_initialize(0, CONFIG_SMC911X_BASE);
113 if (!eth_getenv_enetaddr(STR_ENV_ETHADDR, eth_addr)) {
114 dev = eth_get_dev_by_index(0);
115 if (dev) {
116 eth_setenv_enetaddr(STR_ENV_ETHADDR, dev->enetaddr);
117 } else {
118 printf("zoom1: Couldn't get eth device\n");
119 rc = -1;
120 }
121 }
Ben Warren1ab70f62009-12-14 16:30:39 -0800122#endif
Nishanth Menon9d70e772014-04-08 09:50:53 -0500123
Ben Warren1ab70f62009-12-14 16:30:39 -0800124 return rc;
125}
126#endif