Changes between Version 8 and Version 9 of ventana/PCIe
- Timestamp:
- 09/20/2018 07:34:02 PM (6 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
ventana/PCIe
v8 v9 189 189 190 190 == PCIe In U-Boot == 191 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. 192 191 To avoid PCI and PCIe related issues in Linux, the default bootloader behavior is to disable all pci until booting to Linux. 192 193 In order to use any pci or pcie devices while in the bootloader, the {{{pcidisable}}} environment variable must be cleared. Clearing this variable will ENABLE PCIe in the Bootloader: 193 194 {{{ 194 195 setenv pcidisable; saveenv; reset 195 196 }}} 196 197 197 Once cleared and after board reset, pci devices should enumerate as expected.198 Once cleared and after board reset, pci devices should enumerate in the bootloader as expected. 198 199 199 200 You can further interact with the pci subsystem via the {{{pci}}} command. 201 202 To disable PCI in the bootloader, use the following example: 203 {{{ 204 setenv pcidisable 1; saveenv; reset 205 }}} 200 206 201 207 = Mini-PCIe Mechanical Specification =