Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
packages
kernel
linux
Commits
c5538db2
Commit
c5538db2
authored
Jul 31, 2020
by
Lorenzo "Palinuro" Faletra
Browse files
Import Upstream version 5.7.10
parent
675a03b4
Pipeline
#742
failed with stages
Changes
765
Pipelines
1
Show whitespace changes
Inline
Side-by-side
arch/arm/boot/dts/imx6ul-kontron-n6x1x-s.dtsi
View file @
c5538db2
...
...
@@ -232,13 +232,6 @@ &usdhc2 {
status = "okay";
};
&wdog1 {
pinctrl-names = "default";
pinctrl-0 = <&pinctrl_wdog>;
fsl,ext-reset-output;
status = "okay";
};
&iomuxc {
pinctrl-0 = <&pinctrl_reset_out &pinctrl_gpio>;
...
...
@@ -409,10 +402,4 @@ MX6UL_PAD_NAND_DATA02__USDHC2_DATA2 0x170f9
MX6UL_PAD_NAND_DATA03__USDHC2_DATA3 0x170f9
>;
};
pinctrl_wdog: wdoggrp {
fsl,pins = <
MX6UL_PAD_GPIO1_IO09__WDOG1_WDOG_ANY 0x30b0
>;
};
};
arch/arm/boot/dts/imx6ul-kontron-n6x1x-som-common.dtsi
View file @
c5538db2
...
...
@@ -57,6 +57,13 @@ &qspi {
status = "okay";
};
&wdog1 {
pinctrl-names = "default";
pinctrl-0 = <&pinctrl_wdog>;
fsl,ext-reset-output;
status = "okay";
};
&iomuxc {
pinctrl-names = "default";
pinctrl-0 = <&pinctrl_reset_out>;
...
...
@@ -106,4 +113,10 @@ pinctrl_reset_out: rstoutgrp {
MX6UL_PAD_SNVS_TAMPER9__GPIO5_IO09 0x1b0b0
>;
};
pinctrl_wdog: wdoggrp {
fsl,pins = <
MX6UL_PAD_GPIO1_IO09__WDOG1_WDOG_ANY 0x18b0
>;
};
};
arch/arm/boot/dts/motorola-cpcap-mapphone.dtsi
View file @
c5538db2
...
...
@@ -13,8 +13,10 @@ cpcap: pmic@0 {
#interrupt-cells = <2>;
#address-cells = <1>;
#size-cells = <0>;
spi-max-frequency = <
30
00000>;
spi-max-frequency = <
96
00000>;
spi-cs-high;
spi-cpol;
spi-cpha;
cpcap_adc: adc {
compatible = "motorola,mapphone-cpcap-adc";
...
...
arch/arm/boot/dts/mt7623n-rfb-emmc.dts
View file @
c5538db2
...
...
@@ -138,6 +138,7 @@ fixed-link {
mac
@
1
{
compatible
=
"mediatek,eth-mac"
;
reg
=
<
1
>;
phy
-
mode
=
"rgmii"
;
phy
-
handle
=
<&
phy5
>;
};
...
...
arch/arm/boot/dts/omap4-duovero-parlor.dts
View file @
c5538db2
...
...
@@ -139,7 +139,7 @@ &gpmc {
ethernet
@
gpmc
{
reg
=
<
5
0
0xff
>;
interrupt
-
parent
=
<&
gpio2
>;
interrupts
=
<
12
IRQ_TYPE_
EDGE_FALLING
>;
/*
gpio_44
*/
interrupts
=
<
12
IRQ_TYPE_
LEVEL_LOW
>;
/*
gpio_44
*/
phy
-
mode
=
"mii"
;
...
...
arch/arm/boot/dts/socfpga.dtsi
View file @
c5538db2
...
...
@@ -710,7 +710,7 @@ ocram-ecc@ffd08144 {
};
};
L2:
l2-
cache@fffef000 {
L2: cache
-controller
@fffef000 {
compatible = "arm,pl310-cache";
reg = <0xfffef000 0x1000>;
interrupts = <0 38 0x04>;
...
...
arch/arm/boot/dts/socfpga_arria10.dtsi
View file @
c5538db2
...
...
@@ -636,7 +636,7 @@ sdr: sdr@ffcfb100 {
reg = <0xffcfb100 0x80>;
};
L2:
l2-
cache@fffff000 {
L2: cache
-controller
@fffff000 {
compatible = "arm,pl310-cache";
reg = <0xfffff000 0x1000>;
interrupts = <0 18 IRQ_TYPE_LEVEL_HIGH>;
...
...
arch/arm/mach-bcm/Kconfig
View file @
c5538db2
...
...
@@ -53,6 +53,7 @@ config ARCH_BCM_NSP
select ARM_ERRATA_754322
select ARM_ERRATA_775420
select ARM_ERRATA_764369 if SMP
select ARM_TIMER_SP804
select THERMAL
select THERMAL_OF
help
...
...
arch/arm/mach-imx/pm-imx5.c
View file @
c5538db2
...
...
@@ -295,14 +295,14 @@ static int __init imx_suspend_alloc_ocram(
if
(
!
ocram_pool
)
{
pr_warn
(
"%s: ocram pool unavailable!
\n
"
,
__func__
);
ret
=
-
ENODEV
;
goto
put_
nod
e
;
goto
put_
devic
e
;
}
ocram_base
=
gen_pool_alloc
(
ocram_pool
,
size
);
if
(
!
ocram_base
)
{
pr_warn
(
"%s: unable to alloc ocram!
\n
"
,
__func__
);
ret
=
-
ENOMEM
;
goto
put_
nod
e
;
goto
put_
devic
e
;
}
phys
=
gen_pool_virt_to_phys
(
ocram_pool
,
ocram_base
);
...
...
@@ -312,6 +312,8 @@ static int __init imx_suspend_alloc_ocram(
if
(
virt_out
)
*
virt_out
=
virt
;
put_device:
put_device
(
&
pdev
->
dev
);
put_node:
of_node_put
(
node
);
...
...
arch/arm/mach-imx/pm-imx6.c
View file @
c5538db2
...
...
@@ -493,14 +493,14 @@ static int __init imx6q_suspend_init(const struct imx6_pm_socdata *socdata)
if
(
!
ocram_pool
)
{
pr_warn
(
"%s: ocram pool unavailable!
\n
"
,
__func__
);
ret
=
-
ENODEV
;
goto
put_
nod
e
;
goto
put_
devic
e
;
}
ocram_base
=
gen_pool_alloc
(
ocram_pool
,
MX6Q_SUSPEND_OCRAM_SIZE
);
if
(
!
ocram_base
)
{
pr_warn
(
"%s: unable to alloc ocram!
\n
"
,
__func__
);
ret
=
-
ENOMEM
;
goto
put_
nod
e
;
goto
put_
devic
e
;
}
ocram_pbase
=
gen_pool_virt_to_phys
(
ocram_pool
,
ocram_base
);
...
...
@@ -523,7 +523,7 @@ static int __init imx6q_suspend_init(const struct imx6_pm_socdata *socdata)
ret
=
imx6_pm_get_base
(
&
pm_info
->
mmdc_base
,
socdata
->
mmdc_compat
);
if
(
ret
)
{
pr_warn
(
"%s: failed to get mmdc base %d!
\n
"
,
__func__
,
ret
);
goto
put_
nod
e
;
goto
put_
devic
e
;
}
ret
=
imx6_pm_get_base
(
&
pm_info
->
src_base
,
socdata
->
src_compat
);
...
...
@@ -570,7 +570,7 @@ static int __init imx6q_suspend_init(const struct imx6_pm_socdata *socdata)
&
imx6_suspend
,
MX6Q_SUSPEND_OCRAM_SIZE
-
sizeof
(
*
pm_info
));
goto
put_
nod
e
;
goto
put_
devic
e
;
pl310_cache_map_failed:
iounmap
(
pm_info
->
gpc_base
.
vbase
);
...
...
@@ -580,6 +580,8 @@ static int __init imx6q_suspend_init(const struct imx6_pm_socdata *socdata)
iounmap
(
pm_info
->
src_base
.
vbase
);
src_map_failed:
iounmap
(
pm_info
->
mmdc_base
.
vbase
);
put_device:
put_device
(
&
pdev
->
dev
);
put_node:
of_node_put
(
node
);
...
...
arch/arm/mach-omap2/omap_hwmod.c
View file @
c5538db2
...
...
@@ -3489,7 +3489,7 @@ static const struct omap_hwmod_reset dra7_reset_quirks[] = {
};
static
const
struct
omap_hwmod_reset
omap_reset_quirks
[]
=
{
{
.
match
=
"dss"
,
.
len
=
3
,
.
reset
=
omap_dss_reset
,
},
{
.
match
=
"dss
_core
"
,
.
len
=
8
,
.
reset
=
omap_dss_reset
,
},
{
.
match
=
"hdq1w"
,
.
len
=
5
,
.
reset
=
omap_hdq1w_reset
,
},
{
.
match
=
"i2c"
,
.
len
=
3
,
.
reset
=
omap_i2c_reset
,
},
{
.
match
=
"wd_timer"
,
.
len
=
8
,
.
reset
=
omap2_wd_timer_reset
,
},
...
...
arch/arm64/boot/dts/altera/socfpga_stratix10.dtsi
View file @
c5538db2
...
...
@@ -77,7 +77,7 @@ psci {
method = "smc";
};
intc: int
c
@fffc1000 {
intc: int
errupt-controller
@fffc1000 {
compatible = "arm,gic-400", "arm,cortex-a15-gic";
#interrupt-cells = <3>;
interrupt-controller;
...
...
@@ -302,7 +302,7 @@ mmc: dwmmc0@ff808000 {
status = "disabled";
};
nand: nand@ffb90000 {
nand: nand
-controller
@ffb90000 {
#address-cells = <1>;
#size-cells = <0>;
compatible = "altr,socfpga-denali-nand";
...
...
@@ -445,7 +445,7 @@ timer3: timer3@ffd00100 {
clock-names = "timer";
};
uart0: serial
0
@ffc02000 {
uart0: serial@ffc02000 {
compatible = "snps,dw-apb-uart";
reg = <0xffc02000 0x100>;
interrupts = <0 108 4>;
...
...
@@ -456,7 +456,7 @@ uart0: serial0@ffc02000 {
status = "disabled";
};
uart1: serial
1
@ffc02100 {
uart1: serial@ffc02100 {
compatible = "snps,dw-apb-uart";
reg = <0xffc02100 0x100>;
interrupts = <0 109 4>;
...
...
arch/arm64/boot/dts/altera/socfpga_stratix10_socdk.dts
View file @
c5538db2
...
...
@@ -155,6 +155,7 @@ rtc@68 {
};
&
qspi
{
status
=
"okay"
;
flash
@
0
{
#
address
-
cells
=
<
1
>;
#
size
-
cells
=
<
1
>;
...
...
arch/arm64/boot/dts/altera/socfpga_stratix10_socdk_nand.dts
View file @
c5538db2
...
...
@@ -188,6 +188,7 @@ rtc@68 {
};
&
qspi
{
status
=
"okay"
;
flash
@
0
{
#
address
-
cells
=
<
1
>;
#
size
-
cells
=
<
1
>;
...
...
@@ -211,12 +212,12 @@ partitions {
qspi_boot
:
partition
@
0
{
label
=
"Boot and fpga data"
;
reg
=
<
0x0
0x03
4B
0000
>;
reg
=
<
0x0
0x03
FE
0000
>;
};
qspi_rootfs
:
partition
@
400
0000
{
qspi_rootfs
:
partition
@
3F
E
0000
{
label
=
"Root Filesystem - JFFS2"
;
reg
=
<
0x03
4B
0000
0x0
EB5
0000
>;
reg
=
<
0x03
FE
0000
0x0
C02
0000
>;
};
};
};
...
...
arch/arm64/boot/dts/amlogic/meson-gxl-s805x-libretech-ac.dts
View file @
c5538db2
...
...
@@ -9,7 +9,7 @@
#
include
<
dt
-
bindings
/
input
/
input
.
h
>
#
include
"meson-gxl-s
9
05x.dtsi"
#
include
"meson-gxl-s
8
05x.dtsi"
/
{
compatible
=
"libretech,aml-s805x-ac"
,
"amlogic,s805x"
,
...
...
arch/arm64/boot/dts/amlogic/meson-gxl-s805x-p241.dts
View file @
c5538db2
...
...
@@ -9,7 +9,7 @@
#
include
<
dt
-
bindings
/
input
/
input
.
h
>
#
include
"meson-gxl-s
9
05x.dtsi"
#
include
"meson-gxl-s
8
05x.dtsi"
/
{
compatible
=
"amlogic,p241"
,
"amlogic,s805x"
,
"amlogic,meson-gxl"
;
...
...
arch/arm64/boot/dts/amlogic/meson-gxl-s805x.dtsi
0 → 100644
View file @
c5538db2
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
/*
* Copyright (c) 2020 BayLibre SAS
* Author: Neil Armstrong <narmstrong@baylibre.com>
*/
#include "meson-gxl-s905x.dtsi"
/ {
compatible = "amlogic,s805x", "amlogic,meson-gxl";
};
/* The S805X Package doesn't seem to handle the 744MHz OPP correctly */
&mali {
assigned-clocks = <&clkc CLKID_MALI_0_SEL>,
<&clkc CLKID_MALI_0>,
<&clkc CLKID_MALI>; /* Glitch free mux */
assigned-clock-parents = <&clkc CLKID_FCLK_DIV3>,
<0>, /* Do Nothing */
<&clkc CLKID_MALI_0>;
assigned-clock-rates = <0>, /* Do Nothing */
<666666666>,
<0>; /* Do Nothing */
};
arch/arm64/boot/dts/amlogic/meson-gxl.dtsi
View file @
c5538db2
...
...
@@ -298,6 +298,11 @@ clkc: clock-controller {
};
};
&hwrng {
clocks = <&clkc CLKID_RNG0>;
clock-names = "core";
};
&i2c_A {
clocks = <&clkc CLKID_I2C>;
};
...
...
arch/arm64/boot/dts/freescale/imx8mm-evk.dts
View file @
c5538db2
...
...
@@ -196,7 +196,7 @@ buck6_reg: BUCK6 {
ldo1_reg
:
LDO1
{
regulator
-
name
=
"LDO1"
;
regulator
-
min
-
microvolt
=
<
30
00000
>;
regulator
-
min
-
microvolt
=
<
16
00000
>;
regulator
-
max
-
microvolt
=
<
3300000
>;
regulator
-
boot
-
on
;
regulator
-
always
-
on
;
...
...
@@ -204,7 +204,7 @@ ldo1_reg: LDO1 {
ldo2_reg
:
LDO2
{
regulator
-
name
=
"LDO2"
;
regulator
-
min
-
microvolt
=
<
9
00000
>;
regulator
-
min
-
microvolt
=
<
8
00000
>;
regulator
-
max
-
microvolt
=
<
900000
>;
regulator
-
boot
-
on
;
regulator
-
always
-
on
;
...
...
arch/arm64/boot/dts/freescale/imx8mn-ddr4-evk.dts
View file @
c5538db2
...
...
@@ -101,7 +101,7 @@ buck6_reg: BUCK6 {
ldo1_reg
:
LDO1
{
regulator
-
name
=
"LDO1"
;
regulator
-
min
-
microvolt
=
<
30
00000
>;
regulator
-
min
-
microvolt
=
<
16
00000
>;
regulator
-
max
-
microvolt
=
<
3300000
>;
regulator
-
boot
-
on
;
regulator
-
always
-
on
;
...
...
@@ -109,7 +109,7 @@ ldo1_reg: LDO1 {
ldo2_reg
:
LDO2
{
regulator
-
name
=
"LDO2"
;
regulator
-
min
-
microvolt
=
<
9
00000
>;
regulator
-
min
-
microvolt
=
<
8
00000
>;
regulator
-
max
-
microvolt
=
<
900000
>;
regulator
-
boot
-
on
;
regulator
-
always
-
on
;
...
...
Prev
1
2
3
4
5
6
…
39
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment