Virtual TLBI Domain Outer Shareable Registers
Transform the value of TLBID in TLBI OS operations executed at EL1 before the operation is broadcast.
This register is present only when FEAT_TLBID is implemented and FEAT_AA64 is implemented. Otherwise, direct accesses to VTLBIDOS<n>_EL2 are UNDEFINED.
The number of implemented registers, and the number of TD fields depends on the values of TLBIDIDR_EL1.{NOS, NVOS} as follows:
| NOS | NVOS | Outcome |
|---|---|---|
| 0 | 0 | None of VTLBIDOS<n>_EL2 are implemented. |
| 0 | > 0 | Prohibited. |
| > 0 | 0 | 1 TD<m> field, in 1 VTLBIDOS<n>_EL2 register. |
| <= 8 | 1 | 2 TD<m> fields, in 1 VTLBIDOS<n>_EL2 register. |
| <= 8 | 2 | 4 TD<m> fields, in 1 VTLBIDOS<n>_EL2 register. |
| <= 8 | 3 | 8 TD<m> fields, in 1 VTLBIDOS<n>_EL2 register. |
| <= 8 | 4 | 16 TD<m> fields, across 2 VTLBIDOS<n>_EL2 registers. |
| <= 8 | 5 | 32 TD<m> fields, across 4 VTLBIDOS<n>_EL2 registers. |
| > 8 | 1 | 2 TD<m> fields, in 1 VTLBIDOS<n>_EL2 register. |
| > 8 | 2 | 4 TD<m> fields, in 1 VTLBIDOS<n>_EL2 register. |
| > 8 | 3 | 8 TD<m> fields, across 2 VTLBIDOS<n>_EL2 registers. |
| > 8 | 4 | 16 TD<m> fields, across 4 VTLBIDOS<n>_EL2 registers. |
If EL2 is not implemented, this register is RES0 from EL3.
VTLBIDOS<n>_EL2 is a 64-bit register.
| 63 | 62 | 61 | 60 | 59 | 58 | 57 | 56 | 55 | 54 | 53 | 52 | 51 | 50 | 49 | 48 | 47 | 46 | 45 | 44 | 43 | 42 | 41 | 40 | 39 | 38 | 37 | 36 | 35 | 34 | 33 | 32 |
| 31 | 30 | 29 | 28 | 27 | 26 | 25 | 24 | 23 | 22 | 21 | 20 | 19 | 18 | 17 | 16 | 15 | 14 | 13 | 12 | 11 | 10 | 9 | 8 | 7 | 6 | 5 | 4 | 3 | 2 | 1 | 0 |
| TD7 | TD6 | TD5 | TD4 | ||||||||||||||||||||||||||||
| TD3 | TD2 | TD1 | TD0 | ||||||||||||||||||||||||||||
Virtual to physical TLBID transformation for Outer shareable TLBIs when TLBIDIDR_EL1.NOS <= 8.
This 8-bit field indicates which physical TLBI Domain corresponds to the EL1 view of one virtual TLBI Domain for TLBI OS instructions.
For VTLBIDOS<n>_EL2.TD<m> this field describes the physical TLBI Domain that corresponds to the EL1 view of domain t, where n is t / 8 and m is t mod 8.
Bits of this field above the size shown in TLBIDIDR_EL1.NOS are RES0.
The reset behavior of this field is:
| 63 | 62 | 61 | 60 | 59 | 58 | 57 | 56 | 55 | 54 | 53 | 52 | 51 | 50 | 49 | 48 | 47 | 46 | 45 | 44 | 43 | 42 | 41 | 40 | 39 | 38 | 37 | 36 | 35 | 34 | 33 | 32 |
| 31 | 30 | 29 | 28 | 27 | 26 | 25 | 24 | 23 | 22 | 21 | 20 | 19 | 18 | 17 | 16 | 15 | 14 | 13 | 12 | 11 | 10 | 9 | 8 | 7 | 6 | 5 | 4 | 3 | 2 | 1 | 0 |
| TD3 | TD2 | ||||||||||||||||||||||||||||||
| TD1 | TD0 | ||||||||||||||||||||||||||||||
Virtual to physical TLBID transformation for Outer shareable TLBIs when TLBIDIDR_EL1.NOS > 8.
This 16-bit field indicates which physical TLBI Domain corresponds to the EL1 view of one virtual TLBI Domain for TLBI OS instructions.
For VTLBIDOS<n>_EL2.TD<m> this field describes the physical TLBI Domain that corresponds to the EL1 view of domain t, where n is t / 4 and m is t mod 4.
Bits of this field above the size shown in TLBIDIDR_EL1.NOS are RES0.
The reset behavior of this field is:
Accesses to this register use the following encodings in the System register encoding space:
MRS <Xt>, VTLBIDOS<n>_EL2 ; Where n = 0-3
(op0 = 0b11, op1 = 0b100, CRn = 0b0010, CRm = 0b1001, op2 = 0b0:n[1:0])
let n:integer = UInt(op2[1:0]); if !(IsFeatureImplemented(FEAT_TLBID) && IsFeatureImplemented(FEAT_AA64)) then Undefined(); elsif n >= NUM_VTLBID_REGS then Undefined(); elsif HaveEL(EL3) && PSTATE.EL == EL2 && EL3SDDUndefPriority() && SCR_EL3().VTLBIDEn == '0' then Undefined(); elsif PSTATE.EL == EL0 then Undefined(); elsif PSTATE.EL == EL1 then if EffectiveHCR_EL2_NVx() IN {'1x1'} then X{64}(t) = NVMem(0x540 + (8 * n)); elsif EffectiveHCR_EL2_NVx() IN {'xx1'} then AArch64_SystemAccessTrap(EL2, 0x18); else Undefined(); end; elsif PSTATE.EL == EL2 then if HaveEL(EL3) && SCR_EL3().VTLBIDEn == '0' then if EL3SDDUndef() then Undefined(); else AArch64_SystemAccessTrap(EL3, 0x18); end; else X{64}(t) = VTLBIDOS_EL2(n); end; elsif PSTATE.EL == EL3 then X{64}(t) = VTLBIDOS_EL2(n); end;
MSR VTLBIDOS<n>_EL2, <Xt> ; Where n = 0-3
(op0 = 0b11, op1 = 0b100, CRn = 0b0010, CRm = 0b1001, op2 = 0b0:n[1:0])
let n:integer = UInt(op2[1:0]); if !(IsFeatureImplemented(FEAT_TLBID) && IsFeatureImplemented(FEAT_AA64)) then Undefined(); elsif n >= NUM_VTLBID_REGS then Undefined(); elsif HaveEL(EL3) && PSTATE.EL == EL2 && EL3SDDUndefPriority() && SCR_EL3().VTLBIDEn == '0' then Undefined(); elsif PSTATE.EL == EL0 then Undefined(); elsif PSTATE.EL == EL1 then if EffectiveHCR_EL2_NVx() IN {'1x1'} then NVMem(0x540 + (8 * n)) = X{64}(t); elsif EffectiveHCR_EL2_NVx() IN {'xx1'} then AArch64_SystemAccessTrap(EL2, 0x18); else Undefined(); end; elsif PSTATE.EL == EL2 then if HaveEL(EL3) && SCR_EL3().VTLBIDEn == '0' then if EL3SDDUndef() then Undefined(); else AArch64_SystemAccessTrap(EL3, 0x18); end; else VTLBIDOS_EL2(n) = X{64}(t); end; elsif PSTATE.EL == EL3 then VTLBIDOS_EL2(n) = X{64}(t); end;
Version 2026.06 — Copyright © 2010-2026 Arm Limited or its affiliates.
This site is provided as a community resource and is NOT affiliated with nor endorsed by Arm Limited.