mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2025-08-04 09:11:14 +00:00
memory.h: Move MemTxResult type to memattrs.h
Move the MemTxResult type to memattrs.h. We're going to want to use it in cpu/qom.h, which doesn't want to include all of memory.h. In practice MemTxResult and MemTxAttrs are pretty closely linked since both are used for the new-style read_with_attrs and write_with_attrs callbacks, so memattrs.h is a reasonable home for this rather than creating a whole new header file for it. Backports commit 3114d092b1740f9db9aa559aeb48ee387011e1da from qemu
This commit is contained in:
parent
06619904c6
commit
26c8f31d9e
|
@ -44,4 +44,14 @@ typedef struct MemTxAttrs {
|
||||||
*/
|
*/
|
||||||
#define MEMTXATTRS_UNSPECIFIED ((MemTxAttrs) { .unspecified = 1 })
|
#define MEMTXATTRS_UNSPECIFIED ((MemTxAttrs) { .unspecified = 1 })
|
||||||
|
|
||||||
|
/* New-style MMIO accessors can indicate that the transaction failed.
|
||||||
|
* A zero (MEMTX_OK) response means success; anything else is a failure
|
||||||
|
* of some kind. The memory subsystem will bitwise-OR together results
|
||||||
|
* if it is synthesizing an operation from multiple smaller accesses.
|
||||||
|
*/
|
||||||
|
#define MEMTX_OK 0
|
||||||
|
#define MEMTX_ERROR (1U << 0) /* device returned an error */
|
||||||
|
#define MEMTX_DECODE_ERROR (1U << 1) /* nothing at that address */
|
||||||
|
typedef uint32_t MemTxResult;
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -61,16 +61,6 @@ struct IOMMUTLBEntry {
|
||||||
IOMMUAccessFlags perm;
|
IOMMUAccessFlags perm;
|
||||||
};
|
};
|
||||||
|
|
||||||
/* New-style MMIO accessors can indicate that the transaction failed.
|
|
||||||
* A zero (MEMTX_OK) response means success; anything else is a failure
|
|
||||||
* of some kind. The memory subsystem will bitwise-OR together results
|
|
||||||
* if it is synthesizing an operation from multiple smaller accesses.
|
|
||||||
*/
|
|
||||||
#define MEMTX_OK 0
|
|
||||||
#define MEMTX_ERROR (1U << 0) /* device returned an error */
|
|
||||||
#define MEMTX_DECODE_ERROR (1U << 1) /* nothing at that address */
|
|
||||||
typedef uint32_t MemTxResult;
|
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Memory region callbacks
|
* Memory region callbacks
|
||||||
*/
|
*/
|
||||||
|
|
Loading…
Reference in a new issue