mirror of
https://github.com/opnsense/src.git
synced 2026-05-28 04:12:45 -04:00
asmc(4): Add support for MacBook7,1.
PR: 248693 Submitted by: gcx61@interia.pl MFC after: 1 week
This commit is contained in:
parent
96811be22f
commit
e4a14ce70f
2 changed files with 21 additions and 0 deletions
|
|
@ -172,6 +172,12 @@ struct asmc_model asmc_models[] = {
|
|||
ASMC_MB31_TEMPS, ASMC_MB31_TEMPNAMES, ASMC_MB31_TEMPDESCS
|
||||
},
|
||||
|
||||
{
|
||||
"MacBook7,1", "Apple SMC MacBook Core 2 Duo (mid 2010)",
|
||||
ASMC_SMS_FUNCS, ASMC_FAN_FUNCS2, ASMC_LIGHT_FUNCS_DISABLED,
|
||||
ASMC_MB71_TEMPS, ASMC_MB71_TEMPNAMES, ASMC_MB71_TEMPDESCS
|
||||
},
|
||||
|
||||
{
|
||||
"MacBookPro1,1", "Apple SMC MacBook Pro Core Duo (15-inch)",
|
||||
ASMC_SMS_FUNCS, ASMC_FAN_FUNCS, ASMC_LIGHT_FUNCS,
|
||||
|
|
|
|||
|
|
@ -158,6 +158,21 @@ struct asmc_softc {
|
|||
"Heatsink 1","Heatsink 2" \
|
||||
"Memory Bank A", }
|
||||
|
||||
#define ASMC_MB71_TEMPS { "TB0T", "TB1T", "TB2T", "TC0D", "TC0P", \
|
||||
"TH0P", "TN0D", "TN0P", "TN0S", "TN1D", \
|
||||
"TN1E", "TN1F", "TN1G", "TN1S", "Th1H", \
|
||||
"Ts0P", "Ts0S", NULL }
|
||||
|
||||
#define ASMC_MB71_TEMPNAMES { "enclosure_bottom0", "battery_1", "battery_2", "cpu_package", "cpu_proximity", \
|
||||
"hdd_bay", "northbridge0_diode", "northbridge0_proximity", "TN0S", "mpc_die2", \
|
||||
"TN1E", "TN1F", "TN1G", "TN1S", "heatsink1", \
|
||||
"palm_rest", "memory_proximity", }
|
||||
|
||||
#define ASMC_MB71_TEMPDESCS { "Enclosure Bottom 0", "Battery 1", "Battery 2", "CPU Package", "CPU Proximity", \
|
||||
"HDD Bay", "Northbridge Diode", "Northbridge Proximity", "TN0S", "MPC Die 2", \
|
||||
"TN1E", "TN1F", "TN1G", "TN1S", "Heatsink 1", \
|
||||
"Palm Rest", "Memory Proximity", }
|
||||
|
||||
#define ASMC_MBP_TEMPS { "TB0T", "Th0H", "Th1H", "Tm0P", \
|
||||
"TG0H", "TG0P", "TG0T", NULL }
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue