2007-11-11 01:04:49 +01:00
|
|
|
/*
|
|
|
|
* Arm PrimeCell PL061 General Purpose IO with additional
|
|
|
|
* Luminary Micro Stellaris bits.
|
|
|
|
*
|
|
|
|
* Copyright (c) 2007 CodeSourcery.
|
|
|
|
* Written by Paul Brook
|
|
|
|
*
|
2011-06-26 04:21:35 +02:00
|
|
|
* This code is licensed under the GPL.
|
2021-07-02 12:40:12 +02:00
|
|
|
*
|
|
|
|
* QEMU interface:
|
|
|
|
* + sysbus MMIO region 0: the device registers
|
|
|
|
* + sysbus IRQ: the GPIOINTR interrupt line
|
|
|
|
* + unnamed GPIO inputs 0..7: inputs to connect to the emulated GPIO lines
|
|
|
|
* + unnamed GPIO outputs 0..7: the emulated GPIO lines, considered as
|
|
|
|
* outputs
|
2021-07-02 12:40:14 +02:00
|
|
|
* + QOM property "pullups": an integer defining whether non-floating lines
|
|
|
|
* configured as inputs should be pulled up to logical 1 (ie whether in
|
|
|
|
* real hardware they have a pullup resistor on the line out of the PL061).
|
|
|
|
* This should be an 8-bit value, where bit 0 is 1 if GPIO line 0 should
|
|
|
|
* be pulled high, bit 1 configures line 1, and so on. The default is 0xff,
|
|
|
|
* indicating that all GPIO lines are pulled up to logical 1.
|
|
|
|
* + QOM property "pulldowns": an integer defining whether non-floating lines
|
|
|
|
* configured as inputs should be pulled down to logical 0 (ie whether in
|
|
|
|
* real hardware they have a pulldown resistor on the line out of the PL061).
|
|
|
|
* This should be an 8-bit value, where bit 0 is 1 if GPIO line 0 should
|
|
|
|
* be pulled low, bit 1 configures line 1, and so on. The default is 0x0.
|
|
|
|
* It is an error to set a bit in both "pullups" and "pulldowns". If a bit
|
|
|
|
* is 0 in both, then the line is considered to be floating, and it will
|
|
|
|
* not have qemu_set_irq() called on it when it is configured as an input.
|
2007-11-11 01:04:49 +01:00
|
|
|
*/
|
|
|
|
|
2016-01-26 19:17:05 +01:00
|
|
|
#include "qemu/osdep.h"
|
2019-08-12 07:23:42 +02:00
|
|
|
#include "hw/irq.h"
|
2013-02-04 15:40:22 +01:00
|
|
|
#include "hw/sysbus.h"
|
2021-07-02 12:40:14 +02:00
|
|
|
#include "hw/qdev-properties.h"
|
2019-08-12 07:23:45 +02:00
|
|
|
#include "migration/vmstate.h"
|
2021-07-02 12:40:14 +02:00
|
|
|
#include "qapi/error.h"
|
2015-12-15 13:16:16 +01:00
|
|
|
#include "qemu/log.h"
|
2019-05-23 16:35:07 +02:00
|
|
|
#include "qemu/module.h"
|
2020-09-03 22:43:22 +02:00
|
|
|
#include "qom/object.h"
|
2021-07-02 12:40:09 +02:00
|
|
|
#include "trace.h"
|
2007-11-11 01:04:49 +01:00
|
|
|
|
|
|
|
static const uint8_t pl061_id[12] =
|
2011-02-21 21:57:51 +01:00
|
|
|
{ 0x00, 0x00, 0x00, 0x00, 0x61, 0x10, 0x04, 0x00, 0x0d, 0xf0, 0x05, 0xb1 };
|
|
|
|
static const uint8_t pl061_id_luminary[12] =
|
2007-11-11 01:04:49 +01:00
|
|
|
{ 0x00, 0x00, 0x00, 0x00, 0x61, 0x00, 0x18, 0x01, 0x0d, 0xf0, 0x05, 0xb1 };
|
|
|
|
|
2013-07-26 17:31:46 +02:00
|
|
|
#define TYPE_PL061 "pl061"
|
2020-09-16 20:25:19 +02:00
|
|
|
OBJECT_DECLARE_SIMPLE_TYPE(PL061State, PL061)
|
2013-07-26 17:31:46 +02:00
|
|
|
|
2020-05-19 10:51:43 +02:00
|
|
|
#define N_GPIOS 8
|
|
|
|
|
2020-09-03 22:43:22 +02:00
|
|
|
struct PL061State {
|
2013-07-26 17:31:46 +02:00
|
|
|
SysBusDevice parent_obj;
|
|
|
|
|
2011-10-10 17:18:44 +02:00
|
|
|
MemoryRegion iomem;
|
2011-08-04 00:13:45 +02:00
|
|
|
uint32_t locked;
|
|
|
|
uint32_t data;
|
2014-09-12 15:06:48 +02:00
|
|
|
uint32_t old_out_data;
|
|
|
|
uint32_t old_in_data;
|
2011-08-04 00:13:45 +02:00
|
|
|
uint32_t dir;
|
|
|
|
uint32_t isense;
|
|
|
|
uint32_t ibe;
|
|
|
|
uint32_t iev;
|
|
|
|
uint32_t im;
|
|
|
|
uint32_t istate;
|
|
|
|
uint32_t afsel;
|
|
|
|
uint32_t dr2r;
|
|
|
|
uint32_t dr4r;
|
|
|
|
uint32_t dr8r;
|
|
|
|
uint32_t odr;
|
|
|
|
uint32_t pur;
|
|
|
|
uint32_t pdr;
|
|
|
|
uint32_t slr;
|
|
|
|
uint32_t den;
|
|
|
|
uint32_t cr;
|
2011-08-04 00:04:49 +02:00
|
|
|
uint32_t amsel;
|
2007-11-11 01:04:49 +01:00
|
|
|
qemu_irq irq;
|
2020-05-19 10:51:43 +02:00
|
|
|
qemu_irq out[N_GPIOS];
|
2011-02-21 21:57:51 +01:00
|
|
|
const unsigned char *id;
|
2021-07-02 12:40:14 +02:00
|
|
|
/* Properties, for non-Luminary PL061 */
|
|
|
|
uint32_t pullups;
|
|
|
|
uint32_t pulldowns;
|
2020-09-03 22:43:22 +02:00
|
|
|
};
|
2007-11-11 01:04:49 +01:00
|
|
|
|
2011-08-04 00:13:45 +02:00
|
|
|
static const VMStateDescription vmstate_pl061 = {
|
|
|
|
.name = "pl061",
|
2016-02-18 15:16:17 +01:00
|
|
|
.version_id = 4,
|
|
|
|
.minimum_version_id = 4,
|
2011-08-04 00:13:45 +02:00
|
|
|
.fields = (VMStateField[]) {
|
2013-07-26 17:21:21 +02:00
|
|
|
VMSTATE_UINT32(locked, PL061State),
|
|
|
|
VMSTATE_UINT32(data, PL061State),
|
2014-09-12 15:06:48 +02:00
|
|
|
VMSTATE_UINT32(old_out_data, PL061State),
|
|
|
|
VMSTATE_UINT32(old_in_data, PL061State),
|
2013-07-26 17:21:21 +02:00
|
|
|
VMSTATE_UINT32(dir, PL061State),
|
|
|
|
VMSTATE_UINT32(isense, PL061State),
|
|
|
|
VMSTATE_UINT32(ibe, PL061State),
|
|
|
|
VMSTATE_UINT32(iev, PL061State),
|
|
|
|
VMSTATE_UINT32(im, PL061State),
|
|
|
|
VMSTATE_UINT32(istate, PL061State),
|
|
|
|
VMSTATE_UINT32(afsel, PL061State),
|
|
|
|
VMSTATE_UINT32(dr2r, PL061State),
|
|
|
|
VMSTATE_UINT32(dr4r, PL061State),
|
|
|
|
VMSTATE_UINT32(dr8r, PL061State),
|
|
|
|
VMSTATE_UINT32(odr, PL061State),
|
|
|
|
VMSTATE_UINT32(pur, PL061State),
|
|
|
|
VMSTATE_UINT32(pdr, PL061State),
|
|
|
|
VMSTATE_UINT32(slr, PL061State),
|
|
|
|
VMSTATE_UINT32(den, PL061State),
|
|
|
|
VMSTATE_UINT32(cr, PL061State),
|
|
|
|
VMSTATE_UINT32_V(amsel, PL061State, 2),
|
2011-08-04 00:13:45 +02:00
|
|
|
VMSTATE_END_OF_LIST()
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2021-07-02 12:40:13 +02:00
|
|
|
static uint8_t pl061_floating(PL061State *s)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Return mask of bits which correspond to pins configured as inputs
|
|
|
|
* and which are floating (neither pulled up to 1 nor down to 0).
|
|
|
|
*/
|
|
|
|
uint8_t floating;
|
|
|
|
|
|
|
|
if (s->id == pl061_id_luminary) {
|
|
|
|
/*
|
|
|
|
* If both PUR and PDR bits are clear, there is neither a pullup
|
|
|
|
* nor a pulldown in place, and the output truly floats.
|
|
|
|
*/
|
|
|
|
floating = ~(s->pur | s->pdr);
|
|
|
|
} else {
|
2021-07-02 12:40:14 +02:00
|
|
|
floating = ~(s->pullups | s->pulldowns);
|
2021-07-02 12:40:13 +02:00
|
|
|
}
|
|
|
|
return floating & ~s->dir;
|
|
|
|
}
|
|
|
|
|
|
|
|
static uint8_t pl061_pullups(PL061State *s)
|
|
|
|
{
|
|
|
|
/*
|
|
|
|
* Return mask of bits which correspond to pins configured as inputs
|
|
|
|
* and which are pulled up to 1.
|
|
|
|
*/
|
|
|
|
uint8_t pullups;
|
|
|
|
|
|
|
|
if (s->id == pl061_id_luminary) {
|
|
|
|
/*
|
|
|
|
* The Luminary variant of the PL061 has an extra registers which
|
|
|
|
* the guest can use to configure whether lines should be pullup
|
|
|
|
* or pulldown.
|
|
|
|
*/
|
|
|
|
pullups = s->pur;
|
|
|
|
} else {
|
2021-07-02 12:40:14 +02:00
|
|
|
pullups = s->pullups;
|
2021-07-02 12:40:13 +02:00
|
|
|
}
|
|
|
|
return pullups & ~s->dir;
|
|
|
|
}
|
|
|
|
|
2013-07-26 17:21:21 +02:00
|
|
|
static void pl061_update(PL061State *s)
|
2007-11-11 01:04:49 +01:00
|
|
|
{
|
|
|
|
uint8_t changed;
|
|
|
|
uint8_t mask;
|
2007-11-25 00:35:08 +01:00
|
|
|
uint8_t out;
|
2007-11-11 01:04:49 +01:00
|
|
|
int i;
|
2021-07-02 12:40:13 +02:00
|
|
|
uint8_t pullups = pl061_pullups(s);
|
|
|
|
uint8_t floating = pl061_floating(s);
|
2007-11-11 01:04:49 +01:00
|
|
|
|
2021-07-02 12:40:13 +02:00
|
|
|
trace_pl061_update(DEVICE(s)->canonical_path, s->dir, s->data,
|
|
|
|
pullups, floating);
|
2014-09-12 15:06:48 +02:00
|
|
|
|
2021-07-02 12:40:13 +02:00
|
|
|
/*
|
|
|
|
* Pins configured as output are driven from the data register;
|
|
|
|
* otherwise if they're pulled up they're 1, and if they're floating
|
|
|
|
* then we give them the same value they had previously, so we don't
|
|
|
|
* report any change to the other end.
|
|
|
|
*/
|
|
|
|
out = (s->data & s->dir) | pullups | (s->old_out_data & floating);
|
2014-09-12 15:06:48 +02:00
|
|
|
changed = s->old_out_data ^ out;
|
|
|
|
if (changed) {
|
|
|
|
s->old_out_data = out;
|
2020-05-19 10:51:43 +02:00
|
|
|
for (i = 0; i < N_GPIOS; i++) {
|
2014-09-12 15:06:48 +02:00
|
|
|
mask = 1 << i;
|
|
|
|
if (changed & mask) {
|
2021-07-02 12:40:09 +02:00
|
|
|
int level = (out & mask) != 0;
|
|
|
|
trace_pl061_set_output(DEVICE(s)->canonical_path, i, level);
|
|
|
|
qemu_set_irq(s->out[i], level);
|
2014-09-12 15:06:48 +02:00
|
|
|
}
|
2007-11-11 01:04:49 +01:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-09-12 15:06:48 +02:00
|
|
|
/* Inputs */
|
|
|
|
changed = (s->old_in_data ^ s->data) & ~s->dir;
|
|
|
|
if (changed) {
|
|
|
|
s->old_in_data = s->data;
|
2020-05-19 10:51:43 +02:00
|
|
|
for (i = 0; i < N_GPIOS; i++) {
|
2014-09-12 15:06:48 +02:00
|
|
|
mask = 1 << i;
|
|
|
|
if (changed & mask) {
|
2021-07-02 12:40:09 +02:00
|
|
|
trace_pl061_input_change(DEVICE(s)->canonical_path, i,
|
|
|
|
(s->data & mask) != 0);
|
2014-09-12 15:06:48 +02:00
|
|
|
|
|
|
|
if (!(s->isense & mask)) {
|
|
|
|
/* Edge interrupt */
|
|
|
|
if (s->ibe & mask) {
|
|
|
|
/* Any edge triggers the interrupt */
|
|
|
|
s->istate |= mask;
|
|
|
|
} else {
|
|
|
|
/* Edge is selected by IEV */
|
|
|
|
s->istate |= ~(s->data ^ s->iev) & mask;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Level interrupt */
|
|
|
|
s->istate |= ~(s->data ^ s->iev) & s->isense;
|
|
|
|
|
2021-07-02 12:40:09 +02:00
|
|
|
trace_pl061_update_istate(DEVICE(s)->canonical_path,
|
|
|
|
s->istate, s->im, (s->istate & s->im) != 0);
|
2014-09-12 15:06:48 +02:00
|
|
|
|
|
|
|
qemu_set_irq(s->irq, (s->istate & s->im) != 0);
|
2007-11-11 01:04:49 +01:00
|
|
|
}
|
|
|
|
|
2012-10-23 12:30:10 +02:00
|
|
|
static uint64_t pl061_read(void *opaque, hwaddr offset,
|
2011-10-10 17:18:44 +02:00
|
|
|
unsigned size)
|
2007-11-11 01:04:49 +01:00
|
|
|
{
|
2013-07-26 17:21:21 +02:00
|
|
|
PL061State *s = (PL061State *)opaque;
|
2021-07-02 12:40:11 +02:00
|
|
|
uint64_t r = 0;
|
2007-11-11 01:04:49 +01:00
|
|
|
|
|
|
|
switch (offset) {
|
2021-07-02 12:40:10 +02:00
|
|
|
case 0x0 ... 0x3ff: /* Data */
|
2021-07-02 12:40:11 +02:00
|
|
|
r = s->data & (offset >> 2);
|
|
|
|
break;
|
2007-11-11 01:04:49 +01:00
|
|
|
case 0x400: /* Direction */
|
2021-07-02 12:40:11 +02:00
|
|
|
r = s->dir;
|
|
|
|
break;
|
2007-11-11 01:04:49 +01:00
|
|
|
case 0x404: /* Interrupt sense */
|
2021-07-02 12:40:11 +02:00
|
|
|
r = s->isense;
|
|
|
|
break;
|
2007-11-11 01:04:49 +01:00
|
|
|
case 0x408: /* Interrupt both edges */
|
2021-07-02 12:40:11 +02:00
|
|
|
r = s->ibe;
|
|
|
|
break;
|
2011-04-28 17:20:35 +02:00
|
|
|
case 0x40c: /* Interrupt event */
|
2021-07-02 12:40:11 +02:00
|
|
|
r = s->iev;
|
|
|
|
break;
|
2007-11-11 01:04:49 +01:00
|
|
|
case 0x410: /* Interrupt mask */
|
2021-07-02 12:40:11 +02:00
|
|
|
r = s->im;
|
|
|
|
break;
|
2007-11-11 01:04:49 +01:00
|
|
|
case 0x414: /* Raw interrupt status */
|
2021-07-02 12:40:11 +02:00
|
|
|
r = s->istate;
|
|
|
|
break;
|
2007-11-11 01:04:49 +01:00
|
|
|
case 0x418: /* Masked interrupt status */
|
2021-07-02 12:40:11 +02:00
|
|
|
r = s->istate & s->im;
|
|
|
|
break;
|
2007-11-11 01:04:49 +01:00
|
|
|
case 0x420: /* Alternate function select */
|
2021-07-02 12:40:11 +02:00
|
|
|
r = s->afsel;
|
|
|
|
break;
|
2007-11-11 01:04:49 +01:00
|
|
|
case 0x500: /* 2mA drive */
|
2021-07-02 12:40:10 +02:00
|
|
|
if (s->id != pl061_id_luminary) {
|
|
|
|
goto bad_offset;
|
|
|
|
}
|
2021-07-02 12:40:11 +02:00
|
|
|
r = s->dr2r;
|
|
|
|
break;
|
2007-11-11 01:04:49 +01:00
|
|
|
case 0x504: /* 4mA drive */
|
2021-07-02 12:40:10 +02:00
|
|
|
if (s->id != pl061_id_luminary) {
|
|
|
|
goto bad_offset;
|
|
|
|
}
|
2021-07-02 12:40:11 +02:00
|
|
|
r = s->dr4r;
|
|
|
|
break;
|
2007-11-11 01:04:49 +01:00
|
|
|
case 0x508: /* 8mA drive */
|
2021-07-02 12:40:10 +02:00
|
|
|
if (s->id != pl061_id_luminary) {
|
|
|
|
goto bad_offset;
|
|
|
|
}
|
2021-07-02 12:40:11 +02:00
|
|
|
r = s->dr8r;
|
|
|
|
break;
|
2007-11-11 01:04:49 +01:00
|
|
|
case 0x50c: /* Open drain */
|
2021-07-02 12:40:10 +02:00
|
|
|
if (s->id != pl061_id_luminary) {
|
|
|
|
goto bad_offset;
|
|
|
|
}
|
2021-07-02 12:40:11 +02:00
|
|
|
r = s->odr;
|
|
|
|
break;
|
2007-11-11 01:04:49 +01:00
|
|
|
case 0x510: /* Pull-up */
|
2021-07-02 12:40:10 +02:00
|
|
|
if (s->id != pl061_id_luminary) {
|
|
|
|
goto bad_offset;
|
|
|
|
}
|
2021-07-02 12:40:11 +02:00
|
|
|
r = s->pur;
|
|
|
|
break;
|
2007-11-11 01:04:49 +01:00
|
|
|
case 0x514: /* Pull-down */
|
2021-07-02 12:40:10 +02:00
|
|
|
if (s->id != pl061_id_luminary) {
|
|
|
|
goto bad_offset;
|
|
|
|
}
|
2021-07-02 12:40:11 +02:00
|
|
|
r = s->pdr;
|
|
|
|
break;
|
2007-11-11 01:04:49 +01:00
|
|
|
case 0x518: /* Slew rate control */
|
2021-07-02 12:40:10 +02:00
|
|
|
if (s->id != pl061_id_luminary) {
|
|
|
|
goto bad_offset;
|
|
|
|
}
|
2021-07-02 12:40:11 +02:00
|
|
|
r = s->slr;
|
|
|
|
break;
|
2007-11-11 01:04:49 +01:00
|
|
|
case 0x51c: /* Digital enable */
|
2021-07-02 12:40:10 +02:00
|
|
|
if (s->id != pl061_id_luminary) {
|
|
|
|
goto bad_offset;
|
|
|
|
}
|
2021-07-02 12:40:11 +02:00
|
|
|
r = s->den;
|
|
|
|
break;
|
2007-11-11 01:04:49 +01:00
|
|
|
case 0x520: /* Lock */
|
2021-07-02 12:40:10 +02:00
|
|
|
if (s->id != pl061_id_luminary) {
|
|
|
|
goto bad_offset;
|
|
|
|
}
|
2021-07-02 12:40:11 +02:00
|
|
|
r = s->locked;
|
|
|
|
break;
|
2007-11-11 01:04:49 +01:00
|
|
|
case 0x524: /* Commit */
|
2021-07-02 12:40:10 +02:00
|
|
|
if (s->id != pl061_id_luminary) {
|
|
|
|
goto bad_offset;
|
|
|
|
}
|
2021-07-02 12:40:11 +02:00
|
|
|
r = s->cr;
|
|
|
|
break;
|
2011-08-04 00:04:49 +02:00
|
|
|
case 0x528: /* Analog mode select */
|
2021-07-02 12:40:10 +02:00
|
|
|
if (s->id != pl061_id_luminary) {
|
|
|
|
goto bad_offset;
|
|
|
|
}
|
2021-07-02 12:40:11 +02:00
|
|
|
r = s->amsel;
|
|
|
|
break;
|
2021-07-02 12:40:10 +02:00
|
|
|
case 0xfd0 ... 0xfff: /* ID registers */
|
2021-07-02 12:40:11 +02:00
|
|
|
r = s->id[(offset - 0xfd0) >> 2];
|
|
|
|
break;
|
2007-11-11 01:04:49 +01:00
|
|
|
default:
|
2021-07-02 12:40:10 +02:00
|
|
|
bad_offset:
|
|
|
|
qemu_log_mask(LOG_GUEST_ERROR,
|
|
|
|
"pl061_read: Bad offset %x\n", (int)offset);
|
2016-02-18 17:56:20 +01:00
|
|
|
break;
|
2007-11-11 01:04:49 +01:00
|
|
|
}
|
2021-07-02 12:40:11 +02:00
|
|
|
|
|
|
|
trace_pl061_read(DEVICE(s)->canonical_path, offset, r);
|
|
|
|
return r;
|
2007-11-11 01:04:49 +01:00
|
|
|
}
|
|
|
|
|
2012-10-23 12:30:10 +02:00
|
|
|
static void pl061_write(void *opaque, hwaddr offset,
|
2011-10-10 17:18:44 +02:00
|
|
|
uint64_t value, unsigned size)
|
2007-11-11 01:04:49 +01:00
|
|
|
{
|
2013-07-26 17:21:21 +02:00
|
|
|
PL061State *s = (PL061State *)opaque;
|
2007-11-11 01:04:49 +01:00
|
|
|
uint8_t mask;
|
|
|
|
|
2021-07-02 12:40:11 +02:00
|
|
|
trace_pl061_write(DEVICE(s)->canonical_path, offset, value);
|
|
|
|
|
2021-07-02 12:40:10 +02:00
|
|
|
switch (offset) {
|
|
|
|
case 0 ... 0x3ff:
|
2007-11-11 01:04:49 +01:00
|
|
|
mask = (offset >> 2) & s->dir;
|
|
|
|
s->data = (s->data & ~mask) | (value & mask);
|
|
|
|
pl061_update(s);
|
|
|
|
return;
|
|
|
|
case 0x400: /* Direction */
|
2011-08-04 00:13:45 +02:00
|
|
|
s->dir = value & 0xff;
|
2007-11-11 01:04:49 +01:00
|
|
|
break;
|
|
|
|
case 0x404: /* Interrupt sense */
|
2011-08-04 00:13:45 +02:00
|
|
|
s->isense = value & 0xff;
|
2007-11-11 01:04:49 +01:00
|
|
|
break;
|
|
|
|
case 0x408: /* Interrupt both edges */
|
2011-08-04 00:13:45 +02:00
|
|
|
s->ibe = value & 0xff;
|
2007-11-11 01:04:49 +01:00
|
|
|
break;
|
2011-04-28 17:20:35 +02:00
|
|
|
case 0x40c: /* Interrupt event */
|
2011-08-04 00:13:45 +02:00
|
|
|
s->iev = value & 0xff;
|
2007-11-11 01:04:49 +01:00
|
|
|
break;
|
|
|
|
case 0x410: /* Interrupt mask */
|
2011-08-04 00:13:45 +02:00
|
|
|
s->im = value & 0xff;
|
2007-11-11 01:04:49 +01:00
|
|
|
break;
|
|
|
|
case 0x41c: /* Interrupt clear */
|
|
|
|
s->istate &= ~value;
|
|
|
|
break;
|
|
|
|
case 0x420: /* Alternate function select */
|
|
|
|
mask = s->cr;
|
|
|
|
s->afsel = (s->afsel & ~mask) | (value & mask);
|
|
|
|
break;
|
|
|
|
case 0x500: /* 2mA drive */
|
2021-07-02 12:40:10 +02:00
|
|
|
if (s->id != pl061_id_luminary) {
|
|
|
|
goto bad_offset;
|
|
|
|
}
|
2011-08-04 00:13:45 +02:00
|
|
|
s->dr2r = value & 0xff;
|
2007-11-11 01:04:49 +01:00
|
|
|
break;
|
|
|
|
case 0x504: /* 4mA drive */
|
2021-07-02 12:40:10 +02:00
|
|
|
if (s->id != pl061_id_luminary) {
|
|
|
|
goto bad_offset;
|
|
|
|
}
|
2011-08-04 00:13:45 +02:00
|
|
|
s->dr4r = value & 0xff;
|
2007-11-11 01:04:49 +01:00
|
|
|
break;
|
|
|
|
case 0x508: /* 8mA drive */
|
2021-07-02 12:40:10 +02:00
|
|
|
if (s->id != pl061_id_luminary) {
|
|
|
|
goto bad_offset;
|
|
|
|
}
|
2011-08-04 00:13:45 +02:00
|
|
|
s->dr8r = value & 0xff;
|
2007-11-11 01:04:49 +01:00
|
|
|
break;
|
|
|
|
case 0x50c: /* Open drain */
|
2021-07-02 12:40:10 +02:00
|
|
|
if (s->id != pl061_id_luminary) {
|
|
|
|
goto bad_offset;
|
|
|
|
}
|
2011-08-04 00:13:45 +02:00
|
|
|
s->odr = value & 0xff;
|
2007-11-11 01:04:49 +01:00
|
|
|
break;
|
|
|
|
case 0x510: /* Pull-up */
|
2021-07-02 12:40:10 +02:00
|
|
|
if (s->id != pl061_id_luminary) {
|
|
|
|
goto bad_offset;
|
|
|
|
}
|
2011-08-04 00:13:45 +02:00
|
|
|
s->pur = value & 0xff;
|
2007-11-11 01:04:49 +01:00
|
|
|
break;
|
|
|
|
case 0x514: /* Pull-down */
|
2021-07-02 12:40:10 +02:00
|
|
|
if (s->id != pl061_id_luminary) {
|
|
|
|
goto bad_offset;
|
|
|
|
}
|
2011-08-04 00:13:45 +02:00
|
|
|
s->pdr = value & 0xff;
|
2007-11-11 01:04:49 +01:00
|
|
|
break;
|
|
|
|
case 0x518: /* Slew rate control */
|
2021-07-02 12:40:10 +02:00
|
|
|
if (s->id != pl061_id_luminary) {
|
|
|
|
goto bad_offset;
|
|
|
|
}
|
2011-08-04 00:13:45 +02:00
|
|
|
s->slr = value & 0xff;
|
2007-11-11 01:04:49 +01:00
|
|
|
break;
|
|
|
|
case 0x51c: /* Digital enable */
|
2021-07-02 12:40:10 +02:00
|
|
|
if (s->id != pl061_id_luminary) {
|
|
|
|
goto bad_offset;
|
|
|
|
}
|
2011-08-04 00:13:45 +02:00
|
|
|
s->den = value & 0xff;
|
2007-11-11 01:04:49 +01:00
|
|
|
break;
|
|
|
|
case 0x520: /* Lock */
|
2021-07-02 12:40:10 +02:00
|
|
|
if (s->id != pl061_id_luminary) {
|
|
|
|
goto bad_offset;
|
|
|
|
}
|
2007-11-11 01:04:49 +01:00
|
|
|
s->locked = (value != 0xacce551);
|
|
|
|
break;
|
|
|
|
case 0x524: /* Commit */
|
2021-07-02 12:40:10 +02:00
|
|
|
if (s->id != pl061_id_luminary) {
|
|
|
|
goto bad_offset;
|
|
|
|
}
|
2007-11-11 01:04:49 +01:00
|
|
|
if (!s->locked)
|
2011-08-04 00:13:45 +02:00
|
|
|
s->cr = value & 0xff;
|
2007-11-11 01:04:49 +01:00
|
|
|
break;
|
2011-08-04 00:04:49 +02:00
|
|
|
case 0x528:
|
2021-07-02 12:40:10 +02:00
|
|
|
if (s->id != pl061_id_luminary) {
|
|
|
|
goto bad_offset;
|
|
|
|
}
|
2011-08-04 00:04:49 +02:00
|
|
|
s->amsel = value & 0xff;
|
|
|
|
break;
|
2007-11-11 01:04:49 +01:00
|
|
|
default:
|
2021-07-02 12:40:10 +02:00
|
|
|
bad_offset:
|
|
|
|
qemu_log_mask(LOG_GUEST_ERROR,
|
|
|
|
"pl061_write: Bad offset %x\n", (int)offset);
|
|
|
|
return;
|
2007-11-11 01:04:49 +01:00
|
|
|
}
|
|
|
|
pl061_update(s);
|
2016-02-18 17:56:20 +01:00
|
|
|
return;
|
2007-11-11 01:04:49 +01:00
|
|
|
}
|
|
|
|
|
2021-07-02 12:40:16 +02:00
|
|
|
static void pl061_enter_reset(Object *obj, ResetType type)
|
2007-11-11 01:04:49 +01:00
|
|
|
{
|
2021-07-02 12:40:16 +02:00
|
|
|
PL061State *s = PL061(obj);
|
|
|
|
|
|
|
|
trace_pl061_reset(DEVICE(s)->canonical_path);
|
2016-02-18 15:16:17 +01:00
|
|
|
|
|
|
|
/* reset values from PL061 TRM, Stellaris LM3S5P31 & LM3S8962 Data Sheet */
|
2021-07-02 12:40:17 +02:00
|
|
|
|
|
|
|
/*
|
|
|
|
* FIXME: For the LM3S6965, not all of the PL061 instances have the
|
|
|
|
* same reset values for GPIOPUR, GPIOAFSEL and GPIODEN, so in theory
|
|
|
|
* we should allow the board to configure these via properties.
|
|
|
|
* In practice, we don't wire anything up to the affected GPIO lines
|
|
|
|
* (PB7, PC0, PC1, PC2, PC3 -- they're used for JTAG), so we can
|
|
|
|
* get away with this inaccuracy.
|
|
|
|
*/
|
2016-02-18 15:16:17 +01:00
|
|
|
s->data = 0;
|
|
|
|
s->old_in_data = 0;
|
|
|
|
s->dir = 0;
|
|
|
|
s->isense = 0;
|
|
|
|
s->ibe = 0;
|
|
|
|
s->iev = 0;
|
|
|
|
s->im = 0;
|
|
|
|
s->istate = 0;
|
|
|
|
s->afsel = 0;
|
|
|
|
s->dr2r = 0xff;
|
|
|
|
s->dr4r = 0;
|
|
|
|
s->dr8r = 0;
|
|
|
|
s->odr = 0;
|
|
|
|
s->pur = 0;
|
|
|
|
s->pdr = 0;
|
|
|
|
s->slr = 0;
|
|
|
|
s->den = 0;
|
|
|
|
s->locked = 1;
|
|
|
|
s->cr = 0xff;
|
|
|
|
s->amsel = 0;
|
2007-11-11 01:04:49 +01:00
|
|
|
}
|
|
|
|
|
2021-07-02 12:40:16 +02:00
|
|
|
static void pl061_hold_reset(Object *obj)
|
|
|
|
{
|
|
|
|
PL061State *s = PL061(obj);
|
|
|
|
int i, level;
|
|
|
|
uint8_t floating = pl061_floating(s);
|
|
|
|
uint8_t pullups = pl061_pullups(s);
|
|
|
|
|
|
|
|
for (i = 0; i < N_GPIOS; i++) {
|
|
|
|
if (extract32(floating, i, 1)) {
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
level = extract32(pullups, i, 1);
|
|
|
|
trace_pl061_set_output(DEVICE(s)->canonical_path, i, level);
|
|
|
|
qemu_set_irq(s->out[i], level);
|
|
|
|
}
|
|
|
|
s->old_out_data = pullups;
|
|
|
|
}
|
|
|
|
|
2007-11-18 02:44:38 +01:00
|
|
|
static void pl061_set_irq(void * opaque, int irq, int level)
|
2007-11-11 01:04:49 +01:00
|
|
|
{
|
2013-07-26 17:21:21 +02:00
|
|
|
PL061State *s = (PL061State *)opaque;
|
2007-11-11 01:04:49 +01:00
|
|
|
uint8_t mask;
|
|
|
|
|
|
|
|
mask = 1 << irq;
|
|
|
|
if ((s->dir & mask) == 0) {
|
|
|
|
s->data &= ~mask;
|
|
|
|
if (level)
|
|
|
|
s->data |= mask;
|
|
|
|
pl061_update(s);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2011-10-10 17:18:44 +02:00
|
|
|
static const MemoryRegionOps pl061_ops = {
|
|
|
|
.read = pl061_read,
|
|
|
|
.write = pl061_write,
|
|
|
|
.endianness = DEVICE_NATIVE_ENDIAN,
|
2007-11-11 01:04:49 +01:00
|
|
|
};
|
|
|
|
|
2013-07-26 17:31:46 +02:00
|
|
|
static void pl061_luminary_init(Object *obj)
|
2011-02-21 21:57:51 +01:00
|
|
|
{
|
2013-07-26 17:31:46 +02:00
|
|
|
PL061State *s = PL061(obj);
|
|
|
|
|
|
|
|
s->id = pl061_id_luminary;
|
2011-02-21 21:57:51 +01:00
|
|
|
}
|
|
|
|
|
2013-07-26 17:31:46 +02:00
|
|
|
static void pl061_init(Object *obj)
|
2011-02-21 21:57:51 +01:00
|
|
|
{
|
2013-07-26 17:31:46 +02:00
|
|
|
PL061State *s = PL061(obj);
|
2016-06-14 16:59:13 +02:00
|
|
|
DeviceState *dev = DEVICE(obj);
|
|
|
|
SysBusDevice *sbd = SYS_BUS_DEVICE(obj);
|
2013-07-26 17:31:46 +02:00
|
|
|
|
|
|
|
s->id = pl061_id;
|
2016-06-14 16:59:13 +02:00
|
|
|
|
|
|
|
memory_region_init_io(&s->iomem, obj, &pl061_ops, s, "pl061", 0x1000);
|
|
|
|
sysbus_init_mmio(sbd, &s->iomem);
|
|
|
|
sysbus_init_irq(sbd, &s->irq);
|
2020-05-19 10:51:43 +02:00
|
|
|
qdev_init_gpio_in(dev, pl061_set_irq, N_GPIOS);
|
|
|
|
qdev_init_gpio_out(dev, s->out, N_GPIOS);
|
2011-02-21 21:57:51 +01:00
|
|
|
}
|
|
|
|
|
2021-07-02 12:40:14 +02:00
|
|
|
static void pl061_realize(DeviceState *dev, Error **errp)
|
|
|
|
{
|
|
|
|
PL061State *s = PL061(dev);
|
|
|
|
|
|
|
|
if (s->pullups > 0xff) {
|
|
|
|
error_setg(errp, "pullups property must be between 0 and 0xff");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (s->pulldowns > 0xff) {
|
|
|
|
error_setg(errp, "pulldowns property must be between 0 and 0xff");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
if (s->pullups & s->pulldowns) {
|
|
|
|
error_setg(errp, "no bit may be set both in pullups and pulldowns");
|
|
|
|
return;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
static Property pl061_props[] = {
|
|
|
|
DEFINE_PROP_UINT32("pullups", PL061State, pullups, 0xff),
|
|
|
|
DEFINE_PROP_UINT32("pulldowns", PL061State, pulldowns, 0x0),
|
|
|
|
DEFINE_PROP_END_OF_LIST()
|
|
|
|
};
|
|
|
|
|
2012-01-24 20:12:29 +01:00
|
|
|
static void pl061_class_init(ObjectClass *klass, void *data)
|
|
|
|
{
|
2011-12-08 04:34:16 +01:00
|
|
|
DeviceClass *dc = DEVICE_CLASS(klass);
|
2021-07-02 12:40:16 +02:00
|
|
|
ResettableClass *rc = RESETTABLE_CLASS(klass);
|
2012-01-24 20:12:29 +01:00
|
|
|
|
2011-12-08 04:34:16 +01:00
|
|
|
dc->vmsd = &vmstate_pl061;
|
2021-07-02 12:40:14 +02:00
|
|
|
dc->realize = pl061_realize;
|
|
|
|
device_class_set_props(dc, pl061_props);
|
2021-07-02 12:40:16 +02:00
|
|
|
rc->phases.enter = pl061_enter_reset;
|
|
|
|
rc->phases.hold = pl061_hold_reset;
|
2012-01-24 20:12:29 +01:00
|
|
|
}
|
|
|
|
|
2013-01-10 16:19:07 +01:00
|
|
|
static const TypeInfo pl061_info = {
|
2013-07-26 17:31:46 +02:00
|
|
|
.name = TYPE_PL061,
|
2011-12-08 04:34:16 +01:00
|
|
|
.parent = TYPE_SYS_BUS_DEVICE,
|
2013-07-26 17:21:21 +02:00
|
|
|
.instance_size = sizeof(PL061State),
|
2013-07-26 17:31:46 +02:00
|
|
|
.instance_init = pl061_init,
|
2011-12-08 04:34:16 +01:00
|
|
|
.class_init = pl061_class_init,
|
2011-08-04 00:13:45 +02:00
|
|
|
};
|
|
|
|
|
2013-01-10 16:19:07 +01:00
|
|
|
static const TypeInfo pl061_luminary_info = {
|
2011-12-08 04:34:16 +01:00
|
|
|
.name = "pl061_luminary",
|
2013-07-26 17:31:46 +02:00
|
|
|
.parent = TYPE_PL061,
|
|
|
|
.instance_init = pl061_luminary_init,
|
2011-08-04 00:13:45 +02:00
|
|
|
};
|
|
|
|
|
2012-02-09 15:20:55 +01:00
|
|
|
static void pl061_register_types(void)
|
2009-06-03 16:16:49 +02:00
|
|
|
{
|
2011-12-08 04:34:16 +01:00
|
|
|
type_register_static(&pl061_info);
|
|
|
|
type_register_static(&pl061_luminary_info);
|
2009-06-03 16:16:49 +02:00
|
|
|
}
|
|
|
|
|
2012-02-09 15:20:55 +01:00
|
|
|
type_init(pl061_register_types)
|