123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100 |
- //! RISC-V CSR's
- //!
- //! The following registers are not available on 64-bit implementations.
- //!
- //! - cycleh
- //! - timeh
- //! - instreth
- //! - hpmcounter[3-31]h
- //! - mcycleh
- //! - minstreth
- //! - mhpmcounter[3-31]h
- #[macro_use]
- mod macros;
- // User Trap Setup
- pub mod uie;
- pub mod ustatus;
- pub mod utvec;
- // User Trap Handling
- pub mod ucause;
- pub mod uepc;
- pub mod uip;
- pub mod uscratch;
- pub mod utval;
- // User Floating-Point CSRs
- // TODO: frm, fflags
- pub mod fcsr;
- // User Counter/Timers
- // TODO: cycle[h], instret[h]
- pub mod time;
- #[rustfmt::skip] // long macro use
- mod hpmcounterx;
- pub use self::hpmcounterx::*;
- pub mod timeh;
- // Supervisor Trap Setup
- // TODO: sedeleg, sideleg
- pub mod sie;
- pub mod sstatus;
- pub mod stvec;
- // TODO: scounteren
- // Supervisor Trap Handling
- pub mod scause;
- pub mod sepc;
- pub mod sip;
- pub mod sscratch;
- pub mod stval;
- // Supervisor Protection and Translation
- pub mod satp;
- // Machine Information Registers
- pub mod marchid;
- pub mod mhartid;
- pub mod mimpid;
- pub mod mvendorid;
- // Machine Trap Setup
- pub mod misa;
- pub mod mstatus;
- pub mod medeleg;
- pub mod mideleg;
- pub mod mie;
- pub mod mtvec;
- // TODO: mcounteren
- // Machine Trap Handling
- pub mod mcause;
- pub mod mepc;
- pub mod mip;
- pub mod mscratch;
- pub mod mtval;
- // Machine Protection and Translation
- mod pmpcfgx;
- pub use self::pmpcfgx::*;
- mod pmpaddrx;
- pub use self::pmpaddrx::*;
- // Machine Counter/Timers
- pub mod mcycle;
- #[rustfmt::skip] // long macro use
- mod mhpmcounterx;
- pub mod minstret;
- pub use self::mhpmcounterx::*;
- pub mod mcycleh;
- pub mod minstreth;
- // Machine Counter Setup
- mod mhpmeventx;
- pub use self::mhpmeventx::*;
- // TODO: Debug/Trace Registers (shared with Debug Mode)
- // TODO: Debug Mode Registers
|