blob: 2d816dee22d6b5d37ca4e3ea14c4228947fc93e0 [file] [log] [blame]
Angel Pons4b429832020-04-02 23:48:50 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Mike Loptienc93a75a2014-06-06 15:16:29 -06002
3#ifndef _AMD_FAM14_PCI_DEVS_H_
4#define _AMD_FAM14_PCI_DEVS_H_
5
Kyösti Mälkkif7ca6722017-09-10 06:30:54 +03006#include <device/pci_def.h>
7
Mike Loptienc93a75a2014-06-06 15:16:29 -06008#define BUS0 0
9
10/* Graphics and Display */
11#define GFX_DEV 0x1
12#define GFX_FUNC 0
13# define GFX_DEVFN PCI_DEVFN(GFX_DEV,GFX_FUNC)
14
15/* PCI Ports */
16#define PCI_PORT_DEV 0x14
17#define PCI_PORT_FUNC 4
18# define PCI_PORT_DEVID 0x4384
19# define PCI_PORT_DEVFN PCI_DEVFN(PCI_PORT_DEV,PCI_PORT_FUNC)
20
21/* PCIe Ports */
22#define NB_PCIE_PORT1_DEV 0x4
23#define NB_PCIE_PORT2_DEV 0x5
24#define NB_PCIE_PORT3_DEV 0x6
25#define NB_PCIE_PORT4_DEV 0x7
26#define NB_PCIE_PORT5_DEV 0x8
27#define NB_PCIE_FUNC 0
28# define NB_PCIE_PORT1_DEVID 0x1512
29# define NB_PCIE_PORT2_DEVID 0x1513
30# define NB_PCIE_PORT3_DEVID 0x1514
31# define NB_PCIE_PORT4_DEVID 0x1515
32# define NB_PCIE_PORT5_DEVID 0x1516
33# define NB_PCIE_PORT1_DEVFN PCI_DEVFN(NB_PCIE_PORT1_DEV,NB_PCIE_FUNC)
34# define NB_PCIE_PORT2_DEVFN PCI_DEVFN(NB_PCIE_PORT2_DEV,NB_PCIE_FUNC)
35# define NB_PCIE_PORT3_DEVFN PCI_DEVFN(NB_PCIE_PORT3_DEV,NB_PCIE_FUNC)
36# define NB_PCIE_PORT4_DEVFN PCI_DEVFN(NB_PCIE_PORT4_DEV,NB_PCIE_FUNC)
37# define NB_PCIE_PORT5_DEVFN PCI_DEVFN(NB_PCIE_PORT5_DEV,NB_PCIE_FUNC)
38
39#endif /* _AMD_FAM14_PCI_DEVS_H_ */