1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27#include <common.h>
28#include <netdev.h>
29#include <asm/arch/clock.h>
30#include <asm/arch/imx-regs.h>
31#include <asm/arch/sys_proto.h>
32#include <watchdog.h>
33#include <pmic.h>
34#include <fsl_pmic.h>
35
36DECLARE_GLOBAL_DATA_PTR;
37
38#ifdef CONFIG_HW_WATCHDOG
39void hw_watchdog_reset(void)
40{
41 mxc_hw_watchdog_reset();
42}
43#endif
44
45int dram_init(void)
46{
47
48 gd->ram_size = get_ram_size((void *)CONFIG_SYS_SDRAM_BASE,
49 PHYS_SDRAM_1_SIZE);
50 return 0;
51}
52
53int board_early_init_f(void)
54{
55
56 static const struct mxc_weimcs cs5 = {
57
58 CSCR_U(0, 0, 0, 0, 0, 0, 0, 0, 3, 24, 0, 4, 3),
59
60 CSCR_L(2, 2, 2, 5, 2, 0, 5, 2, 0, 0, 0, 1),
61
62 CSCR_A(2, 2, 2, 2, 0, 0, 2, 2, 0, 0, 0, 0, 0, 0)
63 };
64
65 mxc_setup_weimcs(5, &cs5);
66
67
68 mx31_uart1_hw_init();
69 mx31_spi2_hw_init();
70
71 return 0;
72}
73
74int board_init(void)
75{
76
77 gd->bd->bi_boot_params = PHYS_SDRAM_1 + 0x100;
78
79 return 0;
80}
81
82int board_late_init(void)
83{
84 u32 val;
85 struct pmic *p;
86
87 pmic_init();
88 p = get_pmic();
89
90
91 pmic_reg_read(p, REG_POWER_CTL0, &val);
92 pmic_reg_write(p, REG_POWER_CTL0, val | COINCHEN);
93 pmic_reg_write(p, REG_INT_STATUS1, RTCRSTI);
94#ifdef CONFIG_HW_WATCHDOG
95 mxc_hw_watchdog_enable();
96#endif
97 return 0;
98}
99
100int checkboard(void)
101{
102 printf("Board: MX31PDK\n");
103 return 0;
104}
105
106int board_eth_init(bd_t *bis)
107{
108 int rc = 0;
109#ifdef CONFIG_SMC911X
110 rc = smc911x_initialize(0, CONFIG_SMC911X_BASE);
111#endif
112 return rc;
113}
114