svn commit: r362421 - head/sys/arm/broadcom/bcm2835

Kyle Evans kevans at FreeBSD.org
Sat Jun 20 04:07:59 UTC 2020


Author: kevans
Date: Sat Jun 20 04:07:58 2020
New Revision: 362421
URL: https://svnweb.freebsd.org/changeset/base/362421

Log:
  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 <me at jamesrm.com>
  MFC after:	3 days
  Differential Revision:	https://reviews.freebsd.org/D25349

Modified:
  head/sys/arm/broadcom/bcm2835/bcm2835_cpufreq.c

Modified: head/sys/arm/broadcom/bcm2835/bcm2835_cpufreq.c
==============================================================================
--- head/sys/arm/broadcom/bcm2835/bcm2835_cpufreq.c	Sat Jun 20 04:07:44 2020	(r362420)
+++ head/sys/arm/broadcom/bcm2835/bcm2835_cpufreq.c	Sat Jun 20 04:07:58 2020	(r362421)
@@ -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