blob: 6a927350b4d29b2d23604201c5e4087b5cc19fd4 [file] [log] [blame]
Enric Balletbo i Serra1a832dc2010-10-14 16:57:39 -04001/*
2 * (C) Copyright 2010
3 * ISEE 2007 SL, <www.iseebcn.com>
4 *
5 * See file CREDITS for list of people who contributed to this
6 * project.
7 *
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of
11 * the License, or (at your option) any later version.
12 *
13 * This program is distributed in the hope that it will be useful,
14 * but WITHOUT ANY WARRANTY; without even the implied warranty of
15 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16 * GNU General Public License for more details.
17 *
18 * You should have received a copy of the GNU General Public License
19 * along with this program; if not, write to the Free Software
20 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
21 * MA 02111-1307 USA
22 */
23#include <common.h>
24#include <twl4030.h>
25#include <asm/io.h>
26#include <asm/arch/mem.h>
Enric Balletbo i Serraac657c42010-11-04 15:34:37 -040027#include <asm/arch/mmc_host_def.h>
Enric Balletbo i Serra1a832dc2010-10-14 16:57:39 -040028#include <asm/arch/mux.h>
29#include <asm/arch/sys_proto.h>
30#include <asm/mach-types.h>
31#include "igep0030.h"
32
John Rigby29565322010-12-20 18:27:51 -070033DECLARE_GLOBAL_DATA_PTR;
34
Enric Balletbo i Serra1a832dc2010-10-14 16:57:39 -040035/*
36 * Routine: board_init
37 * Description: Early hardware init.
38 */
39int board_init(void)
40{
Enric Balletbo i Serra1a832dc2010-10-14 16:57:39 -040041 gpmc_init(); /* in SRAM or SDRAM, finish GPMC */
42 /* board id for Linux */
43 gd->bd->bi_arch_number = MACH_TYPE_IGEP0030;
44 /* boot param addr */
45 gd->bd->bi_boot_params = (OMAP34XX_SDRC_CS0 + 0x100);
46
47 return 0;
48}
49
Enric Balletbo i Serraac657c42010-11-04 15:34:37 -040050#ifdef CONFIG_GENERIC_MMC
51int board_mmc_init(bd_t *bis)
52{
53 omap_mmc_init(0);
54 return 0;
55}
56#endif
57
Enric Balletbo i Serra1a832dc2010-10-14 16:57:39 -040058/*
59 * Routine: misc_init_r
60 * Description: Configure board specific parts
61 */
62int misc_init_r(void)
63{
64 twl4030_power_init();
65
66 dieid_num_r();
67
68 return 0;
69}
70
71/*
72 * Routine: set_muxconf_regs
73 * Description: Setting up the configuration Mux registers specific to the
74 * hardware. Many pins need to be moved from protect to primary
75 * mode.
76 */
77void set_muxconf_regs(void)
78{
79 MUX_DEFAULT();
80}