4 * Copyright (c) 2007 Alexander Graf
9 * This library is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2 of the License, or (at your option) any later version.
14 * This library is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with this library; if not, see <http://www.gnu.org/licenses/>.
22 * *****************************************************************
24 * In all Intel-based Apple hardware there is an SMC chip to control the
25 * backlight, fans and several other generic device parameters. It also
26 * contains the magic keys used to dongle Mac OS X to the device.
28 * This driver was mostly created by looking at the Linux AppleSMC driver
29 * implementation and does not support IRQ.
33 #include "qemu/osdep.h"
34 #include "hw/isa/isa.h"
35 #include "hw/qdev-properties.h"
36 #include "ui/console.h"
37 #include "qemu/module.h"
38 #include "qemu/timer.h"
40 /* #define DEBUG_SMC */
42 #define APPLESMC_DEFAULT_IOBASE 0x300
45 APPLESMC_DATA_PORT = 0x00,
46 APPLESMC_CMD_PORT = 0x04,
47 APPLESMC_ERR_PORT = 0x1e,
48 APPLESMC_NUM_PORTS = 0x20,
52 APPLESMC_READ_CMD = 0x10,
53 APPLESMC_WRITE_CMD = 0x11,
54 APPLESMC_GET_KEY_BY_INDEX_CMD = 0x12,
55 APPLESMC_GET_KEY_TYPE_CMD = 0x13,
59 APPLESMC_ST_CMD_DONE = 0x00,
60 APPLESMC_ST_DATA_READY = 0x01,
61 APPLESMC_ST_BUSY = 0x02,
62 APPLESMC_ST_ACK = 0x04,
63 APPLESMC_ST_NEW_CMD = 0x08,
67 APPLESMC_ST_1E_CMD_INTRUPTED = 0x80,
68 APPLESMC_ST_1E_STILL_BAD_CMD = 0x81,
69 APPLESMC_ST_1E_BAD_CMD = 0x82,
70 APPLESMC_ST_1E_NOEXIST = 0x84,
71 APPLESMC_ST_1E_WRITEONLY = 0x85,
72 APPLESMC_ST_1E_READONLY = 0x86,
73 APPLESMC_ST_1E_BAD_INDEX = 0xb8,
77 #define smc_debug(...) fprintf(stderr, "AppleSMC: " __VA_ARGS__)
79 #define smc_debug(...) do { } while (0)
82 static char default_osk[64] = "This is a dummy key. Enter the real key "
83 "using the -osk parameter";
89 QLIST_ENTRY(AppleSMCData) node;
92 #define APPLE_SMC(obj) OBJECT_CHECK(AppleSMCState, (obj), TYPE_APPLE_SMC)
94 typedef struct AppleSMCState AppleSMCState;
95 struct AppleSMCState {
112 QLIST_HEAD(, AppleSMCData) data_def;
115 static void applesmc_io_cmd_write(void *opaque, hwaddr addr, uint64_t val,
118 AppleSMCState *s = opaque;
119 uint8_t status = s->status & 0x0f;
121 smc_debug("CMD received: 0x%02x\n", (uint8_t)val);
123 case APPLESMC_READ_CMD:
124 /* did last command run through OK? */
125 if (status == APPLESMC_ST_CMD_DONE || status == APPLESMC_ST_NEW_CMD) {
127 s->status = APPLESMC_ST_NEW_CMD | APPLESMC_ST_ACK;
129 smc_debug("ERROR: previous command interrupted!\n");
130 s->status = APPLESMC_ST_NEW_CMD;
131 s->status_1e = APPLESMC_ST_1E_CMD_INTRUPTED;
135 smc_debug("UNEXPECTED CMD 0x%02x\n", (uint8_t)val);
136 s->status = APPLESMC_ST_NEW_CMD;
137 s->status_1e = APPLESMC_ST_1E_BAD_CMD;
143 static struct AppleSMCData *applesmc_find_key(AppleSMCState *s)
145 struct AppleSMCData *d;
147 QLIST_FOREACH(d, &s->data_def, node) {
148 if (!memcmp(d->key, s->key, 4)) {
155 static void applesmc_io_data_write(void *opaque, hwaddr addr, uint64_t val,
158 AppleSMCState *s = opaque;
159 struct AppleSMCData *d;
161 smc_debug("DATA received: 0x%02x\n", (uint8_t)val);
163 case APPLESMC_READ_CMD:
164 if ((s->status & 0x0f) == APPLESMC_ST_CMD_DONE) {
167 if (s->read_pos < 4) {
168 s->key[s->read_pos] = val;
169 s->status = APPLESMC_ST_ACK;
170 } else if (s->read_pos == 4) {
171 d = applesmc_find_key(s);
173 memcpy(s->data, d->data, d->len);
174 s->data_len = d->len;
176 s->status = APPLESMC_ST_ACK | APPLESMC_ST_DATA_READY;
177 s->status_1e = APPLESMC_ST_CMD_DONE; /* clear on valid key */
179 smc_debug("READ_CMD: key '%c%c%c%c' not found!\n",
180 s->key[0], s->key[1], s->key[2], s->key[3]);
181 s->status = APPLESMC_ST_CMD_DONE;
182 s->status_1e = APPLESMC_ST_1E_NOEXIST;
188 s->status = APPLESMC_ST_CMD_DONE;
189 s->status_1e = APPLESMC_ST_1E_STILL_BAD_CMD;
193 static void applesmc_io_err_write(void *opaque, hwaddr addr, uint64_t val,
196 smc_debug("ERR_CODE received: 0x%02x, ignoring!\n", (uint8_t)val);
197 /* NOTE: writing to the error port not supported! */
200 static uint64_t applesmc_io_data_read(void *opaque, hwaddr addr, unsigned size)
202 AppleSMCState *s = opaque;
205 case APPLESMC_READ_CMD:
206 if (!(s->status & APPLESMC_ST_DATA_READY)) {
209 if (s->data_pos < s->data_len) {
210 s->last_ret = s->data[s->data_pos];
211 smc_debug("READ '%c%c%c%c'[%d] = %02x\n",
212 s->key[0], s->key[1], s->key[2], s->key[3],
213 s->data_pos, s->last_ret);
215 if (s->data_pos == s->data_len) {
216 s->status = APPLESMC_ST_CMD_DONE;
217 smc_debug("READ '%c%c%c%c' Len=%d complete!\n",
218 s->key[0], s->key[1], s->key[2], s->key[3],
221 s->status = APPLESMC_ST_ACK | APPLESMC_ST_DATA_READY;
226 s->status = APPLESMC_ST_CMD_DONE;
227 s->status_1e = APPLESMC_ST_1E_STILL_BAD_CMD;
229 smc_debug("DATA sent: 0x%02x\n", s->last_ret);
234 static uint64_t applesmc_io_cmd_read(void *opaque, hwaddr addr, unsigned size)
236 AppleSMCState *s = opaque;
238 smc_debug("CMD sent: 0x%02x\n", s->status);
242 static uint64_t applesmc_io_err_read(void *opaque, hwaddr addr, unsigned size)
244 AppleSMCState *s = opaque;
246 /* NOTE: read does not clear the 1e status */
247 smc_debug("ERR_CODE sent: 0x%02x\n", s->status_1e);
251 static void applesmc_add_key(AppleSMCState *s, const char *key,
252 int len, const char *data)
254 struct AppleSMCData *def;
256 def = g_malloc0(sizeof(struct AppleSMCData));
261 QLIST_INSERT_HEAD(&s->data_def, def, node);
264 static void qdev_applesmc_isa_reset(DeviceState *dev)
266 AppleSMCState *s = APPLE_SMC(dev);
267 struct AppleSMCData *d, *next;
269 /* Remove existing entries */
270 QLIST_FOREACH_SAFE(d, &s->data_def, node, next) {
271 QLIST_REMOVE(d, node);
277 applesmc_add_key(s, "REV ", 6, "\x01\x13\x0f\x00\x00\x03");
278 applesmc_add_key(s, "OSK0", 32, s->osk);
279 applesmc_add_key(s, "OSK1", 32, s->osk + 32);
280 applesmc_add_key(s, "NATJ", 1, "\0");
281 applesmc_add_key(s, "MSSP", 1, "\0");
282 applesmc_add_key(s, "MSSD", 1, "\0x3");
285 static const MemoryRegionOps applesmc_data_io_ops = {
286 .write = applesmc_io_data_write,
287 .read = applesmc_io_data_read,
288 .endianness = DEVICE_NATIVE_ENDIAN,
290 .min_access_size = 1,
291 .max_access_size = 1,
295 static const MemoryRegionOps applesmc_cmd_io_ops = {
296 .write = applesmc_io_cmd_write,
297 .read = applesmc_io_cmd_read,
298 .endianness = DEVICE_NATIVE_ENDIAN,
300 .min_access_size = 1,
301 .max_access_size = 1,
305 static const MemoryRegionOps applesmc_err_io_ops = {
306 .write = applesmc_io_err_write,
307 .read = applesmc_io_err_read,
308 .endianness = DEVICE_NATIVE_ENDIAN,
310 .min_access_size = 1,
311 .max_access_size = 1,
315 static void applesmc_isa_realize(DeviceState *dev, Error **errp)
317 AppleSMCState *s = APPLE_SMC(dev);
319 memory_region_init_io(&s->io_data, OBJECT(s), &applesmc_data_io_ops, s,
321 isa_register_ioport(&s->parent_obj, &s->io_data,
322 s->iobase + APPLESMC_DATA_PORT);
324 memory_region_init_io(&s->io_cmd, OBJECT(s), &applesmc_cmd_io_ops, s,
326 isa_register_ioport(&s->parent_obj, &s->io_cmd,
327 s->iobase + APPLESMC_CMD_PORT);
329 memory_region_init_io(&s->io_err, OBJECT(s), &applesmc_err_io_ops, s,
331 isa_register_ioport(&s->parent_obj, &s->io_err,
332 s->iobase + APPLESMC_ERR_PORT);
334 if (!s->osk || (strlen(s->osk) != 64)) {
335 warn_report("Using AppleSMC with invalid key");
336 s->osk = default_osk;
339 QLIST_INIT(&s->data_def);
340 qdev_applesmc_isa_reset(dev);
343 static Property applesmc_isa_properties[] = {
344 DEFINE_PROP_UINT32(APPLESMC_PROP_IO_BASE, AppleSMCState, iobase,
345 APPLESMC_DEFAULT_IOBASE),
346 DEFINE_PROP_STRING("osk", AppleSMCState, osk),
347 DEFINE_PROP_END_OF_LIST(),
350 static void qdev_applesmc_class_init(ObjectClass *klass, void *data)
352 DeviceClass *dc = DEVICE_CLASS(klass);
354 dc->realize = applesmc_isa_realize;
355 dc->reset = qdev_applesmc_isa_reset;
356 device_class_set_props(dc, applesmc_isa_properties);
357 set_bit(DEVICE_CATEGORY_MISC, dc->categories);
360 static const TypeInfo applesmc_isa_info = {
361 .name = TYPE_APPLE_SMC,
362 .parent = TYPE_ISA_DEVICE,
363 .instance_size = sizeof(AppleSMCState),
364 .class_init = qdev_applesmc_class_init,
367 static void applesmc_register_types(void)
369 type_register_static(&applesmc_isa_info);
372 type_init(applesmc_register_types)