diff options
author | Max Filippov <jcmvbkbc@gmail.com> | 2017-02-17 16:21:36 -0800 |
---|---|---|
committer | Max Filippov <jcmvbkbc@gmail.com> | 2018-01-09 09:55:39 -0800 |
commit | e98727417aa639024af9d17650f8811dc408885c (patch) | |
tree | b3ed6f47cb80101184cc6f347a24b7594373b699 /target/xtensa/cpu.h | |
parent | d1e9b0068ac9544297042f1c4bbbf1a31a3eee3b (diff) | |
download | qemu-e98727417aa639024af9d17650f8811dc408885c.zip qemu-e98727417aa639024af9d17650f8811dc408885c.tar.gz qemu-e98727417aa639024af9d17650f8811dc408885c.tar.bz2 |
target/xtensa: implement GPIO32
GPIO32 is not in the core ISA, but it was widely used in Diamond Cores.
This implementation doesn't do actual I/O and doesn't handle the case of
GPIO32 state being a part of coprocessor.
Signed-off-by: Max Filippov <jcmvbkbc@gmail.com>
Diffstat (limited to 'target/xtensa/cpu.h')
-rw-r--r-- | target/xtensa/cpu.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/target/xtensa/cpu.h b/target/xtensa/cpu.h index 80e9b47..d9404aa 100644 --- a/target/xtensa/cpu.h +++ b/target/xtensa/cpu.h @@ -108,6 +108,7 @@ enum { }; enum { + EXPSTATE = 230, THREADPTR = 231, FCR = 232, FSR = 233, |