blob: c074679c3228cf0d82662714529562ef595b014b [file] [log] [blame]
Angel Pons182dbde2020-04-02 23:49:05 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Kyösti Mälkkie8b4da22014-10-21 18:22:32 +03002
3#ifndef _PI_HUDSON_PCI_DEVS_H_
4#define _PI_HUDSON_PCI_DEVS_H_
5
Elyes HAOUAS8ccc8fd2020-10-01 10:59:56 +02006#include <device/pci_def.h>
7
Marshall Dawsonc1f32332017-04-21 13:54:08 -06008#define BUS0 0
Kyösti Mälkkie8b4da22014-10-21 18:22:32 +03009
10/* XHCI */
Marshall Dawsonc1f32332017-04-21 13:54:08 -060011#define XHCI_DEV 0x10
12#define XHCI_FUNC 0
13#define XHCI_DEVID 0x7814
Elyes HAOUAS8ccc8fd2020-10-01 10:59:56 +020014#define XHCI_DEVFN PCI_DEVFN(XHCI_DEV, XHCI_FUNC)
Kyösti Mälkkie8b4da22014-10-21 18:22:32 +030015
Marshall Dawsonc1f32332017-04-21 13:54:08 -060016#define XHCI2_DEV 0x10
17#define XHCI2_FUNC 1
18#define XHCI2_DEVID 0x7814
Elyes HAOUAS8ccc8fd2020-10-01 10:59:56 +020019#define XHCI2_DEVFN PCI_DEVFN(XHCI2_DEV, XHCI2_FUNC)
Dave Frodin9cfa7422015-01-27 07:19:48 -070020
Kyösti Mälkkie8b4da22014-10-21 18:22:32 +030021/* SATA */
Marshall Dawsonc1f32332017-04-21 13:54:08 -060022#define SATA_DEV 0x11
23#define SATA_FUNC 0
24#define SATA_IDE_DEVID 0x7800
25#define AHCI_DEVID_MS 0x7801
26#define AHCI_DEVID_AMD 0x7804
Elyes HAOUAS8ccc8fd2020-10-01 10:59:56 +020027#define SATA_DEVFN PCI_DEVFN(SATA_DEV, SATA_FUNC)
Kyösti Mälkkie8b4da22014-10-21 18:22:32 +030028
29/* OHCI */
Marshall Dawsonc1f32332017-04-21 13:54:08 -060030#define OHCI1_DEV 0x12
31#define OHCI1_FUNC 0
32#define OHCI2_DEV 0x13
33#define OHCI2_FUNC 0
34#define OHCI3_DEV 0x16
35#define OHCI3_FUNC 0
36#define OHCI4_DEV 0x14
37#define OHCI4_FUNC 5
38#define OHCI_DEVID 0x7807
Elyes HAOUAS8ccc8fd2020-10-01 10:59:56 +020039#define OHCI1_DEVFN PCI_DEVFN(OHCI1_DEV, OHCI1_FUNC)
40#define OHCI2_DEVFN PCI_DEVFN(OHCI2_DEV, OHCI2_FUNC)
41#define OHCI3_DEVFN PCI_DEVFN(OHCI3_DEV, OHCI3_FUNC)
42#define OHCI4_DEVFN PCI_DEVFN(OHCI4_DEV, OHCI4_FUNC)
Kyösti Mälkkie8b4da22014-10-21 18:22:32 +030043
44/* EHCI */
Marshall Dawsonc1f32332017-04-21 13:54:08 -060045#define EHCI1_DEV 0x12
46#define EHCI1_FUNC 2
47#define EHCI2_DEV 0x13
48#define EHCI2_FUNC 2
49#define EHCI3_DEV 0x16
50#define EHCI3_FUNC 2
51#define EHCI_DEVID 0x7808
Elyes HAOUAS8ccc8fd2020-10-01 10:59:56 +020052#define EHCI1_DEVFN PCI_DEVFN(EHCI1_DEV, EHCI1_FUNC)
53#define EHCI2_DEVFN PCI_DEVFN(EHCI2_DEV, EHCI2_FUNC)
54#define EHCI3_DEVFN PCI_DEVFN(EHCI3_DEV, EHCI3_FUNC)
Kyösti Mälkkie8b4da22014-10-21 18:22:32 +030055
56/* SMBUS */
Marshall Dawsonc1f32332017-04-21 13:54:08 -060057#define SMBUS_DEV 0x14
58#define SMBUS_FUNC 0
59#define SMBUS_DEVID 0x780B
Elyes HAOUAS8ccc8fd2020-10-01 10:59:56 +020060#define SMBUS_DEVFN PCI_DEVFN(SMBUS_DEV, SMBUS_FUNC)
Kyösti Mälkkie8b4da22014-10-21 18:22:32 +030061
62/* HD Audio */
Marshall Dawsonc1f32332017-04-21 13:54:08 -060063#define HDA_DEV 0x14
64#define HDA_FUNC 2
65#define HDA_DEVID 0x780D
Elyes HAOUAS8ccc8fd2020-10-01 10:59:56 +020066#define HDA_DEVFN PCI_DEVFN(HDA_DEV, HDA_FUNC)
Kyösti Mälkkie8b4da22014-10-21 18:22:32 +030067
68/* LPC BUS */
Marshall Dawsonc1f32332017-04-21 13:54:08 -060069#define PCU_DEV 0x14
Philipp Deppenwiese30670122017-03-01 02:24:33 +010070#define LPC_DEV PCU_DEV
Marshall Dawsonc1f32332017-04-21 13:54:08 -060071#define LPC_FUNC 3
72#define LPC_DEVID 0x780E
Elyes HAOUAS8ccc8fd2020-10-01 10:59:56 +020073#define LPC_DEVFN PCI_DEVFN(LPC_DEV, LPC_FUNC)
Kyösti Mälkkie8b4da22014-10-21 18:22:32 +030074
75/* PCI Ports */
Marshall Dawsonc1f32332017-04-21 13:54:08 -060076#define SB_PCI_PORT_DEV 0x14
77#define SB_PCI_PORT_FUNC 4
78#define SB_PCI_PORT_DEVID 0x780F
Elyes HAOUAS8ccc8fd2020-10-01 10:59:56 +020079#define SB_PCI_PORT_DEVFN PCI_DEVFN(SB_PCI_PORT_DEV, SB_PCI_PORT_FUNC)
Kyösti Mälkkie8b4da22014-10-21 18:22:32 +030080
81/* SD Controller */
Marshall Dawsonc1f32332017-04-21 13:54:08 -060082#define SD_DEV 0x14
83#define SD_FUNC 7
84#define SD_DEVID 0x7806
Elyes HAOUAS8ccc8fd2020-10-01 10:59:56 +020085#define SD_DEVFN PCI_DEVFN(SD_DEV, SD_FUNC)
Kyösti Mälkkie8b4da22014-10-21 18:22:32 +030086
Kyösti Mälkkie8b4da22014-10-21 18:22:32 +030087#endif /* _PI_HUDSON_PCI_DEVS_H_ */