2 * drivers/hwmon/applesmc.c - driver for Apple's SMC (accelerometer, temperature
3 * sensors, fan control, keyboard backlight control) used in Intel-based Apple
6 * Copyright (C) 2007 Nicolas Boichat <nicolas@boichat.ch>
7 * Copyright (C) 2010 Henrik Rydberg <rydberg@euromail.se>
9 * Based on hdaps.c driver:
10 * Copyright (C) 2005 Robert Love <rml@novell.com>
11 * Copyright (C) 2005 Jesper Juhl <jesper.juhl@gmail.com>
13 * Fan control based on smcFanControl:
14 * Copyright (C) 2006 Hendrik Holtmann <holtmann@mac.com>
16 * This program is free software; you can redistribute it and/or modify it
17 * under the terms of the GNU General Public License v2 as published by the
18 * Free Software Foundation.
20 * This program is distributed in the hope that it will be useful, but WITHOUT
21 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
22 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
25 * You should have received a copy of the GNU General Public License along with
26 * this program; if not, write to the Free Software Foundation, Inc.,
27 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA
30 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
32 #include <linux/delay.h>
33 #include <linux/platform_device.h>
34 #include <linux/input-polldev.h>
35 #include <linux/kernel.h>
36 #include <linux/slab.h>
37 #include <linux/module.h>
38 #include <linux/timer.h>
39 #include <linux/dmi.h>
40 #include <linux/mutex.h>
41 #include <linux/hwmon-sysfs.h>
43 #include <linux/leds.h>
44 #include <linux/hwmon.h>
45 #include <linux/workqueue.h>
47 /* data port used by Apple SMC */
48 #define APPLESMC_DATA_PORT 0x300
49 /* command/status port used by Apple SMC */
50 #define APPLESMC_CMD_PORT 0x304
52 #define APPLESMC_NR_PORTS 32 /* 0x300-0x31f */
54 #define APPLESMC_MAX_DATA_LENGTH 32
56 /* wait up to 32 ms for a status change. */
57 #define APPLESMC_MIN_WAIT 0x0040
58 #define APPLESMC_MAX_WAIT 0x8000
60 #define APPLESMC_STATUS_MASK 0x0f
61 #define APPLESMC_READ_CMD 0x10
62 #define APPLESMC_WRITE_CMD 0x11
63 #define APPLESMC_GET_KEY_BY_INDEX_CMD 0x12
64 #define APPLESMC_GET_KEY_TYPE_CMD 0x13
66 #define KEY_COUNT_KEY "#KEY" /* r-o ui32 */
68 #define LIGHT_SENSOR_LEFT_KEY "ALV0" /* r-o {alv (6-10 bytes) */
69 #define LIGHT_SENSOR_RIGHT_KEY "ALV1" /* r-o {alv (6-10 bytes) */
70 #define BACKLIGHT_KEY "LKSB" /* w-o {lkb (2 bytes) */
72 #define CLAMSHELL_KEY "MSLD" /* r-o ui8 (unused) */
74 #define MOTION_SENSOR_X_KEY "MO_X" /* r-o sp78 (2 bytes) */
75 #define MOTION_SENSOR_Y_KEY "MO_Y" /* r-o sp78 (2 bytes) */
76 #define MOTION_SENSOR_Z_KEY "MO_Z" /* r-o sp78 (2 bytes) */
77 #define MOTION_SENSOR_KEY "MOCN" /* r/w ui16 */
79 #define FANS_COUNT "FNum" /* r-o ui8 */
80 #define FANS_MANUAL "FS! " /* r-w ui16 */
81 #define FAN_ID_FMT "F%dID" /* r-o char[16] */
83 /* List of keys used to read/write fan speeds */
84 static const char *const fan_speed_fmt
[] = {
85 "F%dAc", /* actual speed */
86 "F%dMn", /* minimum speed (rw) */
87 "F%dMx", /* maximum speed */
88 "F%dSf", /* safe speed - not all models */
89 "F%dTg", /* target speed (manual: rw) */
92 #define INIT_TIMEOUT_MSECS 5000 /* wait up to 5s for device init ... */
93 #define INIT_WAIT_MSECS 50 /* ... in 50ms increments */
95 #define APPLESMC_POLL_INTERVAL 50 /* msecs */
96 #define APPLESMC_INPUT_FUZZ 4 /* input event threshold */
97 #define APPLESMC_INPUT_FLAT 4
103 #define to_index(attr) (to_sensor_dev_attr(attr)->index & 0xffff)
104 #define to_option(attr) (to_sensor_dev_attr(attr)->index >> 16)
106 /* Dynamic device node attributes */
107 struct applesmc_dev_attr
{
108 struct sensor_device_attribute sda
; /* hwmon attributes */
109 char name
[32]; /* room for node file name */
112 /* Dynamic device node group */
113 struct applesmc_node_group
{
114 char *format
; /* format string */
115 void *show
; /* show function */
116 void *store
; /* store function */
117 int option
; /* function argument */
118 struct applesmc_dev_attr
*nodes
; /* dynamic node array */
121 /* AppleSMC entry - cached register information */
122 struct applesmc_entry
{
123 char key
[5]; /* four-letter key code */
124 u8 valid
; /* set when entry is successfully read once */
125 u8 len
; /* bounded by APPLESMC_MAX_DATA_LENGTH */
126 char type
[5]; /* four-letter type code */
127 u8 flags
; /* 0x10: func; 0x40: write; 0x80: read */
130 /* Register lookup and registers common to all SMCs */
131 static struct applesmc_registers
{
132 struct mutex mutex
; /* register read/write mutex */
133 unsigned int key_count
; /* number of SMC registers */
134 unsigned int fan_count
; /* number of fans */
135 unsigned int temp_count
; /* number of temperature registers */
136 unsigned int temp_begin
; /* temperature lower index bound */
137 unsigned int temp_end
; /* temperature upper index bound */
138 int num_light_sensors
; /* number of light sensors */
139 bool has_accelerometer
; /* has motion sensor */
140 bool has_key_backlight
; /* has keyboard backlight */
141 bool init_complete
; /* true when fully initialized */
142 struct applesmc_entry
*cache
; /* cached key entries */
144 .mutex
= __MUTEX_INITIALIZER(smcreg
.mutex
),
147 static const int debug
;
148 static struct platform_device
*pdev
;
151 static u8 backlight_state
[2];
153 static struct device
*hwmon_dev
;
154 static struct input_polled_dev
*applesmc_idev
;
157 * Last index written to key_at_index sysfs file, and value to use for all other
158 * key_at_index_* sysfs files.
160 static unsigned int key_at_index
;
162 static struct workqueue_struct
*applesmc_led_wq
;
165 * __wait_status - Wait up to 32ms for the status port to get a certain value
166 * (masked with 0x0f), returning zero if the value is obtained. Callers must
167 * hold applesmc_lock.
169 static int __wait_status(u8 val
)
173 val
= val
& APPLESMC_STATUS_MASK
;
175 for (us
= APPLESMC_MIN_WAIT
; us
< APPLESMC_MAX_WAIT
; us
<<= 1) {
177 if ((inb(APPLESMC_CMD_PORT
) & APPLESMC_STATUS_MASK
) == val
)
185 * special treatment of command port - on newer macbooks, it seems necessary
186 * to resend the command byte before polling the status again. Callers must
187 * hold applesmc_lock.
189 static int send_command(u8 cmd
)
192 for (us
= APPLESMC_MIN_WAIT
; us
< APPLESMC_MAX_WAIT
; us
<<= 1) {
193 outb(cmd
, APPLESMC_CMD_PORT
);
195 if ((inb(APPLESMC_CMD_PORT
) & APPLESMC_STATUS_MASK
) == 0x0c)
201 static int send_argument(const char *key
)
205 for (i
= 0; i
< 4; i
++) {
206 outb(key
[i
], APPLESMC_DATA_PORT
);
207 if (__wait_status(0x04))
213 static int read_smc(u8 cmd
, const char *key
, u8
*buffer
, u8 len
)
218 if (send_command(cmd
) || send_argument(key
)) {
219 pr_warn("%.4s: read arg fail\n", key
);
223 /* This has no effect on newer (2012) SMCs */
224 outb(len
, APPLESMC_DATA_PORT
);
226 for (i
= 0; i
< len
; i
++) {
227 if (__wait_status(0x05)) {
228 pr_warn("%.4s: read data fail\n", key
);
231 buffer
[i
] = inb(APPLESMC_DATA_PORT
);
234 /* Read the data port until bit0 is cleared */
235 for (i
= 0; i
< 16; i
++) {
236 udelay(APPLESMC_MIN_WAIT
);
237 status
= inb(APPLESMC_CMD_PORT
);
238 if (!(status
& 0x01))
240 data
= inb(APPLESMC_DATA_PORT
);
243 pr_warn("flushed %d bytes, last value is: %d\n", i
, data
);
248 static int write_smc(u8 cmd
, const char *key
, const u8
*buffer
, u8 len
)
252 if (send_command(cmd
) || send_argument(key
)) {
253 pr_warn("%s: write arg fail\n", key
);
257 outb(len
, APPLESMC_DATA_PORT
);
259 for (i
= 0; i
< len
; i
++) {
260 if (__wait_status(0x04)) {
261 pr_warn("%s: write data fail\n", key
);
264 outb(buffer
[i
], APPLESMC_DATA_PORT
);
270 static int read_register_count(unsigned int *count
)
275 ret
= read_smc(APPLESMC_READ_CMD
, KEY_COUNT_KEY
, (u8
*)&be
, 4);
279 *count
= be32_to_cpu(be
);
286 * Returns zero on success or a negative error on failure.
287 * All functions below are concurrency safe - callers should NOT hold lock.
290 static int applesmc_read_entry(const struct applesmc_entry
*entry
,
295 if (entry
->len
!= len
)
297 mutex_lock(&smcreg
.mutex
);
298 ret
= read_smc(APPLESMC_READ_CMD
, entry
->key
, buf
, len
);
299 mutex_unlock(&smcreg
.mutex
);
304 static int applesmc_write_entry(const struct applesmc_entry
*entry
,
305 const u8
*buf
, u8 len
)
309 if (entry
->len
!= len
)
311 mutex_lock(&smcreg
.mutex
);
312 ret
= write_smc(APPLESMC_WRITE_CMD
, entry
->key
, buf
, len
);
313 mutex_unlock(&smcreg
.mutex
);
317 static const struct applesmc_entry
*applesmc_get_entry_by_index(int index
)
319 struct applesmc_entry
*cache
= &smcreg
.cache
[index
];
327 mutex_lock(&smcreg
.mutex
);
331 be
= cpu_to_be32(index
);
332 ret
= read_smc(APPLESMC_GET_KEY_BY_INDEX_CMD
, (u8
*)&be
, key
, 4);
335 ret
= read_smc(APPLESMC_GET_KEY_TYPE_CMD
, key
, info
, 6);
339 memcpy(cache
->key
, key
, 4);
340 cache
->len
= info
[0];
341 memcpy(cache
->type
, &info
[1], 4);
342 cache
->flags
= info
[5];
346 mutex_unlock(&smcreg
.mutex
);
352 static int applesmc_get_lower_bound(unsigned int *lo
, const char *key
)
354 int begin
= 0, end
= smcreg
.key_count
;
355 const struct applesmc_entry
*entry
;
357 while (begin
!= end
) {
358 int middle
= begin
+ (end
- begin
) / 2;
359 entry
= applesmc_get_entry_by_index(middle
);
362 return PTR_ERR(entry
);
364 if (strcmp(entry
->key
, key
) < 0)
374 static int applesmc_get_upper_bound(unsigned int *hi
, const char *key
)
376 int begin
= 0, end
= smcreg
.key_count
;
377 const struct applesmc_entry
*entry
;
379 while (begin
!= end
) {
380 int middle
= begin
+ (end
- begin
) / 2;
381 entry
= applesmc_get_entry_by_index(middle
);
383 *hi
= smcreg
.key_count
;
384 return PTR_ERR(entry
);
386 if (strcmp(key
, entry
->key
) < 0)
396 static const struct applesmc_entry
*applesmc_get_entry_by_key(const char *key
)
401 ret
= applesmc_get_lower_bound(&begin
, key
);
404 ret
= applesmc_get_upper_bound(&end
, key
);
407 if (end
- begin
!= 1)
408 return ERR_PTR(-EINVAL
);
410 return applesmc_get_entry_by_index(begin
);
413 static int applesmc_read_key(const char *key
, u8
*buffer
, u8 len
)
415 const struct applesmc_entry
*entry
;
417 entry
= applesmc_get_entry_by_key(key
);
419 return PTR_ERR(entry
);
421 return applesmc_read_entry(entry
, buffer
, len
);
424 static int applesmc_write_key(const char *key
, const u8
*buffer
, u8 len
)
426 const struct applesmc_entry
*entry
;
428 entry
= applesmc_get_entry_by_key(key
);
430 return PTR_ERR(entry
);
432 return applesmc_write_entry(entry
, buffer
, len
);
435 static int applesmc_has_key(const char *key
, bool *value
)
437 const struct applesmc_entry
*entry
;
439 entry
= applesmc_get_entry_by_key(key
);
440 if (IS_ERR(entry
) && PTR_ERR(entry
) != -EINVAL
)
441 return PTR_ERR(entry
);
443 *value
= !IS_ERR(entry
);
448 * applesmc_read_motion_sensor - Read motion sensor (X, Y or Z).
450 static int applesmc_read_motion_sensor(int index
, s16
*value
)
457 ret
= applesmc_read_key(MOTION_SENSOR_X_KEY
, buffer
, 2);
460 ret
= applesmc_read_key(MOTION_SENSOR_Y_KEY
, buffer
, 2);
463 ret
= applesmc_read_key(MOTION_SENSOR_Z_KEY
, buffer
, 2);
469 *value
= ((s16
)buffer
[0] << 8) | buffer
[1];
475 * applesmc_device_init - initialize the accelerometer. Can sleep.
477 static void applesmc_device_init(void)
482 if (!smcreg
.has_accelerometer
)
485 for (total
= INIT_TIMEOUT_MSECS
; total
> 0; total
-= INIT_WAIT_MSECS
) {
486 if (!applesmc_read_key(MOTION_SENSOR_KEY
, buffer
, 2) &&
487 (buffer
[0] != 0x00 || buffer
[1] != 0x00))
491 applesmc_write_key(MOTION_SENSOR_KEY
, buffer
, 2);
492 msleep(INIT_WAIT_MSECS
);
495 pr_warn("failed to init the device\n");
499 * applesmc_init_smcreg_try - Try to initialize register cache. Idempotent.
501 static int applesmc_init_smcreg_try(void)
503 struct applesmc_registers
*s
= &smcreg
;
504 bool left_light_sensor
, right_light_sensor
;
509 if (s
->init_complete
)
512 ret
= read_register_count(&count
);
516 if (s
->cache
&& s
->key_count
!= count
) {
517 pr_warn("key count changed from %d to %d\n",
518 s
->key_count
, count
);
522 s
->key_count
= count
;
525 s
->cache
= kcalloc(s
->key_count
, sizeof(*s
->cache
), GFP_KERNEL
);
529 ret
= applesmc_read_key(FANS_COUNT
, tmp
, 1);
532 s
->fan_count
= tmp
[0];
534 ret
= applesmc_get_lower_bound(&s
->temp_begin
, "T");
537 ret
= applesmc_get_lower_bound(&s
->temp_end
, "U");
540 s
->temp_count
= s
->temp_end
- s
->temp_begin
;
542 ret
= applesmc_has_key(LIGHT_SENSOR_LEFT_KEY
, &left_light_sensor
);
545 ret
= applesmc_has_key(LIGHT_SENSOR_RIGHT_KEY
, &right_light_sensor
);
548 ret
= applesmc_has_key(MOTION_SENSOR_KEY
, &s
->has_accelerometer
);
551 ret
= applesmc_has_key(BACKLIGHT_KEY
, &s
->has_key_backlight
);
555 s
->num_light_sensors
= left_light_sensor
+ right_light_sensor
;
556 s
->init_complete
= true;
558 pr_info("key=%d fan=%d temp=%d acc=%d lux=%d kbd=%d\n",
559 s
->key_count
, s
->fan_count
, s
->temp_count
,
560 s
->has_accelerometer
,
561 s
->num_light_sensors
,
562 s
->has_key_backlight
);
568 * applesmc_init_smcreg - Initialize register cache.
570 * Retries until initialization is successful, or the operation times out.
573 static int applesmc_init_smcreg(void)
577 for (ms
= 0; ms
< INIT_TIMEOUT_MSECS
; ms
+= INIT_WAIT_MSECS
) {
578 ret
= applesmc_init_smcreg_try();
581 pr_info("init_smcreg() took %d ms\n", ms
);
584 msleep(INIT_WAIT_MSECS
);
593 static void applesmc_destroy_smcreg(void)
597 smcreg
.init_complete
= false;
600 /* Device model stuff */
601 static int applesmc_probe(struct platform_device
*dev
)
605 ret
= applesmc_init_smcreg();
609 applesmc_device_init();
614 /* Synchronize device with memorized backlight state */
615 static int applesmc_pm_resume(struct device
*dev
)
617 if (smcreg
.has_key_backlight
)
618 applesmc_write_key(BACKLIGHT_KEY
, backlight_state
, 2);
622 /* Reinitialize device on resume from hibernation */
623 static int applesmc_pm_restore(struct device
*dev
)
625 applesmc_device_init();
626 return applesmc_pm_resume(dev
);
629 static const struct dev_pm_ops applesmc_pm_ops
= {
630 .resume
= applesmc_pm_resume
,
631 .restore
= applesmc_pm_restore
,
634 static struct platform_driver applesmc_driver
= {
635 .probe
= applesmc_probe
,
638 .owner
= THIS_MODULE
,
639 .pm
= &applesmc_pm_ops
,
644 * applesmc_calibrate - Set our "resting" values. Callers must
645 * hold applesmc_lock.
647 static void applesmc_calibrate(void)
649 applesmc_read_motion_sensor(SENSOR_X
, &rest_x
);
650 applesmc_read_motion_sensor(SENSOR_Y
, &rest_y
);
654 static void applesmc_idev_poll(struct input_polled_dev
*dev
)
656 struct input_dev
*idev
= dev
->input
;
659 if (applesmc_read_motion_sensor(SENSOR_X
, &x
))
661 if (applesmc_read_motion_sensor(SENSOR_Y
, &y
))
665 input_report_abs(idev
, ABS_X
, x
- rest_x
);
666 input_report_abs(idev
, ABS_Y
, y
- rest_y
);
672 static ssize_t
applesmc_name_show(struct device
*dev
,
673 struct device_attribute
*attr
, char *buf
)
675 return snprintf(buf
, PAGE_SIZE
, "applesmc\n");
678 static ssize_t
applesmc_position_show(struct device
*dev
,
679 struct device_attribute
*attr
, char *buf
)
684 ret
= applesmc_read_motion_sensor(SENSOR_X
, &x
);
687 ret
= applesmc_read_motion_sensor(SENSOR_Y
, &y
);
690 ret
= applesmc_read_motion_sensor(SENSOR_Z
, &z
);
698 return snprintf(buf
, PAGE_SIZE
, "(%d,%d,%d)\n", x
, y
, z
);
701 static ssize_t
applesmc_light_show(struct device
*dev
,
702 struct device_attribute
*attr
, char *sysfsbuf
)
704 const struct applesmc_entry
*entry
;
705 static int data_length
;
707 u8 left
= 0, right
= 0;
711 entry
= applesmc_get_entry_by_key(LIGHT_SENSOR_LEFT_KEY
);
713 return PTR_ERR(entry
);
716 data_length
= entry
->len
;
717 pr_info("light sensor data length set to %d\n", data_length
);
720 ret
= applesmc_read_key(LIGHT_SENSOR_LEFT_KEY
, buffer
, data_length
);
721 /* newer macbooks report a single 10-bit bigendian value */
722 if (data_length
== 10) {
723 left
= be16_to_cpu(*(__be16
*)(buffer
+ 6)) >> 2;
729 ret
= applesmc_read_key(LIGHT_SENSOR_RIGHT_KEY
, buffer
, data_length
);
736 return snprintf(sysfsbuf
, PAGE_SIZE
, "(%d,%d)\n", left
, right
);
739 /* Displays sensor key as label */
740 static ssize_t
applesmc_show_sensor_label(struct device
*dev
,
741 struct device_attribute
*devattr
, char *sysfsbuf
)
743 int index
= smcreg
.temp_begin
+ to_index(devattr
);
744 const struct applesmc_entry
*entry
;
746 entry
= applesmc_get_entry_by_index(index
);
748 return PTR_ERR(entry
);
750 return snprintf(sysfsbuf
, PAGE_SIZE
, "%s\n", entry
->key
);
753 /* Displays degree Celsius * 1000 */
754 static ssize_t
applesmc_show_temperature(struct device
*dev
,
755 struct device_attribute
*devattr
, char *sysfsbuf
)
757 int index
= smcreg
.temp_begin
+ to_index(devattr
);
758 const struct applesmc_entry
*entry
;
763 entry
= applesmc_get_entry_by_index(index
);
765 return PTR_ERR(entry
);
769 ret
= applesmc_read_entry(entry
, buffer
, entry
->len
);
773 if (entry
->len
== 2) {
774 temp
= buffer
[0] * 1000;
775 temp
+= (buffer
[1] >> 6) * 250;
777 temp
= buffer
[0] * 4000;
780 return snprintf(sysfsbuf
, PAGE_SIZE
, "%u\n", temp
);
783 static ssize_t
applesmc_show_fan_speed(struct device
*dev
,
784 struct device_attribute
*attr
, char *sysfsbuf
)
787 unsigned int speed
= 0;
791 sprintf(newkey
, fan_speed_fmt
[to_option(attr
)], to_index(attr
));
793 ret
= applesmc_read_key(newkey
, buffer
, 2);
794 speed
= ((buffer
[0] << 8 | buffer
[1]) >> 2);
799 return snprintf(sysfsbuf
, PAGE_SIZE
, "%u\n", speed
);
802 static ssize_t
applesmc_store_fan_speed(struct device
*dev
,
803 struct device_attribute
*attr
,
804 const char *sysfsbuf
, size_t count
)
811 if (kstrtoul(sysfsbuf
, 10, &speed
) < 0 || speed
>= 0x4000)
812 return -EINVAL
; /* Bigger than a 14-bit value */
814 sprintf(newkey
, fan_speed_fmt
[to_option(attr
)], to_index(attr
));
816 buffer
[0] = (speed
>> 6) & 0xff;
817 buffer
[1] = (speed
<< 2) & 0xff;
818 ret
= applesmc_write_key(newkey
, buffer
, 2);
826 static ssize_t
applesmc_show_fan_manual(struct device
*dev
,
827 struct device_attribute
*attr
, char *sysfsbuf
)
833 ret
= applesmc_read_key(FANS_MANUAL
, buffer
, 2);
834 manual
= ((buffer
[0] << 8 | buffer
[1]) >> to_index(attr
)) & 0x01;
839 return snprintf(sysfsbuf
, PAGE_SIZE
, "%d\n", manual
);
842 static ssize_t
applesmc_store_fan_manual(struct device
*dev
,
843 struct device_attribute
*attr
,
844 const char *sysfsbuf
, size_t count
)
851 if (kstrtoul(sysfsbuf
, 10, &input
) < 0)
854 ret
= applesmc_read_key(FANS_MANUAL
, buffer
, 2);
855 val
= (buffer
[0] << 8 | buffer
[1]);
860 val
= val
| (0x01 << to_index(attr
));
862 val
= val
& ~(0x01 << to_index(attr
));
864 buffer
[0] = (val
>> 8) & 0xFF;
865 buffer
[1] = val
& 0xFF;
867 ret
= applesmc_write_key(FANS_MANUAL
, buffer
, 2);
876 static ssize_t
applesmc_show_fan_position(struct device
*dev
,
877 struct device_attribute
*attr
, char *sysfsbuf
)
883 sprintf(newkey
, FAN_ID_FMT
, to_index(attr
));
885 ret
= applesmc_read_key(newkey
, buffer
, 16);
891 return snprintf(sysfsbuf
, PAGE_SIZE
, "%s\n", buffer
+4);
894 static ssize_t
applesmc_calibrate_show(struct device
*dev
,
895 struct device_attribute
*attr
, char *sysfsbuf
)
897 return snprintf(sysfsbuf
, PAGE_SIZE
, "(%d,%d)\n", rest_x
, rest_y
);
900 static ssize_t
applesmc_calibrate_store(struct device
*dev
,
901 struct device_attribute
*attr
, const char *sysfsbuf
, size_t count
)
903 applesmc_calibrate();
908 static void applesmc_backlight_set(struct work_struct
*work
)
910 applesmc_write_key(BACKLIGHT_KEY
, backlight_state
, 2);
912 static DECLARE_WORK(backlight_work
, &applesmc_backlight_set
);
914 static void applesmc_brightness_set(struct led_classdev
*led_cdev
,
915 enum led_brightness value
)
919 backlight_state
[0] = value
;
920 ret
= queue_work(applesmc_led_wq
, &backlight_work
);
923 printk(KERN_DEBUG
"applesmc: work was already on the queue.\n");
926 static ssize_t
applesmc_key_count_show(struct device
*dev
,
927 struct device_attribute
*attr
, char *sysfsbuf
)
933 ret
= applesmc_read_key(KEY_COUNT_KEY
, buffer
, 4);
934 count
= ((u32
)buffer
[0]<<24) + ((u32
)buffer
[1]<<16) +
935 ((u32
)buffer
[2]<<8) + buffer
[3];
940 return snprintf(sysfsbuf
, PAGE_SIZE
, "%d\n", count
);
943 static ssize_t
applesmc_key_at_index_read_show(struct device
*dev
,
944 struct device_attribute
*attr
, char *sysfsbuf
)
946 const struct applesmc_entry
*entry
;
949 entry
= applesmc_get_entry_by_index(key_at_index
);
951 return PTR_ERR(entry
);
952 ret
= applesmc_read_entry(entry
, sysfsbuf
, entry
->len
);
959 static ssize_t
applesmc_key_at_index_data_length_show(struct device
*dev
,
960 struct device_attribute
*attr
, char *sysfsbuf
)
962 const struct applesmc_entry
*entry
;
964 entry
= applesmc_get_entry_by_index(key_at_index
);
966 return PTR_ERR(entry
);
968 return snprintf(sysfsbuf
, PAGE_SIZE
, "%d\n", entry
->len
);
971 static ssize_t
applesmc_key_at_index_type_show(struct device
*dev
,
972 struct device_attribute
*attr
, char *sysfsbuf
)
974 const struct applesmc_entry
*entry
;
976 entry
= applesmc_get_entry_by_index(key_at_index
);
978 return PTR_ERR(entry
);
980 return snprintf(sysfsbuf
, PAGE_SIZE
, "%s\n", entry
->type
);
983 static ssize_t
applesmc_key_at_index_name_show(struct device
*dev
,
984 struct device_attribute
*attr
, char *sysfsbuf
)
986 const struct applesmc_entry
*entry
;
988 entry
= applesmc_get_entry_by_index(key_at_index
);
990 return PTR_ERR(entry
);
992 return snprintf(sysfsbuf
, PAGE_SIZE
, "%s\n", entry
->key
);
995 static ssize_t
applesmc_key_at_index_show(struct device
*dev
,
996 struct device_attribute
*attr
, char *sysfsbuf
)
998 return snprintf(sysfsbuf
, PAGE_SIZE
, "%d\n", key_at_index
);
1001 static ssize_t
applesmc_key_at_index_store(struct device
*dev
,
1002 struct device_attribute
*attr
, const char *sysfsbuf
, size_t count
)
1004 unsigned long newkey
;
1006 if (kstrtoul(sysfsbuf
, 10, &newkey
) < 0
1007 || newkey
>= smcreg
.key_count
)
1010 key_at_index
= newkey
;
1014 static struct led_classdev applesmc_backlight
= {
1015 .name
= "smc::kbd_backlight",
1016 .default_trigger
= "nand-disk",
1017 .brightness_set
= applesmc_brightness_set
,
1020 static struct applesmc_node_group info_group
[] = {
1021 { "name", applesmc_name_show
},
1022 { "key_count", applesmc_key_count_show
},
1023 { "key_at_index", applesmc_key_at_index_show
, applesmc_key_at_index_store
},
1024 { "key_at_index_name", applesmc_key_at_index_name_show
},
1025 { "key_at_index_type", applesmc_key_at_index_type_show
},
1026 { "key_at_index_data_length", applesmc_key_at_index_data_length_show
},
1027 { "key_at_index_data", applesmc_key_at_index_read_show
},
1031 static struct applesmc_node_group accelerometer_group
[] = {
1032 { "position", applesmc_position_show
},
1033 { "calibrate", applesmc_calibrate_show
, applesmc_calibrate_store
},
1037 static struct applesmc_node_group light_sensor_group
[] = {
1038 { "light", applesmc_light_show
},
1042 static struct applesmc_node_group fan_group
[] = {
1043 { "fan%d_label", applesmc_show_fan_position
},
1044 { "fan%d_input", applesmc_show_fan_speed
, NULL
, 0 },
1045 { "fan%d_min", applesmc_show_fan_speed
, applesmc_store_fan_speed
, 1 },
1046 { "fan%d_max", applesmc_show_fan_speed
, NULL
, 2 },
1047 { "fan%d_safe", applesmc_show_fan_speed
, NULL
, 3 },
1048 { "fan%d_output", applesmc_show_fan_speed
, applesmc_store_fan_speed
, 4 },
1049 { "fan%d_manual", applesmc_show_fan_manual
, applesmc_store_fan_manual
},
1053 static struct applesmc_node_group temp_group
[] = {
1054 { "temp%d_label", applesmc_show_sensor_label
},
1055 { "temp%d_input", applesmc_show_temperature
},
1062 * applesmc_destroy_nodes - remove files and free associated memory
1064 static void applesmc_destroy_nodes(struct applesmc_node_group
*groups
)
1066 struct applesmc_node_group
*grp
;
1067 struct applesmc_dev_attr
*node
;
1069 for (grp
= groups
; grp
->nodes
; grp
++) {
1070 for (node
= grp
->nodes
; node
->sda
.dev_attr
.attr
.name
; node
++)
1071 sysfs_remove_file(&pdev
->dev
.kobj
,
1072 &node
->sda
.dev_attr
.attr
);
1079 * applesmc_create_nodes - create a two-dimensional group of sysfs files
1081 static int applesmc_create_nodes(struct applesmc_node_group
*groups
, int num
)
1083 struct applesmc_node_group
*grp
;
1084 struct applesmc_dev_attr
*node
;
1085 struct attribute
*attr
;
1088 for (grp
= groups
; grp
->format
; grp
++) {
1089 grp
->nodes
= kcalloc(num
+ 1, sizeof(*node
), GFP_KERNEL
);
1094 for (i
= 0; i
< num
; i
++) {
1095 node
= &grp
->nodes
[i
];
1096 sprintf(node
->name
, grp
->format
, i
+ 1);
1097 node
->sda
.index
= (grp
->option
<< 16) | (i
& 0xffff);
1098 node
->sda
.dev_attr
.show
= grp
->show
;
1099 node
->sda
.dev_attr
.store
= grp
->store
;
1100 attr
= &node
->sda
.dev_attr
.attr
;
1101 sysfs_attr_init(attr
);
1102 attr
->name
= node
->name
;
1103 attr
->mode
= S_IRUGO
| (grp
->store
? S_IWUSR
: 0);
1104 ret
= sysfs_create_file(&pdev
->dev
.kobj
, attr
);
1114 applesmc_destroy_nodes(groups
);
1118 /* Create accelerometer ressources */
1119 static int applesmc_create_accelerometer(void)
1121 struct input_dev
*idev
;
1124 if (!smcreg
.has_accelerometer
)
1127 ret
= applesmc_create_nodes(accelerometer_group
, 1);
1131 applesmc_idev
= input_allocate_polled_device();
1132 if (!applesmc_idev
) {
1137 applesmc_idev
->poll
= applesmc_idev_poll
;
1138 applesmc_idev
->poll_interval
= APPLESMC_POLL_INTERVAL
;
1140 /* initial calibrate for the input device */
1141 applesmc_calibrate();
1143 /* initialize the input device */
1144 idev
= applesmc_idev
->input
;
1145 idev
->name
= "applesmc";
1146 idev
->id
.bustype
= BUS_HOST
;
1147 idev
->dev
.parent
= &pdev
->dev
;
1148 idev
->evbit
[0] = BIT_MASK(EV_ABS
);
1149 input_set_abs_params(idev
, ABS_X
,
1150 -256, 256, APPLESMC_INPUT_FUZZ
, APPLESMC_INPUT_FLAT
);
1151 input_set_abs_params(idev
, ABS_Y
,
1152 -256, 256, APPLESMC_INPUT_FUZZ
, APPLESMC_INPUT_FLAT
);
1154 ret
= input_register_polled_device(applesmc_idev
);
1161 input_free_polled_device(applesmc_idev
);
1164 applesmc_destroy_nodes(accelerometer_group
);
1167 pr_warn("driver init failed (ret=%d)!\n", ret
);
1171 /* Release all ressources used by the accelerometer */
1172 static void applesmc_release_accelerometer(void)
1174 if (!smcreg
.has_accelerometer
)
1176 input_unregister_polled_device(applesmc_idev
);
1177 input_free_polled_device(applesmc_idev
);
1178 applesmc_destroy_nodes(accelerometer_group
);
1181 static int applesmc_create_light_sensor(void)
1183 if (!smcreg
.num_light_sensors
)
1185 return applesmc_create_nodes(light_sensor_group
, 1);
1188 static void applesmc_release_light_sensor(void)
1190 if (!smcreg
.num_light_sensors
)
1192 applesmc_destroy_nodes(light_sensor_group
);
1195 static int applesmc_create_key_backlight(void)
1197 if (!smcreg
.has_key_backlight
)
1199 applesmc_led_wq
= create_singlethread_workqueue("applesmc-led");
1200 if (!applesmc_led_wq
)
1202 return led_classdev_register(&pdev
->dev
, &applesmc_backlight
);
1205 static void applesmc_release_key_backlight(void)
1207 if (!smcreg
.has_key_backlight
)
1209 led_classdev_unregister(&applesmc_backlight
);
1210 destroy_workqueue(applesmc_led_wq
);
1213 static int applesmc_dmi_match(const struct dmi_system_id
*id
)
1219 * Note that DMI_MATCH(...,"MacBook") will match "MacBookPro1,1".
1220 * So we need to put "Apple MacBook Pro" before "Apple MacBook".
1222 static __initdata
struct dmi_system_id applesmc_whitelist
[] = {
1223 { applesmc_dmi_match
, "Apple MacBook Air", {
1224 DMI_MATCH(DMI_BOARD_VENDOR
, "Apple"),
1225 DMI_MATCH(DMI_PRODUCT_NAME
, "MacBookAir") },
1227 { applesmc_dmi_match
, "Apple MacBook Pro", {
1228 DMI_MATCH(DMI_BOARD_VENDOR
, "Apple"),
1229 DMI_MATCH(DMI_PRODUCT_NAME
, "MacBookPro") },
1231 { applesmc_dmi_match
, "Apple MacBook", {
1232 DMI_MATCH(DMI_BOARD_VENDOR
, "Apple"),
1233 DMI_MATCH(DMI_PRODUCT_NAME
, "MacBook") },
1235 { applesmc_dmi_match
, "Apple Macmini", {
1236 DMI_MATCH(DMI_BOARD_VENDOR
, "Apple"),
1237 DMI_MATCH(DMI_PRODUCT_NAME
, "Macmini") },
1239 { applesmc_dmi_match
, "Apple MacPro", {
1240 DMI_MATCH(DMI_BOARD_VENDOR
, "Apple"),
1241 DMI_MATCH(DMI_PRODUCT_NAME
, "MacPro") },
1243 { applesmc_dmi_match
, "Apple iMac", {
1244 DMI_MATCH(DMI_BOARD_VENDOR
, "Apple"),
1245 DMI_MATCH(DMI_PRODUCT_NAME
, "iMac") },
1250 static int __init
applesmc_init(void)
1254 if (!dmi_check_system(applesmc_whitelist
)) {
1255 pr_warn("supported laptop not found!\n");
1260 if (!request_region(APPLESMC_DATA_PORT
, APPLESMC_NR_PORTS
,
1266 ret
= platform_driver_register(&applesmc_driver
);
1270 pdev
= platform_device_register_simple("applesmc", APPLESMC_DATA_PORT
,
1273 ret
= PTR_ERR(pdev
);
1277 /* create register cache */
1278 ret
= applesmc_init_smcreg();
1282 ret
= applesmc_create_nodes(info_group
, 1);
1286 ret
= applesmc_create_nodes(fan_group
, smcreg
.fan_count
);
1290 ret
= applesmc_create_nodes(temp_group
, smcreg
.temp_count
);
1294 ret
= applesmc_create_accelerometer();
1296 goto out_temperature
;
1298 ret
= applesmc_create_light_sensor();
1300 goto out_accelerometer
;
1302 ret
= applesmc_create_key_backlight();
1304 goto out_light_sysfs
;
1306 hwmon_dev
= hwmon_device_register(&pdev
->dev
);
1307 if (IS_ERR(hwmon_dev
)) {
1308 ret
= PTR_ERR(hwmon_dev
);
1309 goto out_light_ledclass
;
1315 applesmc_release_key_backlight();
1317 applesmc_release_light_sensor();
1319 applesmc_release_accelerometer();
1321 applesmc_destroy_nodes(temp_group
);
1323 applesmc_destroy_nodes(fan_group
);
1325 applesmc_destroy_nodes(info_group
);
1327 applesmc_destroy_smcreg();
1329 platform_device_unregister(pdev
);
1331 platform_driver_unregister(&applesmc_driver
);
1333 release_region(APPLESMC_DATA_PORT
, APPLESMC_NR_PORTS
);
1335 pr_warn("driver init failed (ret=%d)!\n", ret
);
1339 static void __exit
applesmc_exit(void)
1341 hwmon_device_unregister(hwmon_dev
);
1342 applesmc_release_key_backlight();
1343 applesmc_release_light_sensor();
1344 applesmc_release_accelerometer();
1345 applesmc_destroy_nodes(temp_group
);
1346 applesmc_destroy_nodes(fan_group
);
1347 applesmc_destroy_nodes(info_group
);
1348 applesmc_destroy_smcreg();
1349 platform_device_unregister(pdev
);
1350 platform_driver_unregister(&applesmc_driver
);
1351 release_region(APPLESMC_DATA_PORT
, APPLESMC_NR_PORTS
);
1354 module_init(applesmc_init
);
1355 module_exit(applesmc_exit
);
1357 MODULE_AUTHOR("Nicolas Boichat");
1358 MODULE_DESCRIPTION("Apple SMC");
1359 MODULE_LICENSE("GPL v2");
1360 MODULE_DEVICE_TABLE(dmi
, applesmc_whitelist
);