diff options
author | Robert Mustacchi <rm@fingolfin.org> | 2021-01-21 23:22:46 -0800 |
---|---|---|
committer | Robert Mustacchi <rm@fingolfin.org> | 2021-01-23 14:21:24 -0800 |
commit | c8be5715fd9a89586c31edc5adb84bad9dcc5a9f (patch) | |
tree | 903604d87daa79e2e0e9386c3e6b888b5cb933f7 /usr/src | |
parent | 4955144cafa51275edcbd524ec7401038df30387 (diff) | |
download | illumos-joyent-c8be5715fd9a89586c31edc5adb84bad9dcc5a9f.tar.gz |
13464 Want pchtemp support for 400 series desktop PCH
13465 Want pchtemp support for Broadwell-U
Reviewed by: Hans Rosenfeld <rosenfeld@grumpf.hope-2000.org>
Reviewed by: Andy Fiddaman <andy@omnios.org>
Approved by: Richard Lowe <richlowe@richlowe.net>
Diffstat (limited to 'usr/src')
-rw-r--r-- | usr/src/man/man7d/pchtemp.7d | 7 | ||||
-rw-r--r-- | usr/src/pkg/manifests/driver-cpu-sensor.mf | 3 | ||||
-rw-r--r-- | usr/src/uts/intel/io/pchtemp/pchtemp.c | 6 |
3 files changed, 12 insertions, 4 deletions
diff --git a/usr/src/man/man7d/pchtemp.7d b/usr/src/man/man7d/pchtemp.7d index c9ccaa38b7..954a7d76f3 100644 --- a/usr/src/man/man7d/pchtemp.7d +++ b/usr/src/man/man7d/pchtemp.7d @@ -10,8 +10,9 @@ .\" .\" .\" Copyright 2019 Joyent, Inc. +.\" Copyright 2021 Oxide Computer Company .\" -.Dd September 30, 2020 +.Dd January 21, 2021 .Dt PCHTEMP 7D .Os .Sh NAME @@ -32,6 +33,8 @@ Intel 8 Series / C220 Series Chipset Platform Controller Hub .It Intel 9 Series Chipset Family Platform Controller Hub .It +Intel Mobile 5th Generation Processor Family (Broadwell-U) +.It Intel C610 Series Chipset and X99 Chipset Platform Controller Hub .It Intel 100 Series Chipset Family Platform Controller Hub @@ -46,6 +49,8 @@ Intel 300 Series and Intel C240 Series Chipset Family Platform Controller Hub .It Intel 400 Series Chipset Family On-Package Platform Controller Hub +.It +Intel 400 Series Chipset Family Platform Controller Hub .El .Pp Temperature information is available to the system via the fault diff --git a/usr/src/pkg/manifests/driver-cpu-sensor.mf b/usr/src/pkg/manifests/driver-cpu-sensor.mf index 7ac1e352ff..a9070dd31e 100644 --- a/usr/src/pkg/manifests/driver-cpu-sensor.mf +++ b/usr/src/pkg/manifests/driver-cpu-sensor.mf @@ -11,6 +11,7 @@ # # Copyright 2019 Joyent, Inc. +# Copyright 2021 Oxide Computer Company # <include global_zone_only_component> @@ -37,9 +38,11 @@ driver name=amdnbtemp \ driver name=coretemp driver name=pchtemp \ alias=pci8086,2f9,p \ + alias=pci8086,6f9,p \ alias=pci8086,8c24,p \ alias=pci8086,8ca4,p \ alias=pci8086,8d24,p \ + alias=pci8086,9ca4,p \ alias=pci8086,9d31,p \ alias=pci8086,9df9,p \ alias=pci8086,a131,p \ diff --git a/usr/src/uts/intel/io/pchtemp/pchtemp.c b/usr/src/uts/intel/io/pchtemp/pchtemp.c index 0c38d6748f..4694c66456 100644 --- a/usr/src/uts/intel/io/pchtemp/pchtemp.c +++ b/usr/src/uts/intel/io/pchtemp/pchtemp.c @@ -11,7 +11,7 @@ /* * Copyright 2019 Joyent, Inc. - * Copyright 2020 Oxide Computer Company + * Copyright 2021 Oxide Computer Company */ /* @@ -34,7 +34,7 @@ * generation: * * - Intel 8 Series PCH - * - Intel 9 Series PCH + * - Intel 9 Series and Broadwell Mobile Low Power PCH * - Intel C610 Series and X99 PCH * - Intel C620 Series PCH * - Intel 100 Series PCH @@ -42,7 +42,7 @@ * - Intel Sunrise Point-LP (Kaby Lake-U) PCH * - Intel Cannon Lake (Whiskey Lake-U) PCH * - Intel 300 Series and C240 Chipset - * - Intel 400 Series (On-Package) PCH + * - Intel 400 Series and On-Package PCH * * The following chipsets use a different format and are not currently * supported: |