提交 64066a8f 编写于 作者: A Avi Kivity 提交者: Anthony Liguori

omap_gpmc/nseries/tusb6010: convert to memory API

Somewhat clumsy since it needs a variable sized region.
Signed-off-by: NAvi Kivity <avi@redhat.com>
Signed-off-by: NAnthony Liguori <aliguori@us.ibm.com>
上级 d09871f6
...@@ -17,6 +17,7 @@ ...@@ -17,6 +17,7 @@
* with this program; if not, see <http://www.gnu.org/licenses/>. * with this program; if not, see <http://www.gnu.org/licenses/>.
*/ */
#ifndef hw_omap_h #ifndef hw_omap_h
#include "memory.h"
# define hw_omap_h "omap.h" # define hw_omap_h "omap.h"
# define OMAP_EMIFS_BASE 0x00000000 # define OMAP_EMIFS_BASE 0x00000000
...@@ -119,7 +120,7 @@ void omap_sdrc_reset(struct omap_sdrc_s *s); ...@@ -119,7 +120,7 @@ void omap_sdrc_reset(struct omap_sdrc_s *s);
struct omap_gpmc_s; struct omap_gpmc_s;
struct omap_gpmc_s *omap_gpmc_init(target_phys_addr_t base, qemu_irq irq); struct omap_gpmc_s *omap_gpmc_init(target_phys_addr_t base, qemu_irq irq);
void omap_gpmc_reset(struct omap_gpmc_s *s); void omap_gpmc_reset(struct omap_gpmc_s *s);
void omap_gpmc_attach(struct omap_gpmc_s *s, int cs, int iomemtype, void omap_gpmc_attach(struct omap_gpmc_s *s, int cs, MemoryRegion *iomem,
void (*base_upd)(void *opaque, target_phys_addr_t new), void (*base_upd)(void *opaque, target_phys_addr_t new),
void (*unmap)(void *opaque), void *opaque); void (*unmap)(void *opaque), void *opaque);
......
...@@ -21,10 +21,13 @@ ...@@ -21,10 +21,13 @@
#include "hw.h" #include "hw.h"
#include "flash.h" #include "flash.h"
#include "omap.h" #include "omap.h"
#include "memory.h"
#include "exec-memory.h"
/* General-Purpose Memory Controller */ /* General-Purpose Memory Controller */
struct omap_gpmc_s { struct omap_gpmc_s {
qemu_irq irq; qemu_irq irq;
MemoryRegion iomem;
uint8_t sysconfig; uint8_t sysconfig;
uint16_t irqst; uint16_t irqst;
...@@ -39,7 +42,8 @@ struct omap_gpmc_s { ...@@ -39,7 +42,8 @@ struct omap_gpmc_s {
uint32_t config[7]; uint32_t config[7];
target_phys_addr_t base; target_phys_addr_t base;
size_t size; size_t size;
int iomemtype; MemoryRegion *iomem;
MemoryRegion container;
void (*base_update)(void *opaque, target_phys_addr_t new); void (*base_update)(void *opaque, target_phys_addr_t new);
void (*unmap)(void *opaque); void (*unmap)(void *opaque);
void *opaque; void *opaque;
...@@ -75,8 +79,12 @@ static void omap_gpmc_cs_map(struct omap_gpmc_cs_file_s *f, int base, int mask) ...@@ -75,8 +79,12 @@ static void omap_gpmc_cs_map(struct omap_gpmc_cs_file_s *f, int base, int mask)
* constant), the mask should cause wrapping of the address space, so * constant), the mask should cause wrapping of the address space, so
* that the same memory becomes accessible at every <i>size</i> bytes * that the same memory becomes accessible at every <i>size</i> bytes
* starting from <i>base</i>. */ * starting from <i>base</i>. */
if (f->iomemtype) if (f->iomem) {
cpu_register_physical_memory(f->base, f->size, f->iomemtype); memory_region_init(&f->container, "omap-gpmc-file", f->size);
memory_region_add_subregion(&f->container, 0, f->iomem);
memory_region_add_subregion(get_system_memory(), f->base,
&f->container);
}
if (f->base_update) if (f->base_update)
f->base_update(f->opaque, f->base); f->base_update(f->opaque, f->base);
...@@ -87,8 +95,11 @@ static void omap_gpmc_cs_unmap(struct omap_gpmc_cs_file_s *f) ...@@ -87,8 +95,11 @@ static void omap_gpmc_cs_unmap(struct omap_gpmc_cs_file_s *f)
if (f->size) { if (f->size) {
if (f->unmap) if (f->unmap)
f->unmap(f->opaque); f->unmap(f->opaque);
if (f->iomemtype) if (f->iomem) {
cpu_register_physical_memory(f->base, f->size, IO_MEM_UNASSIGNED); memory_region_del_subregion(get_system_memory(), &f->container);
memory_region_del_subregion(&f->container, f->iomem);
memory_region_destroy(&f->container);
}
f->base = 0; f->base = 0;
f->size = 0; f->size = 0;
} }
...@@ -132,12 +143,17 @@ void omap_gpmc_reset(struct omap_gpmc_s *s) ...@@ -132,12 +143,17 @@ void omap_gpmc_reset(struct omap_gpmc_s *s)
ecc_reset(&s->ecc[i]); ecc_reset(&s->ecc[i]);
} }
static uint32_t omap_gpmc_read(void *opaque, target_phys_addr_t addr) static uint64_t omap_gpmc_read(void *opaque, target_phys_addr_t addr,
unsigned size)
{ {
struct omap_gpmc_s *s = (struct omap_gpmc_s *) opaque; struct omap_gpmc_s *s = (struct omap_gpmc_s *) opaque;
int cs; int cs;
struct omap_gpmc_cs_file_s *f; struct omap_gpmc_cs_file_s *f;
if (size != 4) {
return omap_badwidth_read32(opaque, addr);
}
switch (addr) { switch (addr) {
case 0x000: /* GPMC_REVISION */ case 0x000: /* GPMC_REVISION */
return 0x20; return 0x20;
...@@ -230,12 +246,16 @@ static uint32_t omap_gpmc_read(void *opaque, target_phys_addr_t addr) ...@@ -230,12 +246,16 @@ static uint32_t omap_gpmc_read(void *opaque, target_phys_addr_t addr)
} }
static void omap_gpmc_write(void *opaque, target_phys_addr_t addr, static void omap_gpmc_write(void *opaque, target_phys_addr_t addr,
uint32_t value) uint64_t value, unsigned size)
{ {
struct omap_gpmc_s *s = (struct omap_gpmc_s *) opaque; struct omap_gpmc_s *s = (struct omap_gpmc_s *) opaque;
int cs; int cs;
struct omap_gpmc_cs_file_s *f; struct omap_gpmc_cs_file_s *f;
if (size != 4) {
return omap_badwidth_write32(opaque, addr, value);
}
switch (addr) { switch (addr) {
case 0x000: /* GPMC_REVISION */ case 0x000: /* GPMC_REVISION */
case 0x014: /* GPMC_SYSSTATUS */ case 0x014: /* GPMC_SYSSTATUS */
...@@ -249,7 +269,7 @@ static void omap_gpmc_write(void *opaque, target_phys_addr_t addr, ...@@ -249,7 +269,7 @@ static void omap_gpmc_write(void *opaque, target_phys_addr_t addr,
case 0x010: /* GPMC_SYSCONFIG */ case 0x010: /* GPMC_SYSCONFIG */
if ((value >> 3) == 0x3) if ((value >> 3) == 0x3)
fprintf(stderr, "%s: bad SDRAM idle mode %i\n", fprintf(stderr, "%s: bad SDRAM idle mode %"PRIi64"\n",
__FUNCTION__, value >> 3); __FUNCTION__, value >> 3);
if (value & 2) if (value & 2)
omap_gpmc_reset(s); omap_gpmc_reset(s);
...@@ -369,34 +389,26 @@ static void omap_gpmc_write(void *opaque, target_phys_addr_t addr, ...@@ -369,34 +389,26 @@ static void omap_gpmc_write(void *opaque, target_phys_addr_t addr,
} }
} }
static CPUReadMemoryFunc * const omap_gpmc_readfn[] = { static const MemoryRegionOps omap_gpmc_ops = {
omap_badwidth_read32, /* TODO */ .read = omap_gpmc_read,
omap_badwidth_read32, /* TODO */ .write = omap_gpmc_write,
omap_gpmc_read, .endianness = DEVICE_NATIVE_ENDIAN,
};
static CPUWriteMemoryFunc * const omap_gpmc_writefn[] = {
omap_badwidth_write32, /* TODO */
omap_badwidth_write32, /* TODO */
omap_gpmc_write,
}; };
struct omap_gpmc_s *omap_gpmc_init(target_phys_addr_t base, qemu_irq irq) struct omap_gpmc_s *omap_gpmc_init(target_phys_addr_t base, qemu_irq irq)
{ {
int iomemtype;
struct omap_gpmc_s *s = (struct omap_gpmc_s *) struct omap_gpmc_s *s = (struct omap_gpmc_s *)
g_malloc0(sizeof(struct omap_gpmc_s)); g_malloc0(sizeof(struct omap_gpmc_s));
omap_gpmc_reset(s); omap_gpmc_reset(s);
iomemtype = cpu_register_io_memory(omap_gpmc_readfn, memory_region_init_io(&s->iomem, &omap_gpmc_ops, s, "omap-gpmc", 0x1000);
omap_gpmc_writefn, s, DEVICE_NATIVE_ENDIAN); memory_region_add_subregion(get_system_memory(), base, &s->iomem);
cpu_register_physical_memory(base, 0x1000, iomemtype);
return s; return s;
} }
void omap_gpmc_attach(struct omap_gpmc_s *s, int cs, int iomemtype, void omap_gpmc_attach(struct omap_gpmc_s *s, int cs, MemoryRegion *iomem,
void (*base_upd)(void *opaque, target_phys_addr_t new), void (*base_upd)(void *opaque, target_phys_addr_t new),
void (*unmap)(void *opaque), void *opaque) void (*unmap)(void *opaque), void *opaque)
{ {
...@@ -408,7 +420,7 @@ void omap_gpmc_attach(struct omap_gpmc_s *s, int cs, int iomemtype, ...@@ -408,7 +420,7 @@ void omap_gpmc_attach(struct omap_gpmc_s *s, int cs, int iomemtype,
} }
f = &s->cs_file[cs]; f = &s->cs_file[cs];
f->iomemtype = iomemtype; f->iomem = iomem;
f->base_update = base_upd; f->base_update = base_upd;
f->unmap = unmap; f->unmap = unmap;
f->opaque = opaque; f->opaque = opaque;
......
...@@ -26,7 +26,7 @@ ...@@ -26,7 +26,7 @@
#include "tusb6010.h" #include "tusb6010.h"
struct TUSBState { struct TUSBState {
int iomemtype[2]; MemoryRegion iomem[2];
qemu_irq irq; qemu_irq irq;
MUSBState *musb; MUSBState *musb;
QEMUTimer *otg_timer; QEMUTimer *otg_timer;
...@@ -234,14 +234,14 @@ struct TUSBState { ...@@ -234,14 +234,14 @@ struct TUSBState {
#define TUSB_EP_CONFIG_XFR_SIZE(v) ((v) & 0x7fffffff) #define TUSB_EP_CONFIG_XFR_SIZE(v) ((v) & 0x7fffffff)
#define TUSB_PROD_TEST_RESET_VAL 0xa596 #define TUSB_PROD_TEST_RESET_VAL 0xa596
int tusb6010_sync_io(TUSBState *s) MemoryRegion *tusb6010_sync_io(TUSBState *s)
{ {
return s->iomemtype[0]; return &s->iomem[0];
} }
int tusb6010_async_io(TUSBState *s) MemoryRegion *tusb6010_async_io(TUSBState *s)
{ {
return s->iomemtype[1]; return &s->iomem[1];
} }
static void tusb_intr_update(TUSBState *s) static void tusb_intr_update(TUSBState *s)
...@@ -647,16 +647,12 @@ static void tusb_async_writew(void *opaque, target_phys_addr_t addr, ...@@ -647,16 +647,12 @@ static void tusb_async_writew(void *opaque, target_phys_addr_t addr,
} }
} }
static CPUReadMemoryFunc * const tusb_async_readfn[] = { static const MemoryRegionOps tusb_async_ops = {
tusb_async_readb, .old_mmio = {
tusb_async_readh, .read = { tusb_async_readb, tusb_async_readh, tusb_async_readw, },
tusb_async_readw, .write = { tusb_async_writeb, tusb_async_writeh, tusb_async_writew, },
}; },
.endianness = DEVICE_NATIVE_ENDIAN,
static CPUWriteMemoryFunc * const tusb_async_writefn[] = {
tusb_async_writeb,
tusb_async_writeh,
tusb_async_writew,
}; };
static void tusb_otg_tick(void *opaque) static void tusb_otg_tick(void *opaque)
...@@ -739,8 +735,8 @@ TUSBState *tusb6010_init(qemu_irq intr) ...@@ -739,8 +735,8 @@ TUSBState *tusb6010_init(qemu_irq intr)
s->mask = 0xffffffff; s->mask = 0xffffffff;
s->intr = 0x00000000; s->intr = 0x00000000;
s->otg_timer_val = 0; s->otg_timer_val = 0;
s->iomemtype[1] = cpu_register_io_memory(tusb_async_readfn, memory_region_init_io(&s->iomem[1], &tusb_async_ops, s, "tusb-async",
tusb_async_writefn, s, DEVICE_NATIVE_ENDIAN); UINT32_MAX);
s->irq = intr; s->irq = intr;
s->otg_timer = qemu_new_timer_ns(vm_clock, tusb_otg_tick, s); s->otg_timer = qemu_new_timer_ns(vm_clock, tusb_otg_tick, s);
s->pwr_timer = qemu_new_timer_ns(vm_clock, tusb_power_tick, s); s->pwr_timer = qemu_new_timer_ns(vm_clock, tusb_power_tick, s);
......
...@@ -16,10 +16,13 @@ ...@@ -16,10 +16,13 @@
#ifndef TUSB6010_H #ifndef TUSB6010_H
#define TUSB6010_H #define TUSB6010_H
#include "targphys.h"
#include "memory.h"
typedef struct TUSBState TUSBState; typedef struct TUSBState TUSBState;
TUSBState *tusb6010_init(qemu_irq intr); TUSBState *tusb6010_init(qemu_irq intr);
int tusb6010_sync_io(TUSBState *s); MemoryRegion *tusb6010_sync_io(TUSBState *s);
int tusb6010_async_io(TUSBState *s); MemoryRegion *tusb6010_async_io(TUSBState *s);
void tusb6010_power(TUSBState *s, int on); void tusb6010_power(TUSBState *s, int on);
#endif #endif
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册