mirror of https://github.com/xemu-project/xemu.git
-----BEGIN PGP SIGNATURE-----
Version: GnuPG v2.0.22 (GNU/Linux) iQIcBAABAgAGBQJZTQ4EAAoJEEy22O7T6HE4wJsP/3Mx0qoRzJGb0xX94IvE/Si9 2k7iRmfhQ4SmyO+ZsVPHn+EBRuXZzVIOmWTHJZkLi4u+tSroZRh11CEI3u3K/95v 8K9FJd5rWGacNOzlo0IhscZ1wKYSMbdGwnGyeWSdA3lHQhcu1GS62PmYjuBXlEKX hRSO8a5bUPSfC8K4/79nm5TJuLoAA6mv5eK0f8W1jift0ORBl065Uhf7am7oO3Z2 wBSmf8klMMWbITGFLxffhS1bfOrLMzeJxfBSvo/qimKUsd5sdrEG+sHcaj3YUcrl s+mH+xwxycYrz+3vq8xG3q1zFxoSzz4fLF+oYka8WvZTpg8+PrT8mzM1Th8hEhJL ci0RDQmWT7LktlO1DLeGLQc3HjizTnxA5CRm9XNEX+geboVfT42Qv2wSk4xHqWKU CEGOVi/YsqfmzHzup+TLaLlh34CwvbEhRY7RjR+K+kshVNAuNw44Gu+ER1l16xap 5+A3JroOGH+YYpF813osFjufT3O1uNhf6BjVWrx7NzjIhNjQtvVfTe6op8/PY9Ad 4q8noaaZUJs2if6atjCmhoyhdWp1kKoozxLZpCoAfTzxZinV7Azs9+tKw5y337jk lNmjjh+237Z+bne02VSj3KX7bRkM2UJu0xpp7/zCWyPKzeefZ6kaZTyuNYj49I5T efep4Aiy+etzq8Np2BIn =v3CI -----END PGP SIGNATURE----- Merge remote-tracking branch 'remotes/kraxel/tags/queue/misc-pull-request' into staging # gpg: Signature made Fri 23 Jun 2017 13:48:04 BST # gpg: using RSA key 0x4CB6D8EED3E87138 # gpg: Good signature from "Gerd Hoffmann (work) <kraxel@redhat.com>" # gpg: aka "Gerd Hoffmann <gerd@kraxel.org>" # gpg: aka "Gerd Hoffmann (private) <kraxel@gmail.com>" # Primary key fingerprint: A032 8CFF B93A 17A7 9901 FE7D 4CB6 D8EE D3E8 7138 * remotes/kraxel/tags/queue/misc-pull-request: applesmc: fix port i/o access width applesmc: implement error status port applesmc: cosmetic whitespace and indentation cleanup Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
This commit is contained in:
commit
e499ff0707
|
@ -39,21 +39,43 @@
|
||||||
/* #define DEBUG_SMC */
|
/* #define DEBUG_SMC */
|
||||||
|
|
||||||
#define APPLESMC_DEFAULT_IOBASE 0x300
|
#define APPLESMC_DEFAULT_IOBASE 0x300
|
||||||
/* data port used by Apple SMC */
|
|
||||||
#define APPLESMC_DATA_PORT 0x0
|
|
||||||
/* command/status port used by Apple SMC */
|
|
||||||
#define APPLESMC_CMD_PORT 0x4
|
|
||||||
#define APPLESMC_NR_PORTS 32
|
|
||||||
|
|
||||||
#define APPLESMC_READ_CMD 0x10
|
enum {
|
||||||
#define APPLESMC_WRITE_CMD 0x11
|
APPLESMC_DATA_PORT = 0x00,
|
||||||
#define APPLESMC_GET_KEY_BY_INDEX_CMD 0x12
|
APPLESMC_CMD_PORT = 0x04,
|
||||||
#define APPLESMC_GET_KEY_TYPE_CMD 0x13
|
APPLESMC_ERR_PORT = 0x1e,
|
||||||
|
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,
|
||||||
|
};
|
||||||
|
|
||||||
|
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,
|
||||||
|
};
|
||||||
|
|
||||||
#ifdef DEBUG_SMC
|
#ifdef DEBUG_SMC
|
||||||
#define smc_debug(...) fprintf(stderr, "AppleSMC: " __VA_ARGS__)
|
#define smc_debug(...) fprintf(stderr, "AppleSMC: " __VA_ARGS__)
|
||||||
#else
|
#else
|
||||||
#define smc_debug(...) do { } while(0)
|
#define smc_debug(...) do { } while (0)
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
static char default_osk[64] = "This is a dummy key. Enter the real key "
|
static char default_osk[64] = "This is a dummy key. Enter the real key "
|
||||||
|
@ -74,15 +96,17 @@ struct AppleSMCState {
|
||||||
|
|
||||||
MemoryRegion io_data;
|
MemoryRegion io_data;
|
||||||
MemoryRegion io_cmd;
|
MemoryRegion io_cmd;
|
||||||
|
MemoryRegion io_err;
|
||||||
uint32_t iobase;
|
uint32_t iobase;
|
||||||
uint8_t cmd;
|
uint8_t cmd;
|
||||||
uint8_t status;
|
uint8_t status;
|
||||||
uint8_t key[4];
|
uint8_t status_1e;
|
||||||
|
uint8_t last_ret;
|
||||||
|
char key[4];
|
||||||
uint8_t read_pos;
|
uint8_t read_pos;
|
||||||
uint8_t data_len;
|
uint8_t data_len;
|
||||||
uint8_t data_pos;
|
uint8_t data_pos;
|
||||||
uint8_t data[255];
|
uint8_t data[255];
|
||||||
uint8_t charactic[4];
|
|
||||||
char *osk;
|
char *osk;
|
||||||
QLIST_HEAD(, AppleSMCData) data_def;
|
QLIST_HEAD(, AppleSMCData) data_def;
|
||||||
};
|
};
|
||||||
|
@ -91,89 +115,138 @@ static void applesmc_io_cmd_write(void *opaque, hwaddr addr, uint64_t val,
|
||||||
unsigned size)
|
unsigned size)
|
||||||
{
|
{
|
||||||
AppleSMCState *s = opaque;
|
AppleSMCState *s = opaque;
|
||||||
|
uint8_t status = s->status & 0x0f;
|
||||||
|
|
||||||
smc_debug("CMD Write B: %#x = %#x\n", addr, val);
|
smc_debug("CMD received: 0x%02x\n", (uint8_t)val);
|
||||||
switch(val) {
|
switch (val) {
|
||||||
case APPLESMC_READ_CMD:
|
case APPLESMC_READ_CMD:
|
||||||
s->status = 0x0c;
|
/* did last command run through OK? */
|
||||||
break;
|
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;
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
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;
|
||||||
}
|
}
|
||||||
s->cmd = val;
|
|
||||||
s->read_pos = 0;
|
s->read_pos = 0;
|
||||||
s->data_pos = 0;
|
s->data_pos = 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void applesmc_fill_data(AppleSMCState *s)
|
static struct AppleSMCData *applesmc_find_key(AppleSMCState *s)
|
||||||
{
|
{
|
||||||
struct AppleSMCData *d;
|
struct AppleSMCData *d;
|
||||||
|
|
||||||
QLIST_FOREACH(d, &s->data_def, node) {
|
QLIST_FOREACH(d, &s->data_def, node) {
|
||||||
if (!memcmp(d->key, s->key, 4)) {
|
if (!memcmp(d->key, s->key, 4)) {
|
||||||
smc_debug("Key matched (%s Len=%d Data=%s)\n", d->key,
|
return d;
|
||||||
d->len, d->data);
|
|
||||||
memcpy(s->data, d->data, d->len);
|
|
||||||
return;
|
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
return NULL;
|
||||||
}
|
}
|
||||||
|
|
||||||
static void applesmc_io_data_write(void *opaque, hwaddr addr, uint64_t val,
|
static void applesmc_io_data_write(void *opaque, hwaddr addr, uint64_t val,
|
||||||
unsigned size)
|
unsigned size)
|
||||||
{
|
{
|
||||||
AppleSMCState *s = opaque;
|
AppleSMCState *s = opaque;
|
||||||
|
struct AppleSMCData *d;
|
||||||
|
|
||||||
smc_debug("DATA Write B: %#x = %#x\n", addr, val);
|
smc_debug("DATA received: 0x%02x\n", (uint8_t)val);
|
||||||
switch(s->cmd) {
|
switch (s->cmd) {
|
||||||
case APPLESMC_READ_CMD:
|
case APPLESMC_READ_CMD:
|
||||||
if(s->read_pos < 4) {
|
if ((s->status & 0x0f) == APPLESMC_ST_CMD_DONE) {
|
||||||
s->key[s->read_pos] = val;
|
|
||||||
s->status = 0x04;
|
|
||||||
} else if(s->read_pos == 4) {
|
|
||||||
s->data_len = val;
|
|
||||||
s->status = 0x05;
|
|
||||||
s->data_pos = 0;
|
|
||||||
smc_debug("Key = %c%c%c%c Len = %d\n", s->key[0],
|
|
||||||
s->key[1], s->key[2], s->key[3], val);
|
|
||||||
applesmc_fill_data(s);
|
|
||||||
}
|
|
||||||
s->read_pos++;
|
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
}
|
if (s->read_pos < 4) {
|
||||||
|
s->key[s->read_pos] = val;
|
||||||
static uint64_t applesmc_io_data_read(void *opaque, hwaddr addr1,
|
s->status = APPLESMC_ST_ACK;
|
||||||
unsigned size)
|
} else if (s->read_pos == 4) {
|
||||||
{
|
d = applesmc_find_key(s);
|
||||||
AppleSMCState *s = opaque;
|
if (d != NULL) {
|
||||||
uint8_t retval = 0;
|
memcpy(s->data, d->data, d->len);
|
||||||
|
s->data_len = d->len;
|
||||||
switch(s->cmd) {
|
s->data_pos = 0;
|
||||||
case APPLESMC_READ_CMD:
|
s->status = APPLESMC_ST_ACK | APPLESMC_ST_DATA_READY;
|
||||||
if(s->data_pos < s->data_len) {
|
s->status_1e = APPLESMC_ST_CMD_DONE; /* clear on valid key */
|
||||||
retval = s->data[s->data_pos];
|
} else {
|
||||||
smc_debug("READ_DATA[%d] = %#hhx\n", s->data_pos,
|
smc_debug("READ_CMD: key '%c%c%c%c' not found!\n",
|
||||||
retval);
|
s->key[0], s->key[1], s->key[2], s->key[3]);
|
||||||
s->data_pos++;
|
s->status = APPLESMC_ST_CMD_DONE;
|
||||||
if(s->data_pos == s->data_len) {
|
s->status_1e = APPLESMC_ST_1E_NOEXIST;
|
||||||
s->status = 0x00;
|
|
||||||
smc_debug("EOF\n");
|
|
||||||
} else
|
|
||||||
s->status = 0x05;
|
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
s->read_pos++;
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
s->status = APPLESMC_ST_CMD_DONE;
|
||||||
|
s->status_1e = APPLESMC_ST_1E_STILL_BAD_CMD;
|
||||||
}
|
}
|
||||||
smc_debug("DATA Read b: %#x = %#x\n", addr1, retval);
|
|
||||||
|
|
||||||
return retval;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
static uint64_t applesmc_io_cmd_read(void *opaque, hwaddr addr1, unsigned size)
|
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! */
|
||||||
|
}
|
||||||
|
|
||||||
|
static uint64_t applesmc_io_data_read(void *opaque, hwaddr addr, unsigned size)
|
||||||
{
|
{
|
||||||
AppleSMCState *s = opaque;
|
AppleSMCState *s = opaque;
|
||||||
|
|
||||||
smc_debug("CMD Read B: %#x\n", addr1);
|
switch (s->cmd) {
|
||||||
|
case APPLESMC_READ_CMD:
|
||||||
|
if (!(s->status & APPLESMC_ST_DATA_READY)) {
|
||||||
|
break;
|
||||||
|
}
|
||||||
|
if (s->data_pos < s->data_len) {
|
||||||
|
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);
|
||||||
|
s->data_pos++;
|
||||||
|
if (s->data_pos == s->data_len) {
|
||||||
|
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);
|
||||||
|
} else {
|
||||||
|
s->status = APPLESMC_ST_ACK | APPLESMC_ST_DATA_READY;
|
||||||
|
}
|
||||||
|
}
|
||||||
|
break;
|
||||||
|
default:
|
||||||
|
s->status = APPLESMC_ST_CMD_DONE;
|
||||||
|
s->status_1e = APPLESMC_ST_1E_STILL_BAD_CMD;
|
||||||
|
}
|
||||||
|
smc_debug("DATA sent: 0x%02x\n", s->last_ret);
|
||||||
|
|
||||||
|
return s->last_ret;
|
||||||
|
}
|
||||||
|
|
||||||
|
static uint64_t applesmc_io_cmd_read(void *opaque, hwaddr addr, unsigned size)
|
||||||
|
{
|
||||||
|
AppleSMCState *s = opaque;
|
||||||
|
|
||||||
|
smc_debug("CMD sent: 0x%02x\n", s->status);
|
||||||
return s->status;
|
return s->status;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
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;
|
||||||
|
}
|
||||||
|
|
||||||
static void applesmc_add_key(AppleSMCState *s, const char *key,
|
static void applesmc_add_key(AppleSMCState *s, const char *key,
|
||||||
int len, const char *data)
|
int len, const char *data)
|
||||||
{
|
{
|
||||||
|
@ -196,6 +269,9 @@ static void qdev_applesmc_isa_reset(DeviceState *dev)
|
||||||
QLIST_FOREACH_SAFE(d, &s->data_def, node, next) {
|
QLIST_FOREACH_SAFE(d, &s->data_def, node, next) {
|
||||||
QLIST_REMOVE(d, node);
|
QLIST_REMOVE(d, node);
|
||||||
}
|
}
|
||||||
|
s->status = 0x00;
|
||||||
|
s->status_1e = 0x00;
|
||||||
|
s->last_ret = 0x00;
|
||||||
|
|
||||||
applesmc_add_key(s, "REV ", 6, "\x01\x13\x0f\x00\x00\x03");
|
applesmc_add_key(s, "REV ", 6, "\x01\x13\x0f\x00\x00\x03");
|
||||||
applesmc_add_key(s, "OSK0", 32, s->osk);
|
applesmc_add_key(s, "OSK0", 32, s->osk);
|
||||||
|
@ -225,20 +301,35 @@ static const MemoryRegionOps applesmc_cmd_io_ops = {
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
||||||
|
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,
|
||||||
|
},
|
||||||
|
};
|
||||||
|
|
||||||
static void applesmc_isa_realize(DeviceState *dev, Error **errp)
|
static void applesmc_isa_realize(DeviceState *dev, Error **errp)
|
||||||
{
|
{
|
||||||
AppleSMCState *s = APPLE_SMC(dev);
|
AppleSMCState *s = APPLE_SMC(dev);
|
||||||
|
|
||||||
memory_region_init_io(&s->io_data, OBJECT(s), &applesmc_data_io_ops, s,
|
memory_region_init_io(&s->io_data, OBJECT(s), &applesmc_data_io_ops, s,
|
||||||
"applesmc-data", 4);
|
"applesmc-data", 1);
|
||||||
isa_register_ioport(&s->parent_obj, &s->io_data,
|
isa_register_ioport(&s->parent_obj, &s->io_data,
|
||||||
s->iobase + APPLESMC_DATA_PORT);
|
s->iobase + APPLESMC_DATA_PORT);
|
||||||
|
|
||||||
memory_region_init_io(&s->io_cmd, OBJECT(s), &applesmc_cmd_io_ops, s,
|
memory_region_init_io(&s->io_cmd, OBJECT(s), &applesmc_cmd_io_ops, s,
|
||||||
"applesmc-cmd", 4);
|
"applesmc-cmd", 1);
|
||||||
isa_register_ioport(&s->parent_obj, &s->io_cmd,
|
isa_register_ioport(&s->parent_obj, &s->io_cmd,
|
||||||
s->iobase + APPLESMC_CMD_PORT);
|
s->iobase + APPLESMC_CMD_PORT);
|
||||||
|
|
||||||
|
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);
|
||||||
|
|
||||||
if (!s->osk || (strlen(s->osk) != 64)) {
|
if (!s->osk || (strlen(s->osk) != 64)) {
|
||||||
fprintf(stderr, "WARNING: Using AppleSMC with invalid key\n");
|
fprintf(stderr, "WARNING: Using AppleSMC with invalid key\n");
|
||||||
s->osk = default_osk;
|
s->osk = default_osk;
|
||||||
|
|
Loading…
Reference in New Issue