Skip to content
Snippets Groups Projects
Commit 5d1a4bf3 authored by Dirk Eibach's avatar Dirk Eibach Committed by Tom Rini
Browse files

board: iocon: Modify iocon hardware startup


To avoid peer "ChReceivePathStatus"-messages on iocon startup, initialize
PHYs as soon as possible.

Signed-off-by: default avatarDirk Eibach <dirk.eibach@gdsys.cc>
parent b415fec6
No related branches found
No related tags found
No related merge requests found
...@@ -377,14 +377,10 @@ int last_stage_init(void) ...@@ -377,14 +377,10 @@ int last_stage_init(void)
if (!legacy) { if (!legacy) {
/* Turn on Parade DP501 */ /* Turn on Parade DP501 */
pca9698_direction_output(0x20, 9, 1); pca9698_direction_output(0x20, 9, 1);
udelay(500000);
ch0_rgmii2_present = !pca9698_get_value(0x20, 30); ch0_rgmii2_present = !pca9698_get_value(0x20, 30);
} }
print_fpga_info(0, ch0_rgmii2_present);
osd_probe(0);
/* wait for FPGA done */ /* wait for FPGA done */
for (k = 0; k < ARRAY_SIZE(mclink_controllers); ++k) { for (k = 0; k < ARRAY_SIZE(mclink_controllers); ++k) {
unsigned int ctr = 0; unsigned int ctr = 0;
...@@ -413,13 +409,16 @@ int last_stage_init(void) ...@@ -413,13 +409,16 @@ int last_stage_init(void)
} }
} }
/* wait for slave-PLLs to be up and running */ /* give slave-PLLs and Parade DP501 some time to be up and running */
udelay(500000); udelay(500000);
mclink_fpgacount = CONFIG_SYS_MCLINK_MAX; mclink_fpgacount = CONFIG_SYS_MCLINK_MAX;
slaves = mclink_probe(); slaves = mclink_probe();
mclink_fpgacount = 0; mclink_fpgacount = 0;
print_fpga_info(0, ch0_rgmii2_present);
osd_probe(0);
if (slaves <= 0) if (slaves <= 0)
return 0; return 0;
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment