Hello community,

here is the log from the commit of package raspberrypi-firmware-dt for 
openSUSE:Leap:15.2 checked in at 2020-02-29 17:15:11
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++
Comparing /work/SRC/openSUSE:Leap:15.2/raspberrypi-firmware-dt (Old)
 and      /work/SRC/openSUSE:Leap:15.2/.raspberrypi-firmware-dt.new.26092 (New)
++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Package is "raspberrypi-firmware-dt"

Sat Feb 29 17:15:11 2020 rev:23 rq:779785 version:2020.02.03

Changes:
--------
--- 
/work/SRC/openSUSE:Leap:15.2/raspberrypi-firmware-dt/raspberrypi-firmware-dt.changes
        2020-01-30 06:07:47.466443959 +0100
+++ 
/work/SRC/openSUSE:Leap:15.2/.raspberrypi-firmware-dt.new.26092/raspberrypi-firmware-dt.changes
     2020-02-29 17:15:13.740892218 +0100
@@ -1,0 +2,10 @@
+Wed Feb 19 14:12:46 UTC 2020 - Nicolas Patricio Saenz Julienne 
<[email protected]>
+
+- Update to 6a3905568d (2020-02-03) (jsc#SLE-7296)
+ * based on rpi-5.5.y
+- Remove obsolete overlays and patches because of bump to rpi-5.5.y:
+ * rpi4-genet-overlay.dtso
+ * upstream-rpi4-genet-phy.patch
+- Add remove-vmmc-emmc2.patch fixing issues with SD cards boot
+
+-------------------------------------------------------------------

Old:
----
  raspberrypi-firmware-dt-2020.01.09.tar.xz
  rpi4-genet-overlay.dts
  upstream-rpi4-genet-phy.patch

New:
----
  raspberrypi-firmware-dt-2020.02.03.tar.xz
  remove-vmmc-emmc2.patch

++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++++

Other differences:
------------------
++++++ raspberrypi-firmware-dt.spec ++++++
--- /var/tmp/diff_new_pack.8ToVfr/_old  2020-02-29 17:15:14.612894016 +0100
+++ /var/tmp/diff_new_pack.8ToVfr/_new  2020-02-29 17:15:14.620894032 +0100
@@ -17,7 +17,7 @@
 
 
 Name:           raspberrypi-firmware-dt
-Version:        2020.01.09
+Version:        2020.02.03
 Release:        0
 Summary:        Device trees for the Raspberry Pi firmware loader
 License:        GPL-2.0-only
@@ -27,10 +27,9 @@
 Source1:        disable-vc4-overlay.dts
 Source2:        rpi4-cma-overlay.dts
 Source3:        rpi4-pcie-ib-size-fix-overlay.dts
-Source4:        rpi4-genet-overlay.dts
-Source5:        rpi4-thermal.dts
+Source4:        rpi4-thermal.dts
 Source100:      get-from-git.sh
-Patch0:         upstream-rpi4-genet-phy.patch
+Patch0:         remove-vmmc-emmc2.patch
 Requires:       raspberrypi-firmware
 BuildRequires:  dtc
 BuildRequires:  raspberrypi-firmware
@@ -58,7 +57,7 @@
 done
 
 export DTC_FLAGS="-R 0 -p 0 -@ -H epapr"
-for dts in arch/arm/boot/dts/overlays/*dts %{SOURCE1} %{SOURCE2} %{SOURCE3} 
%{SOURCE4} %{SOURCE5}; do
+for dts in arch/arm/boot/dts/overlays/*dts %{SOURCE1} %{SOURCE2} %{SOURCE3} 
%{SOURCE4}; do
     target=$(basename ${dts%*.dts})
     target=${target%*-overlay}
     mkdir -p $PPDIR/overlays

++++++ get-from-git.sh ++++++
--- /var/tmp/diff_new_pack.8ToVfr/_old  2020-02-29 17:15:14.704894205 +0100
+++ /var/tmp/diff_new_pack.8ToVfr/_new  2020-02-29 17:15:14.704894205 +0100
@@ -1,6 +1,6 @@
 #!/bin/bash
 
-LINUX_BRANCH=rpi-5.4.y
+LINUX_BRANCH=rpi-5.5.y
 
 # this is a huge hunk of stuff, so reuse the local repo if possible
 if [ -d linux/.git ]; then

++++++ raspberrypi-firmware-dt-2020.01.09.tar.xz -> 
raspberrypi-firmware-dt-2020.02.03.tar.xz ++++++
/work/SRC/openSUSE:Leap:15.2/raspberrypi-firmware-dt/raspberrypi-firmware-dt-2020.01.09.tar.xz
 
/work/SRC/openSUSE:Leap:15.2/.raspberrypi-firmware-dt.new.26092/raspberrypi-firmware-dt-2020.02.03.tar.xz
 differ: char 25, line 1

++++++ remove-vmmc-emmc2.patch ++++++
>From 26e87be7f6c1ed1752ad7ca671375c8d6e0820cf Mon Sep 17 00:00:00 2001
From: Nicolas Saenz Julienne <[email protected]>
Date: Mon, 24 Feb 2020 12:52:08 +0100
Subject: [PATCH] ARM: dts: get rid of emmc2's vmmc-supply regulator

This regulator setup isn't compatible with the upstream kernel. So get
rid of it as it's not really needed.

Signed-off-by: Nicolas Saenz Julienne <[email protected]>
---
 arch/arm/boot/dts/bcm2711-rpi-4-b.dts | 4 ----
 1 file changed, 4 deletions(-)

diff --git a/arch/arm/boot/dts/bcm2711-rpi-4-b.dts 
b/arch/arm/boot/dts/bcm2711-rpi-4-b.dts
index e5978243aa9c..a6813785bb0c 100644
--- a/arch/arm/boot/dts/bcm2711-rpi-4-b.dts
+++ b/arch/arm/boot/dts/bcm2711-rpi-4-b.dts
@@ -398,10 +398,6 @@ &sdhost {
        status = "disabled";
 };
 
-&emmc2 {
-       vmmc-supply = <&sd_vcc_reg>;
-};
-
 &phy1 {
        led-modes = <0x00 0x08>; /* link/activity link */
 };
-- 
2.25.1

++++++ rpi4-pcie-ib-size-fix-overlay.dts ++++++
--- /var/tmp/diff_new_pack.8ToVfr/_old  2020-02-29 17:15:14.760894321 +0100
+++ /var/tmp/diff_new_pack.8ToVfr/_new  2020-02-29 17:15:14.760894321 +0100
@@ -13,7 +13,7 @@
                target = <&pcie_0>;
                __overlay__ {
                        dma-ranges = <0x02000000 0x0 0x00000000 0x0 0x00000000
-                                     0x0 0xc0000000>; 
+                                     0x0 0xc0000000>;
                };
        };
 };


Reply via email to