blob: b2d02d8f338f0ff4475314ea5d744e837755a56a [file] [log] [blame]
Dave Frodin2093c4f2014-06-13 08:12:48 -06001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2014 Sage Electronic Engineering, LLC.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Dave Frodin2093c4f2014-06-13 08:12:48 -060014 */
15
16#ifndef _AMD_FAM16KB_PCI_DEVS_H_
17#define _AMD_FAM16KB_PCI_DEVS_H_
18
Kyösti Mälkkif7ca6722017-09-10 06:30:54 +030019#include <device/pci_def.h>
20
Dave Frodin2093c4f2014-06-13 08:12:48 -060021#define BUS0 0
22
23/* Graphics and Display */
24#define GFX_DEV 0x1
25#define GFX_FUNC 0
26#define GFX_DEVFN PCI_DEVFN(GFX_DEV,GFX_FUNC)
27
Dave Frodin3ff4f852014-12-01 15:20:47 -070028/* Internal Audio Controller */
29#define ACTL_FUNC 1
30#define ACTL_DEVFN PCI_DEVFN(GFX_DEV,ACTL_FUNC)
31
Dave Frodin2093c4f2014-06-13 08:12:48 -060032/* PCIe Ports */
Fabian Kunkel647456c2015-05-25 17:16:02 +020033#define NB_PCIE_PORT1_FUNC 0x1
34#define NB_PCIE_PORT2_FUNC 0x2
35#define NB_PCIE_PORT3_FUNC 0x3
36#define NB_PCIE_PORT4_FUNC 0x4
37#define NB_PCIE_PORT5_FUNC 0x5
38#define NB_PCIE_DEV 2
Dave Frodin2093c4f2014-06-13 08:12:48 -060039#define NB_PCIE_PORT_DEVID 0x1439
Fabian Kunkel647456c2015-05-25 17:16:02 +020040#define NB_PCIE_PORT1_DEVFN PCI_DEVFN(NB_PCIE_DEV,NB_PCIE_PORT1_FUNC)
41#define NB_PCIE_PORT2_DEVFN PCI_DEVFN(NB_PCIE_DEV,NB_PCIE_PORT2_FUNC)
42#define NB_PCIE_PORT3_DEVFN PCI_DEVFN(NB_PCIE_DEV,NB_PCIE_PORT3_FUNC)
43#define NB_PCIE_PORT4_DEVFN PCI_DEVFN(NB_PCIE_DEV,NB_PCIE_PORT4_FUNC)
44#define NB_PCIE_PORT5_DEVFN PCI_DEVFN(NB_PCIE_DEV,NB_PCIE_PORT5_FUNC)
Dave Frodin2093c4f2014-06-13 08:12:48 -060045
46#endif /* _AMD_FAM16KB_PCI_DEVS_H_ */