2 * SMBus driver for ACPI Embedded Controller (v0.1)
4 * Copyright (c) 2007 Alexey Starikovskiy
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.
11 #include <linux/acpi.h>
12 #include <linux/wait.h>
13 #include <linux/slab.h>
14 #include <linux/delay.h>
15 #include <linux/module.h>
16 #include <linux/interrupt.h>
19 #define PREFIX "ACPI: "
21 #define ACPI_SMB_HC_CLASS "smbus_host_ctl"
22 #define ACPI_SMB_HC_DEVICE_NAME "ACPI SMBus HC"
27 wait_queue_head_t wait;
30 smbus_alarm_callback callback;
34 static int acpi_smbus_hc_add(struct acpi_device *device);
35 static int acpi_smbus_hc_remove(struct acpi_device *device);
37 static const struct acpi_device_id sbs_device_ids[] = {
43 MODULE_DEVICE_TABLE(acpi, sbs_device_ids);
45 static struct acpi_driver acpi_smb_hc_driver = {
47 .class = ACPI_SMB_HC_CLASS,
48 .ids = sbs_device_ids,
50 .add = acpi_smbus_hc_add,
51 .remove = acpi_smbus_hc_remove,
55 union acpi_smb_status {
65 enum acpi_smb_status_codes {
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,
74 SMBUS_HOST_UNSUPPORTED_PROTOCOL = 0x19,
76 SMBUS_PEC_ERROR = 0x1f,
79 enum 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 */
90 static inline int smb_hc_read(struct acpi_smb_hc *hc, u8 address, u8 *data)
92 return ec_read(hc->offset + address, data);
95 static inline int smb_hc_write(struct acpi_smb_hc *hc, u8 address, u8 data)
97 return ec_write(hc->offset + address, data);
100 static inline int smb_check_done(struct acpi_smb_hc *hc)
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);
107 static int wait_transaction_complete(struct acpi_smb_hc *hc, int timeout)
109 if (wait_event_timeout(hc->wait, smb_check_done(hc),
110 msecs_to_jiffies(timeout)))
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
117 if (smb_check_done(hc))
123 static int acpi_smbus_transaction(struct acpi_smb_hc *hc, u8 protocol,
124 u8 address, u8 command, u8 *data, u8 length)
126 int ret = -EFAULT, i;
130 printk(KERN_ERR PREFIX "host controller is not configured\n");
134 mutex_lock(&hc->lock);
135 if (smb_hc_read(hc, ACPI_SMB_PROTOCOL, &temp))
141 smb_hc_write(hc, ACPI_SMB_COMMAND, command);
142 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]);
147 smb_hc_write(hc, ACPI_SMB_ADDRESS, address << 1);
148 smb_hc_write(hc, ACPI_SMB_PROTOCOL, protocol);
150 * Wait for completion. Save the status code, data size,
151 * and data into the return package (if required by the protocol).
153 ret = wait_transaction_complete(hc, 1000);
154 if (ret || !(protocol & 0x01))
157 case SMBUS_RECEIVE_BYTE:
158 case SMBUS_READ_BYTE:
161 case SMBUS_READ_WORD:
164 case SMBUS_READ_BLOCK:
165 if (smb_hc_read(hc, ACPI_SMB_BLOCK_COUNT, &sz)) {
172 for (i = 0; i < sz; ++i)
173 smb_hc_read(hc, ACPI_SMB_DATA + i, &data[i]);
175 mutex_unlock(&hc->lock);
179 int acpi_smbus_read(struct acpi_smb_hc *hc, u8 protocol, u8 address,
180 u8 command, u8 *data)
182 return acpi_smbus_transaction(hc, protocol, address, command, data, 0);
185 EXPORT_SYMBOL_GPL(acpi_smbus_read);
187 int acpi_smbus_write(struct acpi_smb_hc *hc, u8 protocol, u8 address,
188 u8 command, u8 *data, u8 length)
190 return acpi_smbus_transaction(hc, protocol, address, command, data, length);
193 EXPORT_SYMBOL_GPL(acpi_smbus_write);
195 int acpi_smbus_register_callback(struct acpi_smb_hc *hc,
196 smbus_alarm_callback callback, void *context)
198 mutex_lock(&hc->lock);
199 hc->callback = callback;
200 hc->context = context;
201 mutex_unlock(&hc->lock);
205 EXPORT_SYMBOL_GPL(acpi_smbus_register_callback);
207 int acpi_smbus_unregister_callback(struct acpi_smb_hc *hc)
209 mutex_lock(&hc->lock);
212 mutex_unlock(&hc->lock);
216 EXPORT_SYMBOL_GPL(acpi_smbus_unregister_callback);
218 static inline void acpi_smbus_callback(void *context)
220 struct acpi_smb_hc *hc = context;
222 hc->callback(hc->context);
225 static int smbus_alarm(void *context)
227 struct acpi_smb_hc *hc = context;
228 union acpi_smb_status status;
230 if (smb_hc_read(hc, ACPI_SMB_STATUS, &status.raw))
232 /* Check if it is only a completion notify */
233 if (status.fields.done)
235 if (!status.fields.alarm)
237 mutex_lock(&hc->lock);
238 smb_hc_read(hc, ACPI_SMB_ALARM_ADDRESS, &address);
239 status.fields.alarm = 0;
240 smb_hc_write(hc, ACPI_SMB_STATUS, status.raw);
241 /* 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:
246 acpi_os_execute(OSL_NOTIFY_HANDLER,
247 acpi_smbus_callback, hc);
250 mutex_unlock(&hc->lock);
254 typedef int (*acpi_ec_query_func) (void *data);
256 extern int acpi_ec_add_query_handler(struct acpi_ec *ec, u8 query_bit,
257 acpi_handle handle, acpi_ec_query_func func,
260 static int acpi_smbus_hc_add(struct acpi_device *device)
263 unsigned long long val;
264 struct acpi_smb_hc *hc;
269 status = acpi_evaluate_integer(device->handle, "_EC", NULL, &val);
270 if (ACPI_FAILURE(status)) {
271 printk(KERN_ERR PREFIX "error obtaining _EC.\n");
275 strcpy(acpi_device_name(device), ACPI_SMB_HC_DEVICE_NAME);
276 strcpy(acpi_device_class(device), ACPI_SMB_HC_CLASS);
278 hc = kzalloc(sizeof(struct acpi_smb_hc), GFP_KERNEL);
281 mutex_init(&hc->lock);
282 init_waitqueue_head(&hc->wait);
284 hc->ec = acpi_driver_data(device->parent);
285 hc->offset = (val >> 8) & 0xff;
286 hc->query_bit = val & 0xff;
287 device->driver_data = hc;
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);
296 extern void acpi_ec_remove_query_handler(struct acpi_ec *ec, u8 query_bit);
298 static int acpi_smbus_hc_remove(struct acpi_device *device)
300 struct acpi_smb_hc *hc;
305 hc = acpi_driver_data(device);
306 acpi_ec_remove_query_handler(hc->ec, hc->query_bit);
308 device->driver_data = NULL;
312 module_acpi_driver(acpi_smb_hc_driver);
314 MODULE_LICENSE("GPL");
315 MODULE_AUTHOR("Alexey Starikovskiy");
316 MODULE_DESCRIPTION("ACPI SMBus HC driver");