diff options
author | Michał Żygowski <michal.zygowski@3mdeb.com> | 2023-06-16 12:49:12 +0200 |
---|---|---|
committer | Felix Held <felix-coreboot@felixheld.de> | 2023-08-09 22:00:00 +0000 |
commit | 472d83bb0af27875f41232ec75e04b082108b0e1 (patch) | |
tree | b110297fb7f05adcdf77a6bd09abd2920adc9cff /util/inteltool/inteltool.h | |
parent | 8c1154dc6168e8df62c2d5da054508e3e7b28dbe (diff) |
intetool: Add support for 700 series PCH
The change does the following:
- adds PCH IDs for 700 series chipsets per the DOC# 619362 rev 2.2
- updates GPIO table for PCH-S per the DOC# 618659 rev 2.1
- enables dumping GPIOs for 700 series PCH
Change-Id: I4509ad714772ce90cdee5135227c02640acb6085
Signed-off-by: Michał Żygowski <michal.zygowski@3mdeb.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/75873
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Reviewed-by: Martin L Roth <gaumless@gmail.com>
Diffstat (limited to 'util/inteltool/inteltool.h')
-rw-r--r-- | util/inteltool/inteltool.h | 16 |
1 files changed, 11 insertions, 5 deletions
diff --git a/util/inteltool/inteltool.h b/util/inteltool/inteltool.h index 986a03c1f3..02ee147045 100644 --- a/util/inteltool/inteltool.h +++ b/util/inteltool/inteltool.h @@ -227,20 +227,26 @@ static inline uint32_t inl(unsigned port) #define PCI_DEVICE_ID_INTEL_C256 0x438d #define PCI_DEVICE_ID_INTEL_W580 0x438f -#define PCI_DEVICE_ID_INTEL_H610E 0x7a92 -#define PCI_DEVICE_ID_INTEL_Q670E 0x7a91 -#define PCI_DEVICE_ID_INTEL_R680E 0x7a90 #define PCI_DEVICE_ID_INTEL_H610 0x7a87 #define PCI_DEVICE_ID_INTEL_B660 0x7a86 #define PCI_DEVICE_ID_INTEL_H670 0x7a85 #define PCI_DEVICE_ID_INTEL_Q670 0x7a83 #define PCI_DEVICE_ID_INTEL_Z690 0x7a84 #define PCI_DEVICE_ID_INTEL_W680 0x7a88 -#define PCI_DEVICE_ID_INTEL_W685 0x7a8a #define PCI_DEVICE_ID_INTEL_WM690 0x7a8d #define PCI_DEVICE_ID_INTEL_HM670 0x7a8c -#define PCI_DEVICE_ID_INTEL_WM790 0x7a0d +#define PCI_DEVICE_ID_INTEL_R680E 0x7a90 +#define PCI_DEVICE_ID_INTEL_Q670E 0x7a91 +#define PCI_DEVICE_ID_INTEL_H610E 0x7a92 + +#define PCI_DEVICE_ID_INTEL_W790 0x7a8a +#define PCI_DEVICE_ID_INTEL_Z790 0x7a04 +#define PCI_DEVICE_ID_INTEL_H770 0x7a05 +#define PCI_DEVICE_ID_INTEL_B760 0x7a06 #define PCI_DEVICE_ID_INTEL_HM770 0x7a0c +#define PCI_DEVICE_ID_INTEL_WM790 0x7a0d +#define PCI_DEVICE_ID_INTEL_C262 0x7a14 +#define PCI_DEVICE_ID_INTEL_C266 0x7a13 #define PCI_DEVICE_ID_INTEL_82810 0x7120 #define PCI_DEVICE_ID_INTEL_82810_DC 0x7122 |