Skip to content

Commit 28aeb95

Browse files
authored
Merge pull request torvalds#224 from zandrey/5.10.x+fslc
Update 5.10.x+fslc to v5.10.9
2 parents 5e80a1a + 88bf612 commit 28aeb95

File tree

151 files changed

+1519
-609
lines changed

Some content is hidden

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

151 files changed

+1519
-609
lines changed

Documentation/devicetree/bindings/display/bridge/sii902x.txt

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -8,6 +8,8 @@ Optional properties:
88
- interrupts: describe the interrupt line used to inform the host
99
about hotplug events.
1010
- reset-gpios: OF device-tree gpio specification for RST_N pin.
11+
- iovcc-supply: I/O Supply Voltage (1.8V or 3.3V)
12+
- cvcc12-supply: Digital Core Supply Voltage (1.2V)
1113

1214
HDMI audio properties:
1315
- #sound-dai-cells: <0> or <1>. <0> if only i2s or spdif pin
@@ -54,6 +56,8 @@ Example:
5456
compatible = "sil,sii9022";
5557
reg = <0x39>;
5658
reset-gpios = <&pioA 1 0>;
59+
iovcc-supply = <&v3v3_hdmi>;
60+
cvcc12-supply = <&v1v2_hdmi>;
5761

5862
#sound-dai-cells = <0>;
5963
sil,i2s-data-lanes = < 0 1 2 >;

Documentation/sound/alsa-configuration.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1501,7 +1501,7 @@ Module for Digigram miXart8 sound cards.
15011501

15021502
This module supports multiple cards.
15031503
Note: One miXart8 board will be represented as 4 alsa cards.
1504-
See MIXART.txt for details.
1504+
See Documentation/sound/cards/mixart.rst for details.
15051505

15061506
When the driver is compiled as a module and the hotplug firmware
15071507
is supported, the firmware data is loaded via hotplug automatically.

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 = 10
4-
SUBLEVEL = 8
4+
SUBLEVEL = 9
55
EXTRAVERSION =
66
NAME = Kleptomaniac Octopus
77

arch/arc/Makefile

Lines changed: 13 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -102,16 +102,22 @@ libs-y += arch/arc/lib/ $(LIBGCC)
102102

103103
boot := arch/arc/boot
104104

105-
#default target for make without any arguments.
106-
KBUILD_IMAGE := $(boot)/bootpImage
107-
108-
all: bootpImage
109-
bootpImage: vmlinux
110-
111-
boot_targets += uImage uImage.bin uImage.gz
105+
boot_targets := uImage.bin uImage.gz uImage.lzma
112106

107+
PHONY += $(boot_targets)
113108
$(boot_targets): vmlinux
114109
$(Q)$(MAKE) $(build)=$(boot) $(boot)/$@
115110

111+
uimage-default-y := uImage.bin
112+
uimage-default-$(CONFIG_KERNEL_GZIP) := uImage.gz
113+
uimage-default-$(CONFIG_KERNEL_LZMA) := uImage.lzma
114+
115+
PHONY += uImage
116+
uImage: $(uimage-default-y)
117+
@ln -sf $< $(boot)/uImage
118+
@$(kecho) ' Image $(boot)/uImage is ready'
119+
120+
CLEAN_FILES += $(boot)/uImage
121+
116122
archclean:
117123
$(Q)$(MAKE) $(clean)=$(boot)

arch/arc/boot/Makefile

Lines changed: 1 addition & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
# SPDX-License-Identifier: GPL-2.0
2-
targets := vmlinux.bin vmlinux.bin.gz uImage
2+
targets := vmlinux.bin vmlinux.bin.gz
33

44
# uImage build relies on mkimage being availble on your host for ARC target
55
# You will need to build u-boot for ARC, rename mkimage to arc-elf32-mkimage
@@ -13,11 +13,6 @@ LINUX_START_TEXT = $$(readelf -h vmlinux | \
1313
UIMAGE_LOADADDR = $(CONFIG_LINUX_LINK_BASE)
1414
UIMAGE_ENTRYADDR = $(LINUX_START_TEXT)
1515

16-
suffix-y := bin
17-
suffix-$(CONFIG_KERNEL_GZIP) := gz
18-
suffix-$(CONFIG_KERNEL_LZMA) := lzma
19-
20-
targets += uImage
2116
targets += uImage.bin
2217
targets += uImage.gz
2318
targets += uImage.lzma
@@ -42,7 +37,3 @@ $(obj)/uImage.gz: $(obj)/vmlinux.bin.gz FORCE
4237

4338
$(obj)/uImage.lzma: $(obj)/vmlinux.bin.lzma FORCE
4439
$(call if_changed,uimage,lzma)
45-
46-
$(obj)/uImage: $(obj)/uImage.$(suffix-y)
47-
@ln -sf $(notdir $<) $@
48-
@echo ' Image $@ is ready'

arch/arc/include/asm/page.h

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
#ifndef __ASSEMBLY__
1111

1212
#define clear_page(paddr) memset((paddr), 0, PAGE_SIZE)
13+
#define copy_user_page(to, from, vaddr, pg) copy_page(to, from)
1314
#define copy_page(to, from) memcpy((to), (from), PAGE_SIZE)
1415

1516
struct vm_area_struct;

arch/arm/boot/dts/picoxcell-pc3x2.dtsi

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -45,18 +45,21 @@
4545
emac: gem@30000 {
4646
compatible = "cadence,gem";
4747
reg = <0x30000 0x10000>;
48+
interrupt-parent = <&vic0>;
4849
interrupts = <31>;
4950
};
5051

5152
dmac1: dmac@40000 {
5253
compatible = "snps,dw-dmac";
5354
reg = <0x40000 0x10000>;
55+
interrupt-parent = <&vic0>;
5456
interrupts = <25>;
5557
};
5658

5759
dmac2: dmac@50000 {
5860
compatible = "snps,dw-dmac";
5961
reg = <0x50000 0x10000>;
62+
interrupt-parent = <&vic0>;
6063
interrupts = <26>;
6164
};
6265

@@ -233,6 +236,7 @@
233236
axi2pico@c0000000 {
234237
compatible = "picochip,axi2pico-pc3x2";
235238
reg = <0xc0000000 0x10000>;
239+
interrupt-parent = <&vic0>;
236240
interrupts = <13 14 15 16 17 18 19 20 21>;
237241
};
238242
};

arch/arm/boot/dts/ste-ux500-samsung-golden.dts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -326,6 +326,7 @@
326326
panel@0 {
327327
compatible = "samsung,s6e63m0";
328328
reg = <0>;
329+
max-brightness = <15>;
329330
vdd3-supply = <&panel_reg_3v0>;
330331
vci-supply = <&panel_reg_1v8>;
331332
reset-gpios = <&gpio4 11 GPIO_ACTIVE_LOW>;

arch/arm/mach-omap2/pmic-cpcap.c

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ static struct omap_voltdm_pmic omap_cpcap_iva = {
7171
.vp_vstepmin = OMAP4_VP_VSTEPMIN_VSTEPMIN,
7272
.vp_vstepmax = OMAP4_VP_VSTEPMAX_VSTEPMAX,
7373
.vddmin = 900000,
74-
.vddmax = 1350000,
74+
.vddmax = 1375000,
7575
.vp_timeout_us = OMAP4_VP_VLIMITTO_TIMEOUT_US,
7676
.i2c_slave_addr = 0x44,
7777
.volt_reg_addr = 0x0,

arch/mips/boot/compressed/decompress.c

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@
1313
#include <linux/libfdt.h>
1414

1515
#include <asm/addrspace.h>
16+
#include <asm/unaligned.h>
1617

1718
/*
1819
* These two variables specify the free mem region
@@ -117,7 +118,7 @@ void decompress_kernel(unsigned long boot_heap_start)
117118
dtb_size = fdt_totalsize((void *)&__appended_dtb);
118119

119120
/* last four bytes is always image size in little endian */
120-
image_size = le32_to_cpup((void *)&__image_end - 4);
121+
image_size = get_unaligned_le32((void *)&__image_end - 4);
121122

122123
/* copy dtb to where the booted kernel will expect it */
123124
memcpy((void *)VMLINUX_LOAD_ADDRESS_ULL + image_size,

0 commit comments

Comments
 (0)