blob: e442d687b735f3cbfb50e6c1f8848f325cb8f950 [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 *
15 * See file CREDITS for list of people who contributed to this
16 * project.
17 *
18 * This program is free software; you can redistribute it and/or
19 * modify it under the terms of the GNU General Public License as
20 * published by the Free Software Foundation; either version 2 of
21 * the License, or (at your option) any later version.
22 *
23 * This program is distributed in the hope that it will be useful,
24 * but WITHOUT ANY WARRANTY; without even the implied warranty of
25 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
26 * GNU General Public License for more details.
27 *
28 * You should have received a copy of the GNU General Public License
29 * along with this program; if not, write to the Free Software
30 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
31 * MA 02111-1307 USA
32 */
33#include <common.h>
Ben Warren1ab70f62009-12-14 16:30:39 -080034#include <netdev.h>
Tom Rixcd782632009-06-28 12:52:29 -050035#include <twl4030.h>
Dirk Behme7379f452009-01-28 21:40:16 +010036#include <asm/io.h>
37#include <asm/arch/mux.h>
38#include <asm/arch/sys_proto.h>
39#include <asm/mach-types.h>
40#include "zoom1.h"
41
Tom Rix58911512009-04-01 22:02:20 -050042/*
Dirk Behme7379f452009-01-28 21:40:16 +010043 * Routine: board_init
44 * Description: Early hardware init.
Tom Rix58911512009-04-01 22:02:20 -050045 */
Dirk Behme7379f452009-01-28 21:40:16 +010046int board_init(void)
47{
48 DECLARE_GLOBAL_DATA_PTR;
49
50 gpmc_init(); /* in SRAM or SDRAM, finish GPMC */
51 /* board id for Linux */
52 gd->bd->bi_arch_number = MACH_TYPE_OMAP_LDP;
53 /* boot param addr */
54 gd->bd->bi_boot_params = (OMAP34XX_SDRC_CS0 + 0x100);
55
56 return 0;
57}
58
Tom Rix58911512009-04-01 22:02:20 -050059/*
Dirk Behme7379f452009-01-28 21:40:16 +010060 * Routine: misc_init_r
61 * Description: Configure zoom board specific configurations
Tom Rix58911512009-04-01 22:02:20 -050062 */
Dirk Behme7379f452009-01-28 21:40:16 +010063int misc_init_r(void)
64{
Tom Rix2c155132009-06-28 12:52:30 -050065 twl4030_power_init();
Grazvydas Ignotasead39d72009-12-10 17:10:21 +020066 twl4030_led_init(TWL4030_LED_LEDEN_LEDAON | TWL4030_LED_LEDEN_LEDBON);
Dirk Behmee6a6a702009-03-12 19:30:50 +010067 dieid_num_r();
Tom Rixcd782632009-06-28 12:52:29 -050068
69 /*
70 * Board Reset
71 * The board is reset by holding the red button on the
72 * top right front face for eight seconds.
73 */
74 twl4030_power_reset_init();
75
Dirk Behme7379f452009-01-28 21:40:16 +010076 return 0;
77}
78
Tom Rix58911512009-04-01 22:02:20 -050079/*
Dirk Behme7379f452009-01-28 21:40:16 +010080 * Routine: set_muxconf_regs
81 * Description: Setting up the configuration Mux registers specific to the
82 * hardware. Many pins need to be moved from protect to primary
83 * mode.
Tom Rix58911512009-04-01 22:02:20 -050084 */
Dirk Behme7379f452009-01-28 21:40:16 +010085void set_muxconf_regs(void)
86{
87 /* platform specific muxes */
88 MUX_ZOOM1_MDK();
89}
Ben Warren1ab70f62009-12-14 16:30:39 -080090
91#ifdef CONFIG_CMD_NET
92int board_eth_init(bd_t *bis)
93{
94 int rc = 0;
95#ifdef CONFIG_LAN91C96
96 rc = lan91c96_initialize(0, CONFIG_LAN91C96_BASE);
97#endif
98 return rc;
99}
100#endif