AlexeiFedorov | 36ed009 | 2024-09-10 10:37:54 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2024, Arm Limited. All rights reserved. |
| 3 | * |
| 4 | * SPDX-License-Identifier: BSD-3-Clause |
| 5 | */ |
| 6 | #ifndef PLATFORM_PCIE_H |
| 7 | #define PLATFORM_PCIE_H |
| 8 | |
| 9 | #include <utils_def.h> |
| 10 | |
| 11 | #include "../fvp_def.h" |
| 12 | |
| 13 | /* PCIE platform config parameters */ |
| 14 | #define PLATFORM_NUM_ECAM 1 |
| 15 | |
| 16 | /* Platform config parameters for ECAM_0 */ |
| 17 | #define PLATFORM_PCIE_ECAM_BASE_ADDR_0 PCIE_CONFIG_BASE |
| 18 | #define PLATFORM_PCIE_SEGMENT_GRP_NUM_0 0x0 |
| 19 | #define PLATFORM_PCIE_START_BUS_NUM_0 0x0 |
| 20 | #define PLATFORM_PCIE_END_BUS_NUM_0 0xFF |
| 21 | |
AlexeiFedorov | 36ed009 | 2024-09-10 10:37:54 +0100 | [diff] [blame] | 22 | #endif /* PLATFORM_PCIE_H */ |