blob: 26e5b50605230e2e34a46d8118486fb1ba2eb939 [file] [log] [blame]
Alexey Starikovskiy91087df2007-09-26 19:43:28 +04001/*
2 * SMBus driver for ACPI Embedded Controller (v0.1)
3 *
4 * Copyright (c) 2007 Alexey Starikovskiy
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation version 2.
9 */
10
Lv Zheng8b484632013-12-03 08:49:16 +080011#include <linux/acpi.h>
Alexey Starikovskiy91087df2007-09-26 19:43:28 +040012#include <linux/wait.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090013#include <linux/slab.h>
Alexey Starikovskiy91087df2007-09-26 19:43:28 +040014#include <linux/delay.h>
Paul Gortmakercc4b8592011-07-01 14:30:49 -040015#include <linux/module.h>
Alexey Starikovskiy91087df2007-09-26 19:43:28 +040016#include <linux/interrupt.h>
17#include "sbshc.h"
18
Len Browna192a952009-07-28 16:45:54 -040019#define PREFIX "ACPI: "
20
Dan Carpenter97c227c2010-04-27 14:06:05 -070021#define ACPI_SMB_HC_CLASS "smbus_host_ctl"
Alexey Starikovskiy91087df2007-09-26 19:43:28 +040022#define ACPI_SMB_HC_DEVICE_NAME "ACPI SMBus HC"
23
24struct acpi_smb_hc {
25 struct acpi_ec *ec;
26 struct mutex lock;
27 wait_queue_head_t wait;
28 u8 offset;
29 u8 query_bit;
30 smbus_alarm_callback callback;
31 void *context;
32};
33
34static int acpi_smbus_hc_add(struct acpi_device *device);
Rafael J. Wysocki51fac832013-01-24 00:24:48 +010035static int acpi_smbus_hc_remove(struct acpi_device *device);
Alexey Starikovskiy91087df2007-09-26 19:43:28 +040036
37static const struct acpi_device_id sbs_device_ids[] = {
38 {"ACPI0001", 0},
39 {"ACPI0005", 0},
40 {"", 0},
41};
42
43MODULE_DEVICE_TABLE(acpi, sbs_device_ids);
44
45static struct acpi_driver acpi_smb_hc_driver = {
46 .name = "smbus_hc",
47 .class = ACPI_SMB_HC_CLASS,
48 .ids = sbs_device_ids,
49 .ops = {
50 .add = acpi_smbus_hc_add,
51 .remove = acpi_smbus_hc_remove,
52 },
53};
54
55union acpi_smb_status {
56 u8 raw;
57 struct {
58 u8 status:5;
59 u8 reserved:1;
60 u8 alarm:1;
61 u8 done:1;
62 } fields;
63};
64
65enum acpi_smb_status_codes {
66 SMBUS_OK = 0,
67 SMBUS_UNKNOWN_FAILURE = 0x07,
68 SMBUS_DEVICE_ADDRESS_NACK = 0x10,
69 SMBUS_DEVICE_ERROR = 0x11,
70 SMBUS_DEVICE_COMMAND_ACCESS_DENIED = 0x12,
71 SMBUS_UNKNOWN_ERROR = 0x13,
72 SMBUS_DEVICE_ACCESS_DENIED = 0x17,
73 SMBUS_TIMEOUT = 0x18,
74 SMBUS_HOST_UNSUPPORTED_PROTOCOL = 0x19,
75 SMBUS_BUSY = 0x1a,
76 SMBUS_PEC_ERROR = 0x1f,
77};
78
79enum acpi_smb_offset {
80 ACPI_SMB_PROTOCOL = 0, /* protocol, PEC */
81 ACPI_SMB_STATUS = 1, /* status */
82 ACPI_SMB_ADDRESS = 2, /* address */
83 ACPI_SMB_COMMAND = 3, /* command */
84 ACPI_SMB_DATA = 4, /* 32 data registers */
85 ACPI_SMB_BLOCK_COUNT = 0x24, /* number of data bytes */
86 ACPI_SMB_ALARM_ADDRESS = 0x25, /* alarm address */
87 ACPI_SMB_ALARM_DATA = 0x26, /* 2 bytes alarm data */
88};
89
90static inline int smb_hc_read(struct acpi_smb_hc *hc, u8 address, u8 *data)
91{
92 return ec_read(hc->offset + address, data);
93}
94
95static inline int smb_hc_write(struct acpi_smb_hc *hc, u8 address, u8 data)
96{
97 return ec_write(hc->offset + address, data);
98}
99
100static inline int smb_check_done(struct acpi_smb_hc *hc)
101{
102 union acpi_smb_status status = {.raw = 0};
103 smb_hc_read(hc, ACPI_SMB_STATUS, &status.raw);
104 return status.fields.done && (status.fields.status == SMBUS_OK);
105}
106
107static int wait_transaction_complete(struct acpi_smb_hc *hc, int timeout)
108{
109 if (wait_event_timeout(hc->wait, smb_check_done(hc),
110 msecs_to_jiffies(timeout)))
111 return 0;
Zhao Yakui266feef2008-08-26 13:57:34 +0800112 /*
113 * After the timeout happens, OS will try to check the status of SMbus.
114 * If the status is what OS expected, it will be regarded as the bogus
115 * timeout.
116 */
117 if (smb_check_done(hc))
118 return 0;
Alexey Starikovskiy91087df2007-09-26 19:43:28 +0400119 else
120 return -ETIME;
121}
122
Adrian Bunke5685b92007-10-24 18:24:42 +0200123static int acpi_smbus_transaction(struct acpi_smb_hc *hc, u8 protocol,
124 u8 address, u8 command, u8 *data, u8 length)
Alexey Starikovskiy91087df2007-09-26 19:43:28 +0400125{
126 int ret = -EFAULT, i;
127 u8 temp, sz = 0;
128
Alexey Starikovskiybbafbec2008-02-09 03:22:13 -0500129 if (!hc) {
130 printk(KERN_ERR PREFIX "host controller is not configured\n");
131 return ret;
132 }
133
Alexey Starikovskiy91087df2007-09-26 19:43:28 +0400134 mutex_lock(&hc->lock);
135 if (smb_hc_read(hc, ACPI_SMB_PROTOCOL, &temp))
136 goto end;
137 if (temp) {
138 ret = -EBUSY;
139 goto end;
140 }
141 smb_hc_write(hc, ACPI_SMB_COMMAND, command);
Alexey Starikovskiy91087df2007-09-26 19:43:28 +0400142 if (!(protocol & 0x01)) {
143 smb_hc_write(hc, ACPI_SMB_BLOCK_COUNT, length);
144 for (i = 0; i < length; ++i)
145 smb_hc_write(hc, ACPI_SMB_DATA + i, data[i]);
146 }
147 smb_hc_write(hc, ACPI_SMB_ADDRESS, address << 1);
148 smb_hc_write(hc, ACPI_SMB_PROTOCOL, protocol);
149 /*
150 * Wait for completion. Save the status code, data size,
151 * and data into the return package (if required by the protocol).
152 */
153 ret = wait_transaction_complete(hc, 1000);
154 if (ret || !(protocol & 0x01))
155 goto end;
156 switch (protocol) {
157 case SMBUS_RECEIVE_BYTE:
158 case SMBUS_READ_BYTE:
159 sz = 1;
160 break;
161 case SMBUS_READ_WORD:
162 sz = 2;
163 break;
164 case SMBUS_READ_BLOCK:
165 if (smb_hc_read(hc, ACPI_SMB_BLOCK_COUNT, &sz)) {
166 ret = -EFAULT;
167 goto end;
168 }
169 sz &= 0x1f;
170 break;
171 }
172 for (i = 0; i < sz; ++i)
173 smb_hc_read(hc, ACPI_SMB_DATA + i, &data[i]);
174 end:
175 mutex_unlock(&hc->lock);
176 return ret;
177}
178
179int acpi_smbus_read(struct acpi_smb_hc *hc, u8 protocol, u8 address,
180 u8 command, u8 *data)
181{
182 return acpi_smbus_transaction(hc, protocol, address, command, data, 0);
183}
184
185EXPORT_SYMBOL_GPL(acpi_smbus_read);
186
187int acpi_smbus_write(struct acpi_smb_hc *hc, u8 protocol, u8 address,
188 u8 command, u8 *data, u8 length)
189{
190 return acpi_smbus_transaction(hc, protocol, address, command, data, length);
191}
192
193EXPORT_SYMBOL_GPL(acpi_smbus_write);
194
195int acpi_smbus_register_callback(struct acpi_smb_hc *hc,
196 smbus_alarm_callback callback, void *context)
197{
198 mutex_lock(&hc->lock);
199 hc->callback = callback;
200 hc->context = context;
201 mutex_unlock(&hc->lock);
202 return 0;
203}
204
205EXPORT_SYMBOL_GPL(acpi_smbus_register_callback);
206
207int acpi_smbus_unregister_callback(struct acpi_smb_hc *hc)
208{
209 mutex_lock(&hc->lock);
210 hc->callback = NULL;
211 hc->context = NULL;
212 mutex_unlock(&hc->lock);
213 return 0;
214}
215
216EXPORT_SYMBOL_GPL(acpi_smbus_unregister_callback);
217
Alexey Starikovskiyc2d00f22007-12-08 13:02:40 +0300218static inline void acpi_smbus_callback(void *context)
Alexey Starikovskiy91087df2007-09-26 19:43:28 +0400219{
220 struct acpi_smb_hc *hc = context;
Alexey Starikovskiy91087df2007-09-26 19:43:28 +0400221 if (hc->callback)
222 hc->callback(hc->context);
223}
224
225static int smbus_alarm(void *context)
226{
227 struct acpi_smb_hc *hc = context;
228 union acpi_smb_status status;
Alexey Starikovskiyc2d00f22007-12-08 13:02:40 +0300229 u8 address;
Alexey Starikovskiy91087df2007-09-26 19:43:28 +0400230 if (smb_hc_read(hc, ACPI_SMB_STATUS, &status.raw))
231 return 0;
232 /* Check if it is only a completion notify */
233 if (status.fields.done)
234 wake_up(&hc->wait);
235 if (!status.fields.alarm)
236 return 0;
237 mutex_lock(&hc->lock);
Alexey Starikovskiyc2d00f22007-12-08 13:02:40 +0300238 smb_hc_read(hc, ACPI_SMB_ALARM_ADDRESS, &address);
Alexey Starikovskiy09f1fb42007-12-08 13:02:33 +0300239 status.fields.alarm = 0;
Alexey Starikovskiy91087df2007-09-26 19:43:28 +0400240 smb_hc_write(hc, ACPI_SMB_STATUS, status.raw);
Alexey Starikovskiyc2d00f22007-12-08 13:02:40 +0300241 /* We are only interested in events coming from known devices */
242 switch (address >> 1) {
243 case ACPI_SBS_CHARGER:
244 case ACPI_SBS_MANAGER:
245 case ACPI_SBS_BATTERY:
Alexey Starikovskiyf5347862009-12-30 15:53:03 +0300246 acpi_os_execute(OSL_NOTIFY_HANDLER,
Alexey Starikovskiyc2d00f22007-12-08 13:02:40 +0300247 acpi_smbus_callback, hc);
248 default:;
249 }
Alexey Starikovskiy91087df2007-09-26 19:43:28 +0400250 mutex_unlock(&hc->lock);
251 return 0;
252}
253
254typedef int (*acpi_ec_query_func) (void *data);
255
256extern int acpi_ec_add_query_handler(struct acpi_ec *ec, u8 query_bit,
257 acpi_handle handle, acpi_ec_query_func func,
258 void *data);
259
260static int acpi_smbus_hc_add(struct acpi_device *device)
261{
262 int status;
Matthew Wilcox27663c52008-10-10 02:22:59 -0400263 unsigned long long val;
Alexey Starikovskiy91087df2007-09-26 19:43:28 +0400264 struct acpi_smb_hc *hc;
265
266 if (!device)
267 return -EINVAL;
268
269 status = acpi_evaluate_integer(device->handle, "_EC", NULL, &val);
270 if (ACPI_FAILURE(status)) {
271 printk(KERN_ERR PREFIX "error obtaining _EC.\n");
272 return -EIO;
273 }
274
275 strcpy(acpi_device_name(device), ACPI_SMB_HC_DEVICE_NAME);
276 strcpy(acpi_device_class(device), ACPI_SMB_HC_CLASS);
277
278 hc = kzalloc(sizeof(struct acpi_smb_hc), GFP_KERNEL);
279 if (!hc)
280 return -ENOMEM;
281 mutex_init(&hc->lock);
282 init_waitqueue_head(&hc->wait);
283
284 hc->ec = acpi_driver_data(device->parent);
285 hc->offset = (val >> 8) & 0xff;
286 hc->query_bit = val & 0xff;
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700287 device->driver_data = hc;
Alexey Starikovskiy91087df2007-09-26 19:43:28 +0400288
289 acpi_ec_add_query_handler(hc->ec, hc->query_bit, NULL, smbus_alarm, hc);
290 printk(KERN_INFO PREFIX "SBS HC: EC = 0x%p, offset = 0x%0x, query_bit = 0x%0x\n",
291 hc->ec, hc->offset, hc->query_bit);
292
293 return 0;
294}
295
296extern void acpi_ec_remove_query_handler(struct acpi_ec *ec, u8 query_bit);
297
Rafael J. Wysocki51fac832013-01-24 00:24:48 +0100298static int acpi_smbus_hc_remove(struct acpi_device *device)
Alexey Starikovskiy91087df2007-09-26 19:43:28 +0400299{
300 struct acpi_smb_hc *hc;
301
302 if (!device)
303 return -EINVAL;
304
305 hc = acpi_driver_data(device);
306 acpi_ec_remove_query_handler(hc->ec, hc->query_bit);
307 kfree(hc);
Pavel Machekdb89b4f2008-09-22 14:37:34 -0700308 device->driver_data = NULL;
Alexey Starikovskiy91087df2007-09-26 19:43:28 +0400309 return 0;
310}
311
Mika Westerberge84a2392012-09-07 10:31:42 +0300312module_acpi_driver(acpi_smb_hc_driver);
Alexey Starikovskiy91087df2007-09-26 19:43:28 +0400313
314MODULE_LICENSE("GPL");
315MODULE_AUTHOR("Alexey Starikovskiy");
316MODULE_DESCRIPTION("ACPI SMBus HC driver");