blob: fc6d6a9053cee84e4cf9d4fe3e1f3c8c08bf2b0f [file] [log] [blame]
Thomas Gleixner21eb0be2019-05-29 07:12:45 -07001// SPDX-License-Identifier: GPL-2.0-only
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07002/*
3 * drivers/hwmon/applesmc.c - driver for Apple's SMC (accelerometer, temperature
4 * sensors, fan control, keyboard backlight control) used in Intel-based Apple
5 * computers.
6 *
7 * Copyright (C) 2007 Nicolas Boichat <nicolas@boichat.ch>
Henrik Rydberg41e71f92010-11-09 15:15:11 +00008 * Copyright (C) 2010 Henrik Rydberg <rydberg@euromail.se>
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07009 *
10 * Based on hdaps.c driver:
11 * Copyright (C) 2005 Robert Love <rml@novell.com>
Jesper Juhlaa8521e2012-06-20 21:18:48 +020012 * Copyright (C) 2005 Jesper Juhl <jj@chaosbits.net>
Nicolas Boichat6f2fad72007-05-08 00:24:52 -070013 *
14 * Fan control based on smcFanControl:
15 * Copyright (C) 2006 Hendrik Holtmann <holtmann@mac.com>
Nicolas Boichat6f2fad72007-05-08 00:24:52 -070016 */
17
Joe Perches1ee7c712010-11-09 15:15:03 +000018#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
19
Nicolas Boichat6f2fad72007-05-08 00:24:52 -070020#include <linux/delay.h>
21#include <linux/platform_device.h>
Dmitry Torokhov58d5aa52019-10-02 14:43:45 -070022#include <linux/input.h>
Nicolas Boichat6f2fad72007-05-08 00:24:52 -070023#include <linux/kernel.h>
Henrik Rydberg58745832010-11-10 10:58:03 +000024#include <linux/slab.h>
Nicolas Boichat6f2fad72007-05-08 00:24:52 -070025#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>
H Hartley Sweeten6055fae2009-09-15 17:18:13 +020030#include <linux/io.h>
Nicolas Boichat6f2fad72007-05-08 00:24:52 -070031#include <linux/leds.h>
32#include <linux/hwmon.h>
33#include <linux/workqueue.h>
Jean Delvarefa845742012-10-10 15:25:56 +020034#include <linux/err.h>
Brad Campbell4d64bb42020-11-12 14:08:23 +110035#include <linux/bits.h>
Nicolas Boichat6f2fad72007-05-08 00:24:52 -070036
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
41
42#define APPLESMC_NR_PORTS 32 /* 0x300-0x31f */
43
44#define APPLESMC_MAX_DATA_LENGTH 32
45
Brad Campbell4d64bb42020-11-12 14:08:23 +110046/* 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 */
50
51/* Initial wait is 8us */
52#define APPLESMC_MIN_WAIT 0x0008
Henrik Rydberg8c9398d2008-10-18 20:27:43 -070053
Nicolas Boichat6f2fad72007-05-08 00:24:52 -070054#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
58
59#define KEY_COUNT_KEY "#KEY" /* r-o ui32 */
60
Henrik Rydberg8bd1a122008-10-18 20:27:39 -070061#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) */
Dmitry Torokhovd5cf2b92007-09-26 00:01:35 -040063#define BACKLIGHT_KEY "LKSB" /* w-o {lkb (2 bytes) */
Nicolas Boichat6f2fad72007-05-08 00:24:52 -070064
Dmitry Torokhovd5cf2b92007-09-26 00:01:35 -040065#define CLAMSHELL_KEY "MSLD" /* r-o ui8 (unused) */
Nicolas Boichat6f2fad72007-05-08 00:24:52 -070066
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 */
71
72#define FANS_COUNT "FNum" /* r-o ui8 */
73#define FANS_MANUAL "FS! " /* r-w ui16 */
Henrik Rydberg3eba2bf2010-11-09 15:15:08 +000074#define FAN_ID_FMT "F%dID" /* r-o char[16] */
Nicolas Boichat6f2fad72007-05-08 00:24:52 -070075
Henrik Rydbergb6e51222012-07-16 09:18:10 +020076#define TEMP_SENSOR_TYPE "sp78"
77
Nicolas Boichat6f2fad72007-05-08 00:24:52 -070078/* List of keys used to read/write fan speeds */
Henrik Rydberg3eba2bf2010-11-09 15:15:08 +000079static 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) */
Nicolas Boichat6f2fad72007-05-08 00:24:52 -070085};
86
87#define INIT_TIMEOUT_MSECS 5000 /* wait up to 5s for device init ... */
88#define INIT_WAIT_MSECS 50 /* ... in 50ms increments */
89
Dmitry Torokhovd5cf2b92007-09-26 00:01:35 -040090#define APPLESMC_POLL_INTERVAL 50 /* msecs */
Nicolas Boichat6f2fad72007-05-08 00:24:52 -070091#define APPLESMC_INPUT_FUZZ 4 /* input event threshold */
92#define APPLESMC_INPUT_FLAT 4
93
Henrik Rydberg3eba2bf2010-11-09 15:15:08 +000094#define to_index(attr) (to_sensor_dev_attr(attr)->index & 0xffff)
95#define to_option(attr) (to_sensor_dev_attr(attr)->index >> 16)
Henrik Rydberg9792dad2010-11-10 10:58:04 +000096
Henrik Rydberg9792dad2010-11-10 10:58:04 +000097/* Dynamic device node attributes */
98struct applesmc_dev_attr {
99 struct sensor_device_attribute sda; /* hwmon attributes */
100 char name[32]; /* room for node file name */
101};
102
103/* Dynamic device node group */
104struct applesmc_node_group {
105 char *format; /* format string */
106 void *show; /* show function */
107 void *store; /* store function */
Henrik Rydberg3eba2bf2010-11-09 15:15:08 +0000108 int option; /* function argument */
Henrik Rydberg9792dad2010-11-10 10:58:04 +0000109 struct applesmc_dev_attr *nodes; /* dynamic node array */
110};
111
Henrik Rydberg58745832010-11-10 10:58:03 +0000112/* AppleSMC entry - cached register information */
113struct 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 */
119};
120
121/* Register lookup and registers common to all SMCs */
122static struct applesmc_registers {
123 struct mutex mutex; /* register read/write mutex */
124 unsigned int key_count; /* number of SMC registers */
Henrik Rydberg3eba2bf2010-11-09 15:15:08 +0000125 unsigned int fan_count; /* number of fans */
Henrik Rydberg9792dad2010-11-10 10:58:04 +0000126 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 */
Henrik Rydberge30bca12012-07-16 09:18:11 +0200129 unsigned int index_count; /* size of temperature index array */
Henrik Rydberg40ef06f2010-11-10 10:58:05 +0000130 int num_light_sensors; /* number of light sensors */
131 bool has_accelerometer; /* has motion sensor */
132 bool has_key_backlight; /* has keyboard backlight */
Henrik Rydberg58745832010-11-10 10:58:03 +0000133 bool init_complete; /* true when fully initialized */
134 struct applesmc_entry *cache; /* cached key entries */
Henrik Rydberge30bca12012-07-16 09:18:11 +0200135 const char **index; /* temperature key index */
Henrik Rydberg58745832010-11-10 10:58:03 +0000136} smcreg = {
137 .mutex = __MUTEX_INITIALIZER(smcreg.mutex),
138};
139
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700140static const int debug;
141static struct platform_device *pdev;
142static s16 rest_x;
143static s16 rest_y;
Henrik Rydberga976f152009-09-21 17:04:50 -0700144static u8 backlight_state[2];
145
Tony Jones1beeffe2007-08-20 13:46:20 -0700146static struct device *hwmon_dev;
Dmitry Torokhov58d5aa52019-10-02 14:43:45 -0700147static struct input_dev *applesmc_idev;
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700148
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700149/*
150 * Last index written to key_at_index sysfs file, and value to use for all other
151 * key_at_index_* sysfs files.
152 */
153static unsigned int key_at_index;
154
155static struct workqueue_struct *applesmc_led_wq;
156
157/*
Brad Campbell4d64bb42020-11-12 14:08:23 +1100158 * 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.
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700163 */
Brad Campbell4d64bb42020-11-12 14:08:23 +1100164
165static int wait_status(u8 val, u8 mask)
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700166{
Henrik Rydberg829917c2012-07-27 20:12:46 +0200167 u8 status;
Henrik Rydberg8c9398d2008-10-18 20:27:43 -0700168 int us;
Brad Campbell4d64bb42020-11-12 14:08:23 +1100169 int i;
Arnd Bergmannfff2d0f2020-05-27 15:51:57 +0200170
Brad Campbell4d64bb42020-11-12 14:08:23 +1100171 us = APPLESMC_MIN_WAIT;
172 for (i = 0; i < 24 ; i++) {
Henrik Rydberg829917c2012-07-27 20:12:46 +0200173 status = inb(APPLESMC_CMD_PORT);
Brad Campbell4d64bb42020-11-12 14:08:23 +1100174 if ((status & mask) == val)
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700175 return 0;
Brad Campbell4d64bb42020-11-12 14:08:23 +1100176 usleep_range(us, us * 2);
177 if (i > 9)
178 us <<= 1;
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700179 }
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700180 return -EIO;
181}
182
Brad Campbell4d64bb42020-11-12 14:08:23 +1100183/* send_byte - Write to SMC data port. Callers must hold applesmc_lock. */
184
Henrik Rydberg829917c2012-07-27 20:12:46 +0200185static int send_byte(u8 cmd, u16 port)
186{
Brad Campbell4d64bb42020-11-12 14:08:23 +1100187 int status;
188
189 status = wait_status(0, SMC_STATUS_IB_CLOSED);
190 if (status)
191 return status;
192 /*
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.
197 */
198 status = wait_status(SMC_STATUS_BUSY, SMC_STATUS_BUSY);
199 if (status)
200 return status;
Henrik Rydberg829917c2012-07-27 20:12:46 +0200201
202 outb(cmd, port);
Brad Campbell4d64bb42020-11-12 14:08:23 +1100203 return 0;
Henrik Rydberg829917c2012-07-27 20:12:46 +0200204}
205
Brad Campbell4d64bb42020-11-12 14:08:23 +1100206/* send_command - Write a command to the SMC. Callers must hold applesmc_lock. */
207
Henrik Rydberg84d2d7f2008-10-18 20:27:38 -0700208static int send_command(u8 cmd)
209{
Brad Campbell4d64bb42020-11-12 14:08:23 +1100210 int ret;
211
212 ret = wait_status(0, SMC_STATUS_IB_CLOSED);
213 if (ret)
214 return ret;
215 outb(cmd, APPLESMC_CMD_PORT);
216 return 0;
217}
218
219/*
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.
223 */
224
225static int smc_sane(void)
226{
227 int ret;
228
229 ret = wait_status(0, SMC_STATUS_BUSY);
230 if (!ret)
231 return ret;
232 ret = send_command(APPLESMC_READ_CMD);
233 if (ret)
234 return ret;
235 return wait_status(0, SMC_STATUS_BUSY);
Henrik Rydberg84d2d7f2008-10-18 20:27:38 -0700236}
237
Henrik Rydberg58745832010-11-10 10:58:03 +0000238static int send_argument(const char *key)
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700239{
240 int i;
241
Henrik Rydberg829917c2012-07-27 20:12:46 +0200242 for (i = 0; i < 4; i++)
243 if (send_byte(key[i], APPLESMC_DATA_PORT))
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700244 return -EIO;
Henrik Rydberg58745832010-11-10 10:58:03 +0000245 return 0;
246}
247
248static int read_smc(u8 cmd, const char *key, u8 *buffer, u8 len)
249{
Henrik Rydberg25f2bd72013-10-02 19:15:03 +0200250 u8 status, data = 0;
Henrik Rydberg58745832010-11-10 10:58:03 +0000251 int i;
Brad Campbell4d64bb42020-11-12 14:08:23 +1100252 int ret;
253
254 ret = smc_sane();
255 if (ret)
256 return ret;
Henrik Rydberg58745832010-11-10 10:58:03 +0000257
258 if (send_command(cmd) || send_argument(key)) {
Henrik Rydbergac852ed2012-06-07 04:54:29 -0400259 pr_warn("%.4s: read arg fail\n", key);
Henrik Rydberg58745832010-11-10 10:58:03 +0000260 return -EIO;
261 }
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700262
Henrik Rydberg25f2bd72013-10-02 19:15:03 +0200263 /* This has no effect on newer (2012) SMCs */
Henrik Rydberg829917c2012-07-27 20:12:46 +0200264 if (send_byte(len, APPLESMC_DATA_PORT)) {
265 pr_warn("%.4s: read len fail\n", key);
266 return -EIO;
267 }
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700268
269 for (i = 0; i < len; i++) {
Brad Campbell4d64bb42020-11-12 14:08:23 +1100270 if (wait_status(SMC_STATUS_AWAITING_DATA | SMC_STATUS_BUSY,
271 SMC_STATUS_AWAITING_DATA | SMC_STATUS_BUSY)) {
Henrik Rydberg829917c2012-07-27 20:12:46 +0200272 pr_warn("%.4s: read data[%d] fail\n", key, i);
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700273 return -EIO;
Henrik Rydberg58745832010-11-10 10:58:03 +0000274 }
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700275 buffer[i] = inb(APPLESMC_DATA_PORT);
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700276 }
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700277
Henrik Rydberg25f2bd72013-10-02 19:15:03 +0200278 /* 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);
Brad Campbell4d64bb42020-11-12 14:08:23 +1100282 if (!(status & SMC_STATUS_AWAITING_DATA))
Henrik Rydberg25f2bd72013-10-02 19:15:03 +0200283 break;
284 data = inb(APPLESMC_DATA_PORT);
285 }
286 if (i)
287 pr_warn("flushed %d bytes, last value is: %d\n", i, data);
288
Brad Campbell4d64bb42020-11-12 14:08:23 +1100289 return wait_status(0, SMC_STATUS_BUSY);
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700290}
291
Henrik Rydberg58745832010-11-10 10:58:03 +0000292static int write_smc(u8 cmd, const char *key, const u8 *buffer, u8 len)
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700293{
294 int i;
Brad Campbell4d64bb42020-11-12 14:08:23 +1100295 int ret;
296
297 ret = smc_sane();
298 if (ret)
299 return ret;
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700300
Henrik Rydberg58745832010-11-10 10:58:03 +0000301 if (send_command(cmd) || send_argument(key)) {
302 pr_warn("%s: write arg fail\n", key);
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700303 return -EIO;
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700304 }
305
Henrik Rydberg829917c2012-07-27 20:12:46 +0200306 if (send_byte(len, APPLESMC_DATA_PORT)) {
307 pr_warn("%.4s: write len fail\n", key);
308 return -EIO;
309 }
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700310
311 for (i = 0; i < len; i++) {
Henrik Rydberg829917c2012-07-27 20:12:46 +0200312 if (send_byte(buffer[i], APPLESMC_DATA_PORT)) {
Henrik Rydberg58745832010-11-10 10:58:03 +0000313 pr_warn("%s: write data fail\n", key);
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700314 return -EIO;
Henrik Rydberg58745832010-11-10 10:58:03 +0000315 }
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700316 }
317
Brad Campbell4d64bb42020-11-12 14:08:23 +1100318 return wait_status(0, SMC_STATUS_BUSY);
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700319}
320
Henrik Rydberg58745832010-11-10 10:58:03 +0000321static int read_register_count(unsigned int *count)
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700322{
Henrik Rydberg58745832010-11-10 10:58:03 +0000323 __be32 be;
324 int ret;
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700325
Henrik Rydberg58745832010-11-10 10:58:03 +0000326 ret = read_smc(APPLESMC_READ_CMD, KEY_COUNT_KEY, (u8 *)&be, 4);
327 if (ret)
328 return ret;
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700329
Henrik Rydberg58745832010-11-10 10:58:03 +0000330 *count = be32_to_cpu(be);
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700331 return 0;
332}
333
334/*
Henrik Rydberg58745832010-11-10 10:58:03 +0000335 * Serialized I/O
336 *
337 * Returns zero on success or a negative error on failure.
338 * All functions below are concurrency safe - callers should NOT hold lock.
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700339 */
Henrik Rydberg58745832010-11-10 10:58:03 +0000340
341static int applesmc_read_entry(const struct applesmc_entry *entry,
342 u8 *buf, u8 len)
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700343{
Henrik Rydberg58745832010-11-10 10:58:03 +0000344 int ret;
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700345
Henrik Rydberg58745832010-11-10 10:58:03 +0000346 if (entry->len != len)
347 return -EINVAL;
348 mutex_lock(&smcreg.mutex);
349 ret = read_smc(APPLESMC_READ_CMD, entry->key, buf, len);
350 mutex_unlock(&smcreg.mutex);
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700351
Henrik Rydberg58745832010-11-10 10:58:03 +0000352 return ret;
353}
354
355static int applesmc_write_entry(const struct applesmc_entry *entry,
356 const u8 *buf, u8 len)
357{
358 int ret;
359
360 if (entry->len != len)
361 return -EINVAL;
362 mutex_lock(&smcreg.mutex);
363 ret = write_smc(APPLESMC_WRITE_CMD, entry->key, buf, len);
364 mutex_unlock(&smcreg.mutex);
365 return ret;
366}
367
368static const struct applesmc_entry *applesmc_get_entry_by_index(int index)
369{
370 struct applesmc_entry *cache = &smcreg.cache[index];
371 u8 key[4], info[6];
372 __be32 be;
373 int ret = 0;
374
375 if (cache->valid)
376 return cache;
377
378 mutex_lock(&smcreg.mutex);
379
380 if (cache->valid)
381 goto out;
382 be = cpu_to_be32(index);
383 ret = read_smc(APPLESMC_GET_KEY_BY_INDEX_CMD, (u8 *)&be, key, 4);
384 if (ret)
385 goto out;
386 ret = read_smc(APPLESMC_GET_KEY_TYPE_CMD, key, info, 6);
387 if (ret)
388 goto out;
389
390 memcpy(cache->key, key, 4);
391 cache->len = info[0];
392 memcpy(cache->type, &info[1], 4);
393 cache->flags = info[5];
Paul Fertser952a11c2021-09-24 22:52:02 +0300394 cache->valid = true;
Henrik Rydberg58745832010-11-10 10:58:03 +0000395
396out:
397 mutex_unlock(&smcreg.mutex);
398 if (ret)
399 return ERR_PTR(ret);
400 return cache;
401}
402
403static int applesmc_get_lower_bound(unsigned int *lo, const char *key)
404{
405 int begin = 0, end = smcreg.key_count;
406 const struct applesmc_entry *entry;
407
408 while (begin != end) {
409 int middle = begin + (end - begin) / 2;
410 entry = applesmc_get_entry_by_index(middle);
Henrik Rydberg0fc86ec2012-01-26 06:08:41 -0500411 if (IS_ERR(entry)) {
412 *lo = 0;
Henrik Rydberg58745832010-11-10 10:58:03 +0000413 return PTR_ERR(entry);
Henrik Rydberg0fc86ec2012-01-26 06:08:41 -0500414 }
Henrik Rydberg58745832010-11-10 10:58:03 +0000415 if (strcmp(entry->key, key) < 0)
416 begin = middle + 1;
417 else
418 end = middle;
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700419 }
420
Henrik Rydberg58745832010-11-10 10:58:03 +0000421 *lo = begin;
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700422 return 0;
423}
424
Henrik Rydberg58745832010-11-10 10:58:03 +0000425static int applesmc_get_upper_bound(unsigned int *hi, const char *key)
426{
427 int begin = 0, end = smcreg.key_count;
428 const struct applesmc_entry *entry;
429
430 while (begin != end) {
431 int middle = begin + (end - begin) / 2;
432 entry = applesmc_get_entry_by_index(middle);
Henrik Rydberg0fc86ec2012-01-26 06:08:41 -0500433 if (IS_ERR(entry)) {
434 *hi = smcreg.key_count;
Henrik Rydberg58745832010-11-10 10:58:03 +0000435 return PTR_ERR(entry);
Henrik Rydberg0fc86ec2012-01-26 06:08:41 -0500436 }
Henrik Rydberg58745832010-11-10 10:58:03 +0000437 if (strcmp(key, entry->key) < 0)
438 end = middle;
439 else
440 begin = middle + 1;
441 }
442
443 *hi = begin;
444 return 0;
445}
446
447static const struct applesmc_entry *applesmc_get_entry_by_key(const char *key)
448{
449 int begin, end;
450 int ret;
451
452 ret = applesmc_get_lower_bound(&begin, key);
453 if (ret)
454 return ERR_PTR(ret);
455 ret = applesmc_get_upper_bound(&end, key);
456 if (ret)
457 return ERR_PTR(ret);
458 if (end - begin != 1)
459 return ERR_PTR(-EINVAL);
460
461 return applesmc_get_entry_by_index(begin);
462}
463
464static int applesmc_read_key(const char *key, u8 *buffer, u8 len)
465{
466 const struct applesmc_entry *entry;
467
468 entry = applesmc_get_entry_by_key(key);
469 if (IS_ERR(entry))
470 return PTR_ERR(entry);
471
472 return applesmc_read_entry(entry, buffer, len);
473}
474
475static int applesmc_write_key(const char *key, const u8 *buffer, u8 len)
476{
477 const struct applesmc_entry *entry;
478
479 entry = applesmc_get_entry_by_key(key);
480 if (IS_ERR(entry))
481 return PTR_ERR(entry);
482
483 return applesmc_write_entry(entry, buffer, len);
484}
485
Henrik Rydberg40ef06f2010-11-10 10:58:05 +0000486static int applesmc_has_key(const char *key, bool *value)
487{
488 const struct applesmc_entry *entry;
489
490 entry = applesmc_get_entry_by_key(key);
491 if (IS_ERR(entry) && PTR_ERR(entry) != -EINVAL)
492 return PTR_ERR(entry);
493
494 *value = !IS_ERR(entry);
495 return 0;
496}
497
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700498/*
Henrik Rydbergedf48f32012-06-20 18:00:06 +0200499 * applesmc_read_s16 - Read 16-bit signed big endian register
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700500 */
Henrik Rydbergedf48f32012-06-20 18:00:06 +0200501static int applesmc_read_s16(const char *key, s16 *value)
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700502{
503 u8 buffer[2];
504 int ret;
505
Henrik Rydbergedf48f32012-06-20 18:00:06 +0200506 ret = applesmc_read_key(key, buffer, 2);
507 if (ret)
508 return ret;
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700509
510 *value = ((s16)buffer[0] << 8) | buffer[1];
Henrik Rydbergedf48f32012-06-20 18:00:06 +0200511 return 0;
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700512}
513
514/*
Henrik Rydberg2344cd02010-11-09 15:15:02 +0000515 * applesmc_device_init - initialize the accelerometer. Can sleep.
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700516 */
Henrik Rydberg2344cd02010-11-09 15:15:02 +0000517static void applesmc_device_init(void)
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700518{
Henrik Rydberg2344cd02010-11-09 15:15:02 +0000519 int total;
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700520 u8 buffer[2];
521
Henrik Rydberg40ef06f2010-11-10 10:58:05 +0000522 if (!smcreg.has_accelerometer)
Henrik Rydberg2344cd02010-11-09 15:15:02 +0000523 return;
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700524
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700525 for (total = INIT_TIMEOUT_MSECS; total > 0; total -= INIT_WAIT_MSECS) {
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700526 if (!applesmc_read_key(MOTION_SENSOR_KEY, buffer, 2) &&
Henrik Rydberg2344cd02010-11-09 15:15:02 +0000527 (buffer[0] != 0x00 || buffer[1] != 0x00))
Henrik Rydberg58745832010-11-10 10:58:03 +0000528 return;
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700529 buffer[0] = 0xe0;
530 buffer[1] = 0x00;
531 applesmc_write_key(MOTION_SENSOR_KEY, buffer, 2);
532 msleep(INIT_WAIT_MSECS);
533 }
534
Joe Perches1ee7c712010-11-09 15:15:03 +0000535 pr_warn("failed to init the device\n");
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700536}
537
Henrik Rydberge30bca12012-07-16 09:18:11 +0200538static int applesmc_init_index(struct applesmc_registers *s)
539{
540 const struct applesmc_entry *entry;
541 unsigned int i;
542
543 if (s->index)
544 return 0;
545
546 s->index = kcalloc(s->temp_count, sizeof(s->index[0]), GFP_KERNEL);
547 if (!s->index)
548 return -ENOMEM;
549
550 for (i = s->temp_begin; i < s->temp_end; i++) {
551 entry = applesmc_get_entry_by_index(i);
552 if (IS_ERR(entry))
553 continue;
554 if (strcmp(entry->type, TEMP_SENSOR_TYPE))
555 continue;
556 s->index[s->index_count++] = entry->key;
557 }
558
559 return 0;
560}
561
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700562/*
Henrik Rydberg58745832010-11-10 10:58:03 +0000563 * applesmc_init_smcreg_try - Try to initialize register cache. Idempotent.
564 */
565static int applesmc_init_smcreg_try(void)
566{
567 struct applesmc_registers *s = &smcreg;
Jiapeng Zhong0bf6a1e2021-01-20 14:41:10 +0800568 bool left_light_sensor = false, right_light_sensor = false;
Henrik Rydberg5f451382013-09-26 08:33:16 +0200569 unsigned int count;
Henrik Rydberg3eba2bf2010-11-09 15:15:08 +0000570 u8 tmp[1];
Henrik Rydberg58745832010-11-10 10:58:03 +0000571 int ret;
572
573 if (s->init_complete)
574 return 0;
575
Henrik Rydberg5f451382013-09-26 08:33:16 +0200576 ret = read_register_count(&count);
Henrik Rydberg58745832010-11-10 10:58:03 +0000577 if (ret)
578 return ret;
579
Henrik Rydberg5f451382013-09-26 08:33:16 +0200580 if (s->cache && s->key_count != count) {
581 pr_warn("key count changed from %d to %d\n",
582 s->key_count, count);
583 kfree(s->cache);
584 s->cache = NULL;
585 }
586 s->key_count = count;
587
Henrik Rydberg58745832010-11-10 10:58:03 +0000588 if (!s->cache)
589 s->cache = kcalloc(s->key_count, sizeof(*s->cache), GFP_KERNEL);
590 if (!s->cache)
591 return -ENOMEM;
592
Henrik Rydberg3eba2bf2010-11-09 15:15:08 +0000593 ret = applesmc_read_key(FANS_COUNT, tmp, 1);
594 if (ret)
595 return ret;
596 s->fan_count = tmp[0];
Guenter Roeck1009ccd2017-07-11 20:53:55 -0700597 if (s->fan_count > 10)
598 s->fan_count = 10;
Henrik Rydberg3eba2bf2010-11-09 15:15:08 +0000599
Henrik Rydberg9792dad2010-11-10 10:58:04 +0000600 ret = applesmc_get_lower_bound(&s->temp_begin, "T");
601 if (ret)
602 return ret;
603 ret = applesmc_get_lower_bound(&s->temp_end, "U");
604 if (ret)
605 return ret;
606 s->temp_count = s->temp_end - s->temp_begin;
607
Henrik Rydberge30bca12012-07-16 09:18:11 +0200608 ret = applesmc_init_index(s);
609 if (ret)
610 return ret;
611
Henrik Rydberg40ef06f2010-11-10 10:58:05 +0000612 ret = applesmc_has_key(LIGHT_SENSOR_LEFT_KEY, &left_light_sensor);
613 if (ret)
614 return ret;
615 ret = applesmc_has_key(LIGHT_SENSOR_RIGHT_KEY, &right_light_sensor);
616 if (ret)
617 return ret;
618 ret = applesmc_has_key(MOTION_SENSOR_KEY, &s->has_accelerometer);
619 if (ret)
620 return ret;
621 ret = applesmc_has_key(BACKLIGHT_KEY, &s->has_key_backlight);
622 if (ret)
623 return ret;
624
625 s->num_light_sensors = left_light_sensor + right_light_sensor;
Henrik Rydberg58745832010-11-10 10:58:03 +0000626 s->init_complete = true;
627
Henrik Rydberge30bca12012-07-16 09:18:11 +0200628 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,
Henrik Rydberg40ef06f2010-11-10 10:58:05 +0000630 s->has_accelerometer,
631 s->num_light_sensors,
632 s->has_key_backlight);
Henrik Rydberg58745832010-11-10 10:58:03 +0000633
634 return 0;
635}
636
Henrik Rydberge30bca12012-07-16 09:18:11 +0200637static void applesmc_destroy_smcreg(void)
638{
639 kfree(smcreg.index);
640 smcreg.index = NULL;
641 kfree(smcreg.cache);
642 smcreg.cache = NULL;
643 smcreg.init_complete = false;
644}
645
Henrik Rydberg58745832010-11-10 10:58:03 +0000646/*
647 * applesmc_init_smcreg - Initialize register cache.
648 *
649 * Retries until initialization is successful, or the operation times out.
650 *
651 */
652static int applesmc_init_smcreg(void)
653{
654 int ms, ret;
655
656 for (ms = 0; ms < INIT_TIMEOUT_MSECS; ms += INIT_WAIT_MSECS) {
657 ret = applesmc_init_smcreg_try();
658 if (!ret) {
659 if (ms)
660 pr_info("init_smcreg() took %d ms\n", ms);
661 return 0;
662 }
663 msleep(INIT_WAIT_MSECS);
664 }
665
Henrik Rydberge30bca12012-07-16 09:18:11 +0200666 applesmc_destroy_smcreg();
Henrik Rydberg58745832010-11-10 10:58:03 +0000667
668 return ret;
669}
670
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700671/* Device model stuff */
672static int applesmc_probe(struct platform_device *dev)
673{
Henrik Rydberg58745832010-11-10 10:58:03 +0000674 int ret;
675
676 ret = applesmc_init_smcreg();
677 if (ret)
678 return ret;
679
Henrik Rydberg2344cd02010-11-09 15:15:02 +0000680 applesmc_device_init();
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700681
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700682 return 0;
683}
684
Henrik Rydberga976f152009-09-21 17:04:50 -0700685/* Synchronize device with memorized backlight state */
686static int applesmc_pm_resume(struct device *dev)
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700687{
Henrik Rydberg40ef06f2010-11-10 10:58:05 +0000688 if (smcreg.has_key_backlight)
Henrik Rydberga976f152009-09-21 17:04:50 -0700689 applesmc_write_key(BACKLIGHT_KEY, backlight_state, 2);
Henrik Rydberga976f152009-09-21 17:04:50 -0700690 return 0;
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700691}
692
Henrik Rydberga976f152009-09-21 17:04:50 -0700693/* Reinitialize device on resume from hibernation */
694static int applesmc_pm_restore(struct device *dev)
695{
Henrik Rydberg2344cd02010-11-09 15:15:02 +0000696 applesmc_device_init();
Henrik Rydberga976f152009-09-21 17:04:50 -0700697 return applesmc_pm_resume(dev);
698}
699
Alexey Dobriyan47145212009-12-14 18:00:08 -0800700static const struct dev_pm_ops applesmc_pm_ops = {
Henrik Rydberga976f152009-09-21 17:04:50 -0700701 .resume = applesmc_pm_resume,
702 .restore = applesmc_pm_restore,
703};
704
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700705static struct platform_driver applesmc_driver = {
706 .probe = applesmc_probe,
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700707 .driver = {
708 .name = "applesmc",
Henrik Rydberga976f152009-09-21 17:04:50 -0700709 .pm = &applesmc_pm_ops,
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700710 },
711};
712
713/*
714 * applesmc_calibrate - Set our "resting" values. Callers must
715 * hold applesmc_lock.
716 */
717static void applesmc_calibrate(void)
718{
Henrik Rydbergedf48f32012-06-20 18:00:06 +0200719 applesmc_read_s16(MOTION_SENSOR_X_KEY, &rest_x);
720 applesmc_read_s16(MOTION_SENSOR_Y_KEY, &rest_y);
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700721 rest_x = -rest_x;
722}
723
Dmitry Torokhov58d5aa52019-10-02 14:43:45 -0700724static void applesmc_idev_poll(struct input_dev *idev)
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700725{
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700726 s16 x, y;
727
Henrik Rydbergedf48f32012-06-20 18:00:06 +0200728 if (applesmc_read_s16(MOTION_SENSOR_X_KEY, &x))
Henrik Rydberg58745832010-11-10 10:58:03 +0000729 return;
Henrik Rydbergedf48f32012-06-20 18:00:06 +0200730 if (applesmc_read_s16(MOTION_SENSOR_Y_KEY, &y))
Henrik Rydberg58745832010-11-10 10:58:03 +0000731 return;
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700732
733 x = -x;
Dmitry Torokhovd5cf2b92007-09-26 00:01:35 -0400734 input_report_abs(idev, ABS_X, x - rest_x);
735 input_report_abs(idev, ABS_Y, y - rest_y);
736 input_sync(idev);
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700737}
738
739/* Sysfs Files */
740
Nicolas Boichatfa744192007-05-23 13:58:13 -0700741static ssize_t applesmc_name_show(struct device *dev,
742 struct device_attribute *attr, char *buf)
743{
Guenter Roeck1f4d4af2021-03-21 20:49:10 -0700744 return sysfs_emit(buf, "applesmc\n");
Nicolas Boichatfa744192007-05-23 13:58:13 -0700745}
746
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700747static ssize_t applesmc_position_show(struct device *dev,
748 struct device_attribute *attr, char *buf)
749{
750 int ret;
751 s16 x, y, z;
752
Henrik Rydbergedf48f32012-06-20 18:00:06 +0200753 ret = applesmc_read_s16(MOTION_SENSOR_X_KEY, &x);
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700754 if (ret)
755 goto out;
Henrik Rydbergedf48f32012-06-20 18:00:06 +0200756 ret = applesmc_read_s16(MOTION_SENSOR_Y_KEY, &y);
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700757 if (ret)
758 goto out;
Henrik Rydbergedf48f32012-06-20 18:00:06 +0200759 ret = applesmc_read_s16(MOTION_SENSOR_Z_KEY, &z);
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700760 if (ret)
761 goto out;
762
763out:
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700764 if (ret)
765 return ret;
Guenter Roeck1f4d4af2021-03-21 20:49:10 -0700766
767 return sysfs_emit(buf, "(%d,%d,%d)\n", x, y, z);
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700768}
769
770static ssize_t applesmc_light_show(struct device *dev,
771 struct device_attribute *attr, char *sysfsbuf)
772{
Henrik Rydberg58745832010-11-10 10:58:03 +0000773 const struct applesmc_entry *entry;
Henrik Rydberg8bd1a122008-10-18 20:27:39 -0700774 static int data_length;
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700775 int ret;
776 u8 left = 0, right = 0;
Henrik Rydberg58745832010-11-10 10:58:03 +0000777 u8 buffer[10];
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700778
Henrik Rydberg8bd1a122008-10-18 20:27:39 -0700779 if (!data_length) {
Henrik Rydberg58745832010-11-10 10:58:03 +0000780 entry = applesmc_get_entry_by_key(LIGHT_SENSOR_LEFT_KEY);
781 if (IS_ERR(entry))
782 return PTR_ERR(entry);
783 if (entry->len > 10)
784 return -ENXIO;
785 data_length = entry->len;
Joe Perches1ee7c712010-11-09 15:15:03 +0000786 pr_info("light sensor data length set to %d\n", data_length);
Henrik Rydberg8bd1a122008-10-18 20:27:39 -0700787 }
788
789 ret = applesmc_read_key(LIGHT_SENSOR_LEFT_KEY, buffer, data_length);
Tom Rixcecf7562020-08-20 06:19:32 -0700790 if (ret)
791 goto out;
Alex Murrayc3d63622009-01-15 13:51:08 -0800792 /* newer macbooks report a single 10-bit bigendian value */
793 if (data_length == 10) {
794 left = be16_to_cpu(*(__be16 *)(buffer + 6)) >> 2;
795 goto out;
796 }
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700797 left = buffer[2];
Tom Rixcecf7562020-08-20 06:19:32 -0700798
799 ret = applesmc_read_key(LIGHT_SENSOR_RIGHT_KEY, buffer, data_length);
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700800 if (ret)
801 goto out;
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700802 right = buffer[2];
803
804out:
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700805 if (ret)
806 return ret;
Guenter Roeck1f4d4af2021-03-21 20:49:10 -0700807
808 return sysfs_emit(sysfsbuf, "(%d,%d)\n", left, right);
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700809}
810
Alex Murrayfa5575c2010-05-27 19:58:54 +0200811/* Displays sensor key as label */
812static ssize_t applesmc_show_sensor_label(struct device *dev,
813 struct device_attribute *devattr, char *sysfsbuf)
814{
Henrik Rydberge30bca12012-07-16 09:18:11 +0200815 const char *key = smcreg.index[to_index(devattr)];
Alex Murrayfa5575c2010-05-27 19:58:54 +0200816
Guenter Roeck1f4d4af2021-03-21 20:49:10 -0700817 return sysfs_emit(sysfsbuf, "%s\n", key);
Alex Murrayfa5575c2010-05-27 19:58:54 +0200818}
819
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700820/* Displays degree Celsius * 1000 */
821static ssize_t applesmc_show_temperature(struct device *dev,
822 struct device_attribute *devattr, char *sysfsbuf)
823{
Henrik Rydberge30bca12012-07-16 09:18:11 +0200824 const char *key = smcreg.index[to_index(devattr)];
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700825 int ret;
Henrik Rydbergb6e51222012-07-16 09:18:10 +0200826 s16 value;
827 int temp;
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700828
Henrik Rydberge30bca12012-07-16 09:18:11 +0200829 ret = applesmc_read_s16(key, &value);
Henrik Rydberg9792dad2010-11-10 10:58:04 +0000830 if (ret)
831 return ret;
832
Henrik Rydbergb6e51222012-07-16 09:18:10 +0200833 temp = 250 * (value >> 6);
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700834
Guenter Roeck1f4d4af2021-03-21 20:49:10 -0700835 return sysfs_emit(sysfsbuf, "%d\n", temp);
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700836}
837
838static ssize_t applesmc_show_fan_speed(struct device *dev,
839 struct device_attribute *attr, char *sysfsbuf)
840{
841 int ret;
842 unsigned int speed = 0;
843 char newkey[5];
844 u8 buffer[2];
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700845
Guenter Roeck1009ccd2017-07-11 20:53:55 -0700846 scnprintf(newkey, sizeof(newkey), fan_speed_fmt[to_option(attr)],
847 to_index(attr));
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700848
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700849 ret = applesmc_read_key(newkey, buffer, 2);
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700850 if (ret)
851 return ret;
Tom Rixcecf7562020-08-20 06:19:32 -0700852
853 speed = ((buffer[0] << 8 | buffer[1]) >> 2);
Guenter Roeck1f4d4af2021-03-21 20:49:10 -0700854 return sysfs_emit(sysfsbuf, "%u\n", speed);
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700855}
856
857static ssize_t applesmc_store_fan_speed(struct device *dev,
858 struct device_attribute *attr,
859 const char *sysfsbuf, size_t count)
860{
861 int ret;
Guenter Roeck2bfe8142010-11-10 10:42:21 -0800862 unsigned long speed;
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700863 char newkey[5];
864 u8 buffer[2];
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700865
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100866 if (kstrtoul(sysfsbuf, 10, &speed) < 0 || speed >= 0x4000)
Guenter Roeck2bfe8142010-11-10 10:42:21 -0800867 return -EINVAL; /* Bigger than a 14-bit value */
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700868
Guenter Roeck1009ccd2017-07-11 20:53:55 -0700869 scnprintf(newkey, sizeof(newkey), fan_speed_fmt[to_option(attr)],
870 to_index(attr));
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700871
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700872 buffer[0] = (speed >> 6) & 0xff;
873 buffer[1] = (speed << 2) & 0xff;
874 ret = applesmc_write_key(newkey, buffer, 2);
875
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700876 if (ret)
877 return ret;
878 else
879 return count;
880}
881
882static ssize_t applesmc_show_fan_manual(struct device *dev,
Henrik Rydberg3eba2bf2010-11-09 15:15:08 +0000883 struct device_attribute *attr, char *sysfsbuf)
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700884{
885 int ret;
886 u16 manual = 0;
887 u8 buffer[2];
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700888
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700889 ret = applesmc_read_key(FANS_MANUAL, buffer, 2);
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700890 if (ret)
891 return ret;
Tom Rixcecf7562020-08-20 06:19:32 -0700892
893 manual = ((buffer[0] << 8 | buffer[1]) >> to_index(attr)) & 0x01;
Guenter Roeck1f4d4af2021-03-21 20:49:10 -0700894 return sysfs_emit(sysfsbuf, "%d\n", manual);
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700895}
896
897static ssize_t applesmc_store_fan_manual(struct device *dev,
Henrik Rydberg3eba2bf2010-11-09 15:15:08 +0000898 struct device_attribute *attr,
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700899 const char *sysfsbuf, size_t count)
900{
901 int ret;
902 u8 buffer[2];
Guenter Roeck2bfe8142010-11-10 10:42:21 -0800903 unsigned long input;
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700904 u16 val;
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700905
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +0100906 if (kstrtoul(sysfsbuf, 10, &input) < 0)
Guenter Roeck2bfe8142010-11-10 10:42:21 -0800907 return -EINVAL;
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700908
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700909 ret = applesmc_read_key(FANS_MANUAL, buffer, 2);
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700910 if (ret)
911 goto out;
912
Tom Rixcecf7562020-08-20 06:19:32 -0700913 val = (buffer[0] << 8 | buffer[1]);
914
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700915 if (input)
Henrik Rydberg3eba2bf2010-11-09 15:15:08 +0000916 val = val | (0x01 << to_index(attr));
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700917 else
Henrik Rydberg3eba2bf2010-11-09 15:15:08 +0000918 val = val & ~(0x01 << to_index(attr));
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700919
920 buffer[0] = (val >> 8) & 0xFF;
921 buffer[1] = val & 0xFF;
922
923 ret = applesmc_write_key(FANS_MANUAL, buffer, 2);
924
925out:
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700926 if (ret)
927 return ret;
928 else
929 return count;
930}
931
932static ssize_t applesmc_show_fan_position(struct device *dev,
933 struct device_attribute *attr, char *sysfsbuf)
934{
935 int ret;
936 char newkey[5];
937 u8 buffer[17];
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700938
Guenter Roeck1009ccd2017-07-11 20:53:55 -0700939 scnprintf(newkey, sizeof(newkey), FAN_ID_FMT, to_index(attr));
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700940
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700941 ret = applesmc_read_key(newkey, buffer, 16);
942 buffer[16] = 0;
943
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700944 if (ret)
945 return ret;
Guenter Roeck1f4d4af2021-03-21 20:49:10 -0700946
947 return sysfs_emit(sysfsbuf, "%s\n", buffer + 4);
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700948}
949
950static ssize_t applesmc_calibrate_show(struct device *dev,
951 struct device_attribute *attr, char *sysfsbuf)
952{
Guenter Roeck1f4d4af2021-03-21 20:49:10 -0700953 return sysfs_emit(sysfsbuf, "(%d,%d)\n", rest_x, rest_y);
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700954}
955
956static ssize_t applesmc_calibrate_store(struct device *dev,
957 struct device_attribute *attr, const char *sysfsbuf, size_t count)
958{
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700959 applesmc_calibrate();
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700960
961 return count;
962}
963
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700964static void applesmc_backlight_set(struct work_struct *work)
965{
Henrik Rydberga976f152009-09-21 17:04:50 -0700966 applesmc_write_key(BACKLIGHT_KEY, backlight_state, 2);
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700967}
968static DECLARE_WORK(backlight_work, &applesmc_backlight_set);
969
970static void applesmc_brightness_set(struct led_classdev *led_cdev,
971 enum led_brightness value)
972{
973 int ret;
974
Henrik Rydberga976f152009-09-21 17:04:50 -0700975 backlight_state[0] = value;
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700976 ret = queue_work(applesmc_led_wq, &backlight_work);
977
978 if (debug && (!ret))
Guenter Roeck692fe502013-01-10 05:49:55 -0800979 dev_dbg(led_cdev->dev, "work was already on the queue.\n");
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700980}
981
982static ssize_t applesmc_key_count_show(struct device *dev,
983 struct device_attribute *attr, char *sysfsbuf)
984{
985 int ret;
986 u8 buffer[4];
987 u32 count;
988
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700989 ret = applesmc_read_key(KEY_COUNT_KEY, buffer, 4);
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700990 if (ret)
991 return ret;
Tom Rixcecf7562020-08-20 06:19:32 -0700992
993 count = ((u32)buffer[0]<<24) + ((u32)buffer[1]<<16) +
994 ((u32)buffer[2]<<8) + buffer[3];
Guenter Roeck1f4d4af2021-03-21 20:49:10 -0700995 return sysfs_emit(sysfsbuf, "%d\n", count);
Nicolas Boichat6f2fad72007-05-08 00:24:52 -0700996}
997
998static ssize_t applesmc_key_at_index_read_show(struct device *dev,
999 struct device_attribute *attr, char *sysfsbuf)
1000{
Henrik Rydberg58745832010-11-10 10:58:03 +00001001 const struct applesmc_entry *entry;
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001002 int ret;
1003
Henrik Rydberg58745832010-11-10 10:58:03 +00001004 entry = applesmc_get_entry_by_index(key_at_index);
1005 if (IS_ERR(entry))
1006 return PTR_ERR(entry);
1007 ret = applesmc_read_entry(entry, sysfsbuf, entry->len);
1008 if (ret)
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001009 return ret;
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001010
Henrik Rydberg58745832010-11-10 10:58:03 +00001011 return entry->len;
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001012}
1013
1014static ssize_t applesmc_key_at_index_data_length_show(struct device *dev,
1015 struct device_attribute *attr, char *sysfsbuf)
1016{
Henrik Rydberg58745832010-11-10 10:58:03 +00001017 const struct applesmc_entry *entry;
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001018
Henrik Rydberg58745832010-11-10 10:58:03 +00001019 entry = applesmc_get_entry_by_index(key_at_index);
1020 if (IS_ERR(entry))
1021 return PTR_ERR(entry);
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001022
Guenter Roeck1f4d4af2021-03-21 20:49:10 -07001023 return sysfs_emit(sysfsbuf, "%d\n", entry->len);
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001024}
1025
1026static ssize_t applesmc_key_at_index_type_show(struct device *dev,
1027 struct device_attribute *attr, char *sysfsbuf)
1028{
Henrik Rydberg58745832010-11-10 10:58:03 +00001029 const struct applesmc_entry *entry;
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001030
Henrik Rydberg58745832010-11-10 10:58:03 +00001031 entry = applesmc_get_entry_by_index(key_at_index);
1032 if (IS_ERR(entry))
1033 return PTR_ERR(entry);
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001034
Guenter Roeck1f4d4af2021-03-21 20:49:10 -07001035 return sysfs_emit(sysfsbuf, "%s\n", entry->type);
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001036}
1037
1038static ssize_t applesmc_key_at_index_name_show(struct device *dev,
1039 struct device_attribute *attr, char *sysfsbuf)
1040{
Henrik Rydberg58745832010-11-10 10:58:03 +00001041 const struct applesmc_entry *entry;
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001042
Henrik Rydberg58745832010-11-10 10:58:03 +00001043 entry = applesmc_get_entry_by_index(key_at_index);
1044 if (IS_ERR(entry))
1045 return PTR_ERR(entry);
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001046
Guenter Roeck1f4d4af2021-03-21 20:49:10 -07001047 return sysfs_emit(sysfsbuf, "%s\n", entry->key);
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001048}
1049
1050static ssize_t applesmc_key_at_index_show(struct device *dev,
1051 struct device_attribute *attr, char *sysfsbuf)
1052{
Guenter Roeck1f4d4af2021-03-21 20:49:10 -07001053 return sysfs_emit(sysfsbuf, "%d\n", key_at_index);
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001054}
1055
1056static ssize_t applesmc_key_at_index_store(struct device *dev,
1057 struct device_attribute *attr, const char *sysfsbuf, size_t count)
1058{
Henrik Rydberg58745832010-11-10 10:58:03 +00001059 unsigned long newkey;
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001060
Frans Meulenbroeks179c4fd2012-01-04 20:58:52 +01001061 if (kstrtoul(sysfsbuf, 10, &newkey) < 0
Henrik Rydberg58745832010-11-10 10:58:03 +00001062 || newkey >= smcreg.key_count)
1063 return -EINVAL;
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001064
Henrik Rydberg58745832010-11-10 10:58:03 +00001065 key_at_index = newkey;
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001066 return count;
1067}
1068
1069static struct led_classdev applesmc_backlight = {
Richard Purdie6c152be2007-10-31 15:00:07 +01001070 .name = "smc::kbd_backlight",
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001071 .default_trigger = "nand-disk",
1072 .brightness_set = applesmc_brightness_set,
1073};
1074
Henrik Rydberg0b0b5df2010-11-09 15:15:09 +00001075static 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 },
1083 { }
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001084};
1085
Henrik Rydberg0b0b5df2010-11-09 15:15:09 +00001086static struct applesmc_node_group accelerometer_group[] = {
1087 { "position", applesmc_position_show },
1088 { "calibrate", applesmc_calibrate_show, applesmc_calibrate_store },
1089 { }
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001090};
1091
Henrik Rydberg0b0b5df2010-11-09 15:15:09 +00001092static struct applesmc_node_group light_sensor_group[] = {
1093 { "light", applesmc_light_show },
1094 { }
1095};
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001096
Henrik Rydberg3eba2bf2010-11-09 15:15:08 +00001097static 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 },
1105 { }
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001106};
1107
Henrik Rydberg9792dad2010-11-10 10:58:04 +00001108static struct applesmc_node_group temp_group[] = {
1109 { "temp%d_label", applesmc_show_sensor_label },
1110 { "temp%d_input", applesmc_show_temperature },
1111 { }
Alex Murrayfa5575c2010-05-27 19:58:54 +02001112};
1113
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001114/* Module stuff */
1115
1116/*
Henrik Rydberg9792dad2010-11-10 10:58:04 +00001117 * applesmc_destroy_nodes - remove files and free associated memory
1118 */
1119static void applesmc_destroy_nodes(struct applesmc_node_group *groups)
1120{
1121 struct applesmc_node_group *grp;
1122 struct applesmc_dev_attr *node;
1123
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);
1128 kfree(grp->nodes);
1129 grp->nodes = NULL;
1130 }
1131}
1132
1133/*
1134 * applesmc_create_nodes - create a two-dimensional group of sysfs files
1135 */
1136static int applesmc_create_nodes(struct applesmc_node_group *groups, int num)
1137{
1138 struct applesmc_node_group *grp;
1139 struct applesmc_dev_attr *node;
1140 struct attribute *attr;
1141 int ret, i;
1142
1143 for (grp = groups; grp->format; grp++) {
1144 grp->nodes = kcalloc(num + 1, sizeof(*node), GFP_KERNEL);
1145 if (!grp->nodes) {
1146 ret = -ENOMEM;
1147 goto out;
1148 }
1149 for (i = 0; i < num; i++) {
1150 node = &grp->nodes[i];
Guenter Roeck1009ccd2017-07-11 20:53:55 -07001151 scnprintf(node->name, sizeof(node->name), grp->format,
1152 i + 1);
Henrik Rydberg3eba2bf2010-11-09 15:15:08 +00001153 node->sda.index = (grp->option << 16) | (i & 0xffff);
Henrik Rydberg9792dad2010-11-10 10:58:04 +00001154 node->sda.dev_attr.show = grp->show;
1155 node->sda.dev_attr.store = grp->store;
1156 attr = &node->sda.dev_attr.attr;
Henrik Rydberg9d1f8a402011-01-22 20:55:39 +01001157 sysfs_attr_init(attr);
Henrik Rydberg9792dad2010-11-10 10:58:04 +00001158 attr->name = node->name;
Guenter Roeck71ee4a42018-12-10 14:02:03 -08001159 attr->mode = 0444 | (grp->store ? 0200 : 0);
Henrik Rydberg9792dad2010-11-10 10:58:04 +00001160 ret = sysfs_create_file(&pdev->dev.kobj, attr);
1161 if (ret) {
1162 attr->name = NULL;
1163 goto out;
1164 }
1165 }
1166 }
1167
1168 return 0;
1169out:
1170 applesmc_destroy_nodes(groups);
1171 return ret;
1172}
1173
Bastien Nocera0c6cac72015-09-10 14:46:40 +02001174/* Create accelerometer resources */
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001175static int applesmc_create_accelerometer(void)
1176{
1177 int ret;
1178
Henrik Rydberg0b0b5df2010-11-09 15:15:09 +00001179 if (!smcreg.has_accelerometer)
1180 return 0;
1181
1182 ret = applesmc_create_nodes(accelerometer_group, 1);
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001183 if (ret)
1184 goto out;
1185
Dmitry Torokhov58d5aa52019-10-02 14:43:45 -07001186 applesmc_idev = input_allocate_device();
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001187 if (!applesmc_idev) {
1188 ret = -ENOMEM;
1189 goto out_sysfs;
1190 }
1191
1192 /* initial calibrate for the input device */
1193 applesmc_calibrate();
1194
Dmitry Torokhovd5cf2b92007-09-26 00:01:35 -04001195 /* initialize the input device */
Dmitry Torokhov58d5aa52019-10-02 14:43:45 -07001196 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,
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001200 -256, 256, APPLESMC_INPUT_FUZZ, APPLESMC_INPUT_FLAT);
Dmitry Torokhov58d5aa52019-10-02 14:43:45 -07001201 input_set_abs_params(applesmc_idev, ABS_Y,
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001202 -256, 256, APPLESMC_INPUT_FUZZ, APPLESMC_INPUT_FLAT);
1203
Dmitry Torokhov58d5aa52019-10-02 14:43:45 -07001204 ret = input_setup_polling(applesmc_idev, applesmc_idev_poll);
1205 if (ret)
1206 goto out_idev;
1207
1208 input_set_poll_interval(applesmc_idev, APPLESMC_POLL_INTERVAL);
1209
1210 ret = input_register_device(applesmc_idev);
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001211 if (ret)
1212 goto out_idev;
1213
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001214 return 0;
1215
1216out_idev:
Dmitry Torokhov58d5aa52019-10-02 14:43:45 -07001217 input_free_device(applesmc_idev);
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001218
1219out_sysfs:
Henrik Rydberg0b0b5df2010-11-09 15:15:09 +00001220 applesmc_destroy_nodes(accelerometer_group);
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001221
1222out:
Joe Perches1ee7c712010-11-09 15:15:03 +00001223 pr_warn("driver init failed (ret=%d)!\n", ret);
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001224 return ret;
1225}
1226
Bastien Nocera0c6cac72015-09-10 14:46:40 +02001227/* Release all resources used by the accelerometer */
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001228static void applesmc_release_accelerometer(void)
1229{
Henrik Rydberg0b0b5df2010-11-09 15:15:09 +00001230 if (!smcreg.has_accelerometer)
1231 return;
Dmitry Torokhov58d5aa52019-10-02 14:43:45 -07001232 input_unregister_device(applesmc_idev);
Henrik Rydberg0b0b5df2010-11-09 15:15:09 +00001233 applesmc_destroy_nodes(accelerometer_group);
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001234}
Henrik Rydberg0b0b5df2010-11-09 15:15:09 +00001235
1236static int applesmc_create_light_sensor(void)
1237{
1238 if (!smcreg.num_light_sensors)
1239 return 0;
1240 return applesmc_create_nodes(light_sensor_group, 1);
1241}
1242
1243static void applesmc_release_light_sensor(void)
1244{
1245 if (!smcreg.num_light_sensors)
1246 return;
1247 applesmc_destroy_nodes(light_sensor_group);
1248}
1249
1250static int applesmc_create_key_backlight(void)
1251{
1252 if (!smcreg.has_key_backlight)
1253 return 0;
1254 applesmc_led_wq = create_singlethread_workqueue("applesmc-led");
1255 if (!applesmc_led_wq)
1256 return -ENOMEM;
1257 return led_classdev_register(&pdev->dev, &applesmc_backlight);
1258}
1259
1260static void applesmc_release_key_backlight(void)
1261{
1262 if (!smcreg.has_key_backlight)
1263 return;
1264 led_classdev_unregister(&applesmc_backlight);
1265 destroy_workqueue(applesmc_led_wq);
1266}
1267
Henrik Rydberg40ef06f2010-11-10 10:58:05 +00001268static int applesmc_dmi_match(const struct dmi_system_id *id)
1269{
1270 return 1;
1271}
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001272
Guenter Roeck85ebfd32012-01-19 11:02:15 -08001273/*
1274 * Note that DMI_MATCH(...,"MacBook") will match "MacBookPro1,1".
1275 * So we need to put "Apple MacBook Pro" before "Apple MacBook".
1276 */
Christoph Hellwig6faadbb2017-09-14 11:59:30 +02001277static const struct dmi_system_id applesmc_whitelist[] __initconst = {
Henrik Rydbergf5274c92008-10-18 20:27:40 -07001278 { applesmc_dmi_match, "Apple MacBook Air", {
1279 DMI_MATCH(DMI_BOARD_VENDOR, "Apple"),
1280 DMI_MATCH(DMI_PRODUCT_NAME, "MacBookAir") },
Henrik Rydberg40ef06f2010-11-10 10:58:05 +00001281 },
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001282 { applesmc_dmi_match, "Apple MacBook Pro", {
Guenter Roeck2bfe8142010-11-10 10:42:21 -08001283 DMI_MATCH(DMI_BOARD_VENDOR, "Apple"),
1284 DMI_MATCH(DMI_PRODUCT_NAME, "MacBookPro") },
Henrik Rydberg40ef06f2010-11-10 10:58:05 +00001285 },
Riki Oktariantocd19ba12008-02-04 23:41:58 -08001286 { applesmc_dmi_match, "Apple MacBook", {
Guenter Roeck2bfe8142010-11-10 10:42:21 -08001287 DMI_MATCH(DMI_BOARD_VENDOR, "Apple"),
1288 DMI_MATCH(DMI_PRODUCT_NAME, "MacBook") },
Henrik Rydberg40ef06f2010-11-10 10:58:05 +00001289 },
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001290 { applesmc_dmi_match, "Apple Macmini", {
Guenter Roeck2bfe8142010-11-10 10:42:21 -08001291 DMI_MATCH(DMI_BOARD_VENDOR, "Apple"),
1292 DMI_MATCH(DMI_PRODUCT_NAME, "Macmini") },
Henrik Rydberg40ef06f2010-11-10 10:58:05 +00001293 },
Henrik Rydberg45a3a362008-11-19 15:36:42 -08001294 { applesmc_dmi_match, "Apple MacPro", {
1295 DMI_MATCH(DMI_BOARD_VENDOR, "Apple"),
1296 DMI_MATCH(DMI_PRODUCT_NAME, "MacPro") },
Henrik Rydberg40ef06f2010-11-10 10:58:05 +00001297 },
Roberto De Ioris9f86f282008-08-15 00:40:30 -07001298 { applesmc_dmi_match, "Apple iMac", {
Guenter Roeck2bfe8142010-11-10 10:42:21 -08001299 DMI_MATCH(DMI_BOARD_VENDOR, "Apple"),
1300 DMI_MATCH(DMI_PRODUCT_NAME, "iMac") },
Henrik Rydberg40ef06f2010-11-10 10:58:05 +00001301 },
Joe Jamison6cbf7962020-11-28 10:54:03 -06001302 { applesmc_dmi_match, "Apple Xserve", {
1303 DMI_MATCH(DMI_BOARD_VENDOR, "Apple"),
1304 DMI_MATCH(DMI_PRODUCT_NAME, "Xserve") },
1305 },
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001306 { .ident = NULL }
1307};
1308
1309static int __init applesmc_init(void)
1310{
1311 int ret;
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001312
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001313 if (!dmi_check_system(applesmc_whitelist)) {
Joe Perches1ee7c712010-11-09 15:15:03 +00001314 pr_warn("supported laptop not found!\n");
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001315 ret = -ENODEV;
1316 goto out;
1317 }
1318
1319 if (!request_region(APPLESMC_DATA_PORT, APPLESMC_NR_PORTS,
1320 "applesmc")) {
1321 ret = -ENXIO;
1322 goto out;
1323 }
1324
1325 ret = platform_driver_register(&applesmc_driver);
1326 if (ret)
1327 goto out_region;
1328
Jean Delvareddfbf2a2007-05-08 20:27:04 -07001329 pdev = platform_device_register_simple("applesmc", APPLESMC_DATA_PORT,
1330 NULL, 0);
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001331 if (IS_ERR(pdev)) {
1332 ret = PTR_ERR(pdev);
1333 goto out_driver;
1334 }
1335
Henrik Rydberg58745832010-11-10 10:58:03 +00001336 /* create register cache */
1337 ret = applesmc_init_smcreg();
Nicolas Boichat6996abf2007-05-27 22:17:43 +02001338 if (ret)
1339 goto out_device;
Nicolas Boichatfa744192007-05-23 13:58:13 -07001340
Henrik Rydberg0b0b5df2010-11-09 15:15:09 +00001341 ret = applesmc_create_nodes(info_group, 1);
Henrik Rydberg58745832010-11-10 10:58:03 +00001342 if (ret)
1343 goto out_smcreg;
1344
Henrik Rydberg3eba2bf2010-11-09 15:15:08 +00001345 ret = applesmc_create_nodes(fan_group, smcreg.fan_count);
1346 if (ret)
1347 goto out_info;
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001348
Henrik Rydberge30bca12012-07-16 09:18:11 +02001349 ret = applesmc_create_nodes(temp_group, smcreg.index_count);
Henrik Rydberg9792dad2010-11-10 10:58:04 +00001350 if (ret)
1351 goto out_fans;
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001352
Henrik Rydberg0b0b5df2010-11-09 15:15:09 +00001353 ret = applesmc_create_accelerometer();
1354 if (ret)
1355 goto out_temperature;
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001356
Henrik Rydberg0b0b5df2010-11-09 15:15:09 +00001357 ret = applesmc_create_light_sensor();
1358 if (ret)
1359 goto out_accelerometer;
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001360
Henrik Rydberg0b0b5df2010-11-09 15:15:09 +00001361 ret = applesmc_create_key_backlight();
1362 if (ret)
1363 goto out_light_sysfs;
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001364
Tony Jones1beeffe2007-08-20 13:46:20 -07001365 hwmon_dev = hwmon_device_register(&pdev->dev);
1366 if (IS_ERR(hwmon_dev)) {
1367 ret = PTR_ERR(hwmon_dev);
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001368 goto out_light_ledclass;
1369 }
1370
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001371 return 0;
1372
1373out_light_ledclass:
Henrik Rydberg0b0b5df2010-11-09 15:15:09 +00001374 applesmc_release_key_backlight();
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001375out_light_sysfs:
Henrik Rydberg0b0b5df2010-11-09 15:15:09 +00001376 applesmc_release_light_sensor();
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001377out_accelerometer:
Henrik Rydberg0b0b5df2010-11-09 15:15:09 +00001378 applesmc_release_accelerometer();
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001379out_temperature:
Henrik Rydberg9792dad2010-11-10 10:58:04 +00001380 applesmc_destroy_nodes(temp_group);
Henrik Rydberg0559a532010-05-11 09:17:47 +02001381out_fans:
Henrik Rydberg3eba2bf2010-11-09 15:15:08 +00001382 applesmc_destroy_nodes(fan_group);
1383out_info:
Henrik Rydberg0b0b5df2010-11-09 15:15:09 +00001384 applesmc_destroy_nodes(info_group);
Henrik Rydberg58745832010-11-10 10:58:03 +00001385out_smcreg:
1386 applesmc_destroy_smcreg();
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001387out_device:
1388 platform_device_unregister(pdev);
1389out_driver:
1390 platform_driver_unregister(&applesmc_driver);
1391out_region:
1392 release_region(APPLESMC_DATA_PORT, APPLESMC_NR_PORTS);
1393out:
Joe Perches1ee7c712010-11-09 15:15:03 +00001394 pr_warn("driver init failed (ret=%d)!\n", ret);
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001395 return ret;
1396}
1397
1398static void __exit applesmc_exit(void)
1399{
Tony Jones1beeffe2007-08-20 13:46:20 -07001400 hwmon_device_unregister(hwmon_dev);
Henrik Rydberg0b0b5df2010-11-09 15:15:09 +00001401 applesmc_release_key_backlight();
1402 applesmc_release_light_sensor();
1403 applesmc_release_accelerometer();
Henrik Rydberg9792dad2010-11-10 10:58:04 +00001404 applesmc_destroy_nodes(temp_group);
Henrik Rydberg3eba2bf2010-11-09 15:15:08 +00001405 applesmc_destroy_nodes(fan_group);
Henrik Rydberg0b0b5df2010-11-09 15:15:09 +00001406 applesmc_destroy_nodes(info_group);
Henrik Rydberg58745832010-11-10 10:58:03 +00001407 applesmc_destroy_smcreg();
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001408 platform_device_unregister(pdev);
1409 platform_driver_unregister(&applesmc_driver);
1410 release_region(APPLESMC_DATA_PORT, APPLESMC_NR_PORTS);
Nicolas Boichat6f2fad72007-05-08 00:24:52 -07001411}
1412
1413module_init(applesmc_init);
1414module_exit(applesmc_exit);
1415
1416MODULE_AUTHOR("Nicolas Boichat");
1417MODULE_DESCRIPTION("Apple SMC");
1418MODULE_LICENSE("GPL v2");
Henrik Rydbergdc924ef2008-12-01 13:13:49 -08001419MODULE_DEVICE_TABLE(dmi, applesmc_whitelist);