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
7 * Copyright (C) 2007 Nicolas Boichat <nicolas@boichat.ch>
8 * Copyright (C) 2010 Henrik Rydberg <rydberg@euromail.se>
10 * Based on hdaps.c driver:
11 * Copyright (C) 2005 Robert Love <rml@novell.com>
12 * Copyright (C) 2005 Jesper Juhl <jj@chaosbits.net>
14 * Fan control based on smcFanControl:
15 * Copyright (C) 2006 Hendrik Holtmann <holtmann@mac.com>
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>
35 #include <linux/bits.h>
37 /* data port used by Apple SMC */
38 #define APPLESMC_DATA_PORT 0x300
39 /* command/status port used by Apple SMC */
40 #define APPLESMC_CMD_PORT 0x304
42 #define APPLESMC_NR_PORTS 32 /* 0x300-0x31f */
44 #define APPLESMC_MAX_DATA_LENGTH 32
46 /* Apple SMC status bits */
47 #define SMC_STATUS_AWAITING_DATA BIT(0) /* SMC has data waiting to be read */
48 #define SMC_STATUS_IB_CLOSED BIT(1) /* Will ignore any input */
49 #define SMC_STATUS_BUSY BIT(2) /* Command in progress */
51 /* Initial wait is 8us */
52 #define APPLESMC_MIN_WAIT 0x0008
54 #define APPLESMC_READ_CMD 0x10
55 #define APPLESMC_WRITE_CMD 0x11
56 #define APPLESMC_GET_KEY_BY_INDEX_CMD 0x12
57 #define APPLESMC_GET_KEY_TYPE_CMD 0x13
59 #define KEY_COUNT_KEY "#KEY" /* r-o ui32 */
61 #define LIGHT_SENSOR_LEFT_KEY "ALV0" /* r-o {alv (6-10 bytes) */
62 #define LIGHT_SENSOR_RIGHT_KEY "ALV1" /* r-o {alv (6-10 bytes) */
63 #define BACKLIGHT_KEY "LKSB" /* w-o {lkb (2 bytes) */
65 #define CLAMSHELL_KEY "MSLD" /* r-o ui8 (unused) */
67 #define MOTION_SENSOR_X_KEY "MO_X" /* r-o sp78 (2 bytes) */
68 #define MOTION_SENSOR_Y_KEY "MO_Y" /* r-o sp78 (2 bytes) */
69 #define MOTION_SENSOR_Z_KEY "MO_Z" /* r-o sp78 (2 bytes) */
70 #define MOTION_SENSOR_KEY "MOCN" /* r/w ui16 */
72 #define FANS_COUNT "FNum" /* r-o ui8 */
73 #define FANS_MANUAL "FS! " /* r-w ui16 */
74 #define FAN_ID_FMT "F%dID" /* r-o char[16] */
76 #define TEMP_SENSOR_TYPE "sp78"
78 /* List of keys used to read/write fan speeds */
79 static const char *const fan_speed_fmt[] = {
80 "F%dAc", /* actual speed */
81 "F%dMn", /* minimum speed (rw) */
82 "F%dMx", /* maximum speed */
83 "F%dSf", /* safe speed - not all models */
84 "F%dTg", /* target speed (manual: rw) */
87 #define INIT_TIMEOUT_MSECS 5000 /* wait up to 5s for device init ... */
88 #define INIT_WAIT_MSECS 50 /* ... in 50ms increments */
90 #define APPLESMC_POLL_INTERVAL 50 /* msecs */
91 #define APPLESMC_INPUT_FUZZ 4 /* input event threshold */
92 #define APPLESMC_INPUT_FLAT 4
94 #define to_index(attr) (to_sensor_dev_attr(attr)->index & 0xffff)
95 #define to_option(attr) (to_sensor_dev_attr(attr)->index >> 16)
97 /* Dynamic device node attributes */
98 struct applesmc_dev_attr {
99 struct sensor_device_attribute sda; /* hwmon attributes */
100 char name[32]; /* room for node file name */
103 /* Dynamic device node group */
104 struct applesmc_node_group {
105 char *format; /* format string */
106 void *show; /* show function */
107 void *store; /* store function */
108 int option; /* function argument */
109 struct applesmc_dev_attr *nodes; /* dynamic node array */
112 /* AppleSMC entry - cached register information */
113 struct applesmc_entry {
114 char key[5]; /* four-letter key code */
115 u8 valid; /* set when entry is successfully read once */
116 u8 len; /* bounded by APPLESMC_MAX_DATA_LENGTH */
117 char type[5]; /* four-letter type code */
118 u8 flags; /* 0x10: func; 0x40: write; 0x80: read */
121 /* Register lookup and registers common to all SMCs */
122 static struct applesmc_registers {
123 struct mutex mutex; /* register read/write mutex */
124 unsigned int key_count; /* number of SMC registers */
125 unsigned int fan_count; /* number of fans */
126 unsigned int temp_count; /* number of temperature registers */
127 unsigned int temp_begin; /* temperature lower index bound */
128 unsigned int temp_end; /* temperature upper index bound */
129 unsigned int index_count; /* size of temperature index array */
130 int num_light_sensors; /* number of light sensors */
131 bool has_accelerometer; /* has motion sensor */
132 bool has_key_backlight; /* has keyboard backlight */
133 bool init_complete; /* true when fully initialized */
134 struct applesmc_entry *cache; /* cached key entries */
135 const char **index; /* temperature key index */
137 .mutex = __MUTEX_INITIALIZER(smcreg.mutex),
140 static const int debug;
141 static struct platform_device *pdev;
144 static u8 backlight_state[2];
146 static struct device *hwmon_dev;
147 static struct input_dev *applesmc_idev;
150 * Last index written to key_at_index sysfs file, and value to use for all other
151 * key_at_index_* sysfs files.
153 static unsigned int key_at_index;
155 static struct workqueue_struct *applesmc_led_wq;
158 * Wait for specific status bits with a mask on the SMC.
159 * Used before all transactions.
160 * This does 10 fast loops of 8us then exponentially backs off for a
161 * minimum total wait of 262ms. Depending on usleep_range this could
162 * run out past 500ms.
165 static int wait_status(u8 val, u8 mask)
171 us = APPLESMC_MIN_WAIT;
172 for (i = 0; i < 24 ; i++) {
173 status = inb(APPLESMC_CMD_PORT);
174 if ((status & mask) == val)
176 usleep_range(us, us * 2);
183 /* send_byte - Write to SMC data port. Callers must hold applesmc_lock. */
185 static int send_byte(u8 cmd, u16 port)
189 status = wait_status(0, SMC_STATUS_IB_CLOSED);
193 * This needs to be a separate read looking for bit 0x04
194 * after bit 0x02 falls. If consolidated with the wait above
195 * this extra read may not happen if status returns both
196 * simultaneously and this would appear to be required.
198 status = wait_status(SMC_STATUS_BUSY, SMC_STATUS_BUSY);
206 /* send_command - Write a command to the SMC. Callers must hold applesmc_lock. */
208 static int send_command(u8 cmd)
212 ret = wait_status(0, SMC_STATUS_IB_CLOSED);
215 outb(cmd, APPLESMC_CMD_PORT);
220 * Based on logic from the Apple driver. This is issued before any interaction
221 * If busy is stuck high, issue a read command to reset the SMC state machine.
222 * If busy is stuck high after the command then the SMC is jammed.
225 static int smc_sane(void)
229 ret = wait_status(0, SMC_STATUS_BUSY);
232 ret = send_command(APPLESMC_READ_CMD);
235 return wait_status(0, SMC_STATUS_BUSY);
238 static int send_argument(const char *key)
242 for (i = 0; i < 4; i++)
243 if (send_byte(key[i], APPLESMC_DATA_PORT))
248 static int read_smc(u8 cmd, const char *key, u8 *buffer, u8 len)
258 if (send_command(cmd) || send_argument(key)) {
259 pr_warn("%.4s: read arg fail\n", key);
263 /* This has no effect on newer (2012) SMCs */
264 if (send_byte(len, APPLESMC_DATA_PORT)) {
265 pr_warn("%.4s: read len fail\n", key);
269 for (i = 0; i < len; i++) {
270 if (wait_status(SMC_STATUS_AWAITING_DATA | SMC_STATUS_BUSY,
271 SMC_STATUS_AWAITING_DATA | SMC_STATUS_BUSY)) {
272 pr_warn("%.4s: read data[%d] fail\n", key, i);
275 buffer[i] = inb(APPLESMC_DATA_PORT);
278 /* Read the data port until bit0 is cleared */
279 for (i = 0; i < 16; i++) {
280 udelay(APPLESMC_MIN_WAIT);
281 status = inb(APPLESMC_CMD_PORT);
282 if (!(status & SMC_STATUS_AWAITING_DATA))
284 data = inb(APPLESMC_DATA_PORT);
287 pr_warn("flushed %d bytes, last value is: %d\n", i, data);
289 return wait_status(0, SMC_STATUS_BUSY);
292 static int write_smc(u8 cmd, const char *key, const u8 *buffer, u8 len)
301 if (send_command(cmd) || send_argument(key)) {
302 pr_warn("%s: write arg fail\n", key);
306 if (send_byte(len, APPLESMC_DATA_PORT)) {
307 pr_warn("%.4s: write len fail\n", key);
311 for (i = 0; i < len; i++) {
312 if (send_byte(buffer[i], APPLESMC_DATA_PORT)) {
313 pr_warn("%s: write data fail\n", key);
318 return wait_status(0, SMC_STATUS_BUSY);
321 static int read_register_count(unsigned int *count)
326 ret = read_smc(APPLESMC_READ_CMD, KEY_COUNT_KEY, (u8 *)&be, 4);
330 *count = be32_to_cpu(be);
337 * Returns zero on success or a negative error on failure.
338 * All functions below are concurrency safe - callers should NOT hold lock.
341 static int applesmc_read_entry(const struct applesmc_entry *entry,
346 if (entry->len != len)
348 mutex_lock(&smcreg.mutex);
349 ret = read_smc(APPLESMC_READ_CMD, entry->key, buf, len);
350 mutex_unlock(&smcreg.mutex);
355 static int applesmc_write_entry(const struct applesmc_entry *entry,
356 const u8 *buf, u8 len)
360 if (entry->len != len)
362 mutex_lock(&smcreg.mutex);
363 ret = write_smc(APPLESMC_WRITE_CMD, entry->key, buf, len);
364 mutex_unlock(&smcreg.mutex);
368 static const struct applesmc_entry *applesmc_get_entry_by_index(int index)
370 struct applesmc_entry *cache = &smcreg.cache[index];
378 mutex_lock(&smcreg.mutex);
382 be = cpu_to_be32(index);
383 ret = read_smc(APPLESMC_GET_KEY_BY_INDEX_CMD, (u8 *)&be, key, 4);
386 ret = read_smc(APPLESMC_GET_KEY_TYPE_CMD, key, info, 6);
390 memcpy(cache->key, key, 4);
391 cache->len = info[0];
392 memcpy(cache->type, &info[1], 4);
393 cache->flags = info[5];
397 mutex_unlock(&smcreg.mutex);
403 static int applesmc_get_lower_bound(unsigned int *lo, const char *key)
405 int begin = 0, end = smcreg.key_count;
406 const struct applesmc_entry *entry;
408 while (begin != end) {
409 int middle = begin + (end - begin) / 2;
410 entry = applesmc_get_entry_by_index(middle);
413 return PTR_ERR(entry);
415 if (strcmp(entry->key, key) < 0)
425 static int applesmc_get_upper_bound(unsigned int *hi, const char *key)
427 int begin = 0, end = smcreg.key_count;
428 const struct applesmc_entry *entry;
430 while (begin != end) {
431 int middle = begin + (end - begin) / 2;
432 entry = applesmc_get_entry_by_index(middle);
434 *hi = smcreg.key_count;
435 return PTR_ERR(entry);
437 if (strcmp(key, entry->key) < 0)
447 static const struct applesmc_entry *applesmc_get_entry_by_key(const char *key)
452 ret = applesmc_get_lower_bound(&begin, key);
455 ret = applesmc_get_upper_bound(&end, key);
458 if (end - begin != 1)
459 return ERR_PTR(-EINVAL);
461 return applesmc_get_entry_by_index(begin);
464 static int applesmc_read_key(const char *key, u8 *buffer, u8 len)
466 const struct applesmc_entry *entry;
468 entry = applesmc_get_entry_by_key(key);
470 return PTR_ERR(entry);
472 return applesmc_read_entry(entry, buffer, len);
475 static int applesmc_write_key(const char *key, const u8 *buffer, u8 len)
477 const struct applesmc_entry *entry;
479 entry = applesmc_get_entry_by_key(key);
481 return PTR_ERR(entry);
483 return applesmc_write_entry(entry, buffer, len);
486 static int applesmc_has_key(const char *key, bool *value)
488 const struct applesmc_entry *entry;
490 entry = applesmc_get_entry_by_key(key);
491 if (IS_ERR(entry) && PTR_ERR(entry) != -EINVAL)
492 return PTR_ERR(entry);
494 *value = !IS_ERR(entry);
499 * applesmc_read_s16 - Read 16-bit signed big endian register
501 static int applesmc_read_s16(const char *key, s16 *value)
506 ret = applesmc_read_key(key, buffer, 2);
510 *value = ((s16)buffer[0] << 8) | buffer[1];
515 * applesmc_device_init - initialize the accelerometer. Can sleep.
517 static void applesmc_device_init(void)
522 if (!smcreg.has_accelerometer)
525 for (total = INIT_TIMEOUT_MSECS; total > 0; total -= INIT_WAIT_MSECS) {
526 if (!applesmc_read_key(MOTION_SENSOR_KEY, buffer, 2) &&
527 (buffer[0] != 0x00 || buffer[1] != 0x00))
531 applesmc_write_key(MOTION_SENSOR_KEY, buffer, 2);
532 msleep(INIT_WAIT_MSECS);
535 pr_warn("failed to init the device\n");
538 static int applesmc_init_index(struct applesmc_registers *s)
540 const struct applesmc_entry *entry;
546 s->index = kcalloc(s->temp_count, sizeof(s->index[0]), GFP_KERNEL);
550 for (i = s->temp_begin; i < s->temp_end; i++) {
551 entry = applesmc_get_entry_by_index(i);
554 if (strcmp(entry->type, TEMP_SENSOR_TYPE))
556 s->index[s->index_count++] = entry->key;
563 * applesmc_init_smcreg_try - Try to initialize register cache. Idempotent.
565 static int applesmc_init_smcreg_try(void)
567 struct applesmc_registers *s = &smcreg;
568 bool left_light_sensor = false, right_light_sensor = false;
573 if (s->init_complete)
576 ret = read_register_count(&count);
580 if (s->cache && s->key_count != count) {
581 pr_warn("key count changed from %d to %d\n",
582 s->key_count, count);
586 s->key_count = count;
589 s->cache = kcalloc(s->key_count, sizeof(*s->cache), GFP_KERNEL);
593 ret = applesmc_read_key(FANS_COUNT, tmp, 1);
596 s->fan_count = tmp[0];
597 if (s->fan_count > 10)
600 ret = applesmc_get_lower_bound(&s->temp_begin, "T");
603 ret = applesmc_get_lower_bound(&s->temp_end, "U");
606 s->temp_count = s->temp_end - s->temp_begin;
608 ret = applesmc_init_index(s);
612 ret = applesmc_has_key(LIGHT_SENSOR_LEFT_KEY, &left_light_sensor);
615 ret = applesmc_has_key(LIGHT_SENSOR_RIGHT_KEY, &right_light_sensor);
618 ret = applesmc_has_key(MOTION_SENSOR_KEY, &s->has_accelerometer);
621 ret = applesmc_has_key(BACKLIGHT_KEY, &s->has_key_backlight);
625 s->num_light_sensors = left_light_sensor + right_light_sensor;
626 s->init_complete = true;
628 pr_info("key=%d fan=%d temp=%d index=%d acc=%d lux=%d kbd=%d\n",
629 s->key_count, s->fan_count, s->temp_count, s->index_count,
630 s->has_accelerometer,
631 s->num_light_sensors,
632 s->has_key_backlight);
637 static void applesmc_destroy_smcreg(void)
643 smcreg.init_complete = false;
647 * applesmc_init_smcreg - Initialize register cache.
649 * Retries until initialization is successful, or the operation times out.
652 static int applesmc_init_smcreg(void)
656 for (ms = 0; ms < INIT_TIMEOUT_MSECS; ms += INIT_WAIT_MSECS) {
657 ret = applesmc_init_smcreg_try();
660 pr_info("init_smcreg() took %d ms\n", ms);
663 msleep(INIT_WAIT_MSECS);
666 applesmc_destroy_smcreg();
671 /* Device model stuff */
672 static int applesmc_probe(struct platform_device *dev)
676 ret = applesmc_init_smcreg();
680 applesmc_device_init();
685 /* Synchronize device with memorized backlight state */
686 static int applesmc_pm_resume(struct device *dev)
688 if (smcreg.has_key_backlight)
689 applesmc_write_key(BACKLIGHT_KEY, backlight_state, 2);
693 /* Reinitialize device on resume from hibernation */
694 static int applesmc_pm_restore(struct device *dev)
696 applesmc_device_init();
697 return applesmc_pm_resume(dev);
700 static const struct dev_pm_ops applesmc_pm_ops = {
701 .resume = applesmc_pm_resume,
702 .restore = applesmc_pm_restore,
705 static struct platform_driver applesmc_driver = {
706 .probe = applesmc_probe,
709 .pm = &applesmc_pm_ops,
714 * applesmc_calibrate - Set our "resting" values. Callers must
715 * hold applesmc_lock.
717 static void applesmc_calibrate(void)
719 applesmc_read_s16(MOTION_SENSOR_X_KEY, &rest_x);
720 applesmc_read_s16(MOTION_SENSOR_Y_KEY, &rest_y);
724 static void applesmc_idev_poll(struct input_dev *idev)
728 if (applesmc_read_s16(MOTION_SENSOR_X_KEY, &x))
730 if (applesmc_read_s16(MOTION_SENSOR_Y_KEY, &y))
734 input_report_abs(idev, ABS_X, x - rest_x);
735 input_report_abs(idev, ABS_Y, y - rest_y);
741 static ssize_t applesmc_name_show(struct device *dev,
742 struct device_attribute *attr, char *buf)
744 return sysfs_emit(buf, "applesmc\n");
747 static ssize_t applesmc_position_show(struct device *dev,
748 struct device_attribute *attr, char *buf)
753 ret = applesmc_read_s16(MOTION_SENSOR_X_KEY, &x);
756 ret = applesmc_read_s16(MOTION_SENSOR_Y_KEY, &y);
759 ret = applesmc_read_s16(MOTION_SENSOR_Z_KEY, &z);
767 return sysfs_emit(buf, "(%d,%d,%d)\n", x, y, z);
770 static ssize_t applesmc_light_show(struct device *dev,
771 struct device_attribute *attr, char *sysfsbuf)
773 const struct applesmc_entry *entry;
774 static int data_length;
776 u8 left = 0, right = 0;
780 entry = applesmc_get_entry_by_key(LIGHT_SENSOR_LEFT_KEY);
782 return PTR_ERR(entry);
785 data_length = entry->len;
786 pr_info("light sensor data length set to %d\n", data_length);
789 ret = applesmc_read_key(LIGHT_SENSOR_LEFT_KEY, buffer, data_length);
792 /* newer macbooks report a single 10-bit bigendian value */
793 if (data_length == 10) {
794 left = be16_to_cpu(*(__be16 *)(buffer + 6)) >> 2;
799 ret = applesmc_read_key(LIGHT_SENSOR_RIGHT_KEY, buffer, data_length);
808 return sysfs_emit(sysfsbuf, "(%d,%d)\n", left, right);
811 /* Displays sensor key as label */
812 static ssize_t applesmc_show_sensor_label(struct device *dev,
813 struct device_attribute *devattr, char *sysfsbuf)
815 const char *key = smcreg.index[to_index(devattr)];
817 return sysfs_emit(sysfsbuf, "%s\n", key);
820 /* Displays degree Celsius * 1000 */
821 static ssize_t applesmc_show_temperature(struct device *dev,
822 struct device_attribute *devattr, char *sysfsbuf)
824 const char *key = smcreg.index[to_index(devattr)];
829 ret = applesmc_read_s16(key, &value);
833 temp = 250 * (value >> 6);
835 return sysfs_emit(sysfsbuf, "%d\n", temp);
838 static ssize_t applesmc_show_fan_speed(struct device *dev,
839 struct device_attribute *attr, char *sysfsbuf)
842 unsigned int speed = 0;
846 scnprintf(newkey, sizeof(newkey), fan_speed_fmt[to_option(attr)],
849 ret = applesmc_read_key(newkey, buffer, 2);
853 speed = ((buffer[0] << 8 | buffer[1]) >> 2);
854 return sysfs_emit(sysfsbuf, "%u\n", speed);
857 static ssize_t applesmc_store_fan_speed(struct device *dev,
858 struct device_attribute *attr,
859 const char *sysfsbuf, size_t count)
866 if (kstrtoul(sysfsbuf, 10, &speed) < 0 || speed >= 0x4000)
867 return -EINVAL; /* Bigger than a 14-bit value */
869 scnprintf(newkey, sizeof(newkey), fan_speed_fmt[to_option(attr)],
872 buffer[0] = (speed >> 6) & 0xff;
873 buffer[1] = (speed << 2) & 0xff;
874 ret = applesmc_write_key(newkey, buffer, 2);
882 static ssize_t applesmc_show_fan_manual(struct device *dev,
883 struct device_attribute *attr, char *sysfsbuf)
889 ret = applesmc_read_key(FANS_MANUAL, buffer, 2);
893 manual = ((buffer[0] << 8 | buffer[1]) >> to_index(attr)) & 0x01;
894 return sysfs_emit(sysfsbuf, "%d\n", manual);
897 static ssize_t applesmc_store_fan_manual(struct device *dev,
898 struct device_attribute *attr,
899 const char *sysfsbuf, size_t count)
906 if (kstrtoul(sysfsbuf, 10, &input) < 0)
909 ret = applesmc_read_key(FANS_MANUAL, buffer, 2);
913 val = (buffer[0] << 8 | buffer[1]);
916 val = val | (0x01 << to_index(attr));
918 val = val & ~(0x01 << to_index(attr));
920 buffer[0] = (val >> 8) & 0xFF;
921 buffer[1] = val & 0xFF;
923 ret = applesmc_write_key(FANS_MANUAL, buffer, 2);
932 static ssize_t applesmc_show_fan_position(struct device *dev,
933 struct device_attribute *attr, char *sysfsbuf)
939 scnprintf(newkey, sizeof(newkey), FAN_ID_FMT, to_index(attr));
941 ret = applesmc_read_key(newkey, buffer, 16);
947 return sysfs_emit(sysfsbuf, "%s\n", buffer + 4);
950 static ssize_t applesmc_calibrate_show(struct device *dev,
951 struct device_attribute *attr, char *sysfsbuf)
953 return sysfs_emit(sysfsbuf, "(%d,%d)\n", rest_x, rest_y);
956 static ssize_t applesmc_calibrate_store(struct device *dev,
957 struct device_attribute *attr, const char *sysfsbuf, size_t count)
959 applesmc_calibrate();
964 static void applesmc_backlight_set(struct work_struct *work)
966 applesmc_write_key(BACKLIGHT_KEY, backlight_state, 2);
968 static DECLARE_WORK(backlight_work, &applesmc_backlight_set);
970 static void applesmc_brightness_set(struct led_classdev *led_cdev,
971 enum led_brightness value)
975 backlight_state[0] = value;
976 ret = queue_work(applesmc_led_wq, &backlight_work);
979 dev_dbg(led_cdev->dev, "work was already on the queue.\n");
982 static ssize_t applesmc_key_count_show(struct device *dev,
983 struct device_attribute *attr, char *sysfsbuf)
989 ret = applesmc_read_key(KEY_COUNT_KEY, buffer, 4);
993 count = ((u32)buffer[0]<<24) + ((u32)buffer[1]<<16) +
994 ((u32)buffer[2]<<8) + buffer[3];
995 return sysfs_emit(sysfsbuf, "%d\n", count);
998 static ssize_t applesmc_key_at_index_read_show(struct device *dev,
999 struct device_attribute *attr, char *sysfsbuf)
1001 const struct applesmc_entry *entry;
1004 entry = applesmc_get_entry_by_index(key_at_index);
1006 return PTR_ERR(entry);
1007 ret = applesmc_read_entry(entry, sysfsbuf, entry->len);
1014 static ssize_t applesmc_key_at_index_data_length_show(struct device *dev,
1015 struct device_attribute *attr, char *sysfsbuf)
1017 const struct applesmc_entry *entry;
1019 entry = applesmc_get_entry_by_index(key_at_index);
1021 return PTR_ERR(entry);
1023 return sysfs_emit(sysfsbuf, "%d\n", entry->len);
1026 static ssize_t applesmc_key_at_index_type_show(struct device *dev,
1027 struct device_attribute *attr, char *sysfsbuf)
1029 const struct applesmc_entry *entry;
1031 entry = applesmc_get_entry_by_index(key_at_index);
1033 return PTR_ERR(entry);
1035 return sysfs_emit(sysfsbuf, "%s\n", entry->type);
1038 static ssize_t applesmc_key_at_index_name_show(struct device *dev,
1039 struct device_attribute *attr, char *sysfsbuf)
1041 const struct applesmc_entry *entry;
1043 entry = applesmc_get_entry_by_index(key_at_index);
1045 return PTR_ERR(entry);
1047 return sysfs_emit(sysfsbuf, "%s\n", entry->key);
1050 static ssize_t applesmc_key_at_index_show(struct device *dev,
1051 struct device_attribute *attr, char *sysfsbuf)
1053 return sysfs_emit(sysfsbuf, "%d\n", key_at_index);
1056 static ssize_t applesmc_key_at_index_store(struct device *dev,
1057 struct device_attribute *attr, const char *sysfsbuf, size_t count)
1059 unsigned long newkey;
1061 if (kstrtoul(sysfsbuf, 10, &newkey) < 0
1062 || newkey >= smcreg.key_count)
1065 key_at_index = newkey;
1069 static struct led_classdev applesmc_backlight = {
1070 .name = "smc::kbd_backlight",
1071 .default_trigger = "nand-disk",
1072 .brightness_set = applesmc_brightness_set,
1075 static struct applesmc_node_group info_group[] = {
1076 { "name", applesmc_name_show },
1077 { "key_count", applesmc_key_count_show },
1078 { "key_at_index", applesmc_key_at_index_show, applesmc_key_at_index_store },
1079 { "key_at_index_name", applesmc_key_at_index_name_show },
1080 { "key_at_index_type", applesmc_key_at_index_type_show },
1081 { "key_at_index_data_length", applesmc_key_at_index_data_length_show },
1082 { "key_at_index_data", applesmc_key_at_index_read_show },
1086 static struct applesmc_node_group accelerometer_group[] = {
1087 { "position", applesmc_position_show },
1088 { "calibrate", applesmc_calibrate_show, applesmc_calibrate_store },
1092 static struct applesmc_node_group light_sensor_group[] = {
1093 { "light", applesmc_light_show },
1097 static struct applesmc_node_group fan_group[] = {
1098 { "fan%d_label", applesmc_show_fan_position },
1099 { "fan%d_input", applesmc_show_fan_speed, NULL, 0 },
1100 { "fan%d_min", applesmc_show_fan_speed, applesmc_store_fan_speed, 1 },
1101 { "fan%d_max", applesmc_show_fan_speed, NULL, 2 },
1102 { "fan%d_safe", applesmc_show_fan_speed, NULL, 3 },
1103 { "fan%d_output", applesmc_show_fan_speed, applesmc_store_fan_speed, 4 },
1104 { "fan%d_manual", applesmc_show_fan_manual, applesmc_store_fan_manual },
1108 static struct applesmc_node_group temp_group[] = {
1109 { "temp%d_label", applesmc_show_sensor_label },
1110 { "temp%d_input", applesmc_show_temperature },
1117 * applesmc_destroy_nodes - remove files and free associated memory
1119 static void applesmc_destroy_nodes(struct applesmc_node_group *groups)
1121 struct applesmc_node_group *grp;
1122 struct applesmc_dev_attr *node;
1124 for (grp = groups; grp->nodes; grp++) {
1125 for (node = grp->nodes; node->sda.dev_attr.attr.name; node++)
1126 sysfs_remove_file(&pdev->dev.kobj,
1127 &node->sda.dev_attr.attr);
1134 * applesmc_create_nodes - create a two-dimensional group of sysfs files
1136 static int applesmc_create_nodes(struct applesmc_node_group *groups, int num)
1138 struct applesmc_node_group *grp;
1139 struct applesmc_dev_attr *node;
1140 struct attribute *attr;
1143 for (grp = groups; grp->format; grp++) {
1144 grp->nodes = kcalloc(num + 1, sizeof(*node), GFP_KERNEL);
1149 for (i = 0; i < num; i++) {
1150 node = &grp->nodes[i];
1151 scnprintf(node->name, sizeof(node->name), grp->format,
1153 node->sda.index = (grp->option << 16) | (i & 0xffff);
1154 node->sda.dev_attr.show = grp->show;
1155 node->sda.dev_attr.store = grp->store;
1156 attr = &node->sda.dev_attr.attr;
1157 sysfs_attr_init(attr);
1158 attr->name = node->name;
1159 attr->mode = 0444 | (grp->store ? 0200 : 0);
1160 ret = sysfs_create_file(&pdev->dev.kobj, attr);
1170 applesmc_destroy_nodes(groups);
1174 /* Create accelerometer resources */
1175 static int applesmc_create_accelerometer(void)
1179 if (!smcreg.has_accelerometer)
1182 ret = applesmc_create_nodes(accelerometer_group, 1);
1186 applesmc_idev = input_allocate_device();
1187 if (!applesmc_idev) {
1192 /* initial calibrate for the input device */
1193 applesmc_calibrate();
1195 /* initialize the input device */
1196 applesmc_idev->name = "applesmc";
1197 applesmc_idev->id.bustype = BUS_HOST;
1198 applesmc_idev->dev.parent = &pdev->dev;
1199 input_set_abs_params(applesmc_idev, ABS_X,
1200 -256, 256, APPLESMC_INPUT_FUZZ, APPLESMC_INPUT_FLAT);
1201 input_set_abs_params(applesmc_idev, ABS_Y,
1202 -256, 256, APPLESMC_INPUT_FUZZ, APPLESMC_INPUT_FLAT);
1204 ret = input_setup_polling(applesmc_idev, applesmc_idev_poll);
1208 input_set_poll_interval(applesmc_idev, APPLESMC_POLL_INTERVAL);
1210 ret = input_register_device(applesmc_idev);
1217 input_free_device(applesmc_idev);
1220 applesmc_destroy_nodes(accelerometer_group);
1223 pr_warn("driver init failed (ret=%d)!\n", ret);
1227 /* Release all resources used by the accelerometer */
1228 static void applesmc_release_accelerometer(void)
1230 if (!smcreg.has_accelerometer)
1232 input_unregister_device(applesmc_idev);
1233 applesmc_destroy_nodes(accelerometer_group);
1236 static int applesmc_create_light_sensor(void)
1238 if (!smcreg.num_light_sensors)
1240 return applesmc_create_nodes(light_sensor_group, 1);
1243 static void applesmc_release_light_sensor(void)
1245 if (!smcreg.num_light_sensors)
1247 applesmc_destroy_nodes(light_sensor_group);
1250 static int applesmc_create_key_backlight(void)
1252 if (!smcreg.has_key_backlight)
1254 applesmc_led_wq = create_singlethread_workqueue("applesmc-led");
1255 if (!applesmc_led_wq)
1257 return led_classdev_register(&pdev->dev, &applesmc_backlight);
1260 static void applesmc_release_key_backlight(void)
1262 if (!smcreg.has_key_backlight)
1264 led_classdev_unregister(&applesmc_backlight);
1265 destroy_workqueue(applesmc_led_wq);
1268 static int applesmc_dmi_match(const struct dmi_system_id *id)
1274 * Note that DMI_MATCH(...,"MacBook") will match "MacBookPro1,1".
1275 * So we need to put "Apple MacBook Pro" before "Apple MacBook".
1277 static const struct dmi_system_id applesmc_whitelist[] __initconst = {
1278 { applesmc_dmi_match, "Apple MacBook Air", {
1279 DMI_MATCH(DMI_BOARD_VENDOR, "Apple"),
1280 DMI_MATCH(DMI_PRODUCT_NAME, "MacBookAir") },
1282 { applesmc_dmi_match, "Apple MacBook Pro", {
1283 DMI_MATCH(DMI_BOARD_VENDOR, "Apple"),
1284 DMI_MATCH(DMI_PRODUCT_NAME, "MacBookPro") },
1286 { applesmc_dmi_match, "Apple MacBook", {
1287 DMI_MATCH(DMI_BOARD_VENDOR, "Apple"),
1288 DMI_MATCH(DMI_PRODUCT_NAME, "MacBook") },
1290 { applesmc_dmi_match, "Apple Macmini", {
1291 DMI_MATCH(DMI_BOARD_VENDOR, "Apple"),
1292 DMI_MATCH(DMI_PRODUCT_NAME, "Macmini") },
1294 { applesmc_dmi_match, "Apple MacPro", {
1295 DMI_MATCH(DMI_BOARD_VENDOR, "Apple"),
1296 DMI_MATCH(DMI_PRODUCT_NAME, "MacPro") },
1298 { applesmc_dmi_match, "Apple iMac", {
1299 DMI_MATCH(DMI_BOARD_VENDOR, "Apple"),
1300 DMI_MATCH(DMI_PRODUCT_NAME, "iMac") },
1302 { applesmc_dmi_match, "Apple Xserve", {
1303 DMI_MATCH(DMI_BOARD_VENDOR, "Apple"),
1304 DMI_MATCH(DMI_PRODUCT_NAME, "Xserve") },
1309 static int __init applesmc_init(void)
1313 if (!dmi_check_system(applesmc_whitelist)) {
1314 pr_warn("supported laptop not found!\n");
1319 if (!request_region(APPLESMC_DATA_PORT, APPLESMC_NR_PORTS,
1325 ret = platform_driver_register(&applesmc_driver);
1329 pdev = platform_device_register_simple("applesmc", APPLESMC_DATA_PORT,
1332 ret = PTR_ERR(pdev);
1336 /* create register cache */
1337 ret = applesmc_init_smcreg();
1341 ret = applesmc_create_nodes(info_group, 1);
1345 ret = applesmc_create_nodes(fan_group, smcreg.fan_count);
1349 ret = applesmc_create_nodes(temp_group, smcreg.index_count);
1353 ret = applesmc_create_accelerometer();
1355 goto out_temperature;
1357 ret = applesmc_create_light_sensor();
1359 goto out_accelerometer;
1361 ret = applesmc_create_key_backlight();
1363 goto out_light_sysfs;
1365 hwmon_dev = hwmon_device_register(&pdev->dev);
1366 if (IS_ERR(hwmon_dev)) {
1367 ret = PTR_ERR(hwmon_dev);
1368 goto out_light_ledclass;
1374 applesmc_release_key_backlight();
1376 applesmc_release_light_sensor();
1378 applesmc_release_accelerometer();
1380 applesmc_destroy_nodes(temp_group);
1382 applesmc_destroy_nodes(fan_group);
1384 applesmc_destroy_nodes(info_group);
1386 applesmc_destroy_smcreg();
1388 platform_device_unregister(pdev);
1390 platform_driver_unregister(&applesmc_driver);
1392 release_region(APPLESMC_DATA_PORT, APPLESMC_NR_PORTS);
1394 pr_warn("driver init failed (ret=%d)!\n", ret);
1398 static void __exit applesmc_exit(void)
1400 hwmon_device_unregister(hwmon_dev);
1401 applesmc_release_key_backlight();
1402 applesmc_release_light_sensor();
1403 applesmc_release_accelerometer();
1404 applesmc_destroy_nodes(temp_group);
1405 applesmc_destroy_nodes(fan_group);
1406 applesmc_destroy_nodes(info_group);
1407 applesmc_destroy_smcreg();
1408 platform_device_unregister(pdev);
1409 platform_driver_unregister(&applesmc_driver);
1410 release_region(APPLESMC_DATA_PORT, APPLESMC_NR_PORTS);
1413 module_init(applesmc_init);
1414 module_exit(applesmc_exit);
1416 MODULE_AUTHOR("Nicolas Boichat");
1417 MODULE_DESCRIPTION("Apple SMC");
1418 MODULE_LICENSE("GPL v2");
1419 MODULE_DEVICE_TABLE(dmi, applesmc_whitelist);