2 * (C) Copyright 2004-2008
3 * Texas Instruments, <www.ti.com>
6 * Nishanth Menon <nm@ti.com>
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>
15 * See file CREDITS for list of people who contributed to this
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.
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.
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,
37 #include <asm/arch/mux.h>
38 #include <asm/arch/sys_proto.h>
39 #include <asm/mach-types.h>
44 * Description: Early hardware init.
48 DECLARE_GLOBAL_DATA_PTR;
50 gpmc_init(); /* in SRAM or SDRAM, finish GPMC */
51 /* board id for Linux */
52 gd->bd->bi_arch_number = MACH_TYPE_OMAP_LDP;
54 gd->bd->bi_boot_params = (OMAP34XX_SDRC_CS0 + 0x100);
60 * Routine: misc_init_r
61 * Description: Configure zoom board specific configurations
66 twl4030_led_init(TWL4030_LED_LEDEN_LEDAON | TWL4030_LED_LEDEN_LEDBON);
71 * The board is reset by holding the red button on the
72 * top right front face for eight seconds.
74 twl4030_power_reset_init();
80 * 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
85 void set_muxconf_regs(void)
87 /* platform specific muxes */
92 int board_eth_init(bd_t *bis)
95 #ifdef CONFIG_LAN91C96
96 rc = lan91c96_initialize(0, CONFIG_LAN91C96_BASE);