On 10.06.2025 15:05, Oleksii Kurochko wrote: > --- a/xen/arch/riscv/include/asm/p2m.h > +++ b/xen/arch/riscv/include/asm/p2m.h > @@ -61,8 +61,28 @@ struct p2m_domain { > typedef enum { > p2m_invalid = 0, /* Nothing mapped here */ > p2m_ram_rw, /* Normal read/write domain RAM */ > + p2m_ram_ro, /* Read-only; writes are silently dropped */
As indicated before - this type should be added when the special handling that it requires is also introduced. > + p2m_mmio_direct_dev,/* Read/write mapping of genuine Device MMIO area */ What's the _dev suffix indicating here? Jan