blob: b31a97b5d01490367cd0a67742789584fff38395 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Magnus Lilja8449f282009-07-01 01:07:55 +02002/*
3 *
4 * (C) Copyright 2009 Magnus Lilja <lilja.magnus@gmail.com>
5 *
6 * (c) 2007 Pengutronix, Sascha Hauer <s.hauer@pengutronix.de>
Magnus Lilja8449f282009-07-01 01:07:55 +02007 */
8
9
10#include <common.h>
Ben Warren736fead2009-07-20 22:01:11 -070011#include <netdev.h>
Stefano Babic86271112011-03-14 15:43:56 +010012#include <asm/arch/clock.h>
13#include <asm/arch/imx-regs.h>
Helmut Raiger47c54552011-09-29 05:45:03 +000014#include <asm/arch/sys_proto.h>
Fabio Estevamb73850f2011-04-10 08:17:50 +000015#include <watchdog.h>
Łukasz Majewskic7336812012-11-13 03:21:55 +000016#include <power/pmic.h>
Fabio Estevam1f83d002011-10-24 05:32:28 +000017#include <fsl_pmic.h>
Łukasz Majewskic7336812012-11-13 03:21:55 +000018#include <errno.h>
Magnus Lilja8449f282009-07-01 01:07:55 +020019
20DECLARE_GLOBAL_DATA_PTR;
21
Benoît Thébaudeauda962b72013-04-11 09:35:51 +000022#ifdef CONFIG_SPL_BUILD
23void board_init_f(ulong bootflag)
24{
Albert ARIBAUD3acb3242013-05-19 01:48:12 +000025 /*
26 * copy ourselves from where we are running to where we were
27 * linked at. Use ulong pointers as all addresses involved
28 * are 4-byte-aligned.
29 */
30 ulong *start_ptr, *end_ptr, *link_ptr, *run_ptr, *dst;
31 asm volatile ("ldr %0, =_start" : "=r"(start_ptr));
32 asm volatile ("ldr %0, =_end" : "=r"(end_ptr));
33 asm volatile ("ldr %0, =board_init_f" : "=r"(link_ptr));
34 asm volatile ("adr %0, board_init_f" : "=r"(run_ptr));
35 for (dst = start_ptr; dst < end_ptr; dst++)
36 *dst = *(dst+(run_ptr-link_ptr));
37 /*
38 * branch to nand_boot's link-time address.
39 */
Benoît Thébaudeauda962b72013-04-11 09:35:51 +000040 asm volatile("ldr pc, =nand_boot");
41}
42#endif
43
Magnus Lilja8449f282009-07-01 01:07:55 +020044int dram_init(void)
45{
Fabio Estevamed3df722011-02-09 01:17:55 +000046 /* dram_init must store complete ramsize in gd->ram_size */
Albert ARIBAUDa55d23c2011-07-03 05:55:33 +000047 gd->ram_size = get_ram_size((void *)CONFIG_SYS_SDRAM_BASE,
Fabio Estevamed3df722011-02-09 01:17:55 +000048 PHYS_SDRAM_1_SIZE);
49 return 0;
50}
51
Fabio Estevam9b6442f2011-02-09 01:17:56 +000052int board_early_init_f(void)
Magnus Lilja8449f282009-07-01 01:07:55 +020053{
54 /* CS5: CPLD incl. network controller */
Helmut Raiger47c54552011-09-29 05:45:03 +000055 static const struct mxc_weimcs cs5 = {
56 /* sp wp bcd bcs psz pme sync dol cnc wsc ew wws edc */
57 CSCR_U(0, 0, 0, 0, 0, 0, 0, 0, 3, 24, 0, 4, 3),
58 /* oea oen ebwa ebwn csa ebc dsz csn psr cre wrap csen */
59 CSCR_L(2, 2, 2, 5, 2, 0, 5, 2, 0, 0, 0, 1),
60 /* ebra ebrn rwa rwn mum lah lbn lba dww dct wwu age cnc2 fce*/
61 CSCR_A(2, 2, 2, 2, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0)
62 };
63
64 mxc_setup_weimcs(5, &cs5);
Magnus Lilja8449f282009-07-01 01:07:55 +020065
66 /* Setup UART1 and SPI2 pins */
67 mx31_uart1_hw_init();
68 mx31_spi2_hw_init();
69
Fabio Estevam9b6442f2011-02-09 01:17:56 +000070 return 0;
71}
72
73int board_init(void)
74{
Magnus Lilja8449f282009-07-01 01:07:55 +020075 /* adress of boot parameters */
76 gd->bd->bi_boot_params = PHYS_SDRAM_1 + 0x100;
77
78 return 0;
79}
80
Fabio Estevamb73850f2011-04-10 08:17:50 +000081int board_late_init(void)
82{
Fabio Estevam1f83d002011-10-24 05:32:28 +000083 u32 val;
84 struct pmic *p;
Łukasz Majewskic7336812012-11-13 03:21:55 +000085 int ret;
Fabio Estevam1f83d002011-10-24 05:32:28 +000086
Fabio Estevam4e785c62013-11-20 20:26:04 -020087 ret = pmic_init(CONFIG_FSL_PMIC_BUS);
Łukasz Majewskic7336812012-11-13 03:21:55 +000088 if (ret)
89 return ret;
Fabio Estevam1f83d002011-10-24 05:32:28 +000090
Łukasz Majewskic7336812012-11-13 03:21:55 +000091 p = pmic_get("FSL_PMIC");
92 if (!p)
93 return -ENODEV;
Fabio Estevam1f83d002011-10-24 05:32:28 +000094 /* Enable RTC battery */
95 pmic_reg_read(p, REG_POWER_CTL0, &val);
96 pmic_reg_write(p, REG_POWER_CTL0, val | COINCHEN);
97 pmic_reg_write(p, REG_INT_STATUS1, RTCRSTI);
Fabio Estevamb73850f2011-04-10 08:17:50 +000098#ifdef CONFIG_HW_WATCHDOG
Troy Kiskyabbab702012-10-22 15:19:01 +000099 hw_watchdog_init();
Fabio Estevamb73850f2011-04-10 08:17:50 +0000100#endif
101 return 0;
102}
103
Magnus Lilja8449f282009-07-01 01:07:55 +0200104int checkboard(void)
105{
Fabio Estevame9e07902011-04-18 07:38:12 +0000106 printf("Board: MX31PDK\n");
Magnus Lilja8449f282009-07-01 01:07:55 +0200107 return 0;
108}
Ben Warren736fead2009-07-20 22:01:11 -0700109
110int board_eth_init(bd_t *bis)
111{
112 int rc = 0;
113#ifdef CONFIG_SMC911X
114 rc = smc911x_initialize(0, CONFIG_SMC911X_BASE);
115#endif
116 return rc;
117}