Merge tag 'soc-fixes-6.2-1' of git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc
Pull ARM SoC fixes from Arnd Bergmann: "These are a couple of build fixes from randconfig testing, plus a set of Mediatek SoC specific fixes, all trivial" * tag 'soc-fixes-6.2-1' of git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc: soc: tegra: fix CPU_BIG_ENDIAN dependencies ARM: disallow pre-ARMv5 builds with ld.lld ARM: pxa: fix building with clang MAINTAINERS: add related dts to IXP4xx ARM: dts: spear: drop 0x from unit address arm64: dts: mt8183: Fix Mali GPU clock arm64: dts: mediatek: mt8195-demo: fix the memory size of node secmon soc: mediatek: pm-domains: Fix the power glitch issue
This commit is contained in:
@@ -2330,6 +2330,7 @@ F: Documentation/devicetree/bindings/bus/intel,ixp4xx-expansion-bus-controller.y
|
||||
F: Documentation/devicetree/bindings/gpio/intel,ixp4xx-gpio.txt
|
||||
F: Documentation/devicetree/bindings/interrupt-controller/intel,ixp4xx-interrupt.yaml
|
||||
F: Documentation/devicetree/bindings/timer/intel,ixp4xx-timer.yaml
|
||||
F: arch/arm/boot/dts/intel-ixp*
|
||||
F: arch/arm/mach-ixp4xx/
|
||||
F: drivers/bus/intel-ixp4xx-eb.c
|
||||
F: drivers/clocksource/timer-ixp4xx.c
|
||||
|
||||
@@ -345,12 +345,14 @@ comment "CPU Core family selection"
|
||||
config ARCH_MULTI_V4
|
||||
bool "ARMv4 based platforms (FA526, StrongARM)"
|
||||
depends on !ARCH_MULTI_V6_V7
|
||||
depends on !LD_IS_LLD
|
||||
select ARCH_MULTI_V4_V5
|
||||
select CPU_FA526 if !(CPU_SA110 || CPU_SA1100)
|
||||
|
||||
config ARCH_MULTI_V4T
|
||||
bool "ARMv4T based platforms (ARM720T, ARM920T, ...)"
|
||||
depends on !ARCH_MULTI_V6_V7
|
||||
depends on !LD_IS_LLD
|
||||
select ARCH_MULTI_V4_V5
|
||||
select CPU_ARM920T if !(CPU_ARM7TDMI || CPU_ARM720T || \
|
||||
CPU_ARM740T || CPU_ARM9TDMI || CPU_ARM922T || \
|
||||
|
||||
@@ -46,7 +46,7 @@
|
||||
status = "disabled";
|
||||
};
|
||||
|
||||
shirq: interrupt-controller@0x50000000 {
|
||||
shirq: interrupt-controller@50000000 {
|
||||
compatible = "st,spear300-shirq";
|
||||
reg = <0x50000000 0x1000>;
|
||||
interrupts = <28>;
|
||||
|
||||
@@ -34,7 +34,7 @@
|
||||
status = "disabled";
|
||||
};
|
||||
|
||||
shirq: interrupt-controller@0xb4000000 {
|
||||
shirq: interrupt-controller@b4000000 {
|
||||
compatible = "st,spear310-shirq";
|
||||
reg = <0xb4000000 0x1000>;
|
||||
interrupts = <28 29 30 1>;
|
||||
|
||||
@@ -49,7 +49,7 @@
|
||||
status = "disabled";
|
||||
};
|
||||
|
||||
shirq: interrupt-controller@0xb3000000 {
|
||||
shirq: interrupt-controller@b3000000 {
|
||||
compatible = "st,spear320-shirq";
|
||||
reg = <0xb3000000 0x1000>;
|
||||
interrupts = <30 28 29 1>;
|
||||
|
||||
@@ -133,8 +133,12 @@ void pxa27x_cpu_pm_enter(suspend_state_t state)
|
||||
#ifndef CONFIG_IWMMXT
|
||||
u64 acc0;
|
||||
|
||||
#ifndef CONFIG_AS_IS_LLVM
|
||||
asm volatile(".arch_extension xscale\n\t"
|
||||
"mra %Q0, %R0, acc0" : "=r" (acc0));
|
||||
#else
|
||||
asm volatile("mrrc p0, 0, %Q0, %R0, c0" : "=r" (acc0));
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/* ensure voltage-change sequencer not initiated, which hangs */
|
||||
@@ -153,8 +157,12 @@ void pxa27x_cpu_pm_enter(suspend_state_t state)
|
||||
case PM_SUSPEND_MEM:
|
||||
cpu_suspend(pwrmode, pxa27x_finish_suspend);
|
||||
#ifndef CONFIG_IWMMXT
|
||||
#ifndef CONFIG_AS_IS_LLVM
|
||||
asm volatile(".arch_extension xscale\n\t"
|
||||
"mar acc0, %Q0, %R0" : "=r" (acc0));
|
||||
#else
|
||||
asm volatile("mcrr p0, 0, %Q0, %R0, c0" :: "r" (acc0));
|
||||
#endif
|
||||
#endif
|
||||
break;
|
||||
}
|
||||
|
||||
@@ -108,8 +108,12 @@ static void pxa3xx_cpu_pm_suspend(void)
|
||||
#ifndef CONFIG_IWMMXT
|
||||
u64 acc0;
|
||||
|
||||
#ifdef CONFIG_CC_IS_GCC
|
||||
asm volatile(".arch_extension xscale\n\t"
|
||||
"mra %Q0, %R0, acc0" : "=r" (acc0));
|
||||
#else
|
||||
asm volatile("mrrc p0, 0, %Q0, %R0, c0" : "=r" (acc0));
|
||||
#endif
|
||||
#endif
|
||||
|
||||
/* resuming from D2 requires the HSIO2/BOOT/TPM clocks enabled */
|
||||
@@ -137,8 +141,12 @@ static void pxa3xx_cpu_pm_suspend(void)
|
||||
AD3ER = 0;
|
||||
|
||||
#ifndef CONFIG_IWMMXT
|
||||
#ifndef CONFIG_AS_IS_LLVM
|
||||
asm volatile(".arch_extension xscale\n\t"
|
||||
"mar acc0, %Q0, %R0" : "=r" (acc0));
|
||||
#else
|
||||
asm volatile("mcrr p0, 0, %Q0, %R0, c0" :: "r" (acc0));
|
||||
#endif
|
||||
#endif
|
||||
}
|
||||
|
||||
|
||||
@@ -1678,7 +1678,7 @@
|
||||
<GIC_SPI 278 IRQ_TYPE_LEVEL_LOW>;
|
||||
interrupt-names = "job", "mmu", "gpu";
|
||||
|
||||
clocks = <&topckgen CLK_TOP_MFGPLL_CK>;
|
||||
clocks = <&mfgcfg CLK_MFG_BG3D>;
|
||||
|
||||
power-domains =
|
||||
<&spm MT8183_POWER_DOMAIN_MFG_CORE0>,
|
||||
|
||||
@@ -56,10 +56,10 @@
|
||||
#size-cells = <2>;
|
||||
ranges;
|
||||
|
||||
/* 192 KiB reserved for ARM Trusted Firmware (BL31) */
|
||||
/* 2 MiB reserved for ARM Trusted Firmware (BL31) */
|
||||
bl31_secmon_reserved: secmon@54600000 {
|
||||
no-map;
|
||||
reg = <0 0x54600000 0x0 0x30000>;
|
||||
reg = <0 0x54600000 0x0 0x200000>;
|
||||
};
|
||||
|
||||
/* 12 MiB reserved for OP-TEE (BL32)
|
||||
|
||||
@@ -275,9 +275,9 @@ static int scpsys_power_off(struct generic_pm_domain *genpd)
|
||||
clk_bulk_disable_unprepare(pd->num_subsys_clks, pd->subsys_clks);
|
||||
|
||||
/* subsys power off */
|
||||
regmap_clear_bits(scpsys->base, pd->data->ctl_offs, PWR_RST_B_BIT);
|
||||
regmap_set_bits(scpsys->base, pd->data->ctl_offs, PWR_ISO_BIT);
|
||||
regmap_set_bits(scpsys->base, pd->data->ctl_offs, PWR_CLK_DIS_BIT);
|
||||
regmap_clear_bits(scpsys->base, pd->data->ctl_offs, PWR_RST_B_BIT);
|
||||
regmap_clear_bits(scpsys->base, pd->data->ctl_offs, PWR_ON_2ND_BIT);
|
||||
regmap_clear_bits(scpsys->base, pd->data->ctl_offs, PWR_ON_BIT);
|
||||
|
||||
|
||||
@@ -95,6 +95,7 @@ config ARCH_TEGRA_210_SOC
|
||||
|
||||
config ARCH_TEGRA_186_SOC
|
||||
bool "NVIDIA Tegra186 SoC"
|
||||
depends on !CPU_BIG_ENDIAN
|
||||
select MAILBOX
|
||||
select TEGRA_BPMP
|
||||
select TEGRA_HSP_MBOX
|
||||
@@ -110,6 +111,7 @@ config ARCH_TEGRA_186_SOC
|
||||
|
||||
config ARCH_TEGRA_194_SOC
|
||||
bool "NVIDIA Tegra194 SoC"
|
||||
depends on !CPU_BIG_ENDIAN
|
||||
select MAILBOX
|
||||
select PINCTRL_TEGRA194
|
||||
select TEGRA_BPMP
|
||||
@@ -121,6 +123,7 @@ config ARCH_TEGRA_194_SOC
|
||||
|
||||
config ARCH_TEGRA_234_SOC
|
||||
bool "NVIDIA Tegra234 SoC"
|
||||
depends on !CPU_BIG_ENDIAN
|
||||
select MAILBOX
|
||||
select TEGRA_BPMP
|
||||
select TEGRA_HSP_MBOX
|
||||
|
||||
Reference in New Issue
Block a user