Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 1 | menu "PCI" |
| 2 | |
| 3 | config DM_PCI |
| 4 | bool "Enable driver mode for PCI" |
| 5 | depends on DM |
| 6 | help |
| 7 | Use driver model for PCI. Driver model is the new method for |
| 8 | orgnising devices in U-Boot. For PCI, driver model keeps track of |
| 9 | available PCI devices, allows scanning of PCI buses and provides |
| 10 | device configuration support. |
| 11 | |
Simon Glass | 537849a | 2015-03-05 12:25:27 -0700 | [diff] [blame] | 12 | config PCI_SANDBOX |
| 13 | bool "Sandbox PCI support" |
| 14 | depends on SANDBOX && DM_PCI |
| 15 | help |
| 16 | Support PCI on sandbox, as an emulated bus. This permits testing of |
| 17 | PCI feature such as bus scanning, device configuration and device |
| 18 | access. The available (emulated) devices are defined statically in |
| 19 | the device tree but the normal PCI scan technique is used to find |
| 20 | then. |
| 21 | |
Simon Glass | ff3e077 | 2015-03-05 12:25:25 -0700 | [diff] [blame] | 22 | endmenu |