diff options
author | Simon Glass | 2015-03-05 12:25:26 -0700 |
---|---|---|
committer | Simon Glass | 2015-04-16 19:27:43 -0600 |
commit | 9569c40668290408eac447f9be99dab603c8e34c (patch) | |
tree | f476d89aaed8887ebca97da08da07abc2c455fe3 /arch/sandbox/Kconfig | |
parent | ff3e077bd23c37c83d01aad105e528194e33d75e (diff) |
dm: sandbox: pci: Add PCI support for sandbox
Add the required header information, device tree nodes and I/O accessor
functions to support PCI on sandbox. All devices are emulated by drivers
which can be added as required for testing or development.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'arch/sandbox/Kconfig')
-rw-r--r-- | arch/sandbox/Kconfig | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/sandbox/Kconfig b/arch/sandbox/Kconfig index 2098b9c323b..477a20a820c 100644 --- a/arch/sandbox/Kconfig +++ b/arch/sandbox/Kconfig @@ -34,4 +34,11 @@ config DM_I2C config DM_TEST default y +config PCI + bool "PCI support" + help + Enable support for PCI (Peripheral Interconnect Bus), a type of bus + used on some devices to allow the CPU to communicate with its + peripherals. + endmenu |