/* * The SDK7786 FPGA supports mangling of most of the slots in some way or * another. Slots 3/4 are special in that only one can be supported at a * time, and both appear on port 3 to the PCI bus scan. Enabling slot 4 * (the horizontal edge connector) will disable slot 3 entirely. * * Misconfigurations can be detected through the FPGA via the slot * resistors to determine card presence. Hotplug remains unsupported.
*/ staticunsignedint slot4en __initdata;
staticint __init sdk7786_pci_init(void)
{
u16 data = fpga_read_reg(PCIECR);
/* * Enable slot #4 if it's been specified on the command line. * * Optionally reroute if slot #4 has a card present while slot #3 * does not, regardless of command line value. * * Card presence is logically inverted.
*/
slot4en ?: (!(data & PCIECR_PRST4) && (data & PCIECR_PRST3)); if (slot4en) {
pr_info("Activating PCIe slot#4 (disabling slot#3)\n");
data &= ~PCIECR_PCIEMUX1;
fpga_write_reg(data, PCIECR);
/* Warn about forced rerouting if slot#3 is occupied */ if ((data & PCIECR_PRST3) == 0) {
pr_warn("Unreachable card detected in slot#3\n"); return -EBUSY;
}
} else
pr_info("PCIe slot#4 disabled\n");
return 0;
}
postcore_initcall(sdk7786_pci_init);
Messung V0.5
¤ Dauer der Verarbeitung: 0.12 Sekunden
(vorverarbeitet)
¤
Die Informationen auf dieser Webseite wurden
nach bestem Wissen sorgfältig zusammengestellt. Es wird jedoch weder Vollständigkeit, noch Richtigkeit,
noch Qualität der bereit gestellten Informationen zugesichert.
Bemerkung:
Die farbliche Syntaxdarstellung und die Messung sind noch experimentell.