ARM Cortex-A72 CPU All In One
ARM Cortex-A72 CPU All In One
Raspberry Pi 4B,
BCM2711
4 核心1.5GHz
64 位 CPU / Raspberry Pi 4B,BCM2711
4 核心1.8GHz
64 位 CPU
$ pinout
Pi Model 4B V1.5
Revision : d03115
SoC : BCM2711
RAM : 8GB
Storage : MicroSD
USB ports : 4 (of which 2 USB3)
Ethernet ports : 1 (1000Mbps max. speed)
Wi-fi : True
Bluetooth : True
Camera ports (CSI) : 1
Display ports (DSI): 1
$ cat /proc/cpuinfo
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
processor : 1
BogoMIPS : 108.00
Features : fp asimd evtstrm crc32 cpuid
CPU implementer : 0x41
CPU architecture: 8
CPU variant : 0x0
CPU part : 0xd08
CPU revision : 3
processor : 2
BogoMIPS : 108.00
Features : fp asimd evtstrm crc32 cpuid
CPU implementer : 0x41
CPU architecture: 8
CPU variant : 0x0
CPU part : 0xd08
CPU revision : 3
processor : 3
BogoMIPS : 108.00
Features : fp asimd evtstrm crc32 cpuid
CPU implementer : 0x41
CPU architecture: 8
CPU variant : 0x0
CPU part : 0xd08
CPU revision : 3
Hardware : BCM2835
Revision : d03115
Serial : 1000000052e87fab
Model : Raspberry Pi 4 Model B Rev 1.5
BCM2835
# $ cat /sys/firmware/devicetree/base/mode ❌
$ ls /sys/firmware/devicetree/base
$ cat /sys/firmware/devicetree/base/model
Raspberry Pi 4 Model B Rev 1.5
Cortex-A72
https://developer.arm.com/Processors/Cortex-A72
https://www.anandtech.com/show/9184/arm-reveals-cortex-a72-architecture-details
https://www.anandtech.com/show/8957/arm-announces-cortex-a72
CPU 性能分析
https://www.cpubenchmark.net/cpu.php?cpu=ARM+Cortex-A72+4+Core+1500+MHz&id=3917
Raspberry Pi 4B
https://www.raspberrypi.com/news/raspberry-pi-4-on-sale-now-from-35/
https://www.raspberrypi.com/news/8gb-raspberry-pi-4-on-sale-now-at-75/
1.5GHz => 1.8GHz 超频
🚀
# config.txt
arm_freq=1800
https://www.raspberrypi.com/news/bullseye-bonus-1-8ghz-raspberry-pi-4/
$ cat /proc/cpuinfo
$ cat /sys/firmware/devicetree/base/model
# Raspberry Pi 3 Model B Rev 1.2
$ cat /proc/cpuinfo
$ cat /sys/firmware/devicetree/base/model
# Raspberry Pi 4 Model B Rev 1.5
# Raspberry Pi 4B
Hardware : BCM2835
Revision : d03115
Serial : 1000000052e87fab
Model : Raspberry Pi 4 Model B Rev 1.5
https://img2023.cnblogs.com/blog/740516/202305/740516-20230528005708732-1710477091.png
# Raspberry Pi 3B
Hardware : BCM2835
Revision : a22082
Serial : 0000000095bf9be6
Model : Raspberry Pi 3 Model B Rev 1.2
#include <stdio.h>
#include <stdlib.h>
int main( int argc, char *argv[] )
{
FILE *fp;
char revcode[32];
fp = popen("cat /proc/cpuinfo | awk '/Revision/ {print $3}'", "r");
if (fp == NULL)
exit(1);
fgets(revcode, sizeof(revcode), fp);
pclose(fp);
int code = strtol(revcode, NULL, 16);
int new = (code >> 23) & 0x1;
int model = (code >> 4) & 0xff;
int mem = (code >> 20) & 0x7;
if (new && model == 0x11 && mem >= 3) // Note, 3 in the mem field is 2GB
printf("We are a 4B with at least 2GB of RAM!\n" );
return 0;
}
import subprocess
cmd = "cat /proc/cpuinfo | awk '/Revision/ {print $3}'"
revcode = subprocess.check_output(cmd, shell=True)
code = int(revcode, 16)
new = (code >> 23) & 0x1
model = (code >> 4) & 0xff
mem = (code >> 20) & 0x7
if new and model == 0x11 and mem >= 3 : # Note, 3 in the mem field is 2GB
print("We are a 4B with at least 2GB RAM!")
https://www.raspberrypi.com/documentation/computers/raspberry-pi.html#raspberry-pi-revision-codes
BCM2711
vs BCM2837
/ BCM2837B0
https://en.wikipedia.org/wiki/Raspberry_Pi
demos
refs
https://en.wikipedia.org/wiki/ARM_Cortex-A72
如何解决树莓派 SSH 待机一段时间后自动断开 bug All In One
https://www.cnblogs.com/xgqfrms/p/16481735.html
Raspberry Pi 4 Model B
Product Information Portal
All In One
https://www.cnblogs.com/xgqfrms/p/17428351.html
©xgqfrms 2012-2025
www.cnblogs.com/xgqfrms 发布文章使用:只允许注册用户才可以访问!
原创文章,版权所有©️xgqfrms, 禁止转载 🈲️,侵权必究⚠️!
本文首发于博客园,作者:xgqfrms,原文链接:https://www.cnblogs.com/xgqfrms/p/17436129.html
未经授权禁止转载,违者必究!
【推荐】国内首个AI IDE,深度理解中文开发场景,立即下载体验Trae
【推荐】编程新体验,更懂你的AI,立即体验豆包MarsCode编程助手
【推荐】抖音旗下AI助手豆包,你的智能百科全书,全免费不限次数
【推荐】轻量又高性能的 SSH 工具 IShell:AI 加持,快人一步
· 物流快递公司核心技术能力-地址解析分单基础技术分享
· .NET 10首个预览版发布:重大改进与新特性概览!
· 单线程的Redis速度为什么快?
· 展开说说关于C#中ORM框架的用法!
· Pantheons:用 TypeScript 打造主流大模型对话的一站式集成库
2022-05-27 广告落地页渲染的原生化 All In One
2022-05-27 SwiftUI Github App 源码 All In One
2022-05-27 Flutter Github App 源码 All In One
2021-05-27 Apple 链接 Xbox 手柄 All In One
2021-05-27 vue 组件响应式更新原理 All In One
2020-05-27 css3 units & 1 turn
2020-05-27 custom scrollbar & ::-webkit-scrollbar & hidden scrollbar All In One