diff options
author | Pali Rohár <pali@kernel.org> | 2022-02-18 13:18:40 +0100 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2022-03-25 13:35:50 -0400 |
commit | d7b904092d8066476975521dbf6f4ab05cd8d766 (patch) | |
tree | 8940eb8b96a461e1c42c4ceee13569a3a7f0333f /include/pci_ids.h | |
parent | e97650437403c04da274200337de53968da20ab0 (diff) | |
download | u-boot-d7b904092d8066476975521dbf6f4ab05cd8d766.tar.gz |
pci: Add defines for normal and subtractive PCI bridges
Add following two new PCI class codes defines into pci_ids.h include file:
PCI_CLASS_BRIDGE_PCI_NORMAL
PCI_CLASS_BRIDGE_PCI_SUBTRACTIVE
And use these defines in all U-Boot code for describing PCI class codes for
normal and subtractive PCI bridges.
Signed-off-by: Pali Rohár <pali@kernel.org>
Reviewed-by: Stefan Roese <sr@denx.de>
Diffstat (limited to 'include/pci_ids.h')
-rw-r--r-- | include/pci_ids.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/pci_ids.h b/include/pci_ids.h index 3c5434c0ed..88b0a64045 100644 --- a/include/pci_ids.h +++ b/include/pci_ids.h @@ -55,6 +55,8 @@ #define PCI_CLASS_BRIDGE_EISA 0x0602 #define PCI_CLASS_BRIDGE_MC 0x0603 #define PCI_CLASS_BRIDGE_PCI 0x0604 +#define PCI_CLASS_BRIDGE_PCI_NORMAL 0x060400 +#define PCI_CLASS_BRIDGE_PCI_SUBTRACTIVE 0x060401 #define PCI_CLASS_BRIDGE_PCMCIA 0x0605 #define PCI_CLASS_BRIDGE_NUBUS 0x0606 #define PCI_CLASS_BRIDGE_CARDBUS 0x0607 |