]> git.ipfire.org Git - people/ms/u-boot.git/blob - board/ti/am43xx/board.c
board: ti: am43xx: replace if else if else with a switch
[people/ms/u-boot.git] / board / ti / am43xx / board.c
1 /*
2 * board.c
3 *
4 * Board functions for TI AM43XX based boards
5 *
6 * Copyright (C) 2013, Texas Instruments, Incorporated - http://www.ti.com/
7 *
8 * SPDX-License-Identifier: GPL-2.0+
9 */
10
11 #include <common.h>
12 #include <i2c.h>
13 #include <asm/errno.h>
14 #include <spl.h>
15 #include <asm/arch/clock.h>
16 #include <asm/arch/sys_proto.h>
17 #include <asm/arch/mux.h>
18 #include <asm/arch/ddr_defs.h>
19 #include <asm/arch/gpio.h>
20 #include <asm/emif.h>
21 #include "board.h"
22 #include <power/pmic.h>
23 #include <power/tps65218.h>
24 #include <miiphy.h>
25 #include <cpsw.h>
26
27 DECLARE_GLOBAL_DATA_PTR;
28
29 static struct ctrl_dev *cdev = (struct ctrl_dev *)CTRL_DEVICE_BASE;
30
31 /*
32 * Read header information from EEPROM into global structure.
33 */
34 static int read_eeprom(struct am43xx_board_id *header)
35 {
36 /* Check if baseboard eeprom is available */
37 if (i2c_probe(CONFIG_SYS_I2C_EEPROM_ADDR)) {
38 printf("Could not probe the EEPROM at 0x%x\n",
39 CONFIG_SYS_I2C_EEPROM_ADDR);
40 return -ENODEV;
41 }
42
43 /* read the eeprom using i2c */
44 if (i2c_read(CONFIG_SYS_I2C_EEPROM_ADDR, 0, 2, (uchar *)header,
45 sizeof(struct am43xx_board_id))) {
46 printf("Could not read the EEPROM\n");
47 return -EIO;
48 }
49
50 if (header->magic != 0xEE3355AA) {
51 /*
52 * read the eeprom using i2c again,
53 * but use only a 1 byte address
54 */
55 if (i2c_read(CONFIG_SYS_I2C_EEPROM_ADDR, 0, 1, (uchar *)header,
56 sizeof(struct am43xx_board_id))) {
57 printf("Could not read the EEPROM at 0x%x\n",
58 CONFIG_SYS_I2C_EEPROM_ADDR);
59 return -EIO;
60 }
61
62 if (header->magic != 0xEE3355AA) {
63 printf("Incorrect magic number (0x%x) in EEPROM\n",
64 header->magic);
65 return -EINVAL;
66 }
67 }
68
69 strncpy(am43xx_board_name, (char *)header->name, sizeof(header->name));
70 am43xx_board_name[sizeof(header->name)] = 0;
71
72 strncpy(am43xx_board_rev, (char *)header->version, sizeof(header->version));
73 am43xx_board_rev[sizeof(header->version)] = 0;
74
75 return 0;
76 }
77
78 #ifndef CONFIG_SKIP_LOWLEVEL_INIT
79
80 #define NUM_OPPS 6
81
82 const struct dpll_params dpll_mpu[NUM_CRYSTAL_FREQ][NUM_OPPS] = {
83 { /* 19.2 MHz */
84 {125, 3, 2, -1, -1, -1, -1}, /* OPP 50 */
85 {-1, -1, -1, -1, -1, -1, -1}, /* OPP RESERVED */
86 {125, 3, 1, -1, -1, -1, -1}, /* OPP 100 */
87 {150, 3, 1, -1, -1, -1, -1}, /* OPP 120 */
88 {125, 2, 1, -1, -1, -1, -1}, /* OPP TB */
89 {625, 11, 1, -1, -1, -1, -1} /* OPP NT */
90 },
91 { /* 24 MHz */
92 {300, 23, 1, -1, -1, -1, -1}, /* OPP 50 */
93 {-1, -1, -1, -1, -1, -1, -1}, /* OPP RESERVED */
94 {600, 23, 1, -1, -1, -1, -1}, /* OPP 100 */
95 {720, 23, 1, -1, -1, -1, -1}, /* OPP 120 */
96 {800, 23, 1, -1, -1, -1, -1}, /* OPP TB */
97 {1000, 23, 1, -1, -1, -1, -1} /* OPP NT */
98 },
99 { /* 25 MHz */
100 {300, 24, 1, -1, -1, -1, -1}, /* OPP 50 */
101 {-1, -1, -1, -1, -1, -1, -1}, /* OPP RESERVED */
102 {600, 24, 1, -1, -1, -1, -1}, /* OPP 100 */
103 {720, 24, 1, -1, -1, -1, -1}, /* OPP 120 */
104 {800, 24, 1, -1, -1, -1, -1}, /* OPP TB */
105 {1000, 24, 1, -1, -1, -1, -1} /* OPP NT */
106 },
107 { /* 26 MHz */
108 {300, 25, 1, -1, -1, -1, -1}, /* OPP 50 */
109 {-1, -1, -1, -1, -1, -1, -1}, /* OPP RESERVED */
110 {600, 25, 1, -1, -1, -1, -1}, /* OPP 100 */
111 {720, 25, 1, -1, -1, -1, -1}, /* OPP 120 */
112 {800, 25, 1, -1, -1, -1, -1}, /* OPP TB */
113 {1000, 25, 1, -1, -1, -1, -1} /* OPP NT */
114 },
115 };
116
117 const struct dpll_params dpll_core[NUM_CRYSTAL_FREQ] = {
118 {625, 11, -1, -1, 10, 8, 4}, /* 19.2 MHz */
119 {1000, 23, -1, -1, 10, 8, 4}, /* 24 MHz */
120 {1000, 24, -1, -1, 10, 8, 4}, /* 25 MHz */
121 {1000, 25, -1, -1, 10, 8, 4} /* 26 MHz */
122 };
123
124 const struct dpll_params dpll_per[NUM_CRYSTAL_FREQ] = {
125 {400, 7, 5, -1, -1, -1, -1}, /* 19.2 MHz */
126 {400, 9, 5, -1, -1, -1, -1}, /* 24 MHz */
127 {384, 9, 5, -1, -1, -1, -1}, /* 25 MHz */
128 {480, 12, 5, -1, -1, -1, -1} /* 26 MHz */
129 };
130
131 const struct dpll_params epos_evm_dpll_ddr[NUM_CRYSTAL_FREQ] = {
132 {665, 47, 1, -1, 4, -1, -1}, /*19.2*/
133 {133, 11, 1, -1, 4, -1, -1}, /* 24 MHz */
134 {266, 24, 1, -1, 4, -1, -1}, /* 25 MHz */
135 {133, 12, 1, -1, 4, -1, -1} /* 26 MHz */
136 };
137
138 const struct dpll_params gp_evm_dpll_ddr = {
139 50, 2, 1, -1, 2, -1, -1};
140
141 const struct ctrl_ioregs ioregs_lpddr2 = {
142 .cm0ioctl = LPDDR2_ADDRCTRL_IOCTRL_VALUE,
143 .cm1ioctl = LPDDR2_ADDRCTRL_WD0_IOCTRL_VALUE,
144 .cm2ioctl = LPDDR2_ADDRCTRL_WD1_IOCTRL_VALUE,
145 .dt0ioctl = LPDDR2_DATA0_IOCTRL_VALUE,
146 .dt1ioctl = LPDDR2_DATA0_IOCTRL_VALUE,
147 .dt2ioctrl = LPDDR2_DATA0_IOCTRL_VALUE,
148 .dt3ioctrl = LPDDR2_DATA0_IOCTRL_VALUE,
149 .emif_sdram_config_ext = 0x1,
150 };
151
152 const struct emif_regs emif_regs_lpddr2 = {
153 .sdram_config = 0x808012BA,
154 .ref_ctrl = 0x0000040D,
155 .sdram_tim1 = 0xEA86B411,
156 .sdram_tim2 = 0x103A094A,
157 .sdram_tim3 = 0x0F6BA37F,
158 .read_idle_ctrl = 0x00050000,
159 .zq_config = 0x50074BE4,
160 .temp_alert_config = 0x0,
161 .emif_rd_wr_lvl_rmp_win = 0x0,
162 .emif_rd_wr_lvl_rmp_ctl = 0x0,
163 .emif_rd_wr_lvl_ctl = 0x0,
164 .emif_ddr_phy_ctlr_1 = 0x0E284006,
165 .emif_rd_wr_exec_thresh = 0x80000405,
166 .emif_ddr_ext_phy_ctrl_1 = 0x04010040,
167 .emif_ddr_ext_phy_ctrl_2 = 0x00500050,
168 .emif_ddr_ext_phy_ctrl_3 = 0x00500050,
169 .emif_ddr_ext_phy_ctrl_4 = 0x00500050,
170 .emif_ddr_ext_phy_ctrl_5 = 0x00500050,
171 .emif_prio_class_serv_map = 0x80000001,
172 .emif_connect_id_serv_1_map = 0x80000094,
173 .emif_connect_id_serv_2_map = 0x00000000,
174 .emif_cos_config = 0x000FFFFF
175 };
176
177 const struct ctrl_ioregs ioregs_ddr3 = {
178 .cm0ioctl = DDR3_ADDRCTRL_IOCTRL_VALUE,
179 .cm1ioctl = DDR3_ADDRCTRL_WD0_IOCTRL_VALUE,
180 .cm2ioctl = DDR3_ADDRCTRL_WD1_IOCTRL_VALUE,
181 .dt0ioctl = DDR3_DATA0_IOCTRL_VALUE,
182 .dt1ioctl = DDR3_DATA0_IOCTRL_VALUE,
183 .dt2ioctrl = DDR3_DATA0_IOCTRL_VALUE,
184 .dt3ioctrl = DDR3_DATA0_IOCTRL_VALUE,
185 .emif_sdram_config_ext = 0xc163,
186 };
187
188 const struct emif_regs ddr3_emif_regs_400Mhz = {
189 .sdram_config = 0x638413B2,
190 .ref_ctrl = 0x00000C30,
191 .sdram_tim1 = 0xEAAAD4DB,
192 .sdram_tim2 = 0x266B7FDA,
193 .sdram_tim3 = 0x107F8678,
194 .read_idle_ctrl = 0x00050000,
195 .zq_config = 0x50074BE4,
196 .temp_alert_config = 0x0,
197 .emif_ddr_phy_ctlr_1 = 0x0E004008,
198 .emif_ddr_ext_phy_ctrl_1 = 0x08020080,
199 .emif_ddr_ext_phy_ctrl_2 = 0x00400040,
200 .emif_ddr_ext_phy_ctrl_3 = 0x00400040,
201 .emif_ddr_ext_phy_ctrl_4 = 0x00400040,
202 .emif_ddr_ext_phy_ctrl_5 = 0x00400040,
203 .emif_rd_wr_lvl_rmp_win = 0x0,
204 .emif_rd_wr_lvl_rmp_ctl = 0x0,
205 .emif_rd_wr_lvl_ctl = 0x0,
206 .emif_rd_wr_exec_thresh = 0x80000405,
207 .emif_prio_class_serv_map = 0x80000001,
208 .emif_connect_id_serv_1_map = 0x80000094,
209 .emif_connect_id_serv_2_map = 0x00000000,
210 .emif_cos_config = 0x000FFFFF
211 };
212
213 /* EMIF DDR3 Configurations are different for beta AM43X GP EVMs */
214 const struct emif_regs ddr3_emif_regs_400Mhz_beta = {
215 .sdram_config = 0x638413B2,
216 .ref_ctrl = 0x00000C30,
217 .sdram_tim1 = 0xEAAAD4DB,
218 .sdram_tim2 = 0x266B7FDA,
219 .sdram_tim3 = 0x107F8678,
220 .read_idle_ctrl = 0x00050000,
221 .zq_config = 0x50074BE4,
222 .temp_alert_config = 0x0,
223 .emif_ddr_phy_ctlr_1 = 0x0E004008,
224 .emif_ddr_ext_phy_ctrl_1 = 0x08020080,
225 .emif_ddr_ext_phy_ctrl_2 = 0x00000065,
226 .emif_ddr_ext_phy_ctrl_3 = 0x00000091,
227 .emif_ddr_ext_phy_ctrl_4 = 0x000000B5,
228 .emif_ddr_ext_phy_ctrl_5 = 0x000000E5,
229 .emif_rd_wr_exec_thresh = 0x80000405,
230 .emif_prio_class_serv_map = 0x80000001,
231 .emif_connect_id_serv_1_map = 0x80000094,
232 .emif_connect_id_serv_2_map = 0x00000000,
233 .emif_cos_config = 0x000FFFFF
234 };
235
236 /* EMIF DDR3 Configurations are different for production AM43X GP EVMs */
237 const struct emif_regs ddr3_emif_regs_400Mhz_production = {
238 .sdram_config = 0x638413B2,
239 .ref_ctrl = 0x00000C30,
240 .sdram_tim1 = 0xEAAAD4DB,
241 .sdram_tim2 = 0x266B7FDA,
242 .sdram_tim3 = 0x107F8678,
243 .read_idle_ctrl = 0x00050000,
244 .zq_config = 0x50074BE4,
245 .temp_alert_config = 0x0,
246 .emif_ddr_phy_ctlr_1 = 0x0E004008,
247 .emif_ddr_ext_phy_ctrl_1 = 0x08020080,
248 .emif_ddr_ext_phy_ctrl_2 = 0x00000066,
249 .emif_ddr_ext_phy_ctrl_3 = 0x00000091,
250 .emif_ddr_ext_phy_ctrl_4 = 0x000000B9,
251 .emif_ddr_ext_phy_ctrl_5 = 0x000000E6,
252 .emif_rd_wr_exec_thresh = 0x80000405,
253 .emif_prio_class_serv_map = 0x80000001,
254 .emif_connect_id_serv_1_map = 0x80000094,
255 .emif_connect_id_serv_2_map = 0x00000000,
256 .emif_cos_config = 0x000FFFFF
257 };
258
259 static const struct emif_regs ddr3_sk_emif_regs_400Mhz = {
260 .sdram_config = 0x638413b2,
261 .sdram_config2 = 0x00000000,
262 .ref_ctrl = 0x00000c30,
263 .sdram_tim1 = 0xeaaad4db,
264 .sdram_tim2 = 0x266b7fda,
265 .sdram_tim3 = 0x107f8678,
266 .read_idle_ctrl = 0x00050000,
267 .zq_config = 0x50074be4,
268 .temp_alert_config = 0x0,
269 .emif_ddr_phy_ctlr_1 = 0x0e084008,
270 .emif_ddr_ext_phy_ctrl_1 = 0x08020080,
271 .emif_ddr_ext_phy_ctrl_2 = 0x89,
272 .emif_ddr_ext_phy_ctrl_3 = 0x90,
273 .emif_ddr_ext_phy_ctrl_4 = 0x8e,
274 .emif_ddr_ext_phy_ctrl_5 = 0x8d,
275 .emif_rd_wr_lvl_rmp_win = 0x0,
276 .emif_rd_wr_lvl_rmp_ctl = 0x00000000,
277 .emif_rd_wr_lvl_ctl = 0x00000000,
278 .emif_rd_wr_exec_thresh = 0x80000000,
279 .emif_prio_class_serv_map = 0x80000001,
280 .emif_connect_id_serv_1_map = 0x80000094,
281 .emif_connect_id_serv_2_map = 0x00000000,
282 .emif_cos_config = 0x000FFFFF
283 };
284
285 /*
286 * get_sys_clk_index : returns the index of the sys_clk read from
287 * ctrl status register. This value is either
288 * read from efuse or sysboot pins.
289 */
290 static u32 get_sys_clk_index(void)
291 {
292 struct ctrl_stat *ctrl = (struct ctrl_stat *)CTRL_BASE;
293 u32 ind = readl(&ctrl->statusreg), src;
294
295 src = (ind & CTRL_CRYSTAL_FREQ_SRC_MASK) >> CTRL_CRYSTAL_FREQ_SRC_SHIFT;
296 if (src == CTRL_CRYSTAL_FREQ_SRC_EFUSE) /* Value read from EFUSE */
297 return ((ind & CTRL_CRYSTAL_FREQ_SELECTION_MASK) >>
298 CTRL_CRYSTAL_FREQ_SELECTION_SHIFT);
299 else /* Value read from SYS BOOT pins */
300 return ((ind & CTRL_SYSBOOT_15_14_MASK) >>
301 CTRL_SYSBOOT_15_14_SHIFT);
302 }
303
304 const struct dpll_params *get_dpll_ddr_params(void)
305 {
306 int ind = get_sys_clk_index();
307
308 if (board_is_eposevm())
309 return &epos_evm_dpll_ddr[ind];
310 else if (board_is_gpevm() || board_is_sk())
311 return &gp_evm_dpll_ddr;
312
313 printf(" Board '%s' not supported\n", am43xx_board_name);
314 return NULL;
315 }
316
317
318 /*
319 * get_opp_offset:
320 * Returns the index for safest OPP of the device to boot.
321 * max_off: Index of the MAX OPP in DEV ATTRIBUTE register.
322 * min_off: Index of the MIN OPP in DEV ATTRIBUTE register.
323 * This data is read from dev_attribute register which is e-fused.
324 * A'1' in bit indicates OPP disabled and not available, a '0' indicates
325 * OPP available. Lowest OPP starts with min_off. So returning the
326 * bit with rightmost '0'.
327 */
328 static int get_opp_offset(int max_off, int min_off)
329 {
330 struct ctrl_stat *ctrl = (struct ctrl_stat *)CTRL_BASE;
331 int opp, offset, i;
332
333 /* Bits 0:11 are defined to be the MPU_MAX_FREQ */
334 opp = readl(&ctrl->dev_attr) & ~0xFFFFF000;
335
336 for (i = max_off; i >= min_off; i--) {
337 offset = opp & (1 << i);
338 if (!offset)
339 return i;
340 }
341
342 return min_off;
343 }
344
345 const struct dpll_params *get_dpll_mpu_params(void)
346 {
347 int opp = get_opp_offset(DEV_ATTR_MAX_OFFSET, DEV_ATTR_MIN_OFFSET);
348 u32 ind = get_sys_clk_index();
349
350 return &dpll_mpu[ind][opp];
351 }
352
353 const struct dpll_params *get_dpll_core_params(void)
354 {
355 int ind = get_sys_clk_index();
356
357 return &dpll_core[ind];
358 }
359
360 const struct dpll_params *get_dpll_per_params(void)
361 {
362 int ind = get_sys_clk_index();
363
364 return &dpll_per[ind];
365 }
366
367 void scale_vcores(void)
368 {
369 const struct dpll_params *mpu_params;
370 int mpu_vdd;
371 struct am43xx_board_id header;
372
373 enable_i2c0_pin_mux();
374 i2c_init(CONFIG_SYS_OMAP24_I2C_SPEED, CONFIG_SYS_OMAP24_I2C_SLAVE);
375 if (read_eeprom(&header) < 0)
376 puts("Could not get board ID.\n");
377
378 /* Get the frequency */
379 mpu_params = get_dpll_mpu_params();
380
381 if (i2c_probe(TPS65218_CHIP_PM))
382 return;
383
384 switch (mpu_params->m) {
385 case 1000:
386 mpu_vdd = TPS65218_DCDC_VOLT_SEL_1330MV;
387 break;
388 case 600:
389 mpu_vdd = TPS65218_DCDC_VOLT_SEL_1100MV;
390 break;
391 default:
392 puts("Unknown MPU clock, not scaling\n");
393 return;
394 }
395
396 /* Set DCDC1 (CORE) voltage to 1.1V */
397 if (tps65218_voltage_update(TPS65218_DCDC1,
398 TPS65218_DCDC_VOLT_SEL_1100MV)) {
399 puts("tps65218_voltage_update failure\n");
400 return;
401 }
402
403 /* Set DCDC2 (MPU) voltage */
404 if (tps65218_voltage_update(TPS65218_DCDC2, mpu_vdd)) {
405 puts("tps65218_voltage_update failure\n");
406 return;
407 }
408 }
409
410 void set_uart_mux_conf(void)
411 {
412 enable_uart0_pin_mux();
413 }
414
415 void set_mux_conf_regs(void)
416 {
417 enable_board_pin_mux();
418 }
419
420 static void enable_vtt_regulator(void)
421 {
422 u32 temp;
423
424 /* enable module */
425 writel(GPIO_CTRL_ENABLEMODULE, AM33XX_GPIO5_BASE + OMAP_GPIO_CTRL);
426
427 /* enable output for GPIO5_7 */
428 writel(GPIO_SETDATAOUT(7),
429 AM33XX_GPIO5_BASE + OMAP_GPIO_SETDATAOUT);
430 temp = readl(AM33XX_GPIO5_BASE + OMAP_GPIO_OE);
431 temp = temp & ~(GPIO_OE_ENABLE(7));
432 writel(temp, AM33XX_GPIO5_BASE + OMAP_GPIO_OE);
433 }
434
435 void sdram_init(void)
436 {
437 /*
438 * EPOS EVM has 1GB LPDDR2 connected to EMIF.
439 * GP EMV has 1GB DDR3 connected to EMIF
440 * along with VTT regulator.
441 */
442 if (board_is_eposevm()) {
443 config_ddr(0, &ioregs_lpddr2, NULL, NULL, &emif_regs_lpddr2, 0);
444 } else if (board_is_evm_14_or_later()) {
445 enable_vtt_regulator();
446 config_ddr(0, &ioregs_ddr3, NULL, NULL,
447 &ddr3_emif_regs_400Mhz_production, 0);
448 } else if (board_is_evm_12_or_later()) {
449 enable_vtt_regulator();
450 config_ddr(0, &ioregs_ddr3, NULL, NULL,
451 &ddr3_emif_regs_400Mhz_beta, 0);
452 } else if (board_is_gpevm()) {
453 enable_vtt_regulator();
454 config_ddr(0, &ioregs_ddr3, NULL, NULL,
455 &ddr3_emif_regs_400Mhz, 0);
456 } else if (board_is_sk()) {
457 config_ddr(400, &ioregs_ddr3, NULL, NULL,
458 &ddr3_sk_emif_regs_400Mhz, 0);
459 }
460 }
461 #endif
462
463 /* setup board specific PMIC */
464 int power_init_board(void)
465 {
466 struct pmic *p;
467
468 power_tps65218_init(I2C_PMIC);
469 p = pmic_get("TPS65218_PMIC");
470 if (p && !pmic_probe(p))
471 puts("PMIC: TPS65218\n");
472
473 return 0;
474 }
475
476 int board_init(void)
477 {
478 struct l3f_cfg_bwlimiter *bwlimiter = (struct l3f_cfg_bwlimiter *)L3F_CFG_BWLIMITER;
479 u32 mreqprio_0, mreqprio_1, modena_init0_bw_fractional,
480 modena_init0_bw_integer, modena_init0_watermark_0;
481
482 gd->bd->bi_boot_params = CONFIG_SYS_SDRAM_BASE + 0x100;
483 gpmc_init();
484
485 /* Clear all important bits for DSS errata that may need to be tweaked*/
486 mreqprio_0 = readl(&cdev->mreqprio_0) & MREQPRIO_0_SAB_INIT1_MASK &
487 MREQPRIO_0_SAB_INIT0_MASK;
488
489 mreqprio_1 = readl(&cdev->mreqprio_1) & MREQPRIO_1_DSS_MASK;
490
491 modena_init0_bw_fractional = readl(&bwlimiter->modena_init0_bw_fractional) &
492 BW_LIMITER_BW_FRAC_MASK;
493
494 modena_init0_bw_integer = readl(&bwlimiter->modena_init0_bw_integer) &
495 BW_LIMITER_BW_INT_MASK;
496
497 modena_init0_watermark_0 = readl(&bwlimiter->modena_init0_watermark_0) &
498 BW_LIMITER_BW_WATERMARK_MASK;
499
500 /* Setting MReq Priority of the DSS*/
501 mreqprio_0 |= 0x77;
502
503 /*
504 * Set L3 Fast Configuration Register
505 * Limiting bandwith for ARM core to 700 MBPS
506 */
507 modena_init0_bw_fractional |= 0x10;
508 modena_init0_bw_integer |= 0x3;
509
510 writel(mreqprio_0, &cdev->mreqprio_0);
511 writel(mreqprio_1, &cdev->mreqprio_1);
512
513 writel(modena_init0_bw_fractional, &bwlimiter->modena_init0_bw_fractional);
514 writel(modena_init0_bw_integer, &bwlimiter->modena_init0_bw_integer);
515 writel(modena_init0_watermark_0, &bwlimiter->modena_init0_watermark_0);
516
517 return 0;
518 }
519
520 #ifdef CONFIG_BOARD_LATE_INIT
521 int board_late_init(void)
522 {
523 #ifdef CONFIG_ENV_VARS_UBOOT_RUNTIME_CONFIG
524 char safe_string[HDR_NAME_LEN + 1];
525 struct am43xx_board_id header;
526
527 if (read_eeprom(&header) < 0)
528 puts("Could not get board ID.\n");
529
530 /* Now set variables based on the header. */
531 strncpy(safe_string, (char *)header.name, sizeof(header.name));
532 safe_string[sizeof(header.name)] = 0;
533 setenv("board_name", safe_string);
534
535 strncpy(safe_string, (char *)header.version, sizeof(header.version));
536 safe_string[sizeof(header.version)] = 0;
537 setenv("board_rev", safe_string);
538 #endif
539 return 0;
540 }
541 #endif
542
543 #ifdef CONFIG_DRIVER_TI_CPSW
544
545 static void cpsw_control(int enabled)
546 {
547 /* Additional controls can be added here */
548 return;
549 }
550
551 static struct cpsw_slave_data cpsw_slaves[] = {
552 {
553 .slave_reg_ofs = 0x208,
554 .sliver_reg_ofs = 0xd80,
555 .phy_addr = 16,
556 },
557 {
558 .slave_reg_ofs = 0x308,
559 .sliver_reg_ofs = 0xdc0,
560 .phy_addr = 1,
561 },
562 };
563
564 static struct cpsw_platform_data cpsw_data = {
565 .mdio_base = CPSW_MDIO_BASE,
566 .cpsw_base = CPSW_BASE,
567 .mdio_div = 0xff,
568 .channels = 8,
569 .cpdma_reg_ofs = 0x800,
570 .slaves = 1,
571 .slave_data = cpsw_slaves,
572 .ale_reg_ofs = 0xd00,
573 .ale_entries = 1024,
574 .host_port_reg_ofs = 0x108,
575 .hw_stats_reg_ofs = 0x900,
576 .bd_ram_ofs = 0x2000,
577 .mac_control = (1 << 5),
578 .control = cpsw_control,
579 .host_port_num = 0,
580 .version = CPSW_CTRL_VERSION_2,
581 };
582
583 int board_eth_init(bd_t *bis)
584 {
585 int rv;
586 uint8_t mac_addr[6];
587 uint32_t mac_hi, mac_lo;
588
589 /* try reading mac address from efuse */
590 mac_lo = readl(&cdev->macid0l);
591 mac_hi = readl(&cdev->macid0h);
592 mac_addr[0] = mac_hi & 0xFF;
593 mac_addr[1] = (mac_hi & 0xFF00) >> 8;
594 mac_addr[2] = (mac_hi & 0xFF0000) >> 16;
595 mac_addr[3] = (mac_hi & 0xFF000000) >> 24;
596 mac_addr[4] = mac_lo & 0xFF;
597 mac_addr[5] = (mac_lo & 0xFF00) >> 8;
598
599 if (!getenv("ethaddr")) {
600 puts("<ethaddr> not set. Validating first E-fuse MAC\n");
601 if (is_valid_ether_addr(mac_addr))
602 eth_setenv_enetaddr("ethaddr", mac_addr);
603 }
604
605 mac_lo = readl(&cdev->macid1l);
606 mac_hi = readl(&cdev->macid1h);
607 mac_addr[0] = mac_hi & 0xFF;
608 mac_addr[1] = (mac_hi & 0xFF00) >> 8;
609 mac_addr[2] = (mac_hi & 0xFF0000) >> 16;
610 mac_addr[3] = (mac_hi & 0xFF000000) >> 24;
611 mac_addr[4] = mac_lo & 0xFF;
612 mac_addr[5] = (mac_lo & 0xFF00) >> 8;
613
614 if (!getenv("eth1addr")) {
615 if (is_valid_ether_addr(mac_addr))
616 eth_setenv_enetaddr("eth1addr", mac_addr);
617 }
618
619 if (board_is_eposevm()) {
620 writel(RMII_MODE_ENABLE | RMII_CHIPCKL_ENABLE, &cdev->miisel);
621 cpsw_slaves[0].phy_if = PHY_INTERFACE_MODE_RMII;
622 cpsw_slaves[0].phy_addr = 16;
623 } else if (board_is_sk()) {
624 writel(RGMII_MODE_ENABLE, &cdev->miisel);
625 cpsw_slaves[0].phy_if = PHY_INTERFACE_MODE_RGMII;
626 cpsw_slaves[0].phy_addr = 4;
627 cpsw_slaves[1].phy_addr = 5;
628 } else {
629 writel(RGMII_MODE_ENABLE, &cdev->miisel);
630 cpsw_slaves[0].phy_if = PHY_INTERFACE_MODE_RGMII;
631 cpsw_slaves[0].phy_addr = 0;
632 }
633
634 rv = cpsw_register(&cpsw_data);
635 if (rv < 0)
636 printf("Error %d registering CPSW switch\n", rv);
637
638 return rv;
639 }
640 #endif