Skip to content

Commit d31e5e9

Browse files
committed
Merge remote-tracking branch 'linux-pm/linux-next' into sound/upstream-20250915
2 parents 5cb5bbf + 5541279 commit d31e5e9

360 files changed

Lines changed: 5928 additions & 1885 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.

.mailmap

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -589,6 +589,7 @@ Nikolay Aleksandrov <razor@blackwall.org> <nikolay@redhat.com>
589589
Nikolay Aleksandrov <razor@blackwall.org> <nikolay@cumulusnetworks.com>
590590
Nikolay Aleksandrov <razor@blackwall.org> <nikolay@nvidia.com>
591591
Nikolay Aleksandrov <razor@blackwall.org> <nikolay@isovalent.com>
592+
Nobuhiro Iwamatsu <nobuhiro.iwamatsu.x90@mail.toshiba> <nobuhiro1.iwamatsu@toshiba.co.jp>
592593
Odelu Kukatla <quic_okukatla@quicinc.com> <okukatla@codeaurora.org>
593594
Oleksandr Natalenko <oleksandr@natalenko.name> <oleksandr@redhat.com>
594595
Oleksij Rempel <linux@rempel-privat.de> <bug-track@fisher-privat.net>

Documentation/devicetree/bindings/cpufreq/cpufreq-dt.txt

Lines changed: 0 additions & 61 deletions
This file was deleted.

Documentation/devicetree/bindings/cpufreq/cpufreq-qcom-hw.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@ properties:
2222
items:
2323
- enum:
2424
- qcom,qcm2290-cpufreq-hw
25+
- qcom,qcs615-cpufreq-hw
2526
- qcom,sc7180-cpufreq-hw
2627
- qcom,sc8180x-cpufreq-hw
2728
- qcom,sdm670-cpufreq-hw
@@ -132,6 +133,7 @@ allOf:
132133
compatible:
133134
contains:
134135
enum:
136+
- qcom,qcs615-cpufreq-hw
135137
- qcom,qdu1000-cpufreq-epss
136138
- qcom,sa8255p-cpufreq-epss
137139
- qcom,sa8775p-cpufreq-epss
Lines changed: 82 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,82 @@
1+
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
2+
%YAML 1.2
3+
---
4+
$id: http://devicetree.org/schemas/cpufreq/mediatek,mt8196-cpufreq-hw.yaml#
5+
$schema: http://devicetree.org/meta-schemas/core.yaml#
6+
7+
title: MediaTek Hybrid CPUFreq for MT8196/MT6991 series SoCs
8+
9+
maintainers:
10+
- Nicolas Frattaroli <nicolas.frattaroli@collabora.com>
11+
12+
description:
13+
MT8196 uses CPUFreq management hardware that supports dynamic voltage
14+
frequency scaling (dvfs), and can support several performance domains.
15+
16+
properties:
17+
compatible:
18+
const: mediatek,mt8196-cpufreq-hw
19+
20+
reg:
21+
items:
22+
- description: FDVFS control register region
23+
- description: OPP tables and control for performance domain 0
24+
- description: OPP tables and control for performance domain 1
25+
- description: OPP tables and control for performance domain 2
26+
27+
"#performance-domain-cells":
28+
const: 1
29+
30+
required:
31+
- compatible
32+
- reg
33+
- "#performance-domain-cells"
34+
35+
additionalProperties: false
36+
37+
examples:
38+
- |
39+
cpus {
40+
#address-cells = <1>;
41+
#size-cells = <0>;
42+
43+
cpu0: cpu@0 {
44+
device_type = "cpu";
45+
compatible = "arm,cortex-a720";
46+
enable-method = "psci";
47+
performance-domains = <&performance 0>;
48+
reg = <0x000>;
49+
};
50+
51+
/* ... */
52+
53+
cpu6: cpu@600 {
54+
device_type = "cpu";
55+
compatible = "arm,cortex-x4";
56+
enable-method = "psci";
57+
performance-domains = <&performance 1>;
58+
reg = <0x600>;
59+
};
60+
61+
cpu7: cpu@700 {
62+
device_type = "cpu";
63+
compatible = "arm,cortex-x925";
64+
enable-method = "psci";
65+
performance-domains = <&performance 2>;
66+
reg = <0x700>;
67+
};
68+
};
69+
70+
/* ... */
71+
72+
soc {
73+
#address-cells = <2>;
74+
#size-cells = <2>;
75+
76+
performance: performance-controller@c2c2034 {
77+
compatible = "mediatek,mt8196-cpufreq-hw";
78+
reg = <0 0xc220400 0 0x20>, <0 0xc2c0f20 0 0x120>,
79+
<0 0xc2c1040 0 0x120>, <0 0xc2c1160 0 0x120>;
80+
#performance-domain-cells = <1>;
81+
};
82+
};

Documentation/devicetree/bindings/spi/spi-fsl-lpspi.yaml

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,13 +20,18 @@ properties:
2020
- enum:
2121
- fsl,imx7ulp-spi
2222
- fsl,imx8qxp-spi
23+
- nxp,s32g2-lpspi
2324
- items:
2425
- enum:
2526
- fsl,imx8ulp-spi
2627
- fsl,imx93-spi
2728
- fsl,imx94-spi
2829
- fsl,imx95-spi
2930
- const: fsl,imx7ulp-spi
31+
- items:
32+
- const: nxp,s32g3-lpspi
33+
- const: nxp,s32g2-lpspi
34+
3035
reg:
3136
maxItems: 1
3237

Documentation/networking/napi.rst

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -433,9 +433,8 @@ Threaded NAPI
433433

434434
Threaded NAPI is an operating mode that uses dedicated kernel
435435
threads rather than software IRQ context for NAPI processing.
436-
The configuration is per netdevice and will affect all
437-
NAPI instances of that device. Each NAPI instance will spawn a separate
438-
thread (called ``napi/${ifc-name}-${napi-id}``).
436+
Each threaded NAPI instance will spawn a separate thread
437+
(called ``napi/${ifc-name}-${napi-id}``).
439438

440439
It is recommended to pin each kernel thread to a single CPU, the same
441440
CPU as the CPU which services the interrupt. Note that the mapping

MAINTAINERS

Lines changed: 17 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -3526,7 +3526,7 @@ F: Documentation/devicetree/bindings/arm/ti/nspire.yaml
35263526
F: arch/arm/boot/dts/nspire/
35273527

35283528
ARM/TOSHIBA VISCONTI ARCHITECTURE
3529-
M: Nobuhiro Iwamatsu <nobuhiro1.iwamatsu@toshiba.co.jp>
3529+
M: Nobuhiro Iwamatsu <nobuhiro.iwamatsu.x90@mail.toshiba>
35303530
L: linux-arm-kernel@lists.infradead.org (moderated for non-subscribers)
35313531
S: Supported
35323532
T: git git://git.kernel.org/pub/scm/linux/kernel/git/iwamatsu/linux-visconti.git
@@ -3667,6 +3667,7 @@ F: drivers/virt/coco/arm-cca-guest/
36673667
F: drivers/virt/coco/pkvm-guest/
36683668
F: tools/testing/selftests/arm64/
36693669
X: arch/arm64/boot/dts/
3670+
X: arch/arm64/configs/defconfig
36703671

36713672
ARROW SPEEDCHIPS XRS7000 SERIES ETHERNET SWITCH DRIVER
36723673
M: George McCollister <george.mccollister@gmail.com>
@@ -6350,6 +6351,12 @@ F: kernel/sched/cpufreq*.c
63506351
F: rust/kernel/cpufreq.rs
63516352
F: tools/testing/selftests/cpufreq/
63526353

6354+
CPU FREQUENCY DRIVERS - VIRTUAL MACHINE CPUFREQ
6355+
M: Saravana Kannan <saravanak@google.com>
6356+
L: linux-pm@vger.kernel.org
6357+
S: Maintained
6358+
F: drivers/cpufreq/virtual-cpufreq.c
6359+
63536360
CPU HOTPLUG
63546361
M: Thomas Gleixner <tglx@linutronix.de>
63556362
M: Peter Zijlstra <peterz@infradead.org>
@@ -7820,7 +7827,7 @@ Q: https://patchwork.freedesktop.org/project/nouveau/
78207827
Q: https://gitlab.freedesktop.org/drm/nouveau/-/merge_requests
78217828
B: https://gitlab.freedesktop.org/drm/nouveau/-/issues
78227829
C: irc://irc.oftc.net/nouveau
7823-
T: git https://gitlab.freedesktop.org/drm/nouveau.git
7830+
T: git https://gitlab.freedesktop.org/drm/misc/kernel.git
78247831
F: drivers/gpu/drm/nouveau/
78257832
F: include/uapi/drm/nouveau_drm.h
78267833

@@ -10396,7 +10403,7 @@ S: Maintained
1039610403
F: drivers/input/touchscreen/goodix*
1039710404

1039810405
GOOGLE ETHERNET DRIVERS
10399-
M: Jeroen de Borst <jeroendb@google.com>
10406+
M: Joshua Washington <joshwash@google.com>
1040010407
M: Harshitha Ramamurthy <hramamurthy@google.com>
1040110408
L: netdev@vger.kernel.org
1040210409
S: Maintained
@@ -17858,6 +17865,7 @@ F: net/ipv6/tcp*.c
1785817865
NETWORKING [TLS]
1785917866
M: John Fastabend <john.fastabend@gmail.com>
1786017867
M: Jakub Kicinski <kuba@kernel.org>
17868+
M: Sabrina Dubroca <sd@queasysnail.net>
1786117869
L: netdev@vger.kernel.org
1786217870
S: Maintained
1786317871
F: include/net/tls.h
@@ -24260,6 +24268,12 @@ S: Maintained
2426024268
F: Documentation/devicetree/bindings/input/allwinner,sun4i-a10-lradc-keys.yaml
2426124269
F: drivers/input/keyboard/sun4i-lradc-keys.c
2426224270

24271+
SUNDANCE NETWORK DRIVER
24272+
M: Denis Kirjanov <dkirjanov@suse.de>
24273+
L: netdev@vger.kernel.org
24274+
S: Maintained
24275+
F: drivers/net/ethernet/dlink/sundance.c
24276+
2426324277
SUNPLUS ETHERNET DRIVER
2426424278
M: Wells Lu <wellslutw@gmail.com>
2426524279
L: netdev@vger.kernel.org

Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
VERSION = 6
33
PATCHLEVEL = 17
44
SUBLEVEL = 0
5-
EXTRAVERSION = -rc4
5+
EXTRAVERSION = -rc5
66
NAME = Baby Opossum Posse
77

88
# *DOCUMENTATION*

arch/arm/boot/dts/microchip/at91-sama7d65_curiosity.dts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -387,6 +387,8 @@
387387

388388
&sdmmc1 {
389389
bus-width = <4>;
390+
no-1-8-v;
391+
sdhci-caps-mask = <0x0 0x00200000>;
390392
pinctrl-names = "default";
391393
pinctrl-0 = <&pinctrl_sdmmc1_default>;
392394
status = "okay";

arch/arm/boot/dts/rockchip/rk3128-xpi-3128.dts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -272,7 +272,7 @@
272272
phy-mode = "rmii";
273273
phy-handle = <&phy0>;
274274
assigned-clocks = <&cru SCLK_MAC_SRC>;
275-
assigned-clock-rates= <50000000>;
275+
assigned-clock-rates = <50000000>;
276276
pinctrl-names = "default";
277277
pinctrl-0 = <&rmii_pins>;
278278
status = "okay";

0 commit comments

Comments
 (0)