SuperIO zones initialization should only be done for the A2560X/GenX for now
This commit is contained in:
parent
2b3194631a
commit
ced1b8c107
|
@ -11,7 +11,11 @@ static void configure_zones(void);
|
||||||
* Initialize the SuperIO registers
|
* Initialize the SuperIO registers
|
||||||
*/
|
*/
|
||||||
void superio_init(void) {
|
void superio_init(void) {
|
||||||
configure_zones(); // This Init used to be done by the FPGA.
|
#if MODEL == MODEL_FOENIX_A2560X || MODEL == MODEL_FOENIX_GENX
|
||||||
|
// This initialization used to be done by the FPGA.
|
||||||
|
// Other machines A2560K/C256FMX will have this change soon to.
|
||||||
|
configure_zones();
|
||||||
|
#endif
|
||||||
|
|
||||||
*GP10_REG = 0x01;
|
*GP10_REG = 0x01;
|
||||||
*GP11_REG = 0x01;
|
*GP11_REG = 0x01;
|
||||||
|
|
Loading…
Reference in a new issue