1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23#include <common.h>
24#include <asm/io.h>
25#include <netdev.h>
26#include <asm/arch/cpu.h>
27#include <asm/arch/gpio.h>
28#include <asm/arch/mmc.h>
29#include <asm/arch/sromc.h>
30
31DECLARE_GLOBAL_DATA_PTR;
32struct exynos5_gpio_part1 *gpio1;
33
34#ifdef CONFIG_SMC911X
35static void smc9115_pre_init(void)
36{
37 u32 smc_bw_conf, smc_bc_conf;
38 int i;
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55 s5p_gpio_cfg_pin(&gpio1->y0, CONFIG_ENV_SROM_BANK, GPIO_FUNC(2));
56 s5p_gpio_cfg_pin(&gpio1->y0, 4, GPIO_FUNC(2));
57 s5p_gpio_cfg_pin(&gpio1->y0, 5, GPIO_FUNC(2));
58
59 for (i = 0; i < 4; i++)
60 s5p_gpio_cfg_pin(&gpio1->y1, i, GPIO_FUNC(2));
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94 for (i = 0; i < 8; i++) {
95 s5p_gpio_cfg_pin(&gpio1->y3, i, GPIO_FUNC(2));
96 s5p_gpio_set_pull(&gpio1->y3, i, GPIO_PULL_UP);
97
98 s5p_gpio_cfg_pin(&gpio1->y5, i, GPIO_FUNC(2));
99 s5p_gpio_set_pull(&gpio1->y5, i, GPIO_PULL_UP);
100
101 s5p_gpio_cfg_pin(&gpio1->y6, i, GPIO_FUNC(2));
102 s5p_gpio_set_pull(&gpio1->y6, i, GPIO_PULL_UP);
103 }
104
105
106 smc_bw_conf = SROMC_DATA16_WIDTH(CONFIG_ENV_SROM_BANK)
107 | SROMC_BYTE_ENABLE(CONFIG_ENV_SROM_BANK);
108
109 smc_bc_conf = SROMC_BC_TACS(0x01) | SROMC_BC_TCOS(0x01)
110 | SROMC_BC_TACC(0x06) | SROMC_BC_TCOH(0x01)
111 | SROMC_BC_TAH(0x0C) | SROMC_BC_TACP(0x09)
112 | SROMC_BC_PMC(0x01);
113
114
115 s5p_config_sromc(CONFIG_ENV_SROM_BANK, smc_bw_conf, smc_bc_conf);
116}
117#endif
118
119int board_init(void)
120{
121 gpio1 = (struct exynos5_gpio_part1 *) samsung_get_base_gpio_part1();
122
123 gd->bd->bi_boot_params = (PHYS_SDRAM_1 + 0x100UL);
124 return 0;
125}
126
127int dram_init(void)
128{
129 gd->ram_size = get_ram_size((long *)PHYS_SDRAM_1, PHYS_SDRAM_1_SIZE)
130 + get_ram_size((long *)PHYS_SDRAM_2, PHYS_SDRAM_2_SIZE)
131 + get_ram_size((long *)PHYS_SDRAM_3, PHYS_SDRAM_3_SIZE)
132 + get_ram_size((long *)PHYS_SDRAM_4, PHYS_SDRAM_4_SIZE)
133 + get_ram_size((long *)PHYS_SDRAM_5, PHYS_SDRAM_7_SIZE)
134 + get_ram_size((long *)PHYS_SDRAM_6, PHYS_SDRAM_7_SIZE)
135 + get_ram_size((long *)PHYS_SDRAM_7, PHYS_SDRAM_7_SIZE)
136 + get_ram_size((long *)PHYS_SDRAM_8, PHYS_SDRAM_8_SIZE);
137 return 0;
138}
139
140void dram_init_banksize(void)
141{
142 gd->bd->bi_dram[0].start = PHYS_SDRAM_1;
143 gd->bd->bi_dram[0].size = get_ram_size((long *)PHYS_SDRAM_1,
144 PHYS_SDRAM_1_SIZE);
145 gd->bd->bi_dram[1].start = PHYS_SDRAM_2;
146 gd->bd->bi_dram[1].size = get_ram_size((long *)PHYS_SDRAM_2,
147 PHYS_SDRAM_2_SIZE);
148 gd->bd->bi_dram[2].start = PHYS_SDRAM_3;
149 gd->bd->bi_dram[2].size = get_ram_size((long *)PHYS_SDRAM_3,
150 PHYS_SDRAM_3_SIZE);
151 gd->bd->bi_dram[3].start = PHYS_SDRAM_4;
152 gd->bd->bi_dram[3].size = get_ram_size((long *)PHYS_SDRAM_4,
153 PHYS_SDRAM_4_SIZE);
154 gd->bd->bi_dram[4].start = PHYS_SDRAM_5;
155 gd->bd->bi_dram[4].size = get_ram_size((long *)PHYS_SDRAM_5,
156 PHYS_SDRAM_5_SIZE);
157 gd->bd->bi_dram[5].start = PHYS_SDRAM_6;
158 gd->bd->bi_dram[5].size = get_ram_size((long *)PHYS_SDRAM_6,
159 PHYS_SDRAM_6_SIZE);
160 gd->bd->bi_dram[6].start = PHYS_SDRAM_7;
161 gd->bd->bi_dram[6].size = get_ram_size((long *)PHYS_SDRAM_7,
162 PHYS_SDRAM_7_SIZE);
163 gd->bd->bi_dram[7].start = PHYS_SDRAM_8;
164 gd->bd->bi_dram[7].size = get_ram_size((long *)PHYS_SDRAM_8,
165 PHYS_SDRAM_8_SIZE);
166}
167
168int board_eth_init(bd_t *bis)
169{
170#ifdef CONFIG_SMC911X
171 smc9115_pre_init();
172 return smc911x_initialize(0, CONFIG_SMC911X_BASE);
173#endif
174 return 0;
175}
176
177#ifdef CONFIG_DISPLAY_BOARDINFO
178int checkboard(void)
179{
180 printf("\nBoard: SMDK5250\n");
181
182 return 0;
183}
184#endif
185
186#ifdef CONFIG_GENERIC_MMC
187int board_mmc_init(bd_t *bis)
188{
189 int i, err;
190
191
192
193
194
195
196
197
198
199 for (i = 0; i < 7; i++) {
200
201 s5p_gpio_cfg_pin(&gpio1->c2, i, GPIO_FUNC(0x2));
202
203
204 s5p_gpio_set_drv(&gpio1->c2, i, GPIO_DRV_4X);
205
206
207 if (i == 0 || i == 1) {
208 s5p_gpio_set_pull(&gpio1->c2, i, GPIO_PULL_NONE);
209 continue;
210 }
211
212
213 s5p_gpio_set_pull(&gpio1->c2, i, GPIO_PULL_UP);
214 }
215
216 err = s5p_mmc_init(2, 4);
217 return err;
218}
219#endif
220
221static void board_uart_init(void)
222{
223 struct exynos5_gpio_part1 *gpio1 =
224 (struct exynos5_gpio_part1 *) samsung_get_base_gpio_part1();
225 int i;
226
227
228
229
230
231 for (i = 0; i <= 3; i++) {
232 s5p_gpio_set_pull(&gpio1->a0, i, GPIO_PULL_NONE);
233 s5p_gpio_cfg_pin(&gpio1->a0, i, GPIO_FUNC(0x2));
234 }
235
236
237
238
239
240
241
242
243 for (i = 4; i <= 5; i++) {
244 s5p_gpio_set_pull(&gpio1->a0, i, GPIO_PULL_NONE);
245 s5p_gpio_cfg_pin(&gpio1->a0, i, GPIO_FUNC(0x2));
246 }
247
248
249
250
251
252
253
254
255 for (i = 0; i <= 1; i++) {
256 s5p_gpio_set_pull(&gpio1->a1, i, GPIO_PULL_NONE);
257 s5p_gpio_cfg_pin(&gpio1->a1, i, GPIO_FUNC(0x2));
258 }
259
260
261
262
263
264 for (i = 4; i <= 5; i++) {
265 s5p_gpio_set_pull(&gpio1->a1, i, GPIO_PULL_NONE);
266 s5p_gpio_cfg_pin(&gpio1->a1, i, GPIO_FUNC(0x2));
267 }
268
269
270
271
272}
273
274#ifdef CONFIG_BOARD_EARLY_INIT_F
275int board_early_init_f(void)
276{
277 board_uart_init();
278 return 0;
279}
280#endif
281