svn commit: r350673 - head/sys/gnu/dts/arm

Emmanuel Vadot manu at FreeBSD.org
Wed Aug 7 13:11:54 UTC 2019


Author: manu
Date: Wed Aug  7 13:11:53 2019
New Revision: 350673
URL: https://svnweb.freebsd.org/changeset/base/350673

Log:
  arm: dts: am33xx: Fix the region for uart0
  
  The region for uart0 is declared to be 0x2000 in size but the parent
  node only declare 0x1000.
  As the parent only declare a size of 0x1000 in the ranges for it's children
  this cause the device to not be mappable.
  
  https://patchwork.kernel.org/patch/11056769/

Modified:
  head/sys/gnu/dts/arm/am33xx-l4.dtsi

Modified: head/sys/gnu/dts/arm/am33xx-l4.dtsi
==============================================================================
--- head/sys/gnu/dts/arm/am33xx-l4.dtsi	Wed Aug  7 04:08:50 2019	(r350672)
+++ head/sys/gnu/dts/arm/am33xx-l4.dtsi	Wed Aug  7 13:11:53 2019	(r350673)
@@ -185,7 +185,7 @@
 			uart0: serial at 0 {
 				compatible = "ti,am3352-uart", "ti,omap3-uart";
 				clock-frequency = <48000000>;
-				reg = <0x0 0x2000>;
+				reg = <0x0 0x1000>;
 				interrupts = <72>;
 				status = "disabled";
 				dmas = <&edma 26 0>, <&edma 27 0>;


More information about the svn-src-all mailing list