blob: 9846f24661c79778ef849da4642a5f3ebb78df40 [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>
Tom Rinid6906cb2011-09-03 21:50:35 -040021#include <asm/arch/mmc_host_def.h>
Dirk Behme7379f452009-01-28 21:40:16 +010022#include <asm/arch/mux.h>
23#include <asm/arch/sys_proto.h>
24#include <asm/mach-types.h>
25#include "zoom1.h"
26
John Rigby29565322010-12-20 18:27:51 -070027DECLARE_GLOBAL_DATA_PTR;
28
Tom Rix58911512009-04-01 22:02:20 -050029/*
Dirk Behme7379f452009-01-28 21:40:16 +010030 * Routine: board_init
31 * Description: Early hardware init.
Tom Rix58911512009-04-01 22:02:20 -050032 */
Dirk Behme7379f452009-01-28 21:40:16 +010033int board_init(void)
34{
Dirk Behme7379f452009-01-28 21:40:16 +010035 gpmc_init(); /* in SRAM or SDRAM, finish GPMC */
36 /* board id for Linux */
37 gd->bd->bi_arch_number = MACH_TYPE_OMAP_LDP;
38 /* boot param addr */
39 gd->bd->bi_boot_params = (OMAP34XX_SDRC_CS0 + 0x100);
40
41 return 0;
42}
43
Tom Rix58911512009-04-01 22:02:20 -050044/*
Dirk Behme7379f452009-01-28 21:40:16 +010045 * Routine: misc_init_r
46 * Description: Configure zoom board specific configurations
Tom Rix58911512009-04-01 22:02:20 -050047 */
Dirk Behme7379f452009-01-28 21:40:16 +010048int misc_init_r(void)
49{
Tom Rix2c155132009-06-28 12:52:30 -050050 twl4030_power_init();
Grazvydas Ignotasead39d72009-12-10 17:10:21 +020051 twl4030_led_init(TWL4030_LED_LEDEN_LEDAON | TWL4030_LED_LEDEN_LEDBON);
Dirk Behmee6a6a702009-03-12 19:30:50 +010052 dieid_num_r();
Tom Rixcd782632009-06-28 12:52:29 -050053
54 /*
55 * Board Reset
56 * The board is reset by holding the red button on the
57 * top right front face for eight seconds.
58 */
59 twl4030_power_reset_init();
60
Dirk Behme7379f452009-01-28 21:40:16 +010061 return 0;
62}
63
Tom Rix58911512009-04-01 22:02:20 -050064/*
Dirk Behme7379f452009-01-28 21:40:16 +010065 * Routine: set_muxconf_regs
66 * Description: Setting up the configuration Mux registers specific to the
67 * hardware. Many pins need to be moved from protect to primary
68 * mode.
Tom Rix58911512009-04-01 22:02:20 -050069 */
Dirk Behme7379f452009-01-28 21:40:16 +010070void set_muxconf_regs(void)
71{
72 /* platform specific muxes */
73 MUX_ZOOM1_MDK();
74}
Ben Warren1ab70f62009-12-14 16:30:39 -080075
Tom Rinid6906cb2011-09-03 21:50:35 -040076#ifdef CONFIG_GENERIC_MMC
77int board_mmc_init(bd_t *bis)
78{
Nikita Kiryanove3913f52012-12-03 02:19:47 +000079 return omap_mmc_init(0, 0, 0, -1, -1);
Tom Rinid6906cb2011-09-03 21:50:35 -040080}
81#endif
82
Ben Warren1ab70f62009-12-14 16:30:39 -080083#ifdef CONFIG_CMD_NET
84int board_eth_init(bd_t *bis)
85{
86 int rc = 0;
87#ifdef CONFIG_LAN91C96
88 rc = lan91c96_initialize(0, CONFIG_LAN91C96_BASE);
89#endif
90 return rc;
91}
92#endif