cleaned up pci initialization and moved call behind FPGA initialization (pin assignments collide)

This commit is contained in:
Markus Fröschle
2013-11-06 06:09:36 +00:00
parent c29dfc3036
commit cde22b002b
2 changed files with 32 additions and 33 deletions

View File

@@ -1018,15 +1018,15 @@ void initialize_hardware(void)
init_slt();
init_fbcs();
init_ddram();
init_eport();
init_xlbus_arbiter();
init_pci();
#ifdef MACHINE_FIREBEE
init_fpga();
init_pll();
init_video_ddr();
dvi_on();
#endif /* MACHINE_FIREBEE */
init_eport();
init_xlbus_arbiter();
init_pci();
/* moved the following line (temporarily) to BaS (after MMU init) to be able to catch adressing errors on USB init */
//init_usb();
#ifdef MACHINE_FIREBEE