mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-06 01:03:55 -06:00
hw/pci-host/astro: Add LMMIO range support
Each Astro on 64-bit machines supports up to four LMMIO regions. Those regions are used by graphic cards and other PCI devices which need to map huge memory areas. The LMMIO regions are configured and set up by SeaBIOS-hppa and then used as-is by the operating systems (Linux, HP-UX). With this addition it's now possible to add other PCI graphic cards on the command line, e.g. with "-device ati-vga". Signed-off-by: Helge Deller <deller@gmx.de>
This commit is contained in:
parent
b6247273fb
commit
5bef80106f
2 changed files with 55 additions and 3 deletions
|
@ -521,6 +521,53 @@ static ElroyState *elroy_init(int num)
|
|||
* Astro Runway chip.
|
||||
*/
|
||||
|
||||
static void adjust_LMMIO_DIRECT_mapping(AstroState *s, unsigned int reg_index)
|
||||
{
|
||||
MemoryRegion *lmmio_alias;
|
||||
unsigned int lmmio_index, map_route;
|
||||
hwaddr map_addr;
|
||||
uint32_t map_size;
|
||||
struct ElroyState *elroy;
|
||||
|
||||
/* pointer to LMMIO_DIRECT entry */
|
||||
lmmio_index = reg_index / 3;
|
||||
lmmio_alias = &s->lmmio_direct[lmmio_index];
|
||||
|
||||
map_addr = s->ioc_ranges[3 * lmmio_index + 0];
|
||||
map_size = s->ioc_ranges[3 * lmmio_index + 1];
|
||||
map_route = s->ioc_ranges[3 * lmmio_index + 2];
|
||||
|
||||
/* find elroy to which this address is routed */
|
||||
map_route &= (ELROY_NUM - 1);
|
||||
elroy = s->elroy[map_route];
|
||||
|
||||
if (lmmio_alias->enabled) {
|
||||
memory_region_set_enabled(lmmio_alias, false);
|
||||
}
|
||||
|
||||
map_addr = F_EXTEND(map_addr);
|
||||
map_addr &= TARGET_PAGE_MASK;
|
||||
map_size = (~map_size) + 1;
|
||||
map_size &= TARGET_PAGE_MASK;
|
||||
|
||||
/* exit if disabled or zero map size */
|
||||
if (!(map_addr & 1) || !map_size) {
|
||||
return;
|
||||
}
|
||||
|
||||
if (!memory_region_size(lmmio_alias)) {
|
||||
memory_region_init_alias(lmmio_alias, OBJECT(elroy),
|
||||
"pci-lmmmio-alias", &elroy->pci_mmio,
|
||||
(uint32_t) map_addr, map_size);
|
||||
memory_region_add_subregion(get_system_memory(), map_addr,
|
||||
lmmio_alias);
|
||||
} else {
|
||||
memory_region_set_alias_offset(lmmio_alias, map_addr);
|
||||
memory_region_set_size(lmmio_alias, map_size);
|
||||
memory_region_set_enabled(lmmio_alias, true);
|
||||
}
|
||||
}
|
||||
|
||||
static MemTxResult astro_chip_read_with_attrs(void *opaque, hwaddr addr,
|
||||
uint64_t *data, unsigned size,
|
||||
MemTxAttrs attrs)
|
||||
|
@ -628,6 +675,11 @@ static MemTxResult astro_chip_write_with_attrs(void *opaque, hwaddr addr,
|
|||
break;
|
||||
case 0x0300 ... 0x03d8 - 1: /* LMMIO_DIRECT0_BASE... */
|
||||
put_val_in_arrary(s->ioc_ranges, 0x300, addr, size, val);
|
||||
unsigned int index = (addr - 0x300) / 8;
|
||||
/* check if one of the 4 LMMIO_DIRECT regs, each using 3 entries. */
|
||||
if (index < LMMIO_DIRECT_RANGES * 3) {
|
||||
adjust_LMMIO_DIRECT_mapping(s, index);
|
||||
}
|
||||
break;
|
||||
case 0x10200:
|
||||
case 0x10220:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue