Skip to content

Commit 4eae25a

Browse files
committed
Merge remote-tracking branch 'stable/linux-6.5.y' into v6.5+
2 parents d227654 + 0c3f363 commit 4eae25a

346 files changed

Lines changed: 3168 additions & 1861 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/admin-guide/cgroup-v1/memory.rst

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -92,8 +92,13 @@ Brief summary of control files.
9292
memory.oom_control set/show oom controls.
9393
memory.numa_stat show the number of memory usage per numa
9494
node
95-
memory.kmem.limit_in_bytes This knob is deprecated and writing to
96-
it will return -ENOTSUPP.
95+
memory.kmem.limit_in_bytes Deprecated knob to set and read the kernel
96+
memory hard limit. Kernel hard limit is not
97+
supported since 5.16. Writing any value to
98+
do file will not have any effect same as if
99+
nokmem kernel parameter was specified.
100+
Kernel memory is still charged and reported
101+
by memory.kmem.usage_in_bytes.
97102
memory.kmem.usage_in_bytes show current kernel memory allocation
98103
memory.kmem.failcnt show the number of kernel memory usage
99104
hits limits

Documentation/sound/designs/midi-2.0.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,8 +74,8 @@ topology based on those information. When the device is older and
7474
doesn't respond to the new UMP inquiries, the driver falls back and
7575
builds the topology based on Group Terminal Block (GTB) information
7676
from the USB descriptor. Some device might be screwed up by the
77-
unexpected UMP command; in such a case, pass `midi2_probe=0` option to
78-
snd-usb-audio driver for skipping the UMP v1.1 inquiries.
77+
unexpected UMP command; in such a case, pass `midi2_ump_probe=0`
78+
option to snd-usb-audio driver for skipping the UMP v1.1 inquiries.
7979

8080
When the MIDI 2.0 device is probed, the kernel creates a rawmidi
8181
device for each UMP Endpoint of the device. Its device name is

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 = 6
33
PATCHLEVEL = 5
4-
SUBLEVEL = 5
4+
SUBLEVEL = 6
55
EXTRAVERSION =
66
NAME = Hurr durr I'ma ninja sloth
77

arch/arm/boot/dts/ti/omap/motorola-mapphone-common.dtsi

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -614,12 +614,12 @@
614614
/* Configure pwm clock source for timers 8 & 9 */
615615
&timer8 {
616616
assigned-clocks = <&abe_clkctrl OMAP4_TIMER8_CLKCTRL 24>;
617-
assigned-clock-parents = <&sys_clkin_ck>;
617+
assigned-clock-parents = <&sys_32k_ck>;
618618
};
619619

620620
&timer9 {
621621
assigned-clocks = <&l4_per_clkctrl OMAP4_TIMER9_CLKCTRL 24>;
622-
assigned-clock-parents = <&sys_clkin_ck>;
622+
assigned-clock-parents = <&sys_32k_ck>;
623623
};
624624

625625
/*

arch/arm/boot/dts/ti/omap/omap3-cpu-thermal.dtsi

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ cpu_thermal: cpu-thermal {
1212
polling-delay = <1000>; /* milliseconds */
1313
coefficients = <0 20000>;
1414

15-
/* sensor ID */
16-
thermal-sensors = <&bandgap 0>;
15+
thermal-sensors = <&bandgap>;
1716

1817
cpu_trips: trips {
1918
cpu_alert0: cpu_alert {

arch/arm/boot/dts/ti/omap/omap4-cpu-thermal.dtsi

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,10 @@ cpu_thermal: cpu_thermal {
1212
polling-delay-passive = <250>; /* milliseconds */
1313
polling-delay = <1000>; /* milliseconds */
1414

15-
/* sensor ID */
15+
/*
16+
* See 44xx files for single sensor addressing, omap5 and dra7 need
17+
* also sensor ID for addressing.
18+
*/
1619
thermal-sensors = <&bandgap 0>;
1720

1821
cpu_trips: trips {

arch/arm/boot/dts/ti/omap/omap443x.dtsi

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -69,6 +69,7 @@
6969
};
7070

7171
&cpu_thermal {
72+
thermal-sensors = <&bandgap>;
7273
coefficients = <0 20000>;
7374
};
7475

arch/arm/boot/dts/ti/omap/omap4460.dtsi

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -79,6 +79,7 @@
7979
};
8080

8181
&cpu_thermal {
82+
thermal-sensors = <&bandgap>;
8283
coefficients = <348 (-9301)>;
8384
};
8485

arch/arm64/boot/dts/freescale/Makefile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -66,6 +66,7 @@ dtb-$(CONFIG_ARCH_MXC) += imx8mm-mx8menlo.dtb
6666
dtb-$(CONFIG_ARCH_MXC) += imx8mm-nitrogen-r2.dtb
6767
dtb-$(CONFIG_ARCH_MXC) += imx8mm-phg.dtb
6868
dtb-$(CONFIG_ARCH_MXC) += imx8mm-phyboard-polis-rdk.dtb
69+
dtb-$(CONFIG_ARCH_MXC) += imx8mm-prt8mm.dtb
6970
dtb-$(CONFIG_ARCH_MXC) += imx8mm-tqma8mqml-mba8mx.dtb
7071
dtb-$(CONFIG_ARCH_MXC) += imx8mm-var-som-symphony.dtb
7172
dtb-$(CONFIG_ARCH_MXC) += imx8mm-venice-gw71xx-0x.dtb

arch/arm64/boot/dts/freescale/imx8mm-evk.dtsi

Lines changed: 20 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@
2626

2727
port {
2828
hdmi_connector_in: endpoint {
29-
remote-endpoint = <&adv7533_out>;
29+
remote-endpoint = <&adv7535_out>;
3030
};
3131
};
3232
};
@@ -72,6 +72,13 @@
7272
enable-active-high;
7373
};
7474

75+
reg_vddext_3v3: regulator-vddext-3v3 {
76+
compatible = "regulator-fixed";
77+
regulator-name = "VDDEXT_3V3";
78+
regulator-min-microvolt = <3300000>;
79+
regulator-max-microvolt = <3300000>;
80+
};
81+
7582
backlight: backlight {
7683
compatible = "pwm-backlight";
7784
pwms = <&pwm1 0 5000000 0>;
@@ -317,15 +324,16 @@
317324

318325
hdmi@3d {
319326
compatible = "adi,adv7535";
320-
reg = <0x3d>, <0x3c>, <0x3e>, <0x3f>;
321-
reg-names = "main", "cec", "edid", "packet";
327+
reg = <0x3d>;
328+
interrupt-parent = <&gpio1>;
329+
interrupts = <9 IRQ_TYPE_EDGE_FALLING>;
322330
adi,dsi-lanes = <4>;
323-
324-
adi,input-depth = <8>;
325-
adi,input-colorspace = "rgb";
326-
adi,input-clock = "1x";
327-
adi,input-style = <1>;
328-
adi,input-justification = "evenly";
331+
avdd-supply = <&buck5_reg>;
332+
dvdd-supply = <&buck5_reg>;
333+
pvdd-supply = <&buck5_reg>;
334+
a2vdd-supply = <&buck5_reg>;
335+
v3p3-supply = <&reg_vddext_3v3>;
336+
v1p2-supply = <&buck5_reg>;
329337

330338
ports {
331339
#address-cells = <1>;
@@ -334,15 +342,15 @@
334342
port@0 {
335343
reg = <0>;
336344

337-
adv7533_in: endpoint {
345+
adv7535_in: endpoint {
338346
remote-endpoint = <&dsi_out>;
339347
};
340348
};
341349

342350
port@1 {
343351
reg = <1>;
344352

345-
adv7533_out: endpoint {
353+
adv7535_out: endpoint {
346354
remote-endpoint = <&hdmi_connector_in>;
347355
};
348356
};
@@ -408,7 +416,7 @@
408416
reg = <1>;
409417

410418
dsi_out: endpoint {
411-
remote-endpoint = <&adv7533_in>;
419+
remote-endpoint = <&adv7535_in>;
412420
data-lanes = <1 2 3 4>;
413421
};
414422
};

0 commit comments

Comments
 (0)