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

Emmanuel Vadot manu at FreeBSD.org
Tue Nov 17 14:58:31 UTC 2020


Author: manu
Date: Tue Nov 17 14:58:30 2020
New Revision: 367766
URL: https://svnweb.freebsd.org/changeset/base/367766

Log:
  arm64: allwinner: Init the Display Engine clock
  
  In case u-boot was compiled without video support set the PLL
  to 432Mhz (which allow us to use most of the HDMI resolution for
  tcon) and set it as the parent for the DE clock.

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

Modified: head/sys/arm/allwinner/clkng/ccu_a64.c
==============================================================================
--- head/sys/arm/allwinner/clkng/ccu_a64.c	Tue Nov 17 14:57:34 2020	(r367765)
+++ head/sys/arm/allwinner/clkng/ccu_a64.c	Tue Nov 17 14:58:30 2020	(r367766)
@@ -789,6 +789,8 @@ static struct aw_clk_init a64_init_clks[] = {
 	{"ahb1", "pll_periph0", 0, false},
 	{"ahb2", "pll_periph0", 0, false},
 	{"dram", "pll_ddr0", 0, false},
+	{"pll_de", NULL, 432000000, true},
+	{"de", "pll_de", 0, true},
 };
 
 static int


More information about the svn-src-head mailing list