mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-04-01 23:07:03 +00:00
cputlb: Byte swap memory transaction attribute
Notice new attribute, byte swap, and force the transaction through the memory slow path. Required by architectures that can invert endianness of memory transaction, e.g. SPARC64 has the Invert Endian TTE bit. Backports commit a26fc6f5152b47f1d7ed928f9c9d462d01ff1624 from qemu
This commit is contained in:
parent
103d6f51c8
commit
a95927de1d
|
@ -385,6 +385,10 @@ void tlb_set_page_with_attrs(CPUState *cpu, target_ulong vaddr,
|
|||
*/
|
||||
address |= TLB_RECHECK;
|
||||
}
|
||||
if (attrs.byte_swap) {
|
||||
/* Force the access through the I/O slow path. */
|
||||
address |= TLB_MMIO;
|
||||
}
|
||||
if (!memory_region_is_ram(section->mr) &&
|
||||
!memory_region_is_romd(section->mr)) {
|
||||
/* IO memory case */
|
||||
|
@ -594,6 +598,10 @@ static uint64_t io_readx(CPUArchState *env, CPUIOTLBEntry *iotlbentry,
|
|||
uint64_t val;
|
||||
MemTxResult r;
|
||||
|
||||
if (iotlbentry->attrs.byte_swap) {
|
||||
op ^= MO_BSWAP;
|
||||
}
|
||||
|
||||
section = iotlb_to_section(cpu, iotlbentry->addr, iotlbentry->attrs);
|
||||
mr = section->mr;
|
||||
mr_offset = (iotlbentry->addr & TARGET_PAGE_MASK) + addr;
|
||||
|
@ -627,6 +635,10 @@ static void io_writex(CPUArchState *env, CPUIOTLBEntry *iotlbentry,
|
|||
MemoryRegion *mr;
|
||||
MemTxResult r;
|
||||
|
||||
if (iotlbentry->attrs.byte_swap) {
|
||||
op ^= MO_BSWAP;
|
||||
}
|
||||
|
||||
section = iotlb_to_section(cpu, iotlbentry->addr, iotlbentry->attrs);
|
||||
mr = section->mr;
|
||||
mr_offset = (iotlbentry->addr & TARGET_PAGE_MASK) + addr;
|
||||
|
|
|
@ -37,6 +37,8 @@ typedef struct MemTxAttrs {
|
|||
unsigned int user:1;
|
||||
/* Requester ID (for MSI for example) */
|
||||
unsigned int requester_id:16;
|
||||
/* Invert endianness for this page */
|
||||
unsigned int byte_swap:1;
|
||||
/*
|
||||
* The following are target-specific page-table bits. These are not
|
||||
* related to actual memory transactions at all. However, this structure
|
||||
|
|
Loading…
Reference in a new issue