1
0
Fork 0
mirror of https://github.com/Atmosphere-NX/Atmosphere.git synced 2024-12-19 08:52:25 +00:00

thermosphere: we expose a GICv2, not a GICv1

This commit is contained in:
TuxSH 2020-01-19 18:23:37 +00:00
parent 3ca3e094fe
commit 0f0228e240

View file

@ -334,7 +334,7 @@ static inline u32 vgicGetDistributorTypeRegister(void)
static inline u32 vgicGetDistributorImplementerIdentificationRegister(void) static inline u32 vgicGetDistributorImplementerIdentificationRegister(void)
{ {
u32 iidr = ((u32)'A' << 24); // Product Id: Atmosphère (?) u32 iidr = ((u32)'A' << 24); // Product Id: Atmosphère (?)
iidr |= 1 << 16; // Major revision 1 iidr |= 2 << 16; // Major revision 2 (GICv2)
iidr |= 0 << 12; // Minor revision 0 iidr |= 0 << 12; // Minor revision 0
iidr |= 0x43B; // Implementer: Arm (value copied from physical GICD) iidr |= 0x43B; // Implementer: Arm (value copied from physical GICD)
return iidr; return iidr;