blob: 4f6cfeeaa34bd3552acb941adf3131d7d320d28e [file] [log] [blame]
Magnus Lilja8449f282009-07-01 01:07:55 +02001/*
2 *
3 * (C) Copyright 2009 Magnus Lilja <lilja.magnus@gmail.com>
4 *
5 * (c) 2007 Pengutronix, Sascha Hauer <s.hauer@pengutronix.de>
6 *
7 * See file CREDITS for list of people who contributed to this
8 * project.
9 *
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.
14 *
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.
19 *
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,
23 * MA 02111-1307 USA
24 */
25
26
27#include <common.h>
Ben Warren736fead2009-07-20 22:01:11 -070028#include <netdev.h>
Stefano Babic86271112011-03-14 15:43:56 +010029#include <asm/arch/clock.h>
30#include <asm/arch/imx-regs.h>
Helmut Raiger47c54552011-09-29 05:45:03 +000031#include <asm/arch/sys_proto.h>
Fabio Estevamb73850f2011-04-10 08:17:50 +000032#include <watchdog.h>
Łukasz Majewskic7336812012-11-13 03:21:55 +000033#include <power/pmic.h>
Fabio Estevam1f83d002011-10-24 05:32:28 +000034#include <fsl_pmic.h>
Łukasz Majewskic7336812012-11-13 03:21:55 +000035#include <errno.h>
Magnus Lilja8449f282009-07-01 01:07:55 +020036
37DECLARE_GLOBAL_DATA_PTR;
38
Benoît Thébaudeauda962b72013-04-11 09:35:51 +000039#ifdef CONFIG_SPL_BUILD
40void board_init_f(ulong bootflag)
41{
Albert ARIBAUD3acb3242013-05-19 01:48:12 +000042 /*
43 * copy ourselves from where we are running to where we were
44 * linked at. Use ulong pointers as all addresses involved
45 * are 4-byte-aligned.
46 */
47 ulong *start_ptr, *end_ptr, *link_ptr, *run_ptr, *dst;
48 asm volatile ("ldr %0, =_start" : "=r"(start_ptr));
49 asm volatile ("ldr %0, =_end" : "=r"(end_ptr));
50 asm volatile ("ldr %0, =board_init_f" : "=r"(link_ptr));
51 asm volatile ("adr %0, board_init_f" : "=r"(run_ptr));
52 for (dst = start_ptr; dst < end_ptr; dst++)
53 *dst = *(dst+(run_ptr-link_ptr));
54 /*
55 * branch to nand_boot's link-time address.
56 */
Benoît Thébaudeauda962b72013-04-11 09:35:51 +000057 asm volatile("ldr pc, =nand_boot");
58}
59#endif
60
Magnus Lilja8449f282009-07-01 01:07:55 +020061int dram_init(void)
62{
Fabio Estevamed3df722011-02-09 01:17:55 +000063 /* dram_init must store complete ramsize in gd->ram_size */
Albert ARIBAUDa55d23c2011-07-03 05:55:33 +000064 gd->ram_size = get_ram_size((void *)CONFIG_SYS_SDRAM_BASE,
Fabio Estevamed3df722011-02-09 01:17:55 +000065 PHYS_SDRAM_1_SIZE);
66 return 0;
67}
68
Fabio Estevam9b6442f2011-02-09 01:17:56 +000069int board_early_init_f(void)
Magnus Lilja8449f282009-07-01 01:07:55 +020070{
71 /* CS5: CPLD incl. network controller */
Helmut Raiger47c54552011-09-29 05:45:03 +000072 static const struct mxc_weimcs cs5 = {
73 /* sp wp bcd bcs psz pme sync dol cnc wsc ew wws edc */
74 CSCR_U(0, 0, 0, 0, 0, 0, 0, 0, 3, 24, 0, 4, 3),
75 /* oea oen ebwa ebwn csa ebc dsz csn psr cre wrap csen */
76 CSCR_L(2, 2, 2, 5, 2, 0, 5, 2, 0, 0, 0, 1),
77 /* ebra ebrn rwa rwn mum lah lbn lba dww dct wwu age cnc2 fce*/
78 CSCR_A(2, 2, 2, 2, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0)
79 };
80
81 mxc_setup_weimcs(5, &cs5);
Magnus Lilja8449f282009-07-01 01:07:55 +020082
83 /* Setup UART1 and SPI2 pins */
84 mx31_uart1_hw_init();
85 mx31_spi2_hw_init();
86
Fabio Estevam9b6442f2011-02-09 01:17:56 +000087 return 0;
88}
89
90int board_init(void)
91{
Magnus Lilja8449f282009-07-01 01:07:55 +020092 /* adress of boot parameters */
93 gd->bd->bi_boot_params = PHYS_SDRAM_1 + 0x100;
94
95 return 0;
96}
97
Fabio Estevamb73850f2011-04-10 08:17:50 +000098int board_late_init(void)
99{
Fabio Estevam1f83d002011-10-24 05:32:28 +0000100 u32 val;
101 struct pmic *p;
Łukasz Majewskic7336812012-11-13 03:21:55 +0000102 int ret;
Fabio Estevam1f83d002011-10-24 05:32:28 +0000103
Łukasz Majewskic7336812012-11-13 03:21:55 +0000104 ret = pmic_init(I2C_PMIC);
105 if (ret)
106 return ret;
Fabio Estevam1f83d002011-10-24 05:32:28 +0000107
Łukasz Majewskic7336812012-11-13 03:21:55 +0000108 p = pmic_get("FSL_PMIC");
109 if (!p)
110 return -ENODEV;
Fabio Estevam1f83d002011-10-24 05:32:28 +0000111 /* Enable RTC battery */
112 pmic_reg_read(p, REG_POWER_CTL0, &val);
113 pmic_reg_write(p, REG_POWER_CTL0, val | COINCHEN);
114 pmic_reg_write(p, REG_INT_STATUS1, RTCRSTI);
Fabio Estevamb73850f2011-04-10 08:17:50 +0000115#ifdef CONFIG_HW_WATCHDOG
Troy Kiskyabbab702012-10-22 15:19:01 +0000116 hw_watchdog_init();
Fabio Estevamb73850f2011-04-10 08:17:50 +0000117#endif
118 return 0;
119}
120
Magnus Lilja8449f282009-07-01 01:07:55 +0200121int checkboard(void)
122{
Fabio Estevame9e07902011-04-18 07:38:12 +0000123 printf("Board: MX31PDK\n");
Magnus Lilja8449f282009-07-01 01:07:55 +0200124 return 0;
125}
Ben Warren736fead2009-07-20 22:01:11 -0700126
127int board_eth_init(bd_t *bis)
128{
129 int rc = 0;
130#ifdef CONFIG_SMC911X
131 rc = smc911x_initialize(0, CONFIG_SMC911X_BASE);
132#endif
133 return rc;
134}