lib/smbios: Improve Type9
[coreboot2.git] / src / southbridge / amd / common / amd_pci_util.h
blob15e0fb8f8c791b28e0385d13b663c19084cc5823
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #ifndef AMD_PCI_UTIL_H
4 #define AMD_PCI_UTIL_H
6 #include <stdint.h>
7 #include "amd_pci_int_defs.h"
9 /* FCH index/data registers */
10 #define PCI_INTR_INDEX 0xc00
11 #define PCI_INTR_DATA 0xc01
13 struct pirq_struct {
14 u8 devfn;
15 u8 PIN[4]; /* PINA/B/C/D are index 0/1/2/3 */
18 extern const struct pirq_struct * pirq_data_ptr;
19 extern u32 pirq_data_size;
20 extern const u8 *intr_data_ptr;
21 extern const u8 *picr_data_ptr;
23 u8 read_pci_int_idx(u8 index, int mode);
24 void write_pci_int_idx(u8 index, int mode, u8 data);
25 void write_pci_cfg_irqs(void);
26 void write_pci_int_table(void);
28 #endif /* AMD_PCI_UTIL_H */