Flush from all caches
pub const VAL_CACHE_FLUSH = 6Flush from data caches
pub const VAL_DCACHE_FLUSH = 7Flush from instruction caches
pub const VAL_ICACHE_FLUSH = 8pub const MATTR = struct {
/// Cachability
pub const CACHE = 1;
/// Migrability
pub const MIGRATE = 2;
/// Replicability
pub const REPLICATE = 4;
/// (Generic) turn attribute off
pub const VAL_OFF = 0;
/// (Generic) turn attribute on
pub const VAL_ON = 1;
/// (Generic) return current value
pub const VAL_GET = 2;
/// Flush from all caches
pub const VAL_CACHE_FLUSH = 6;
/// Flush from data caches
pub const VAL_DCACHE_FLUSH = 7;
/// Flush from instruction caches
pub const VAL_ICACHE_FLUSH = 8;
/// Sync I+D caches
pub const VAL_CACHE_SYNC = 9;
/// Get page info (stats)
pub const VAL_GET_INFO = 10;
}