3 * (C) Copyright 2009 Magnus Lilja <lilja.magnus@gmail.com>
5 * (c) 2007 Pengutronix, Sascha Hauer <s.hauer@pengutronix.de>
7 * See file CREDITS for list of people who contributed to this
10 * This program is free software; you can redistribute it and/or
11 * modify it under the terms of the GNU General Public License as
12 * published by the Free Software Foundation; either version 2 of
13 * the License, or (at your option) any later version.
15 * This program is distributed in the hope that it will be useful,
16 * but WITHOUT ANY WARRANTY; without even the implied warranty of
17 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18 * GNU General Public License for more details.
20 * You should have received a copy of the GNU General Public License
21 * along with this program; if not, write to the Free Software
22 * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
29 #include <asm/arch/clock.h>
30 #include <asm/arch/imx-regs.h>
31 #include <asm/arch/sys_proto.h>
33 #include <power/pmic.h>
37 DECLARE_GLOBAL_DATA_PTR;
41 /* dram_init must store complete ramsize in gd->ram_size */
42 gd->ram_size = get_ram_size((void *)CONFIG_SYS_SDRAM_BASE,
47 int board_early_init_f(void)
49 /* CS5: CPLD incl. network controller */
50 static const struct mxc_weimcs cs5 = {
51 /* sp wp bcd bcs psz pme sync dol cnc wsc ew wws edc */
52 CSCR_U(0, 0, 0, 0, 0, 0, 0, 0, 3, 24, 0, 4, 3),
53 /* oea oen ebwa ebwn csa ebc dsz csn psr cre wrap csen */
54 CSCR_L(2, 2, 2, 5, 2, 0, 5, 2, 0, 0, 0, 1),
55 /* ebra ebrn rwa rwn mum lah lbn lba dww dct wwu age cnc2 fce*/
56 CSCR_A(2, 2, 2, 2, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0)
59 mxc_setup_weimcs(5, &cs5);
61 /* Setup UART1 and SPI2 pins */
70 /* adress of boot parameters */
71 gd->bd->bi_boot_params = PHYS_SDRAM_1 + 0x100;
76 int board_late_init(void)
82 ret = pmic_init(I2C_PMIC);
86 p = pmic_get("FSL_PMIC");
89 /* Enable RTC battery */
90 pmic_reg_read(p, REG_POWER_CTL0, &val);
91 pmic_reg_write(p, REG_POWER_CTL0, val | COINCHEN);
92 pmic_reg_write(p, REG_INT_STATUS1, RTCRSTI);
93 #ifdef CONFIG_HW_WATCHDOG
101 printf("Board: MX31PDK\n");
105 int board_eth_init(bd_t *bis)
108 #ifdef CONFIG_SMC911X
109 rc = smc911x_initialize(0, CONFIG_SMC911X_BASE);