svn commit: r366434 - stable/12/sys/arm/broadcom/bcm2835

Kyle Evans kevans at FreeBSD.org
Sun Oct 4 19:59:13 UTC 2020


Author: kevans
Date: Sun Oct  4 19:59:12 2020
New Revision: 366434
URL: https://svnweb.freebsd.org/changeset/base/366434

Log:
  MFC r362421: 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.

Modified:
  stable/12/sys/arm/broadcom/bcm2835/bcm2835_cpufreq.c
Directory Properties:
  stable/12/   (props changed)

Modified: stable/12/sys/arm/broadcom/bcm2835/bcm2835_cpufreq.c
==============================================================================
--- stable/12/sys/arm/broadcom/bcm2835/bcm2835_cpufreq.c	Sun Oct  4 19:37:15 2020	(r366433)
+++ stable/12/sys/arm/broadcom/bcm2835/bcm2835_cpufreq.c	Sun Oct  4 19:59:12 2020	(r366434)
@@ -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 }
 };
 


More information about the svn-src-all mailing list