I have two Raspberry Pi 4s, both running Raspbian. One of them I just purchased this year and the other 2019. On the older board, running Buster with kernel 5.10, my /proc/cpuinfo reads:
processor : 0
model name : ARMv7 Processor rev 3 (v7l)
BogoMIPS : 144.00
Features : half thumb fastmult vfp edsp neon vfpv3 tls vfpv4 idiva idivt vfpd32 lpae evtstrm crc32
CPU implementer : 0x41
CPU architecture: 7
CPU variant : 0x0
CPU part : 0xd08
CPU revision : 3
...snip
Hardware : BCM2711
Revision : c03112
Serial : ...
Model : Raspberry Pi 4 Model B Rev 1.2
However, on the new RPi, running Bullseye / kernel 6.1, I see:
processor : 0
BogoMIPS : 108.00
Features : fp asimd evtstrm crc32 cpuid
CPU implementer : 0x41
CPU architecture: 8
CPU variant : 0x0
CPU part : 0xd08
CPU revision : 3
...snip
Hardware : BCM2835
Revision : c03115
Serial : ...
Model : Raspberry Pi 4 Model B Rev 1.5
So did the 1.5 revision of the board downgrade the processor? Or is kernel 6.1 not reporting CPU extensions like thumb and neon and so on?
Rev 1.2. By "erroneous" I mean that the BCM2835 was used in the original model 1 and Zero, the Pi 4 SoC is the BCM2711: https://www.raspberrypi.com/documentation/computers/processors.html – goldilocks Oct 15 '23 at 18:51cpuinfolook the same regardless of actual hardware should not be surprising at all. – Jaromanda X Oct 15 '23 at 22:31