mirror of
https://github.com/AsahiLinux/m1n1
synced 2024-11-10 17:54:13 +00:00
m1n1.hw.agx: Fix fault status register fields
Signed-off-by: Asahi Lina <lina@asahilina.net>
This commit is contained in:
parent
e7dee84c3a
commit
e22d2fe049
1 changed files with 5 additions and 3 deletions
|
@ -13,11 +13,13 @@ class FAULT_REASON(IntEnum):
|
|||
UNK = 5
|
||||
|
||||
class R_FAULT_INFO(Register64):
|
||||
ADDR = 63, 24
|
||||
WRITE = 23
|
||||
ADDR = 63, 30
|
||||
SIDEBAND = 29, 23
|
||||
CONTEXT = 22, 17
|
||||
UNIT = 16, 9
|
||||
UNK_8 = 8
|
||||
LEVEL = 8, 7
|
||||
UNK_5 = 6, 5
|
||||
READ = 4
|
||||
REASON = 3, 1, FAULT_REASON
|
||||
FAULTED = 0
|
||||
|
||||
|
|
Loading…
Reference in a new issue