This website requires JavaScript.
Explore
Help
Sign In
OrgZephyr
/
zephyr
mirror of
https://github.com/zephyrproject-rtos/zephyr.git
Watch
1
Star
0
Fork
You've already forked zephyr
0
Code
Issues
Releases
Wiki
Activity
54283efcce
zephyr
/
drivers
/
pcie
/
CMakeLists.txt
3 lines
95 B
CMake
Raw
Normal View
History
Unescape
Escape
drivers: pcie: refactor pcie directory to make RC and EP independent With this refactoring of pcie directory, RC drivers are placed under host/ directory, EP drivers are placed under endpoint/ directory and they are completely independent of each other. Signed-off-by: Abhishek Shah <abhishek.shah@broadcom.com>
2020-07-15 03:05:55 +08:00
add_subdirectory_ifdef
(
CONFIG_PCIE
host
)
pcie: endpoint: Add public APIs for PCIe endpoint driver Add public APIs for PCIe endpoint driver: - EP configuration space read/write - Mapping/Unmapping of Host buffer and PCIe outbound region - Raise interrupt to Host These are minimal base APIs to make PCIe EP functional. Also, add a Kconfig and an empty CMakeLists.txt for drivers to extend. Signed-off-by: Abhishek Shah <abhishek.shah@broadcom.com>
2020-05-04 15:07:34 +08:00
add_subdirectory_ifdef
(
CONFIG_PCIE_ENDPOINT
endpoint
)