From e245e555fa3b5715ff05374eec54ee043e5bee03 Mon Sep 17 00:00:00 2001 From: Kyle Evans Date: Sat, 20 Jun 2020 04:07:58 +0000 Subject: [PATCH] raspberry pi 4: cpufreq support The submitter notes that the bcm2835_cpufreq driver really just needs the rpi4 compat string added to it; powerd subsequently works and the dev.cpu.0 sysctl values look sane and can be successfully manipulated. Submitted by: James Mintram MFC after: 3 days Differential Revision: https://reviews.freebsd.org/D25349 --- sys/arm/broadcom/bcm2835/bcm2835_cpufreq.c | 1 + 1 file changed, 1 insertion(+) diff --git a/sys/arm/broadcom/bcm2835/bcm2835_cpufreq.c b/sys/arm/broadcom/bcm2835/bcm2835_cpufreq.c index 1fc2185fe811..1b5e3a63e09e 100644 --- a/sys/arm/broadcom/bcm2835/bcm2835_cpufreq.c +++ b/sys/arm/broadcom/bcm2835/bcm2835_cpufreq.c @@ -129,6 +129,7 @@ static struct ofw_compat_data compat_data[] = { { "brcm,bcm2835", 1 }, { "brcm,bcm2836", 1 }, { "brcm,bcm2837", 1 }, + { "brcm,bcm2711", 1 }, { NULL, 0 } };