nacl.rs 2.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475
  1. //! Chapter 15. Nested Acceleration Extension (EID #0x4E41434C "NACL").
  2. /// Extension ID for Nested Acceleration Extension.
  3. pub const EID_NACL: usize = crate::eid_from_str("NACL") as _;
  4. pub use fid::*;
  5. /// Declared in § 15.15.
  6. mod fid {
  7. /// Function ID to probe a nested acceleration feature.
  8. ///
  9. /// Declared in §15.5.
  10. pub const PROBE_FEATURE: usize = 0;
  11. /// Function ID to set and enable the shared memory for nested acceleration on the calling hart.
  12. ///
  13. /// Declared in §15.6.
  14. pub const SET_SHMEM: usize = 1;
  15. /// Function ID to synchronize CSRs in the nested acceleration shared memory.
  16. ///
  17. /// Declared in §15.7.
  18. pub const SYNC_CSR: usize = 2;
  19. /// Function ID to synchronize HFENCEs in the nested acceleration shared memory.
  20. ///
  21. /// Declared in §15.8.
  22. pub const SYNC_HFENCE: usize = 3;
  23. /// Function ID to synchronize CSRs and HFENCEs in the nested acceleration shared memory and emulate the SRET instruction.
  24. ///
  25. /// Declared in §15.9.
  26. pub const SYNC_SRET: usize = 4;
  27. }
  28. /// Nested Acceleration Feature ID.
  29. ///
  30. /// Declared in §15.
  31. pub mod feature_id {
  32. /// Feature ID for the synchronize CSR feature.
  33. ///
  34. /// Declared in §15.1.
  35. pub const SYNC_CSR: usize = 0;
  36. /// Feature ID for the synchronize HFENCE feature.
  37. ///
  38. /// Declared in §15.2.
  39. pub const SYNC_HFENCE: usize = 1;
  40. /// Feature ID for the synchronize SRET feature.
  41. ///
  42. /// Declared in §15.3.
  43. pub const SYNC_SRET: usize = 2;
  44. /// Feature ID for the autoswap CSR feature.
  45. ///
  46. /// Declared in §15.4.
  47. pub const AUTOSWAP_CSR: usize = 3;
  48. }
  49. /// Size of shared memory set by supervisor software for current hart.
  50. ///
  51. /// NACL shared memory includes scratch space and CSR space. Due to the difference
  52. /// of CSR width, this size varies between different `XLEN` values. `NATIVE`
  53. /// constant here only matches the integer width for the target this crate is compiled.
  54. /// If you are writing an SEE with different `XLEN` from host platform, you should
  55. /// choose other correct constant value from `RV32`, `RV64` or `RV128` in module `shmem_size`
  56. /// instead.
  57. pub mod shmem_size {
  58. use core::mem::size_of;
  59. /// Size of NACL shared memory on platforms with `XLEN` of same width as the current platform.
  60. pub const NATIVE: usize = 4096 + 1024 * size_of::<usize>();
  61. /// Size of NACL shared memory on RV32 platforms.
  62. pub const RV32: usize = 4096 + 1024 * size_of::<u32>();
  63. /// Size of NACL shared memory on RV64 platforms.
  64. pub const RV64: usize = 4096 + 1024 * size_of::<u64>();
  65. /// Size of NACL shared memory on RV128 platforms.
  66. pub const RV128: usize = 4096 + 1024 * size_of::<u128>();
  67. }