aboutsummaryrefslogtreecommitdiff
path: root/sys/dev/asmc
diff options
context:
space:
mode:
authorAdrian Chadd <adrian@FreeBSD.org>2016-05-03 17:11:33 +0000
committerAdrian Chadd <adrian@FreeBSD.org>2016-05-03 17:11:33 +0000
commit31ae3b070d2c79b25061f7847c4bf887e4c55fa4 (patch)
tree99d0fb15f1b2be736f879769cee6219db7cd2004 /sys/dev/asmc
parentbec7ff798a8688da71c4b29d426a0cc887be677c (diff)
Notes
Diffstat (limited to 'sys/dev/asmc')
-rw-r--r--sys/dev/asmc/asmc.c6
-rw-r--r--sys/dev/asmc/asmcvar.h28
2 files changed, 34 insertions, 0 deletions
diff --git a/sys/dev/asmc/asmc.c b/sys/dev/asmc/asmc.c
index bbe8bfd41559..384e733280a4 100644
--- a/sys/dev/asmc/asmc.c
+++ b/sys/dev/asmc/asmc.c
@@ -216,6 +216,12 @@ struct asmc_model asmc_models[] = {
},
{
+ "MacBookPro5,1", "Apple SMC MacBook Pro Core 2 Duo (2008/2009)",
+ ASMC_SMS_FUNCS, ASMC_FAN_FUNCS, ASMC_LIGHT_FUNCS,
+ ASMC_MBP5_TEMPS, ASMC_MBP5_TEMPNAMES, ASMC_MBP5_TEMPDESCS
+ },
+
+ {
"MacBookPro8,2", "Apple SMC MacBook Pro (early 2011)",
ASMC_SMS_FUNCS, ASMC_FAN_FUNCS, ASMC_LIGHT_FUNCS,
ASMC_MBP8_TEMPS, ASMC_MBP8_TEMPNAMES, ASMC_MBP8_TEMPDESCS
diff --git a/sys/dev/asmc/asmcvar.h b/sys/dev/asmc/asmcvar.h
index f67ee167dec5..26c62035a00c 100644
--- a/sys/dev/asmc/asmcvar.h
+++ b/sys/dev/asmc/asmcvar.h
@@ -188,6 +188,34 @@ struct asmc_softc {
"Unknown", "Unknown", \
"Wireless Module", }
+#define ASMC_MBP5_TEMPS { "TB0T", "TB1T", "TB2T", "TB3T", "TC0D", \
+ "TC0F", "TC0P", "TG0D", "TG0F", "TG0H", \
+ "TG0P", "TG0T", "TG1H", "TN0D", "TN0P", \
+ "TTF0", "Th2H", "Tm0P", "Ts0P", "Ts0S", \
+ NULL }
+
+#define ASMC_MBP5_TEMPNAMES { "enclosure_bottom_0", "enclosure_bottom_1", \
+ "enclosure_bottom_2", "enclosure_bottom_3", \
+ "cpu_diode", "cpu", \
+ "cpu_pin", "gpu_diode", \
+ "gpu", "gpu_heatsink", \
+ "gpu_pin", "gpu_transistor", \
+ "gpu_2_heatsink", "northbridge_diode", \
+ "northbridge_pin", "unknown", \
+ "heatsink_2", "memory_controller", \
+ "pci_express_slot_pin", "pci_express_slot_unk" }
+
+#define ASMC_MBP5_TEMPDESCS { "Enclosure Bottom 0", "Enclosure Bottom 1", \
+ "Enclosure Bottom 2", "Enclosure Bottom 3", \
+ "CPU Diode", "CPU ???", \
+ "CPU Pin", "GPU Diode", \
+ "GPU ???", "GPU Heatsink", \
+ "GPU Pin", "GPU Transistor", \
+ "GPU 2 Heatsink", "Northbridge Diode", \
+ "Northbridge Pin", "Unknown", \
+ "Heatsink 2", "Memory Controller", \
+ "PCI Express Slot Pin", "PCI Express Slot (unk)" }
+
#define ASMC_MBP8_TEMPS { "TB0T", "TB1T", "TB2T", "TC0C", "TC0D", \
"TC0E", "TC0F", "TC0P", "TC1C", "TC2C", \
"TC3C", "TC4C", "TCFC", "TCGC", "TCSA", \