Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 7 Oct 2019 08:11:49 +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: r353172 - head/sys/gnu/dts/arm
Message-ID:  <201910070811.x978BnA5039458@repo.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: manu
Date: Mon Oct  7 08:11:49 2019
New Revision: 353172
URL: https://svnweb.freebsd.org/changeset/base/353172

Log:
  arm: dts: ti: Fix mmc3 instance by setting it to disabled
  
  DTS Import of Linux 5.3 added a patch that rework the L3 mmc instance
  in the AM335x SoC but removed the status = 'disabled' on the node.
  This cause the kernel to probe the device even if the board doesn't
  have this mmc used and since we don't correctly activate the clock
  for this module we panic with an external data abort.
  Beaglebone(s) don't have this device anyway so simply disabling it.
  Patch for the DTS was sent upstream.
  https://patchwork.kernel.org/patch/11176921/
  
  PR:		241089
  Reported by:	phk

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

Modified: head/sys/gnu/dts/arm/am33xx.dtsi
==============================================================================
--- head/sys/gnu/dts/arm/am33xx.dtsi	Mon Oct  7 08:11:12 2019	(r353171)
+++ head/sys/gnu/dts/arm/am33xx.dtsi	Mon Oct  7 08:11:49 2019	(r353172)
@@ -260,6 +260,7 @@
 				ti,needs-special-reset;
 				interrupts = <29>;
 				reg = <0x0 0x1000>;
+				status = "disabled";
 			};
 		};
 



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