On Wed, 2026-07-15 at 18:26 +0530, Chinmay Rath wrote: > + PPC2_BCDA_ISA206 = 0x0000000000040000ULL, > /* PPE42 > instructions */ > - PPC2_PPE42 = 0x0000000000800000ULL, > + PPC2_PPE42 = 0x0000000000080000ULL, > /* PPE42X > instructions */ > - PPC2_PPE42X = 0x0000000001000000ULL, > + PPC2_PPE42X = 0x0000000000100000ULL, > /* PPE42XM > instructions */ > - PPC2_PPE42XM = 0x0000000002000000ULL, > + PPC2_PPE42XM = 0x0000000000200000ULL, >
Hi Chinmay, Would it be fine if we can do something like this instead? PPC2_PPE42XM = (1ull << 21); It would be easy to see where the gaps are from next time. ~Shivang.
