1 // SPDX-License-Identifier: GPL-2.0-only
3 * drivers/hwmon/applesmc.c - driver for Apple's SMC (accelerometer, temperature
4 * sensors, fan control, keyboard backlight control) used in Intel-based Apple
10 * Based on hdaps.c driver:
14 * Fan control based on smcFanControl:
18 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
20 #include <linux/delay.h>
21 #include <linux/platform_device.h>
22 #include <linux/input.h>
23 #include <linux/kernel.h>
24 #include <linux/slab.h>
25 #include <linux/module.h>
26 #include <linux/timer.h>
27 #include <linux/dmi.h>
28 #include <linux/mutex.h>
29 #include <linux/hwmon-sysfs.h>
31 #include <linux/leds.h>
32 #include <linux/hwmon.h>
33 #include <linux/workqueue.h>
34 #include <linux/err.h>
36 /* data port used by Apple SMC */
37 #define APPLESMC_DATA_PORT 0x300
38 /* command/status port used by Apple SMC */
39 #define APPLESMC_CMD_PORT 0x304
41 #define APPLESMC_NR_PORTS 32 /* 0x300-0x31f */
43 #define APPLESMC_MAX_DATA_LENGTH 32
45 /* wait up to 128 ms for a status change. */
46 #define APPLESMC_MIN_WAIT 0x0010
47 #define APPLESMC_RETRY_WAIT 0x0100
48 #define APPLESMC_MAX_WAIT 0x20000
50 #define APPLESMC_READ_CMD 0x10
51 #define APPLESMC_WRITE_CMD 0x11
52 #define APPLESMC_GET_KEY_BY_INDEX_CMD 0x12
53 #define APPLESMC_GET_KEY_TYPE_CMD 0x13
55 #define KEY_COUNT_KEY "#KEY" /* r-o ui32 */
57 #define LIGHT_SENSOR_LEFT_KEY "ALV0" /* r-o {alv (6-10 bytes) */
58 #define LIGHT_SENSOR_RIGHT_KEY "ALV1" /* r-o {alv (6-10 bytes) */
59 #define BACKLIGHT_KEY "LKSB" /* w-o {lkb (2 bytes) */
61 #define CLAMSHELL_KEY "MSLD" /* r-o ui8 (unused) */
63 #define MOTION_SENSOR_X_KEY "MO_X" /* r-o sp78 (2 bytes) */
64 #define MOTION_SENSOR_Y_KEY "MO_Y" /* r-o sp78 (2 bytes) */
65 #define MOTION_SENSOR_Z_KEY "MO_Z" /* r-o sp78 (2 bytes) */
66 #define MOTION_SENSOR_KEY "MOCN" /* r/w ui16 */
68 #define FANS_COUNT "FNum" /* r-o ui8 */
69 #define FANS_MANUAL "FS! " /* r-w ui16 */
70 #define FAN_ID_FMT "F%dID" /* r-o char[16] */
72 #define TEMP_SENSOR_TYPE "sp78"
74 /* List of keys used to read/write fan speeds */
75 static const char *const fan_speed_fmt[] = {
76 "F%dAc", /* actual speed */
77 "F%dMn", /* minimum speed (rw) */
78 "F%dMx", /* maximum speed */
79 "F%dSf", /* safe speed - not all models */
80 "F%dTg", /* target speed (manual: rw) */
83 #define INIT_TIMEOUT_MSECS 5000 /* wait up to 5s for device init ... */
84 #define INIT_WAIT_MSECS 50 /* ... in 50ms increments */
86 #define APPLESMC_POLL_INTERVAL 50 /* msecs */
87 #define APPLESMC_INPUT_FUZZ 4 /* input event threshold */
88 #define APPLESMC_INPUT_FLAT 4
90 #define to_index(attr) (to_sensor_dev_attr(attr)->index & 0xffff)
91 #define to_option(attr) (to_sensor_dev_attr(attr)->index >> 16)
93 /* Dynamic device node attributes */
94 struct applesmc_dev_attr {
95 struct sensor_device_attribute sda; /* hwmon attributes */
96 char name[32]; /* room for node file name */
99 /* Dynamic device node group */
100 struct applesmc_node_group {
101 char *format; /* format string */
102 void *show; /* show function */
103 void *store; /* store function */
104 int option; /* function argument */
105 struct applesmc_dev_attr *nodes; /* dynamic node array */
108 /* AppleSMC entry - cached register information */
109 struct applesmc_entry {
110 char key[5]; /* four-letter key code */
111 u8 valid; /* set when entry is successfully read once */
112 u8 len; /* bounded by APPLESMC_MAX_DATA_LENGTH */
113 char type[5]; /* four-letter type code */
114 u8 flags; /* 0x10: func; 0x40: write; 0x80: read */
117 /* Register lookup and registers common to all SMCs */
118 static struct applesmc_registers {
119 struct mutex mutex; /* register read/write mutex */
120 unsigned int key_count; /* number of SMC registers */
121 unsigned int fan_count; /* number of fans */
122 unsigned int temp_count; /* number of temperature registers */
123 unsigned int temp_begin; /* temperature lower index bound */
124 unsigned int temp_end; /* temperature upper index bound */
125 unsigned int index_count; /* size of temperature index array */
126 int num_light_sensors; /* number of light sensors */
127 bool has_accelerometer; /* has motion sensor */
128 bool has_key_backlight; /* has keyboard backlight */
129 bool init_complete; /* true when fully initialized */
130 struct applesmc_entry *cache; /* cached key entries */
131 const char **index; /* temperature key index */
133 .mutex = __MUTEX_INITIALIZER(smcreg.mutex),
136 static const int debug;
137 static struct platform_device *pdev;
140 static u8 backlight_state[2];
142 static struct device *hwmon_dev;
143 static struct input_dev *applesmc_idev;
146 * Last index written to key_at_index sysfs file, and value to use for all other
147 * key_at_index_* sysfs files.
149 static unsigned int key_at_index;
151 static struct workqueue_struct *applesmc_led_wq;
154 * wait_read - Wait for a byte to appear on SMC port. Callers must
155 * hold applesmc_lock.
157 static int wait_read(void)
159 unsigned long end = jiffies + (APPLESMC_MAX_WAIT * HZ) / USEC_PER_SEC;
163 for (us = APPLESMC_MIN_WAIT; us < APPLESMC_MAX_WAIT; us <<= 1) {
164 usleep_range(us, us * 16);
165 status = inb(APPLESMC_CMD_PORT);
166 /* read: wait for smc to settle */
169 /* timeout: give up */
170 if (time_after(jiffies, end))
174 pr_warn("wait_read() fail: 0x%02x\n", status);
179 * send_byte - Write to SMC port, retrying when necessary. Callers
180 * must hold applesmc_lock.
182 static int send_byte(u8 cmd, u16 port)
186 unsigned long end = jiffies + (APPLESMC_MAX_WAIT * HZ) / USEC_PER_SEC;
189 for (us = APPLESMC_MIN_WAIT; us < APPLESMC_MAX_WAIT; us <<= 1) {
190 usleep_range(us, us * 16);
191 status = inb(APPLESMC_CMD_PORT);
192 /* write: wait for smc to settle */
195 /* ready: cmd accepted, return */
198 /* timeout: give up */
199 if (time_after(jiffies, end))
201 /* busy: long wait and resend */
202 udelay(APPLESMC_RETRY_WAIT);
206 pr_warn("send_byte(0x%02x, 0x%04x) fail: 0x%02x\n", cmd, port, status);
210 static int send_command(u8 cmd)
212 return send_byte(cmd, APPLESMC_CMD_PORT);
215 static int send_argument(const char *key)
219 for (i = 0; i < 4; i++)
220 if (send_byte(key[i], APPLESMC_DATA_PORT))
225 static int read_smc(u8 cmd, const char *key, u8 *buffer, u8 len)
230 if (send_command(cmd) || send_argument(key)) {
231 pr_warn("%.4s: read arg fail\n", key);
235 /* This has no effect on newer (2012) SMCs */
236 if (send_byte(len, APPLESMC_DATA_PORT)) {
237 pr_warn("%.4s: read len fail\n", key);
241 for (i = 0; i < len; i++) {
243 pr_warn("%.4s: read data[%d] fail\n", key, i);
246 buffer[i] = inb(APPLESMC_DATA_PORT);
249 /* Read the data port until bit0 is cleared */
250 for (i = 0; i < 16; i++) {
251 udelay(APPLESMC_MIN_WAIT);
252 status = inb(APPLESMC_CMD_PORT);
253 if (!(status & 0x01))
255 data = inb(APPLESMC_DATA_PORT);
258 pr_warn("flushed %d bytes, last value is: %d\n", i, data);
263 static int write_smc(u8 cmd, const char *key, const u8 *buffer, u8 len)
267 if (send_command(cmd) || send_argument(key)) {
268 pr_warn("%s: write arg fail\n", key);
272 if (send_byte(len, APPLESMC_DATA_PORT)) {
273 pr_warn("%.4s: write len fail\n", key);
277 for (i = 0; i < len; i++) {
278 if (send_byte(buffer[i], APPLESMC_DATA_PORT)) {
279 pr_warn("%s: write data fail\n", key);
287 static int read_register_count(unsigned int *count)
292 ret = read_smc(APPLESMC_READ_CMD, KEY_COUNT_KEY, (u8 *)&be, 4);
296 *count = be32_to_cpu(be);
303 * Returns zero on success or a negative error on failure.
304 * All functions below are concurrency safe - callers should NOT hold lock.
307 static int applesmc_read_entry(const struct applesmc_entry *entry,
312 if (entry->len != len)
314 mutex_lock(&smcreg.mutex);
315 ret = read_smc(APPLESMC_READ_CMD, entry->key, buf, len);
316 mutex_unlock(&smcreg.mutex);
321 static int applesmc_write_entry(const struct applesmc_entry *entry,
322 const u8 *buf, u8 len)
326 if (entry->len != len)
328 mutex_lock(&smcreg.mutex);
329 ret = write_smc(APPLESMC_WRITE_CMD, entry->key, buf, len);
330 mutex_unlock(&smcreg.mutex);
334 static const struct applesmc_entry *applesmc_get_entry_by_index(int index)
336 struct applesmc_entry *cache = &smcreg.cache[index];
344 mutex_lock(&smcreg.mutex);
348 be = cpu_to_be32(index);
349 ret = read_smc(APPLESMC_GET_KEY_BY_INDEX_CMD, (u8 *)&be, key, 4);
352 ret = read_smc(APPLESMC_GET_KEY_TYPE_CMD, key, info, 6);
356 memcpy(cache->key, key, 4);
357 cache->len = info[0];
358 memcpy(cache->type, &info[1], 4);
359 cache->flags = info[5];
363 mutex_unlock(&smcreg.mutex);
369 static int applesmc_get_lower_bound(unsigned int *lo, const char *key)
371 int begin = 0, end = smcreg.key_count;
372 const struct applesmc_entry *entry;
374 while (begin != end) {
375 int middle = begin + (end - begin) / 2;
376 entry = applesmc_get_entry_by_index(middle);
379 return PTR_ERR(entry);
381 if (strcmp(entry->key, key) < 0)
391 static int applesmc_get_upper_bound(unsigned int *hi, const char *key)
393 int begin = 0, end = smcreg.key_count;
394 const struct applesmc_entry *entry;
396 while (begin != end) {
397 int middle = begin + (end - begin) / 2;
398 entry = applesmc_get_entry_by_index(middle);
400 *hi = smcreg.key_count;
401 return PTR_ERR(entry);
403 if (strcmp(key, entry->key) < 0)
413 static const struct applesmc_entry *applesmc_get_entry_by_key(const char *key)
418 ret = applesmc_get_lower_bound(&begin, key);
421 ret = applesmc_get_upper_bound(&end, key);
424 if (end - begin != 1)
425 return ERR_PTR(-EINVAL);
427 return applesmc_get_entry_by_index(begin);
430 static int applesmc_read_key(const char *key, u8 *buffer, u8 len)
432 const struct applesmc_entry *entry;
434 entry = applesmc_get_entry_by_key(key);
436 return PTR_ERR(entry);
438 return applesmc_read_entry(entry, buffer, len);
441 static int applesmc_write_key(const char *key, const u8 *buffer, u8 len)
443 const struct applesmc_entry *entry;
445 entry = applesmc_get_entry_by_key(key);
447 return PTR_ERR(entry);
449 return applesmc_write_entry(entry, buffer, len);
452 static int applesmc_has_key(const char *key, bool *value)
454 const struct applesmc_entry *entry;
456 entry = applesmc_get_entry_by_key(key);
457 if (IS_ERR(entry) && PTR_ERR(entry) != -EINVAL)
458 return PTR_ERR(entry);
460 *value = !IS_ERR(entry);
465 * applesmc_read_s16 - Read 16-bit signed big endian register
467 static int applesmc_read_s16(const char *key, s16 *value)
472 ret = applesmc_read_key(key, buffer, 2);
476 *value = ((s16)buffer[0] << 8) | buffer[1];
481 * applesmc_device_init - initialize the accelerometer. Can sleep.
483 static void applesmc_device_init(void)
488 if (!smcreg.has_accelerometer)
491 for (total = INIT_TIMEOUT_MSECS; total > 0; total -= INIT_WAIT_MSECS) {
492 if (!applesmc_read_key(MOTION_SENSOR_KEY, buffer, 2) &&
493 (buffer[0] != 0x00 || buffer[1] != 0x00))
497 applesmc_write_key(MOTION_SENSOR_KEY, buffer, 2);
498 msleep(INIT_WAIT_MSECS);
501 pr_warn("failed to init the device\n");
504 static int applesmc_init_index(struct applesmc_registers *s)
506 const struct applesmc_entry *entry;
512 s->index = kcalloc(s->temp_count, sizeof(s->index[0]), GFP_KERNEL);
516 for (i = s->temp_begin; i < s->temp_end; i++) {
517 entry = applesmc_get_entry_by_index(i);
520 if (strcmp(entry->type, TEMP_SENSOR_TYPE))
522 s->index[s->index_count++] = entry->key;
529 * applesmc_init_smcreg_try - Try to initialize register cache. Idempotent.
531 static int applesmc_init_smcreg_try(void)
533 struct applesmc_registers *s = &smcreg;
534 bool left_light_sensor = 0, right_light_sensor = 0;
539 if (s->init_complete)
542 ret = read_register_count(&count);
546 if (s->cache && s->key_count != count) {
547 pr_warn("key count changed from %d to %d\n",
548 s->key_count, count);
552 s->key_count = count;
555 s->cache = kcalloc(s->key_count, sizeof(*s->cache), GFP_KERNEL);
559 ret = applesmc_read_key(FANS_COUNT, tmp, 1);
562 s->fan_count = tmp[0];
563 if (s->fan_count > 10)
566 ret = applesmc_get_lower_bound(&s->temp_begin, "T");
569 ret = applesmc_get_lower_bound(&s->temp_end, "U");
572 s->temp_count = s->temp_end - s->temp_begin;
574 ret = applesmc_init_index(s);
578 ret = applesmc_has_key(LIGHT_SENSOR_LEFT_KEY, &left_light_sensor);
581 ret = applesmc_has_key(LIGHT_SENSOR_RIGHT_KEY, &right_light_sensor);
584 ret = applesmc_has_key(MOTION_SENSOR_KEY, &s->has_accelerometer);
587 ret = applesmc_has_key(BACKLIGHT_KEY, &s->has_key_backlight);
591 s->num_light_sensors = left_light_sensor + right_light_sensor;
592 s->init_complete = true;
594 pr_info("key=%d fan=%d temp=%d index=%d acc=%d lux=%d kbd=%d\n",
595 s->key_count, s->fan_count, s->temp_count, s->index_count,
596 s->has_accelerometer,
597 s->num_light_sensors,
598 s->has_key_backlight);
603 static void applesmc_destroy_smcreg(void)
609 smcreg.init_complete = false;
613 * applesmc_init_smcreg - Initialize register cache.
615 * Retries until initialization is successful, or the operation times out.
618 static int applesmc_init_smcreg(void)
622 for (ms = 0; ms < INIT_TIMEOUT_MSECS; ms += INIT_WAIT_MSECS) {
623 ret = applesmc_init_smcreg_try();
626 pr_info("init_smcreg() took %d ms\n", ms);
629 msleep(INIT_WAIT_MSECS);
632 applesmc_destroy_smcreg();
637 /* Device model stuff */
638 static int applesmc_probe(struct platform_device *dev)
642 ret = applesmc_init_smcreg();
646 applesmc_device_init();
651 /* Synchronize device with memorized backlight state */
652 static int applesmc_pm_resume(struct device *dev)
654 if (smcreg.has_key_backlight)
655 applesmc_write_key(BACKLIGHT_KEY, backlight_state, 2);
659 /* Reinitialize device on resume from hibernation */
660 static int applesmc_pm_restore(struct device *dev)
662 applesmc_device_init();
663 return applesmc_pm_resume(dev);
666 static const struct dev_pm_ops applesmc_pm_ops = {
667 .resume = applesmc_pm_resume,
668 .restore = applesmc_pm_restore,
671 static struct platform_driver applesmc_driver = {
672 .probe = applesmc_probe,
675 .pm = &applesmc_pm_ops,
680 * applesmc_calibrate - Set our "resting" values. Callers must
681 * hold applesmc_lock.
683 static void applesmc_calibrate(void)
685 applesmc_read_s16(MOTION_SENSOR_X_KEY, &rest_x);
686 applesmc_read_s16(MOTION_SENSOR_Y_KEY, &rest_y);
690 static void applesmc_idev_poll(struct input_dev *idev)
694 if (applesmc_read_s16(MOTION_SENSOR_X_KEY, &x))
696 if (applesmc_read_s16(MOTION_SENSOR_Y_KEY, &y))
700 input_report_abs(idev, ABS_X, x - rest_x);
701 input_report_abs(idev, ABS_Y, y - rest_y);
707 static ssize_t applesmc_name_show(struct device *dev,
708 struct device_attribute *attr, char *buf)
710 return snprintf(buf, PAGE_SIZE, "applesmc\n");
713 static ssize_t applesmc_position_show(struct device *dev,
714 struct device_attribute *attr, char *buf)
719 ret = applesmc_read_s16(MOTION_SENSOR_X_KEY, &x);
722 ret = applesmc_read_s16(MOTION_SENSOR_Y_KEY, &y);
725 ret = applesmc_read_s16(MOTION_SENSOR_Z_KEY, &z);
733 return snprintf(buf, PAGE_SIZE, "(%d,%d,%d)\n", x, y, z);
736 static ssize_t applesmc_light_show(struct device *dev,
737 struct device_attribute *attr, char *sysfsbuf)
739 const struct applesmc_entry *entry;
740 static int data_length;
742 u8 left = 0, right = 0;
746 entry = applesmc_get_entry_by_key(LIGHT_SENSOR_LEFT_KEY);
748 return PTR_ERR(entry);
751 data_length = entry->len;
752 pr_info("light sensor data length set to %d\n", data_length);
755 ret = applesmc_read_key(LIGHT_SENSOR_LEFT_KEY, buffer, data_length);
756 /* newer macbooks report a single 10-bit bigendian value */
757 if (data_length == 10) {
758 left = be16_to_cpu(*(__be16 *)(buffer + 6)) >> 2;
764 ret = applesmc_read_key(LIGHT_SENSOR_RIGHT_KEY, buffer, data_length);
771 return snprintf(sysfsbuf, PAGE_SIZE, "(%d,%d)\n", left, right);
774 /* Displays sensor key as label */
775 static ssize_t applesmc_show_sensor_label(struct device *dev,
776 struct device_attribute *devattr, char *sysfsbuf)
778 const char *key = smcreg.index[to_index(devattr)];
780 return snprintf(sysfsbuf, PAGE_SIZE, "%s\n", key);
783 /* Displays degree Celsius * 1000 */
784 static ssize_t applesmc_show_temperature(struct device *dev,
785 struct device_attribute *devattr, char *sysfsbuf)
787 const char *key = smcreg.index[to_index(devattr)];
792 ret = applesmc_read_s16(key, &value);
796 temp = 250 * (value >> 6);
798 return snprintf(sysfsbuf, PAGE_SIZE, "%d\n", temp);
801 static ssize_t applesmc_show_fan_speed(struct device *dev,
802 struct device_attribute *attr, char *sysfsbuf)
805 unsigned int speed = 0;
809 scnprintf(newkey, sizeof(newkey), fan_speed_fmt[to_option(attr)],
812 ret = applesmc_read_key(newkey, buffer, 2);
813 speed = ((buffer[0] << 8 | buffer[1]) >> 2);
818 return snprintf(sysfsbuf, PAGE_SIZE, "%u\n", speed);
821 static ssize_t applesmc_store_fan_speed(struct device *dev,
822 struct device_attribute *attr,
823 const char *sysfsbuf, size_t count)
830 if (kstrtoul(sysfsbuf, 10, &speed) < 0 || speed >= 0x4000)
831 return -EINVAL; /* Bigger than a 14-bit value */
833 scnprintf(newkey, sizeof(newkey), fan_speed_fmt[to_option(attr)],
836 buffer[0] = (speed >> 6) & 0xff;
837 buffer[1] = (speed << 2) & 0xff;
838 ret = applesmc_write_key(newkey, buffer, 2);
846 static ssize_t applesmc_show_fan_manual(struct device *dev,
847 struct device_attribute *attr, char *sysfsbuf)
853 ret = applesmc_read_key(FANS_MANUAL, buffer, 2);
854 manual = ((buffer[0] << 8 | buffer[1]) >> to_index(attr)) & 0x01;
859 return snprintf(sysfsbuf, PAGE_SIZE, "%d\n", manual);
862 static ssize_t applesmc_store_fan_manual(struct device *dev,
863 struct device_attribute *attr,
864 const char *sysfsbuf, size_t count)
871 if (kstrtoul(sysfsbuf, 10, &input) < 0)
874 ret = applesmc_read_key(FANS_MANUAL, buffer, 2);
875 val = (buffer[0] << 8 | buffer[1]);
880 val = val | (0x01 << to_index(attr));
882 val = val & ~(0x01 << to_index(attr));
884 buffer[0] = (val >> 8) & 0xFF;
885 buffer[1] = val & 0xFF;
887 ret = applesmc_write_key(FANS_MANUAL, buffer, 2);
896 static ssize_t applesmc_show_fan_position(struct device *dev,
897 struct device_attribute *attr, char *sysfsbuf)
903 scnprintf(newkey, sizeof(newkey), FAN_ID_FMT, to_index(attr));
905 ret = applesmc_read_key(newkey, buffer, 16);
911 return snprintf(sysfsbuf, PAGE_SIZE, "%s\n", buffer+4);
914 static ssize_t applesmc_calibrate_show(struct device *dev,
915 struct device_attribute *attr, char *sysfsbuf)
917 return snprintf(sysfsbuf, PAGE_SIZE, "(%d,%d)\n", rest_x, rest_y);
920 static ssize_t applesmc_calibrate_store(struct device *dev,
921 struct device_attribute *attr, const char *sysfsbuf, size_t count)
923 applesmc_calibrate();
928 static void applesmc_backlight_set(struct work_struct *work)
930 applesmc_write_key(BACKLIGHT_KEY, backlight_state, 2);
932 static DECLARE_WORK(backlight_work, &applesmc_backlight_set);
934 static void applesmc_brightness_set(struct led_classdev *led_cdev,
935 enum led_brightness value)
939 backlight_state[0] = value;
940 ret = queue_work(applesmc_led_wq, &backlight_work);
943 dev_dbg(led_cdev->dev, "work was already on the queue.\n");
946 static ssize_t applesmc_key_count_show(struct device *dev,
947 struct device_attribute *attr, char *sysfsbuf)
953 ret = applesmc_read_key(KEY_COUNT_KEY, buffer, 4);
954 count = ((u32)buffer[0]<<24) + ((u32)buffer[1]<<16) +
955 ((u32)buffer[2]<<8) + buffer[3];
960 return snprintf(sysfsbuf, PAGE_SIZE, "%d\n", count);
963 static ssize_t applesmc_key_at_index_read_show(struct device *dev,
964 struct device_attribute *attr, char *sysfsbuf)
966 const struct applesmc_entry *entry;
969 entry = applesmc_get_entry_by_index(key_at_index);
971 return PTR_ERR(entry);
972 ret = applesmc_read_entry(entry, sysfsbuf, entry->len);
979 static ssize_t applesmc_key_at_index_data_length_show(struct device *dev,
980 struct device_attribute *attr, char *sysfsbuf)
982 const struct applesmc_entry *entry;
984 entry = applesmc_get_entry_by_index(key_at_index);
986 return PTR_ERR(entry);
988 return snprintf(sysfsbuf, PAGE_SIZE, "%d\n", entry->len);
991 static ssize_t applesmc_key_at_index_type_show(struct device *dev,
992 struct device_attribute *attr, char *sysfsbuf)
994 const struct applesmc_entry *entry;
996 entry = applesmc_get_entry_by_index(key_at_index);
998 return PTR_ERR(entry);
1000 return snprintf(sysfsbuf, PAGE_SIZE, "%s\n", entry->type);
1003 static ssize_t applesmc_key_at_index_name_show(struct device *dev,
1004 struct device_attribute *attr, char *sysfsbuf)
1006 const struct applesmc_entry *entry;
1008 entry = applesmc_get_entry_by_index(key_at_index);
1010 return PTR_ERR(entry);
1012 return snprintf(sysfsbuf, PAGE_SIZE, "%s\n", entry->key);
1015 static ssize_t applesmc_key_at_index_show(struct device *dev,
1016 struct device_attribute *attr, char *sysfsbuf)
1018 return snprintf(sysfsbuf, PAGE_SIZE, "%d\n", key_at_index);
1021 static ssize_t applesmc_key_at_index_store(struct device *dev,
1022 struct device_attribute *attr, const char *sysfsbuf, size_t count)
1024 unsigned long newkey;
1026 if (kstrtoul(sysfsbuf, 10, &newkey) < 0
1027 || newkey >= smcreg.key_count)
1030 key_at_index = newkey;
1034 static struct led_classdev applesmc_backlight = {
1035 .name = "smc::kbd_backlight",
1036 .default_trigger = "nand-disk",
1037 .brightness_set = applesmc_brightness_set,
1040 static struct applesmc_node_group info_group[] = {
1041 { "name", applesmc_name_show },
1042 { "key_count", applesmc_key_count_show },
1043 { "key_at_index", applesmc_key_at_index_show, applesmc_key_at_index_store },
1044 { "key_at_index_name", applesmc_key_at_index_name_show },
1045 { "key_at_index_type", applesmc_key_at_index_type_show },
1046 { "key_at_index_data_length", applesmc_key_at_index_data_length_show },
1047 { "key_at_index_data", applesmc_key_at_index_read_show },
1051 static struct applesmc_node_group accelerometer_group[] = {
1052 { "position", applesmc_position_show },
1053 { "calibrate", applesmc_calibrate_show, applesmc_calibrate_store },
1057 static struct applesmc_node_group light_sensor_group[] = {
1058 { "light", applesmc_light_show },
1062 static struct applesmc_node_group fan_group[] = {
1063 { "fan%d_label", applesmc_show_fan_position },
1064 { "fan%d_input", applesmc_show_fan_speed, NULL, 0 },
1065 { "fan%d_min", applesmc_show_fan_speed, applesmc_store_fan_speed, 1 },
1066 { "fan%d_max", applesmc_show_fan_speed, NULL, 2 },
1067 { "fan%d_safe", applesmc_show_fan_speed, NULL, 3 },
1068 { "fan%d_output", applesmc_show_fan_speed, applesmc_store_fan_speed, 4 },
1069 { "fan%d_manual", applesmc_show_fan_manual, applesmc_store_fan_manual },
1073 static struct applesmc_node_group temp_group[] = {
1074 { "temp%d_label", applesmc_show_sensor_label },
1075 { "temp%d_input", applesmc_show_temperature },
1082 * applesmc_destroy_nodes - remove files and free associated memory
1084 static void applesmc_destroy_nodes(struct applesmc_node_group *groups)
1086 struct applesmc_node_group *grp;
1087 struct applesmc_dev_attr *node;
1089 for (grp = groups; grp->nodes; grp++) {
1090 for (node = grp->nodes; node->sda.dev_attr.attr.name; node++)
1091 sysfs_remove_file(&pdev->dev.kobj,
1092 &node->sda.dev_attr.attr);
1099 * applesmc_create_nodes - create a two-dimensional group of sysfs files
1101 static int applesmc_create_nodes(struct applesmc_node_group *groups, int num)
1103 struct applesmc_node_group *grp;
1104 struct applesmc_dev_attr *node;
1105 struct attribute *attr;
1108 for (grp = groups; grp->format; grp++) {
1109 grp->nodes = kcalloc(num + 1, sizeof(*node), GFP_KERNEL);
1114 for (i = 0; i < num; i++) {
1115 node = &grp->nodes[i];
1116 scnprintf(node->name, sizeof(node->name), grp->format,
1118 node->sda.index = (grp->option << 16) | (i & 0xffff);
1119 node->sda.dev_attr.show = grp->show;
1120 node->sda.dev_attr.store = grp->store;
1121 attr = &node->sda.dev_attr.attr;
1122 sysfs_attr_init(attr);
1123 attr->name = node->name;
1124 attr->mode = 0444 | (grp->store ? 0200 : 0);
1125 ret = sysfs_create_file(&pdev->dev.kobj, attr);
1135 applesmc_destroy_nodes(groups);
1139 /* Create accelerometer resources */
1140 static int applesmc_create_accelerometer(void)
1144 if (!smcreg.has_accelerometer)
1147 ret = applesmc_create_nodes(accelerometer_group, 1);
1151 applesmc_idev = input_allocate_device();
1152 if (!applesmc_idev) {
1157 /* initial calibrate for the input device */
1158 applesmc_calibrate();
1160 /* initialize the input device */
1161 applesmc_idev->name = "applesmc";
1162 applesmc_idev->id.bustype = BUS_HOST;
1163 applesmc_idev->dev.parent = &pdev->dev;
1164 input_set_abs_params(applesmc_idev, ABS_X,
1165 -256, 256, APPLESMC_INPUT_FUZZ, APPLESMC_INPUT_FLAT);
1166 input_set_abs_params(applesmc_idev, ABS_Y,
1167 -256, 256, APPLESMC_INPUT_FUZZ, APPLESMC_INPUT_FLAT);
1169 ret = input_setup_polling(applesmc_idev, applesmc_idev_poll);
1173 input_set_poll_interval(applesmc_idev, APPLESMC_POLL_INTERVAL);
1175 ret = input_register_device(applesmc_idev);
1182 input_free_device(applesmc_idev);
1185 applesmc_destroy_nodes(accelerometer_group);
1188 pr_warn("driver init failed (ret=%d)!\n", ret);
1192 /* Release all resources used by the accelerometer */
1193 static void applesmc_release_accelerometer(void)
1195 if (!smcreg.has_accelerometer)
1197 input_unregister_device(applesmc_idev);
1198 applesmc_destroy_nodes(accelerometer_group);
1201 static int applesmc_create_light_sensor(void)
1203 if (!smcreg.num_light_sensors)
1205 return applesmc_create_nodes(light_sensor_group, 1);
1208 static void applesmc_release_light_sensor(void)
1210 if (!smcreg.num_light_sensors)
1212 applesmc_destroy_nodes(light_sensor_group);
1215 static int applesmc_create_key_backlight(void)
1217 if (!smcreg.has_key_backlight)
1219 applesmc_led_wq = create_singlethread_workqueue("applesmc-led");
1220 if (!applesmc_led_wq)
1222 return led_classdev_register(&pdev->dev, &applesmc_backlight);
1225 static void applesmc_release_key_backlight(void)
1227 if (!smcreg.has_key_backlight)
1229 led_classdev_unregister(&applesmc_backlight);
1230 destroy_workqueue(applesmc_led_wq);
1233 static int applesmc_dmi_match(const struct dmi_system_id *id)
1239 * Note that DMI_MATCH(...,"MacBook") will match "MacBookPro1,1".
1240 * So we need to put "Apple MacBook Pro" before "Apple MacBook".
1242 static const struct dmi_system_id applesmc_whitelist[] __initconst = {
1243 { applesmc_dmi_match, "Apple MacBook Air", {
1244 DMI_MATCH(DMI_BOARD_VENDOR, "Apple"),
1245 DMI_MATCH(DMI_PRODUCT_NAME, "MacBookAir") },
1247 { applesmc_dmi_match, "Apple MacBook Pro", {
1248 DMI_MATCH(DMI_BOARD_VENDOR, "Apple"),
1249 DMI_MATCH(DMI_PRODUCT_NAME, "MacBookPro") },
1251 { applesmc_dmi_match, "Apple MacBook", {
1252 DMI_MATCH(DMI_BOARD_VENDOR, "Apple"),
1253 DMI_MATCH(DMI_PRODUCT_NAME, "MacBook") },
1255 { applesmc_dmi_match, "Apple Macmini", {
1256 DMI_MATCH(DMI_BOARD_VENDOR, "Apple"),
1257 DMI_MATCH(DMI_PRODUCT_NAME, "Macmini") },
1259 { applesmc_dmi_match, "Apple MacPro", {
1260 DMI_MATCH(DMI_BOARD_VENDOR, "Apple"),
1261 DMI_MATCH(DMI_PRODUCT_NAME, "MacPro") },
1263 { applesmc_dmi_match, "Apple iMac", {
1264 DMI_MATCH(DMI_BOARD_VENDOR, "Apple"),
1265 DMI_MATCH(DMI_PRODUCT_NAME, "iMac") },
1270 static int __init applesmc_init(void)
1274 if (!dmi_check_system(applesmc_whitelist)) {
1275 pr_warn("supported laptop not found!\n");
1280 if (!request_region(APPLESMC_DATA_PORT, APPLESMC_NR_PORTS,
1286 ret = platform_driver_register(&applesmc_driver);
1290 pdev = platform_device_register_simple("applesmc", APPLESMC_DATA_PORT,
1293 ret = PTR_ERR(pdev);
1297 /* create register cache */
1298 ret = applesmc_init_smcreg();
1302 ret = applesmc_create_nodes(info_group, 1);
1306 ret = applesmc_create_nodes(fan_group, smcreg.fan_count);
1310 ret = applesmc_create_nodes(temp_group, smcreg.index_count);
1314 ret = applesmc_create_accelerometer();
1316 goto out_temperature;
1318 ret = applesmc_create_light_sensor();
1320 goto out_accelerometer;
1322 ret = applesmc_create_key_backlight();
1324 goto out_light_sysfs;
1326 hwmon_dev = hwmon_device_register(&pdev->dev);
1327 if (IS_ERR(hwmon_dev)) {
1328 ret = PTR_ERR(hwmon_dev);
1329 goto out_light_ledclass;
1335 applesmc_release_key_backlight();
1337 applesmc_release_light_sensor();
1339 applesmc_release_accelerometer();
1341 applesmc_destroy_nodes(temp_group);
1343 applesmc_destroy_nodes(fan_group);
1345 applesmc_destroy_nodes(info_group);
1347 applesmc_destroy_smcreg();
1349 platform_device_unregister(pdev);
1351 platform_driver_unregister(&applesmc_driver);
1353 release_region(APPLESMC_DATA_PORT, APPLESMC_NR_PORTS);
1355 pr_warn("driver init failed (ret=%d)!\n", ret);
1359 static void __exit applesmc_exit(void)
1361 hwmon_device_unregister(hwmon_dev);
1362 applesmc_release_key_backlight();
1363 applesmc_release_light_sensor();
1364 applesmc_release_accelerometer();
1365 applesmc_destroy_nodes(temp_group);
1366 applesmc_destroy_nodes(fan_group);
1367 applesmc_destroy_nodes(info_group);
1368 applesmc_destroy_smcreg();
1369 platform_device_unregister(pdev);
1370 platform_driver_unregister(&applesmc_driver);
1371 release_region(APPLESMC_DATA_PORT, APPLESMC_NR_PORTS);
1374 module_init(applesmc_init);
1375 module_exit(applesmc_exit);
1377 MODULE_AUTHOR("Nicolas Boichat");
1378 MODULE_DESCRIPTION("Apple SMC");
1379 MODULE_LICENSE("GPL v2");
1380 MODULE_DEVICE_TABLE(dmi, applesmc_whitelist);