Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 17 Nov 2020 14:58:31 +0000 (UTC)
From:      Emmanuel Vadot <manu@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r367766 - head/sys/arm/allwinner/clkng
Message-ID:  <202011171458.0AHEwVCu030645@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202011171458.0AHEwVCu030645>