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
)
217 if (send_command(cmd
) || send_argument(key
)) {
218 pr_warn("%s: read arg fail\n", key
);
222 outb(len
, APPLESMC_DATA_PORT
);
224 for (i
= 0; i
< len
; i
++) {
225 if (__wait_status(0x05)) {
226 pr_warn("%s: read data fail\n", key
);
229 buffer
[i
] = inb(APPLESMC_DATA_PORT
);
235 static int write_smc(u8 cmd
, const char *key
, const u8
*buffer
, u8 len
)
239 if (send_command(cmd
) || send_argument(key
)) {
240 pr_warn("%s: write arg fail\n", key
);
244 outb(len
, APPLESMC_DATA_PORT
);
246 for (i
= 0; i
< len
; i
++) {
247 if (__wait_status(0x04)) {
248 pr_warn("%s: write data fail\n", key
);
251 outb(buffer
[i
], APPLESMC_DATA_PORT
);
257 static int read_register_count(unsigned int *count
)
262 ret
= read_smc(APPLESMC_READ_CMD
, KEY_COUNT_KEY
, (u8
*)&be
, 4);
266 *count
= be32_to_cpu(be
);
273 * Returns zero on success or a negative error on failure.
274 * All functions below are concurrency safe - callers should NOT hold lock.
277 static int applesmc_read_entry(const struct applesmc_entry
*entry
,
282 if (entry
->len
!= len
)
284 mutex_lock(&smcreg
.mutex
);
285 ret
= read_smc(APPLESMC_READ_CMD
, entry
->key
, buf
, len
);
286 mutex_unlock(&smcreg
.mutex
);
291 static int applesmc_write_entry(const struct applesmc_entry
*entry
,
292 const u8
*buf
, u8 len
)
296 if (entry
->len
!= len
)
298 mutex_lock(&smcreg
.mutex
);
299 ret
= write_smc(APPLESMC_WRITE_CMD
, entry
->key
, buf
, len
);
300 mutex_unlock(&smcreg
.mutex
);
304 static const struct applesmc_entry
*applesmc_get_entry_by_index(int index
)
306 struct applesmc_entry
*cache
= &smcreg
.cache
[index
];
314 mutex_lock(&smcreg
.mutex
);
318 be
= cpu_to_be32(index
);
319 ret
= read_smc(APPLESMC_GET_KEY_BY_INDEX_CMD
, (u8
*)&be
, key
, 4);
322 ret
= read_smc(APPLESMC_GET_KEY_TYPE_CMD
, key
, info
, 6);
326 memcpy(cache
->key
, key
, 4);
327 cache
->len
= info
[0];
328 memcpy(cache
->type
, &info
[1], 4);
329 cache
->flags
= info
[5];
333 mutex_unlock(&smcreg
.mutex
);
339 static int applesmc_get_lower_bound(unsigned int *lo
, const char *key
)
341 int begin
= 0, end
= smcreg
.key_count
;
342 const struct applesmc_entry
*entry
;
344 while (begin
!= end
) {
345 int middle
= begin
+ (end
- begin
) / 2;
346 entry
= applesmc_get_entry_by_index(middle
);
348 return PTR_ERR(entry
);
349 if (strcmp(entry
->key
, key
) < 0)
359 static int applesmc_get_upper_bound(unsigned int *hi
, const char *key
)
361 int begin
= 0, end
= smcreg
.key_count
;
362 const struct applesmc_entry
*entry
;
364 while (begin
!= end
) {
365 int middle
= begin
+ (end
- begin
) / 2;
366 entry
= applesmc_get_entry_by_index(middle
);
368 return PTR_ERR(entry
);
369 if (strcmp(key
, entry
->key
) < 0)
379 static const struct applesmc_entry
*applesmc_get_entry_by_key(const char *key
)
384 ret
= applesmc_get_lower_bound(&begin
, key
);
387 ret
= applesmc_get_upper_bound(&end
, key
);
390 if (end
- begin
!= 1)
391 return ERR_PTR(-EINVAL
);
393 return applesmc_get_entry_by_index(begin
);
396 static int applesmc_read_key(const char *key
, u8
*buffer
, u8 len
)
398 const struct applesmc_entry
*entry
;
400 entry
= applesmc_get_entry_by_key(key
);
402 return PTR_ERR(entry
);
404 return applesmc_read_entry(entry
, buffer
, len
);
407 static int applesmc_write_key(const char *key
, const u8
*buffer
, u8 len
)
409 const struct applesmc_entry
*entry
;
411 entry
= applesmc_get_entry_by_key(key
);
413 return PTR_ERR(entry
);
415 return applesmc_write_entry(entry
, buffer
, len
);
418 static int applesmc_has_key(const char *key
, bool *value
)
420 const struct applesmc_entry
*entry
;
422 entry
= applesmc_get_entry_by_key(key
);
423 if (IS_ERR(entry
) && PTR_ERR(entry
) != -EINVAL
)
424 return PTR_ERR(entry
);
426 *value
= !IS_ERR(entry
);
431 * applesmc_read_motion_sensor - Read motion sensor (X, Y or Z).
433 static int applesmc_read_motion_sensor(int index
, s16
*value
)
440 ret
= applesmc_read_key(MOTION_SENSOR_X_KEY
, buffer
, 2);
443 ret
= applesmc_read_key(MOTION_SENSOR_Y_KEY
, buffer
, 2);
446 ret
= applesmc_read_key(MOTION_SENSOR_Z_KEY
, buffer
, 2);
452 *value
= ((s16
)buffer
[0] << 8) | buffer
[1];
458 * applesmc_device_init - initialize the accelerometer. Can sleep.
460 static void applesmc_device_init(void)
465 if (!smcreg
.has_accelerometer
)
468 for (total
= INIT_TIMEOUT_MSECS
; total
> 0; total
-= INIT_WAIT_MSECS
) {
469 if (!applesmc_read_key(MOTION_SENSOR_KEY
, buffer
, 2) &&
470 (buffer
[0] != 0x00 || buffer
[1] != 0x00))
474 applesmc_write_key(MOTION_SENSOR_KEY
, buffer
, 2);
475 msleep(INIT_WAIT_MSECS
);
478 pr_warn("failed to init the device\n");
482 * applesmc_init_smcreg_try - Try to initialize register cache. Idempotent.
484 static int applesmc_init_smcreg_try(void)
486 struct applesmc_registers
*s
= &smcreg
;
487 bool left_light_sensor
, right_light_sensor
;
491 if (s
->init_complete
)
494 ret
= read_register_count(&s
->key_count
);
499 s
->cache
= kcalloc(s
->key_count
, sizeof(*s
->cache
), GFP_KERNEL
);
503 ret
= applesmc_read_key(FANS_COUNT
, tmp
, 1);
506 s
->fan_count
= tmp
[0];
508 ret
= applesmc_get_lower_bound(&s
->temp_begin
, "T");
511 ret
= applesmc_get_lower_bound(&s
->temp_end
, "U");
514 s
->temp_count
= s
->temp_end
- s
->temp_begin
;
516 ret
= applesmc_has_key(LIGHT_SENSOR_LEFT_KEY
, &left_light_sensor
);
519 ret
= applesmc_has_key(LIGHT_SENSOR_RIGHT_KEY
, &right_light_sensor
);
522 ret
= applesmc_has_key(MOTION_SENSOR_KEY
, &s
->has_accelerometer
);
525 ret
= applesmc_has_key(BACKLIGHT_KEY
, &s
->has_key_backlight
);
529 s
->num_light_sensors
= left_light_sensor
+ right_light_sensor
;
530 s
->init_complete
= true;
532 pr_info("key=%d fan=%d temp=%d acc=%d lux=%d kbd=%d\n",
533 s
->key_count
, s
->fan_count
, s
->temp_count
,
534 s
->has_accelerometer
,
535 s
->num_light_sensors
,
536 s
->has_key_backlight
);
542 * applesmc_init_smcreg - Initialize register cache.
544 * Retries until initialization is successful, or the operation times out.
547 static int applesmc_init_smcreg(void)
551 for (ms
= 0; ms
< INIT_TIMEOUT_MSECS
; ms
+= INIT_WAIT_MSECS
) {
552 ret
= applesmc_init_smcreg_try();
555 pr_info("init_smcreg() took %d ms\n", ms
);
558 msleep(INIT_WAIT_MSECS
);
567 static void applesmc_destroy_smcreg(void)
571 smcreg
.init_complete
= false;
574 /* Device model stuff */
575 static int applesmc_probe(struct platform_device
*dev
)
579 ret
= applesmc_init_smcreg();
583 applesmc_device_init();
588 /* Synchronize device with memorized backlight state */
589 static int applesmc_pm_resume(struct device
*dev
)
591 if (smcreg
.has_key_backlight
)
592 applesmc_write_key(BACKLIGHT_KEY
, backlight_state
, 2);
596 /* Reinitialize device on resume from hibernation */
597 static int applesmc_pm_restore(struct device
*dev
)
599 applesmc_device_init();
600 return applesmc_pm_resume(dev
);
603 static const struct dev_pm_ops applesmc_pm_ops
= {
604 .resume
= applesmc_pm_resume
,
605 .restore
= applesmc_pm_restore
,
608 static struct platform_driver applesmc_driver
= {
609 .probe
= applesmc_probe
,
612 .owner
= THIS_MODULE
,
613 .pm
= &applesmc_pm_ops
,
618 * applesmc_calibrate - Set our "resting" values. Callers must
619 * hold applesmc_lock.
621 static void applesmc_calibrate(void)
623 applesmc_read_motion_sensor(SENSOR_X
, &rest_x
);
624 applesmc_read_motion_sensor(SENSOR_Y
, &rest_y
);
628 static void applesmc_idev_poll(struct input_polled_dev
*dev
)
630 struct input_dev
*idev
= dev
->input
;
633 if (applesmc_read_motion_sensor(SENSOR_X
, &x
))
635 if (applesmc_read_motion_sensor(SENSOR_Y
, &y
))
639 input_report_abs(idev
, ABS_X
, x
- rest_x
);
640 input_report_abs(idev
, ABS_Y
, y
- rest_y
);
646 static ssize_t
applesmc_name_show(struct device
*dev
,
647 struct device_attribute
*attr
, char *buf
)
649 return snprintf(buf
, PAGE_SIZE
, "applesmc\n");
652 static ssize_t
applesmc_position_show(struct device
*dev
,
653 struct device_attribute
*attr
, char *buf
)
658 ret
= applesmc_read_motion_sensor(SENSOR_X
, &x
);
661 ret
= applesmc_read_motion_sensor(SENSOR_Y
, &y
);
664 ret
= applesmc_read_motion_sensor(SENSOR_Z
, &z
);
672 return snprintf(buf
, PAGE_SIZE
, "(%d,%d,%d)\n", x
, y
, z
);
675 static ssize_t
applesmc_light_show(struct device
*dev
,
676 struct device_attribute
*attr
, char *sysfsbuf
)
678 const struct applesmc_entry
*entry
;
679 static int data_length
;
681 u8 left
= 0, right
= 0;
685 entry
= applesmc_get_entry_by_key(LIGHT_SENSOR_LEFT_KEY
);
687 return PTR_ERR(entry
);
690 data_length
= entry
->len
;
691 pr_info("light sensor data length set to %d\n", data_length
);
694 ret
= applesmc_read_key(LIGHT_SENSOR_LEFT_KEY
, buffer
, data_length
);
695 /* newer macbooks report a single 10-bit bigendian value */
696 if (data_length
== 10) {
697 left
= be16_to_cpu(*(__be16
*)(buffer
+ 6)) >> 2;
703 ret
= applesmc_read_key(LIGHT_SENSOR_RIGHT_KEY
, buffer
, data_length
);
710 return snprintf(sysfsbuf
, PAGE_SIZE
, "(%d,%d)\n", left
, right
);
713 /* Displays sensor key as label */
714 static ssize_t
applesmc_show_sensor_label(struct device
*dev
,
715 struct device_attribute
*devattr
, char *sysfsbuf
)
717 int index
= smcreg
.temp_begin
+ to_index(devattr
);
718 const struct applesmc_entry
*entry
;
720 entry
= applesmc_get_entry_by_index(index
);
722 return PTR_ERR(entry
);
724 return snprintf(sysfsbuf
, PAGE_SIZE
, "%s\n", entry
->key
);
727 /* Displays degree Celsius * 1000 */
728 static ssize_t
applesmc_show_temperature(struct device
*dev
,
729 struct device_attribute
*devattr
, char *sysfsbuf
)
731 int index
= smcreg
.temp_begin
+ to_index(devattr
);
732 const struct applesmc_entry
*entry
;
737 entry
= applesmc_get_entry_by_index(index
);
739 return PTR_ERR(entry
);
743 ret
= applesmc_read_entry(entry
, buffer
, entry
->len
);
747 if (entry
->len
== 2) {
748 temp
= buffer
[0] * 1000;
749 temp
+= (buffer
[1] >> 6) * 250;
751 temp
= buffer
[0] * 4000;
754 return snprintf(sysfsbuf
, PAGE_SIZE
, "%u\n", temp
);
757 static ssize_t
applesmc_show_fan_speed(struct device
*dev
,
758 struct device_attribute
*attr
, char *sysfsbuf
)
761 unsigned int speed
= 0;
765 sprintf(newkey
, fan_speed_fmt
[to_option(attr
)], to_index(attr
));
767 ret
= applesmc_read_key(newkey
, buffer
, 2);
768 speed
= ((buffer
[0] << 8 | buffer
[1]) >> 2);
773 return snprintf(sysfsbuf
, PAGE_SIZE
, "%u\n", speed
);
776 static ssize_t
applesmc_store_fan_speed(struct device
*dev
,
777 struct device_attribute
*attr
,
778 const char *sysfsbuf
, size_t count
)
785 if (strict_strtoul(sysfsbuf
, 10, &speed
) < 0 || speed
>= 0x4000)
786 return -EINVAL
; /* Bigger than a 14-bit value */
788 sprintf(newkey
, fan_speed_fmt
[to_option(attr
)], to_index(attr
));
790 buffer
[0] = (speed
>> 6) & 0xff;
791 buffer
[1] = (speed
<< 2) & 0xff;
792 ret
= applesmc_write_key(newkey
, buffer
, 2);
800 static ssize_t
applesmc_show_fan_manual(struct device
*dev
,
801 struct device_attribute
*attr
, char *sysfsbuf
)
807 ret
= applesmc_read_key(FANS_MANUAL
, buffer
, 2);
808 manual
= ((buffer
[0] << 8 | buffer
[1]) >> to_index(attr
)) & 0x01;
813 return snprintf(sysfsbuf
, PAGE_SIZE
, "%d\n", manual
);
816 static ssize_t
applesmc_store_fan_manual(struct device
*dev
,
817 struct device_attribute
*attr
,
818 const char *sysfsbuf
, size_t count
)
825 if (strict_strtoul(sysfsbuf
, 10, &input
) < 0)
828 ret
= applesmc_read_key(FANS_MANUAL
, buffer
, 2);
829 val
= (buffer
[0] << 8 | buffer
[1]);
834 val
= val
| (0x01 << to_index(attr
));
836 val
= val
& ~(0x01 << to_index(attr
));
838 buffer
[0] = (val
>> 8) & 0xFF;
839 buffer
[1] = val
& 0xFF;
841 ret
= applesmc_write_key(FANS_MANUAL
, buffer
, 2);
850 static ssize_t
applesmc_show_fan_position(struct device
*dev
,
851 struct device_attribute
*attr
, char *sysfsbuf
)
857 sprintf(newkey
, FAN_ID_FMT
, to_index(attr
));
859 ret
= applesmc_read_key(newkey
, buffer
, 16);
865 return snprintf(sysfsbuf
, PAGE_SIZE
, "%s\n", buffer
+4);
868 static ssize_t
applesmc_calibrate_show(struct device
*dev
,
869 struct device_attribute
*attr
, char *sysfsbuf
)
871 return snprintf(sysfsbuf
, PAGE_SIZE
, "(%d,%d)\n", rest_x
, rest_y
);
874 static ssize_t
applesmc_calibrate_store(struct device
*dev
,
875 struct device_attribute
*attr
, const char *sysfsbuf
, size_t count
)
877 applesmc_calibrate();
882 static void applesmc_backlight_set(struct work_struct
*work
)
884 applesmc_write_key(BACKLIGHT_KEY
, backlight_state
, 2);
886 static DECLARE_WORK(backlight_work
, &applesmc_backlight_set
);
888 static void applesmc_brightness_set(struct led_classdev
*led_cdev
,
889 enum led_brightness value
)
893 backlight_state
[0] = value
;
894 ret
= queue_work(applesmc_led_wq
, &backlight_work
);
897 printk(KERN_DEBUG
"applesmc: work was already on the queue.\n");
900 static ssize_t
applesmc_key_count_show(struct device
*dev
,
901 struct device_attribute
*attr
, char *sysfsbuf
)
907 ret
= applesmc_read_key(KEY_COUNT_KEY
, buffer
, 4);
908 count
= ((u32
)buffer
[0]<<24) + ((u32
)buffer
[1]<<16) +
909 ((u32
)buffer
[2]<<8) + buffer
[3];
914 return snprintf(sysfsbuf
, PAGE_SIZE
, "%d\n", count
);
917 static ssize_t
applesmc_key_at_index_read_show(struct device
*dev
,
918 struct device_attribute
*attr
, char *sysfsbuf
)
920 const struct applesmc_entry
*entry
;
923 entry
= applesmc_get_entry_by_index(key_at_index
);
925 return PTR_ERR(entry
);
926 ret
= applesmc_read_entry(entry
, sysfsbuf
, entry
->len
);
933 static ssize_t
applesmc_key_at_index_data_length_show(struct device
*dev
,
934 struct device_attribute
*attr
, char *sysfsbuf
)
936 const struct applesmc_entry
*entry
;
938 entry
= applesmc_get_entry_by_index(key_at_index
);
940 return PTR_ERR(entry
);
942 return snprintf(sysfsbuf
, PAGE_SIZE
, "%d\n", entry
->len
);
945 static ssize_t
applesmc_key_at_index_type_show(struct device
*dev
,
946 struct device_attribute
*attr
, char *sysfsbuf
)
948 const struct applesmc_entry
*entry
;
950 entry
= applesmc_get_entry_by_index(key_at_index
);
952 return PTR_ERR(entry
);
954 return snprintf(sysfsbuf
, PAGE_SIZE
, "%s\n", entry
->type
);
957 static ssize_t
applesmc_key_at_index_name_show(struct device
*dev
,
958 struct device_attribute
*attr
, char *sysfsbuf
)
960 const struct applesmc_entry
*entry
;
962 entry
= applesmc_get_entry_by_index(key_at_index
);
964 return PTR_ERR(entry
);
966 return snprintf(sysfsbuf
, PAGE_SIZE
, "%s\n", entry
->key
);
969 static ssize_t
applesmc_key_at_index_show(struct device
*dev
,
970 struct device_attribute
*attr
, char *sysfsbuf
)
972 return snprintf(sysfsbuf
, PAGE_SIZE
, "%d\n", key_at_index
);
975 static ssize_t
applesmc_key_at_index_store(struct device
*dev
,
976 struct device_attribute
*attr
, const char *sysfsbuf
, size_t count
)
978 unsigned long newkey
;
980 if (strict_strtoul(sysfsbuf
, 10, &newkey
) < 0
981 || newkey
>= smcreg
.key_count
)
984 key_at_index
= newkey
;
988 static struct led_classdev applesmc_backlight
= {
989 .name
= "smc::kbd_backlight",
990 .default_trigger
= "nand-disk",
991 .brightness_set
= applesmc_brightness_set
,
994 static struct applesmc_node_group info_group
[] = {
995 { "name", applesmc_name_show
},
996 { "key_count", applesmc_key_count_show
},
997 { "key_at_index", applesmc_key_at_index_show
, applesmc_key_at_index_store
},
998 { "key_at_index_name", applesmc_key_at_index_name_show
},
999 { "key_at_index_type", applesmc_key_at_index_type_show
},
1000 { "key_at_index_data_length", applesmc_key_at_index_data_length_show
},
1001 { "key_at_index_data", applesmc_key_at_index_read_show
},
1005 static struct applesmc_node_group accelerometer_group
[] = {
1006 { "position", applesmc_position_show
},
1007 { "calibrate", applesmc_calibrate_show
, applesmc_calibrate_store
},
1011 static struct applesmc_node_group light_sensor_group
[] = {
1012 { "light", applesmc_light_show
},
1016 static struct applesmc_node_group fan_group
[] = {
1017 { "fan%d_label", applesmc_show_fan_position
},
1018 { "fan%d_input", applesmc_show_fan_speed
, NULL
, 0 },
1019 { "fan%d_min", applesmc_show_fan_speed
, applesmc_store_fan_speed
, 1 },
1020 { "fan%d_max", applesmc_show_fan_speed
, NULL
, 2 },
1021 { "fan%d_safe", applesmc_show_fan_speed
, NULL
, 3 },
1022 { "fan%d_output", applesmc_show_fan_speed
, applesmc_store_fan_speed
, 4 },
1023 { "fan%d_manual", applesmc_show_fan_manual
, applesmc_store_fan_manual
},
1027 static struct applesmc_node_group temp_group
[] = {
1028 { "temp%d_label", applesmc_show_sensor_label
},
1029 { "temp%d_input", applesmc_show_temperature
},
1036 * applesmc_destroy_nodes - remove files and free associated memory
1038 static void applesmc_destroy_nodes(struct applesmc_node_group
*groups
)
1040 struct applesmc_node_group
*grp
;
1041 struct applesmc_dev_attr
*node
;
1043 for (grp
= groups
; grp
->nodes
; grp
++) {
1044 for (node
= grp
->nodes
; node
->sda
.dev_attr
.attr
.name
; node
++)
1045 sysfs_remove_file(&pdev
->dev
.kobj
,
1046 &node
->sda
.dev_attr
.attr
);
1053 * applesmc_create_nodes - create a two-dimensional group of sysfs files
1055 static int applesmc_create_nodes(struct applesmc_node_group
*groups
, int num
)
1057 struct applesmc_node_group
*grp
;
1058 struct applesmc_dev_attr
*node
;
1059 struct attribute
*attr
;
1062 for (grp
= groups
; grp
->format
; grp
++) {
1063 grp
->nodes
= kcalloc(num
+ 1, sizeof(*node
), GFP_KERNEL
);
1068 for (i
= 0; i
< num
; i
++) {
1069 node
= &grp
->nodes
[i
];
1070 sprintf(node
->name
, grp
->format
, i
+ 1);
1071 node
->sda
.index
= (grp
->option
<< 16) | (i
& 0xffff);
1072 node
->sda
.dev_attr
.show
= grp
->show
;
1073 node
->sda
.dev_attr
.store
= grp
->store
;
1074 attr
= &node
->sda
.dev_attr
.attr
;
1075 sysfs_attr_init(attr
);
1076 attr
->name
= node
->name
;
1077 attr
->mode
= S_IRUGO
| (grp
->store
? S_IWUSR
: 0);
1078 ret
= sysfs_create_file(&pdev
->dev
.kobj
, attr
);
1088 applesmc_destroy_nodes(groups
);
1092 /* Create accelerometer ressources */
1093 static int applesmc_create_accelerometer(void)
1095 struct input_dev
*idev
;
1098 if (!smcreg
.has_accelerometer
)
1101 ret
= applesmc_create_nodes(accelerometer_group
, 1);
1105 applesmc_idev
= input_allocate_polled_device();
1106 if (!applesmc_idev
) {
1111 applesmc_idev
->poll
= applesmc_idev_poll
;
1112 applesmc_idev
->poll_interval
= APPLESMC_POLL_INTERVAL
;
1114 /* initial calibrate for the input device */
1115 applesmc_calibrate();
1117 /* initialize the input device */
1118 idev
= applesmc_idev
->input
;
1119 idev
->name
= "applesmc";
1120 idev
->id
.bustype
= BUS_HOST
;
1121 idev
->dev
.parent
= &pdev
->dev
;
1122 idev
->evbit
[0] = BIT_MASK(EV_ABS
);
1123 input_set_abs_params(idev
, ABS_X
,
1124 -256, 256, APPLESMC_INPUT_FUZZ
, APPLESMC_INPUT_FLAT
);
1125 input_set_abs_params(idev
, ABS_Y
,
1126 -256, 256, APPLESMC_INPUT_FUZZ
, APPLESMC_INPUT_FLAT
);
1128 ret
= input_register_polled_device(applesmc_idev
);
1135 input_free_polled_device(applesmc_idev
);
1138 applesmc_destroy_nodes(accelerometer_group
);
1141 pr_warn("driver init failed (ret=%d)!\n", ret
);
1145 /* Release all ressources used by the accelerometer */
1146 static void applesmc_release_accelerometer(void)
1148 if (!smcreg
.has_accelerometer
)
1150 input_unregister_polled_device(applesmc_idev
);
1151 input_free_polled_device(applesmc_idev
);
1152 applesmc_destroy_nodes(accelerometer_group
);
1155 static int applesmc_create_light_sensor(void)
1157 if (!smcreg
.num_light_sensors
)
1159 return applesmc_create_nodes(light_sensor_group
, 1);
1162 static void applesmc_release_light_sensor(void)
1164 if (!smcreg
.num_light_sensors
)
1166 applesmc_destroy_nodes(light_sensor_group
);
1169 static int applesmc_create_key_backlight(void)
1171 if (!smcreg
.has_key_backlight
)
1173 applesmc_led_wq
= create_singlethread_workqueue("applesmc-led");
1174 if (!applesmc_led_wq
)
1176 return led_classdev_register(&pdev
->dev
, &applesmc_backlight
);
1179 static void applesmc_release_key_backlight(void)
1181 if (!smcreg
.has_key_backlight
)
1183 led_classdev_unregister(&applesmc_backlight
);
1184 destroy_workqueue(applesmc_led_wq
);
1187 static int applesmc_dmi_match(const struct dmi_system_id
*id
)
1192 /* Note that DMI_MATCH(...,"MacBook") will match "MacBookPro1,1".
1193 * So we need to put "Apple MacBook Pro" before "Apple MacBook". */
1194 static __initdata
struct dmi_system_id applesmc_whitelist
[] = {
1195 { applesmc_dmi_match
, "Apple MacBook Air", {
1196 DMI_MATCH(DMI_BOARD_VENDOR
, "Apple"),
1197 DMI_MATCH(DMI_PRODUCT_NAME
, "MacBookAir") },
1199 { applesmc_dmi_match
, "Apple MacBook Pro", {
1200 DMI_MATCH(DMI_BOARD_VENDOR
, "Apple"),
1201 DMI_MATCH(DMI_PRODUCT_NAME
, "MacBookPro") },
1203 { applesmc_dmi_match
, "Apple MacBook", {
1204 DMI_MATCH(DMI_BOARD_VENDOR
, "Apple"),
1205 DMI_MATCH(DMI_PRODUCT_NAME
, "MacBook") },
1207 { applesmc_dmi_match
, "Apple Macmini", {
1208 DMI_MATCH(DMI_BOARD_VENDOR
, "Apple"),
1209 DMI_MATCH(DMI_PRODUCT_NAME
, "Macmini") },
1211 { applesmc_dmi_match
, "Apple MacPro", {
1212 DMI_MATCH(DMI_BOARD_VENDOR
, "Apple"),
1213 DMI_MATCH(DMI_PRODUCT_NAME
, "MacPro") },
1215 { applesmc_dmi_match
, "Apple iMac", {
1216 DMI_MATCH(DMI_BOARD_VENDOR
, "Apple"),
1217 DMI_MATCH(DMI_PRODUCT_NAME
, "iMac") },
1222 static int __init
applesmc_init(void)
1226 if (!dmi_check_system(applesmc_whitelist
)) {
1227 pr_warn("supported laptop not found!\n");
1232 if (!request_region(APPLESMC_DATA_PORT
, APPLESMC_NR_PORTS
,
1238 ret
= platform_driver_register(&applesmc_driver
);
1242 pdev
= platform_device_register_simple("applesmc", APPLESMC_DATA_PORT
,
1245 ret
= PTR_ERR(pdev
);
1249 /* create register cache */
1250 ret
= applesmc_init_smcreg();
1254 ret
= applesmc_create_nodes(info_group
, 1);
1258 ret
= applesmc_create_nodes(fan_group
, smcreg
.fan_count
);
1262 ret
= applesmc_create_nodes(temp_group
, smcreg
.temp_count
);
1266 ret
= applesmc_create_accelerometer();
1268 goto out_temperature
;
1270 ret
= applesmc_create_light_sensor();
1272 goto out_accelerometer
;
1274 ret
= applesmc_create_key_backlight();
1276 goto out_light_sysfs
;
1278 hwmon_dev
= hwmon_device_register(&pdev
->dev
);
1279 if (IS_ERR(hwmon_dev
)) {
1280 ret
= PTR_ERR(hwmon_dev
);
1281 goto out_light_ledclass
;
1287 applesmc_release_key_backlight();
1289 applesmc_release_light_sensor();
1291 applesmc_release_accelerometer();
1293 applesmc_destroy_nodes(temp_group
);
1295 applesmc_destroy_nodes(fan_group
);
1297 applesmc_destroy_nodes(info_group
);
1299 applesmc_destroy_smcreg();
1301 platform_device_unregister(pdev
);
1303 platform_driver_unregister(&applesmc_driver
);
1305 release_region(APPLESMC_DATA_PORT
, APPLESMC_NR_PORTS
);
1307 pr_warn("driver init failed (ret=%d)!\n", ret
);
1311 static void __exit
applesmc_exit(void)
1313 hwmon_device_unregister(hwmon_dev
);
1314 applesmc_release_key_backlight();
1315 applesmc_release_light_sensor();
1316 applesmc_release_accelerometer();
1317 applesmc_destroy_nodes(temp_group
);
1318 applesmc_destroy_nodes(fan_group
);
1319 applesmc_destroy_nodes(info_group
);
1320 applesmc_destroy_smcreg();
1321 platform_device_unregister(pdev
);
1322 platform_driver_unregister(&applesmc_driver
);
1323 release_region(APPLESMC_DATA_PORT
, APPLESMC_NR_PORTS
);
1326 module_init(applesmc_init
);
1327 module_exit(applesmc_exit
);
1329 MODULE_AUTHOR("Nicolas Boichat");
1330 MODULE_DESCRIPTION("Apple SMC");
1331 MODULE_LICENSE("GPL v2");
1332 MODULE_DEVICE_TABLE(dmi
, applesmc_whitelist
);