Changes between Version 3 and Version 4 of ventana/PCIe
- Timestamp:
- 01/18/2018 11:12:14 PM (7 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ventana/PCIe
v3 v4 175 175 PCIe reset signals are typically always controlled by the kernel and software, however, they also can at times be controlled via a GPIO, with more details [wiki:gpio#GPIOmapping here] 176 176 177 == PCIe In U-Boot == 178 To avoid PCI and PCIe related issues in Linux, the default bootloader behavior is to disable all pci until booting to Linux. In order to use any pci or pcie devices while in the bootloader, the {{{pcidisable}}} environment variable must be cleared. 179 180 {{{ 181 setenv pcidisable; saveenv; reset 182 }}} 183 184 Once cleared and after board reset, pci devices should enumerate as expected. 185 186 You can further interact with the pci subsystem via the {{{pci}}} command.