Skip to content

Commit 053a9ea

Browse files
committed
Merge remote-tracking branch 'stable/linux-5.7.y' into v5.7+
2 parents faa030b + 780e72b commit 053a9ea

271 files changed

Lines changed: 2280 additions & 1100 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

Documentation/arm64/silicon-errata.rst

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -147,6 +147,14 @@ stable kernels.
147147
+----------------+-----------------+-----------------+-----------------------------+
148148
| Qualcomm Tech. | Falkor v{1,2} | E1041 | QCOM_FALKOR_ERRATUM_1041 |
149149
+----------------+-----------------+-----------------+-----------------------------+
150+
| Qualcomm Tech. | Kryo4xx Gold | N/A | ARM64_ERRATUM_1463225 |
151+
+----------------+-----------------+-----------------+-----------------------------+
152+
| Qualcomm Tech. | Kryo4xx Gold | N/A | ARM64_ERRATUM_1418040 |
153+
+----------------+-----------------+-----------------+-----------------------------+
154+
| Qualcomm Tech. | Kryo4xx Silver | N/A | ARM64_ERRATUM_1530923 |
155+
+----------------+-----------------+-----------------+-----------------------------+
156+
| Qualcomm Tech. | Kryo4xx Silver | N/A | ARM64_ERRATUM_1024718 |
157+
+----------------+-----------------+-----------------+-----------------------------+
150158
+----------------+-----------------+-----------------+-----------------------------+
151159
| Fujitsu | A64FX | E#010001 | FUJITSU_ERRATUM_010001 |
152160
+----------------+-----------------+-----------------+-----------------------------+

Documentation/devicetree/bindings/Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,3 +45,8 @@ $(obj)/processed-schema.yaml: $(DT_SCHEMA_FILES) FORCE
4545
$(call if_changed,mk_schema)
4646

4747
extra-y += processed-schema.yaml
48+
49+
# Hack: avoid 'Argument list too long' error for 'make clean'. Remove most of
50+
# build artifacts here before they are processed by scripts/Makefile.clean
51+
clean-files = $(shell find $(obj) \( -name '*.example.dts' -o \
52+
-name '*.example.dt.yaml' \) -delete 2>/dev/null)

Documentation/devicetree/bindings/bus/socionext,uniphier-system-bus.yaml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,14 +80,14 @@ examples:
8080
ranges = <1 0x00000000 0x42000000 0x02000000>,
8181
<5 0x00000000 0x46000000 0x01000000>;
8282
83-
ethernet@1,01f00000 {
83+
ethernet@1,1f00000 {
8484
compatible = "smsc,lan9115";
8585
reg = <1 0x01f00000 0x1000>;
8686
interrupts = <0 48 4>;
8787
phy-mode = "mii";
8888
};
8989
90-
uart@5,00200000 {
90+
serial@5,200000 {
9191
compatible = "ns16550a";
9292
reg = <5 0x00200000 0x20>;
9393
interrupts = <0 49 4>;

Documentation/devicetree/bindings/mailbox/xlnx,zynqmp-ipi-mailbox.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -87,7 +87,7 @@ Example:
8787
ranges;
8888

8989
/* APU<->RPU0 IPI mailbox controller */
90-
ipi_mailbox_rpu0: mailbox@ff90400 {
90+
ipi_mailbox_rpu0: mailbox@ff990400 {
9191
reg = <0xff990400 0x20>,
9292
<0xff990420 0x20>,
9393
<0xff990080 0x20>,

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# SPDX-License-Identifier: GPL-2.0
22
VERSION = 5
33
PATCHLEVEL = 7
4-
SUBLEVEL = 9
4+
SUBLEVEL = 10
55
EXTRAVERSION =
66
NAME = Kleptomaniac Octopus
77

arch/arm/boot/dts/am437x-l4.dtsi

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1544,15 +1544,18 @@
15441544
reg = <0xcc020 0x4>;
15451545
reg-names = "rev";
15461546
/* Domains (P, C): per_pwrdm, l4ls_clkdm */
1547-
clocks = <&l4ls_clkctrl AM4_L4LS_D_CAN0_CLKCTRL 0>;
1548-
clock-names = "fck";
1547+
clocks = <&l4ls_clkctrl AM4_L4LS_D_CAN0_CLKCTRL 0>,
1548+
<&dcan0_fck>;
1549+
clock-names = "fck", "osc";
15491550
#address-cells = <1>;
15501551
#size-cells = <1>;
15511552
ranges = <0x0 0xcc000 0x2000>;
15521553

15531554
dcan0: can@0 {
15541555
compatible = "ti,am4372-d_can", "ti,am3352-d_can";
15551556
reg = <0x0 0x2000>;
1557+
clocks = <&dcan0_fck>;
1558+
clock-names = "fck";
15561559
syscon-raminit = <&scm_conf 0x644 0>;
15571560
interrupts = <GIC_SPI 52 IRQ_TYPE_LEVEL_HIGH>;
15581561
status = "disabled";
@@ -1564,15 +1567,18 @@
15641567
reg = <0xd0020 0x4>;
15651568
reg-names = "rev";
15661569
/* Domains (P, C): per_pwrdm, l4ls_clkdm */
1567-
clocks = <&l4ls_clkctrl AM4_L4LS_D_CAN1_CLKCTRL 0>;
1568-
clock-names = "fck";
1570+
clocks = <&l4ls_clkctrl AM4_L4LS_D_CAN1_CLKCTRL 0>,
1571+
<&dcan1_fck>;
1572+
clock-names = "fck", "osc";
15691573
#address-cells = <1>;
15701574
#size-cells = <1>;
15711575
ranges = <0x0 0xd0000 0x2000>;
15721576

15731577
dcan1: can@0 {
15741578
compatible = "ti,am4372-d_can", "ti,am3352-d_can";
15751579
reg = <0x0 0x2000>;
1580+
clocks = <&dcan1_fck>;
1581+
clock-name = "fck";
15761582
syscon-raminit = <&scm_conf 0x644 1>;
15771583
interrupts = <GIC_SPI 49 IRQ_TYPE_LEVEL_HIGH>;
15781584
status = "disabled";

arch/arm/boot/dts/imx6qdl-gw551x.dtsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -110,7 +110,7 @@
110110
simple-audio-card,frame-master = <&sound_codec>;
111111

112112
sound_cpu: simple-audio-card,cpu {
113-
sound-dai = <&ssi2>;
113+
sound-dai = <&ssi1>;
114114
};
115115

116116
sound_codec: simple-audio-card,codec {

arch/arm/boot/dts/mt7623n-rfb-emmc.dts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -138,6 +138,7 @@
138138
mac@1 {
139139
compatible = "mediatek,eth-mac";
140140
reg = <1>;
141+
phy-mode = "rgmii";
141142
phy-handle = <&phy5>;
142143
};
143144

arch/arm/boot/dts/socfpga.dtsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -710,7 +710,7 @@
710710
};
711711
};
712712

713-
L2: l2-cache@fffef000 {
713+
L2: cache-controller@fffef000 {
714714
compatible = "arm,pl310-cache";
715715
reg = <0xfffef000 0x1000>;
716716
interrupts = <0 38 0x04>;

arch/arm/boot/dts/socfpga_arria10.dtsi

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -636,7 +636,7 @@
636636
reg = <0xffcfb100 0x80>;
637637
};
638638

639-
L2: l2-cache@fffff000 {
639+
L2: cache-controller@fffff000 {
640640
compatible = "arm,pl310-cache";
641641
reg = <0xfffff000 0x1000>;
642642
interrupts = <0 18 IRQ_TYPE_LEVEL_HIGH>;

0 commit comments

Comments
 (0)