svn commit: r326542 - head/sys/arm/allwinner/clkng

Emmanuel Vadot manu at FreeBSD.org
Mon Dec 4 20:45:16 UTC 2017


Author: manu
Date: Mon Dec  4 20:45:15 2017
New Revision: 326542
URL: https://svnweb.freebsd.org/changeset/base/326542

Log:
  Allwinner: Add H5 compatible to aw_ccu
  
  Recent DTS (from Linux 4.14) specify a compatible "allwinner,sun50i-h5-ccu"
  for H5 SoC. Since we get the DTB from u-boot this wasn't noticed.
  Add the compatible so later version of u-boot will not fail for us.

Modified:
  head/sys/arm/allwinner/clkng/aw_ccung.c

Modified: head/sys/arm/allwinner/clkng/aw_ccung.c
==============================================================================
--- head/sys/arm/allwinner/clkng/aw_ccung.c	Mon Dec  4 20:22:26 2017	(r326541)
+++ head/sys/arm/allwinner/clkng/aw_ccung.c	Mon Dec  4 20:45:15 2017	(r326542)
@@ -95,6 +95,7 @@ static struct ofw_compat_data compat_data[] = {
 #endif
 #if defined(SOC_ALLWINNER_H3) || defined(SOC_ALLWINNER_H5)
 	{ "allwinner,sun8i-h3-ccu", H3_CCU },
+	{ "allwinner,sun50i-h5-ccu", H3_CCU },
 	{ "allwinner,sun8i-h3-r-ccu", H3_R_CCU },
 #endif
 #if defined(SOC_ALLWINNER_A31)


More information about the svn-src-all mailing list