mirror of
git://git.9front.org/plan9front/plan9front
synced 2025-01-12 11:10:06 +00:00
imx8: the mpid should not contain other bits from MPIDR_EL1, only the AFF bits
By looking at ATF, it seems only the affinity bits are expected here, no MT bit.
This commit is contained in:
parent
eaffa1ef55
commit
e48a5c343d
1 changed files with 1 additions and 1 deletions
|
@ -268,7 +268,7 @@ mpinit(void)
|
|||
cachedwbinvse(MACHP(i), MACHSIZE);
|
||||
|
||||
u.r0 = 0x84000003; /* CPU_ON */
|
||||
u.r1 = (sysrd(MPIDR_EL1) & ~MPIDMASK) | machmpid(i);
|
||||
u.r1 = machmpid(i);
|
||||
u.r2 = PADDR(_start);
|
||||
u.r3 = i;
|
||||
smccall(&u);
|
||||
|
|
Loading…
Reference in a new issue