Enric Balletbo i Serra | 1a832dc | 2010-10-14 16:57:39 -0400 | [diff] [blame] | 1 | /* |
| 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> |
| 27 | #include <asm/arch/mux.h> |
| 28 | #include <asm/arch/sys_proto.h> |
| 29 | #include <asm/mach-types.h> |
| 30 | #include "igep0030.h" |
| 31 | |
| 32 | /* |
| 33 | * Routine: board_init |
| 34 | * Description: Early hardware init. |
| 35 | */ |
| 36 | int board_init(void) |
| 37 | { |
| 38 | DECLARE_GLOBAL_DATA_PTR; |
| 39 | |
| 40 | gpmc_init(); /* in SRAM or SDRAM, finish GPMC */ |
| 41 | /* board id for Linux */ |
| 42 | gd->bd->bi_arch_number = MACH_TYPE_IGEP0030; |
| 43 | /* boot param addr */ |
| 44 | gd->bd->bi_boot_params = (OMAP34XX_SDRC_CS0 + 0x100); |
| 45 | |
| 46 | return 0; |
| 47 | } |
| 48 | |
| 49 | /* |
| 50 | * Routine: misc_init_r |
| 51 | * Description: Configure board specific parts |
| 52 | */ |
| 53 | int misc_init_r(void) |
| 54 | { |
| 55 | twl4030_power_init(); |
| 56 | |
| 57 | dieid_num_r(); |
| 58 | |
| 59 | return 0; |
| 60 | } |
| 61 | |
| 62 | /* |
| 63 | * Routine: set_muxconf_regs |
| 64 | * Description: Setting up the configuration Mux registers specific to the |
| 65 | * hardware. Many pins need to be moved from protect to primary |
| 66 | * mode. |
| 67 | */ |
| 68 | void set_muxconf_regs(void) |
| 69 | { |
| 70 | MUX_DEFAULT(); |
| 71 | } |