2010-06-30 10:41:12 +02:00
|
|
|
/*
|
|
|
|
* Apple SMC controller
|
|
|
|
*
|
|
|
|
* Copyright (c) 2007 Alexander Graf
|
|
|
|
*
|
|
|
|
* Authors: Alexander Graf <agraf@suse.de>
|
|
|
|
* Susanne Graf <suse@csgraf.de>
|
|
|
|
*
|
|
|
|
* This library is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
|
|
* License as published by the Free Software Foundation; either
|
|
|
|
* version 2 of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This library is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
* Lesser General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
|
|
* License along with this library; if not, see <http://www.gnu.org/licenses/>.
|
|
|
|
*
|
|
|
|
* *****************************************************************
|
|
|
|
*
|
|
|
|
* In all Intel-based Apple hardware there is an SMC chip to control the
|
|
|
|
* backlight, fans and several other generic device parameters. It also
|
|
|
|
* contains the magic keys used to dongle Mac OS X to the device.
|
|
|
|
*
|
|
|
|
* This driver was mostly created by looking at the Linux AppleSMC driver
|
|
|
|
* implementation and does not support IRQ.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
2016-01-26 19:17:17 +01:00
|
|
|
#include "qemu/osdep.h"
|
2013-02-04 15:40:22 +01:00
|
|
|
#include "hw/hw.h"
|
2013-02-05 17:06:20 +01:00
|
|
|
#include "hw/isa/isa.h"
|
2012-11-28 12:06:30 +01:00
|
|
|
#include "ui/console.h"
|
2012-12-17 18:20:00 +01:00
|
|
|
#include "qemu/timer.h"
|
2010-06-30 10:41:12 +02:00
|
|
|
|
|
|
|
/* #define DEBUG_SMC */
|
|
|
|
|
|
|
|
#define APPLESMC_DEFAULT_IOBASE 0x300
|
|
|
|
|
2017-06-16 20:55:14 +02:00
|
|
|
enum {
|
|
|
|
APPLESMC_DATA_PORT = 0x00,
|
|
|
|
APPLESMC_CMD_PORT = 0x04,
|
2017-06-16 20:55:15 +02:00
|
|
|
APPLESMC_ERR_PORT = 0x1e,
|
2017-06-16 20:55:14 +02:00
|
|
|
APPLESMC_NUM_PORTS = 0x20,
|
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
|
|
|
APPLESMC_READ_CMD = 0x10,
|
|
|
|
APPLESMC_WRITE_CMD = 0x11,
|
|
|
|
APPLESMC_GET_KEY_BY_INDEX_CMD = 0x12,
|
|
|
|
APPLESMC_GET_KEY_TYPE_CMD = 0x13,
|
|
|
|
};
|
2010-06-30 10:41:12 +02:00
|
|
|
|
2017-06-16 20:55:15 +02:00
|
|
|
enum {
|
|
|
|
APPLESMC_ST_CMD_DONE = 0x00,
|
|
|
|
APPLESMC_ST_DATA_READY = 0x01,
|
|
|
|
APPLESMC_ST_BUSY = 0x02,
|
|
|
|
APPLESMC_ST_ACK = 0x04,
|
|
|
|
APPLESMC_ST_NEW_CMD = 0x08,
|
|
|
|
};
|
|
|
|
|
|
|
|
enum {
|
|
|
|
APPLESMC_ST_1E_CMD_INTRUPTED = 0x80,
|
|
|
|
APPLESMC_ST_1E_STILL_BAD_CMD = 0x81,
|
|
|
|
APPLESMC_ST_1E_BAD_CMD = 0x82,
|
|
|
|
APPLESMC_ST_1E_NOEXIST = 0x84,
|
|
|
|
APPLESMC_ST_1E_WRITEONLY = 0x85,
|
|
|
|
APPLESMC_ST_1E_READONLY = 0x86,
|
|
|
|
APPLESMC_ST_1E_BAD_INDEX = 0xb8,
|
|
|
|
};
|
|
|
|
|
2010-06-30 10:41:12 +02:00
|
|
|
#ifdef DEBUG_SMC
|
|
|
|
#define smc_debug(...) fprintf(stderr, "AppleSMC: " __VA_ARGS__)
|
|
|
|
#else
|
2017-06-16 20:55:14 +02:00
|
|
|
#define smc_debug(...) do { } while (0)
|
2010-06-30 10:41:12 +02:00
|
|
|
#endif
|
|
|
|
|
|
|
|
static char default_osk[64] = "This is a dummy key. Enter the real key "
|
|
|
|
"using the -osk parameter";
|
|
|
|
|
|
|
|
struct AppleSMCData {
|
|
|
|
uint8_t len;
|
|
|
|
const char *key;
|
|
|
|
const char *data;
|
|
|
|
QLIST_ENTRY(AppleSMCData) node;
|
|
|
|
};
|
|
|
|
|
2013-04-27 22:18:36 +02:00
|
|
|
#define APPLE_SMC(obj) OBJECT_CHECK(AppleSMCState, (obj), TYPE_APPLE_SMC)
|
|
|
|
|
|
|
|
typedef struct AppleSMCState AppleSMCState;
|
|
|
|
struct AppleSMCState {
|
|
|
|
ISADevice parent_obj;
|
|
|
|
|
2013-06-22 08:06:55 +02:00
|
|
|
MemoryRegion io_data;
|
|
|
|
MemoryRegion io_cmd;
|
2017-06-16 20:55:15 +02:00
|
|
|
MemoryRegion io_err;
|
2010-06-30 10:41:12 +02:00
|
|
|
uint32_t iobase;
|
|
|
|
uint8_t cmd;
|
|
|
|
uint8_t status;
|
2017-06-16 20:55:15 +02:00
|
|
|
uint8_t status_1e;
|
|
|
|
uint8_t last_ret;
|
2017-06-16 20:55:14 +02:00
|
|
|
char key[4];
|
2010-06-30 10:41:12 +02:00
|
|
|
uint8_t read_pos;
|
|
|
|
uint8_t data_len;
|
|
|
|
uint8_t data_pos;
|
|
|
|
uint8_t data[255];
|
|
|
|
char *osk;
|
|
|
|
QLIST_HEAD(, AppleSMCData) data_def;
|
|
|
|
};
|
|
|
|
|
2013-06-22 08:06:55 +02:00
|
|
|
static void applesmc_io_cmd_write(void *opaque, hwaddr addr, uint64_t val,
|
|
|
|
unsigned size)
|
2010-06-30 10:41:12 +02:00
|
|
|
{
|
2013-04-27 22:18:36 +02:00
|
|
|
AppleSMCState *s = opaque;
|
2017-06-16 20:55:15 +02:00
|
|
|
uint8_t status = s->status & 0x0f;
|
2010-06-30 10:41:12 +02:00
|
|
|
|
2017-06-16 20:55:15 +02:00
|
|
|
smc_debug("CMD received: 0x%02x\n", (uint8_t)val);
|
2017-06-16 20:55:14 +02:00
|
|
|
switch (val) {
|
|
|
|
case APPLESMC_READ_CMD:
|
2017-06-16 20:55:15 +02:00
|
|
|
/* did last command run through OK? */
|
|
|
|
if (status == APPLESMC_ST_CMD_DONE || status == APPLESMC_ST_NEW_CMD) {
|
|
|
|
s->cmd = val;
|
|
|
|
s->status = APPLESMC_ST_NEW_CMD | APPLESMC_ST_ACK;
|
|
|
|
} else {
|
|
|
|
smc_debug("ERROR: previous command interrupted!\n");
|
|
|
|
s->status = APPLESMC_ST_NEW_CMD;
|
|
|
|
s->status_1e = APPLESMC_ST_1E_CMD_INTRUPTED;
|
|
|
|
}
|
2017-06-16 20:55:14 +02:00
|
|
|
break;
|
2017-06-16 20:55:15 +02:00
|
|
|
default:
|
|
|
|
smc_debug("UNEXPECTED CMD 0x%02x\n", (uint8_t)val);
|
|
|
|
s->status = APPLESMC_ST_NEW_CMD;
|
|
|
|
s->status_1e = APPLESMC_ST_1E_BAD_CMD;
|
2010-06-30 10:41:12 +02:00
|
|
|
}
|
|
|
|
s->read_pos = 0;
|
|
|
|
s->data_pos = 0;
|
|
|
|
}
|
|
|
|
|
2017-06-16 20:55:15 +02:00
|
|
|
static struct AppleSMCData *applesmc_find_key(AppleSMCState *s)
|
2010-06-30 10:41:12 +02:00
|
|
|
{
|
|
|
|
struct AppleSMCData *d;
|
|
|
|
|
|
|
|
QLIST_FOREACH(d, &s->data_def, node) {
|
|
|
|
if (!memcmp(d->key, s->key, 4)) {
|
2017-06-16 20:55:15 +02:00
|
|
|
return d;
|
2010-06-30 10:41:12 +02:00
|
|
|
}
|
|
|
|
}
|
2017-06-16 20:55:15 +02:00
|
|
|
return NULL;
|
2010-06-30 10:41:12 +02:00
|
|
|
}
|
|
|
|
|
2013-06-22 08:06:55 +02:00
|
|
|
static void applesmc_io_data_write(void *opaque, hwaddr addr, uint64_t val,
|
|
|
|
unsigned size)
|
2010-06-30 10:41:12 +02:00
|
|
|
{
|
2013-04-27 22:18:36 +02:00
|
|
|
AppleSMCState *s = opaque;
|
2017-06-16 20:55:15 +02:00
|
|
|
struct AppleSMCData *d;
|
2010-06-30 10:41:12 +02:00
|
|
|
|
2017-06-16 20:55:15 +02:00
|
|
|
smc_debug("DATA received: 0x%02x\n", (uint8_t)val);
|
2017-06-16 20:55:14 +02:00
|
|
|
switch (s->cmd) {
|
|
|
|
case APPLESMC_READ_CMD:
|
2017-06-16 20:55:15 +02:00
|
|
|
if ((s->status & 0x0f) == APPLESMC_ST_CMD_DONE) {
|
|
|
|
break;
|
|
|
|
}
|
2017-06-16 20:55:14 +02:00
|
|
|
if (s->read_pos < 4) {
|
|
|
|
s->key[s->read_pos] = val;
|
2017-06-16 20:55:15 +02:00
|
|
|
s->status = APPLESMC_ST_ACK;
|
2017-06-16 20:55:14 +02:00
|
|
|
} else if (s->read_pos == 4) {
|
2017-06-16 20:55:15 +02:00
|
|
|
d = applesmc_find_key(s);
|
|
|
|
if (d != NULL) {
|
|
|
|
memcpy(s->data, d->data, d->len);
|
|
|
|
s->data_len = d->len;
|
|
|
|
s->data_pos = 0;
|
|
|
|
s->status = APPLESMC_ST_ACK | APPLESMC_ST_DATA_READY;
|
|
|
|
s->status_1e = APPLESMC_ST_CMD_DONE; /* clear on valid key */
|
|
|
|
} else {
|
|
|
|
smc_debug("READ_CMD: key '%c%c%c%c' not found!\n",
|
|
|
|
s->key[0], s->key[1], s->key[2], s->key[3]);
|
|
|
|
s->status = APPLESMC_ST_CMD_DONE;
|
|
|
|
s->status_1e = APPLESMC_ST_1E_NOEXIST;
|
|
|
|
}
|
2017-06-16 20:55:14 +02:00
|
|
|
}
|
|
|
|
s->read_pos++;
|
|
|
|
break;
|
2017-06-16 20:55:15 +02:00
|
|
|
default:
|
|
|
|
s->status = APPLESMC_ST_CMD_DONE;
|
|
|
|
s->status_1e = APPLESMC_ST_1E_STILL_BAD_CMD;
|
2010-06-30 10:41:12 +02:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2017-06-16 20:55:15 +02:00
|
|
|
static void applesmc_io_err_write(void *opaque, hwaddr addr, uint64_t val,
|
|
|
|
unsigned size)
|
|
|
|
{
|
|
|
|
smc_debug("ERR_CODE received: 0x%02x, ignoring!\n", (uint8_t)val);
|
|
|
|
/* NOTE: writing to the error port not supported! */
|
|
|
|
}
|
|
|
|
|
2017-06-16 20:55:14 +02:00
|
|
|
static uint64_t applesmc_io_data_read(void *opaque, hwaddr addr, unsigned size)
|
2010-06-30 10:41:12 +02:00
|
|
|
{
|
2013-04-27 22:18:36 +02:00
|
|
|
AppleSMCState *s = opaque;
|
2010-06-30 10:41:12 +02:00
|
|
|
|
2017-06-16 20:55:14 +02:00
|
|
|
switch (s->cmd) {
|
|
|
|
case APPLESMC_READ_CMD:
|
2017-06-16 20:55:15 +02:00
|
|
|
if (!(s->status & APPLESMC_ST_DATA_READY)) {
|
|
|
|
break;
|
|
|
|
}
|
2017-06-16 20:55:14 +02:00
|
|
|
if (s->data_pos < s->data_len) {
|
2017-06-16 20:55:15 +02:00
|
|
|
s->last_ret = s->data[s->data_pos];
|
|
|
|
smc_debug("READ '%c%c%c%c'[%d] = %02x\n",
|
|
|
|
s->key[0], s->key[1], s->key[2], s->key[3],
|
|
|
|
s->data_pos, s->last_ret);
|
2017-06-16 20:55:14 +02:00
|
|
|
s->data_pos++;
|
|
|
|
if (s->data_pos == s->data_len) {
|
2017-06-16 20:55:15 +02:00
|
|
|
s->status = APPLESMC_ST_CMD_DONE;
|
|
|
|
smc_debug("READ '%c%c%c%c' Len=%d complete!\n",
|
|
|
|
s->key[0], s->key[1], s->key[2], s->key[3],
|
|
|
|
s->data_len);
|
2017-06-16 20:55:14 +02:00
|
|
|
} else {
|
2017-06-16 20:55:15 +02:00
|
|
|
s->status = APPLESMC_ST_ACK | APPLESMC_ST_DATA_READY;
|
2010-06-30 10:41:12 +02:00
|
|
|
}
|
2017-06-16 20:55:14 +02:00
|
|
|
}
|
2017-06-16 20:55:15 +02:00
|
|
|
break;
|
|
|
|
default:
|
|
|
|
s->status = APPLESMC_ST_CMD_DONE;
|
|
|
|
s->status_1e = APPLESMC_ST_1E_STILL_BAD_CMD;
|
2010-06-30 10:41:12 +02:00
|
|
|
}
|
2017-06-16 20:55:15 +02:00
|
|
|
smc_debug("DATA sent: 0x%02x\n", s->last_ret);
|
2010-06-30 10:41:12 +02:00
|
|
|
|
2017-06-16 20:55:15 +02:00
|
|
|
return s->last_ret;
|
2010-06-30 10:41:12 +02:00
|
|
|
}
|
|
|
|
|
2017-06-16 20:55:14 +02:00
|
|
|
static uint64_t applesmc_io_cmd_read(void *opaque, hwaddr addr, unsigned size)
|
2010-06-30 10:41:12 +02:00
|
|
|
{
|
2013-04-27 22:18:36 +02:00
|
|
|
AppleSMCState *s = opaque;
|
2010-06-30 10:41:12 +02:00
|
|
|
|
2017-06-16 20:55:15 +02:00
|
|
|
smc_debug("CMD sent: 0x%02x\n", s->status);
|
2010-06-30 10:41:12 +02:00
|
|
|
return s->status;
|
|
|
|
}
|
|
|
|
|
2017-06-16 20:55:15 +02:00
|
|
|
static uint64_t applesmc_io_err_read(void *opaque, hwaddr addr, unsigned size)
|
|
|
|
{
|
|
|
|
AppleSMCState *s = opaque;
|
|
|
|
|
|
|
|
/* NOTE: read does not clear the 1e status */
|
|
|
|
smc_debug("ERR_CODE sent: 0x%02x\n", s->status_1e);
|
|
|
|
return s->status_1e;
|
|
|
|
}
|
|
|
|
|
2013-04-27 22:18:36 +02:00
|
|
|
static void applesmc_add_key(AppleSMCState *s, const char *key,
|
2010-06-30 10:41:12 +02:00
|
|
|
int len, const char *data)
|
|
|
|
{
|
|
|
|
struct AppleSMCData *def;
|
|
|
|
|
2011-08-21 05:09:37 +02:00
|
|
|
def = g_malloc0(sizeof(struct AppleSMCData));
|
2010-06-30 10:41:12 +02:00
|
|
|
def->key = key;
|
|
|
|
def->len = len;
|
|
|
|
def->data = data;
|
|
|
|
|
|
|
|
QLIST_INSERT_HEAD(&s->data_def, def, node);
|
|
|
|
}
|
|
|
|
|
|
|
|
static void qdev_applesmc_isa_reset(DeviceState *dev)
|
|
|
|
{
|
2013-04-27 22:18:36 +02:00
|
|
|
AppleSMCState *s = APPLE_SMC(dev);
|
2010-06-30 10:41:12 +02:00
|
|
|
struct AppleSMCData *d, *next;
|
|
|
|
|
|
|
|
/* Remove existing entries */
|
|
|
|
QLIST_FOREACH_SAFE(d, &s->data_def, node, next) {
|
|
|
|
QLIST_REMOVE(d, node);
|
|
|
|
}
|
2017-06-16 20:55:15 +02:00
|
|
|
s->status = 0x00;
|
|
|
|
s->status_1e = 0x00;
|
|
|
|
s->last_ret = 0x00;
|
2010-06-30 10:41:12 +02:00
|
|
|
|
2011-03-21 11:33:21 +01:00
|
|
|
applesmc_add_key(s, "REV ", 6, "\x01\x13\x0f\x00\x00\x03");
|
2010-06-30 10:41:12 +02:00
|
|
|
applesmc_add_key(s, "OSK0", 32, s->osk);
|
|
|
|
applesmc_add_key(s, "OSK1", 32, s->osk + 32);
|
|
|
|
applesmc_add_key(s, "NATJ", 1, "\0");
|
|
|
|
applesmc_add_key(s, "MSSP", 1, "\0");
|
|
|
|
applesmc_add_key(s, "MSSD", 1, "\0x3");
|
|
|
|
}
|
|
|
|
|
2013-06-22 08:06:55 +02:00
|
|
|
static const MemoryRegionOps applesmc_data_io_ops = {
|
|
|
|
.write = applesmc_io_data_write,
|
|
|
|
.read = applesmc_io_data_read,
|
|
|
|
.endianness = DEVICE_NATIVE_ENDIAN,
|
|
|
|
.impl = {
|
|
|
|
.min_access_size = 1,
|
|
|
|
.max_access_size = 1,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
|
|
|
static const MemoryRegionOps applesmc_cmd_io_ops = {
|
|
|
|
.write = applesmc_io_cmd_write,
|
|
|
|
.read = applesmc_io_cmd_read,
|
|
|
|
.endianness = DEVICE_NATIVE_ENDIAN,
|
|
|
|
.impl = {
|
|
|
|
.min_access_size = 1,
|
|
|
|
.max_access_size = 1,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2017-06-16 20:55:15 +02:00
|
|
|
static const MemoryRegionOps applesmc_err_io_ops = {
|
|
|
|
.write = applesmc_io_err_write,
|
|
|
|
.read = applesmc_io_err_read,
|
|
|
|
.endianness = DEVICE_NATIVE_ENDIAN,
|
|
|
|
.impl = {
|
|
|
|
.min_access_size = 1,
|
|
|
|
.max_access_size = 1,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
|
2012-11-25 02:37:14 +01:00
|
|
|
static void applesmc_isa_realize(DeviceState *dev, Error **errp)
|
2010-06-30 10:41:12 +02:00
|
|
|
{
|
2013-04-27 22:18:36 +02:00
|
|
|
AppleSMCState *s = APPLE_SMC(dev);
|
2010-06-30 10:41:12 +02:00
|
|
|
|
2013-06-07 03:25:08 +02:00
|
|
|
memory_region_init_io(&s->io_data, OBJECT(s), &applesmc_data_io_ops, s,
|
2017-06-16 20:55:16 +02:00
|
|
|
"applesmc-data", 1);
|
2013-06-22 08:06:55 +02:00
|
|
|
isa_register_ioport(&s->parent_obj, &s->io_data,
|
|
|
|
s->iobase + APPLESMC_DATA_PORT);
|
|
|
|
|
2013-06-07 03:25:08 +02:00
|
|
|
memory_region_init_io(&s->io_cmd, OBJECT(s), &applesmc_cmd_io_ops, s,
|
2017-06-16 20:55:16 +02:00
|
|
|
"applesmc-cmd", 1);
|
2013-06-22 08:06:55 +02:00
|
|
|
isa_register_ioport(&s->parent_obj, &s->io_cmd,
|
|
|
|
s->iobase + APPLESMC_CMD_PORT);
|
2010-06-30 10:41:12 +02:00
|
|
|
|
2017-06-16 20:55:15 +02:00
|
|
|
memory_region_init_io(&s->io_err, OBJECT(s), &applesmc_err_io_ops, s,
|
|
|
|
"applesmc-err", 1);
|
|
|
|
isa_register_ioport(&s->parent_obj, &s->io_err,
|
|
|
|
s->iobase + APPLESMC_ERR_PORT);
|
|
|
|
|
2010-06-30 10:41:12 +02:00
|
|
|
if (!s->osk || (strlen(s->osk) != 64)) {
|
|
|
|
fprintf(stderr, "WARNING: Using AppleSMC with invalid key\n");
|
|
|
|
s->osk = default_osk;
|
|
|
|
}
|
|
|
|
|
|
|
|
QLIST_INIT(&s->data_def);
|
2012-11-25 02:37:14 +01:00
|
|
|
qdev_applesmc_isa_reset(dev);
|
2010-06-30 10:41:12 +02:00
|
|
|
}
|
|
|
|
|
2011-12-08 04:34:16 +01:00
|
|
|
static Property applesmc_isa_properties[] = {
|
2015-02-20 19:22:11 +01:00
|
|
|
DEFINE_PROP_UINT32(APPLESMC_PROP_IO_BASE, AppleSMCState, iobase,
|
|
|
|
APPLESMC_DEFAULT_IOBASE),
|
2013-04-27 22:18:36 +02:00
|
|
|
DEFINE_PROP_STRING("osk", AppleSMCState, osk),
|
2011-12-08 04:34:16 +01:00
|
|
|
DEFINE_PROP_END_OF_LIST(),
|
|
|
|
};
|
|
|
|
|
2011-12-04 18:52:49 +01:00
|
|
|
static void qdev_applesmc_class_init(ObjectClass *klass, void *data)
|
|
|
|
{
|
2011-12-08 04:34:16 +01:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(klass);
|
2012-11-25 02:37:14 +01:00
|
|
|
|
|
|
|
dc->realize = applesmc_isa_realize;
|
2011-12-08 04:34:16 +01:00
|
|
|
dc->reset = qdev_applesmc_isa_reset;
|
|
|
|
dc->props = applesmc_isa_properties;
|
2013-07-29 16:17:45 +02:00
|
|
|
set_bit(DEVICE_CATEGORY_MISC, dc->categories);
|
2011-12-04 18:52:49 +01:00
|
|
|
}
|
|
|
|
|
2013-01-10 16:19:07 +01:00
|
|
|
static const TypeInfo applesmc_isa_info = {
|
2013-04-27 22:18:36 +02:00
|
|
|
.name = TYPE_APPLE_SMC,
|
2011-12-08 04:34:16 +01:00
|
|
|
.parent = TYPE_ISA_DEVICE,
|
2013-04-27 22:18:36 +02:00
|
|
|
.instance_size = sizeof(AppleSMCState),
|
2011-12-08 04:34:16 +01:00
|
|
|
.class_init = qdev_applesmc_class_init,
|
2010-06-30 10:41:12 +02:00
|
|
|
};
|
|
|
|
|
2012-02-09 15:20:55 +01:00
|
|
|
static void applesmc_register_types(void)
|
2010-06-30 10:41:12 +02:00
|
|
|
{
|
2011-12-08 04:34:16 +01:00
|
|
|
type_register_static(&applesmc_isa_info);
|
2010-06-30 10:41:12 +02:00
|
|
|
}
|
|
|
|
|
2012-02-09 15:20:55 +01:00
|
|
|
type_init(applesmc_register_types)
|