diff options
| author | Arnd Bergmann <arnd@arndb.de> | 2019-02-15 11:45:12 -0500 |
|---|---|---|
| committer | Arnd Bergmann <arnd@arndb.de> | 2019-02-15 14:38:17 -0500 |
| commit | d0e1f79ad3de08bc42a53124d5328a5e83bd68fd (patch) | |
| tree | af1622f98e939ff921424d4e7066e0903b3268db | |
| parent | 5f6efe31636a0f68ab418b8a6da0cc58b9859121 (diff) | |
| parent | a43379dddf1ba14b6a9d50d95175117bbdf52ed2 (diff) | |
Merge tag 'v5.0-next-soc' of git://git.kernel.org/pub/scm/linux/kernel/git/matthias.bgg/linux into arm/fixes
mt8173: minor typo in scpsys header file
mt7629: add smp bringup code
mt7623a: delete unused smp bringup code
* tag 'v5.0-next-soc' of git://git.kernel.org/pub/scm/linux/kernel/git/matthias.bgg/linux:
arm: mediatek: add MT7629 smp bring up code
Revert "ARM: mediatek: add MT7623a smp bringup code"
dt-bindings: soc: fix typo of MT8173 power dt-bindings
Signed-off-by: Arnd Bergmann <arnd@arndb.de>
| -rw-r--r-- | arch/arm/mach-mediatek/Kconfig | 4 | ||||
| -rw-r--r-- | arch/arm/mach-mediatek/mediatek.c | 3 | ||||
| -rw-r--r-- | arch/arm/mach-mediatek/platsmp.c | 2 | ||||
| -rw-r--r-- | include/dt-bindings/power/mt8173-power.h | 6 |
4 files changed, 9 insertions, 6 deletions
diff --git a/arch/arm/mach-mediatek/Kconfig b/arch/arm/mach-mediatek/Kconfig index 91cc461f7b04..11ed264f0731 100644 --- a/arch/arm/mach-mediatek/Kconfig +++ b/arch/arm/mach-mediatek/Kconfig | |||
| @@ -26,6 +26,10 @@ config MACH_MT7623 | |||
| 26 | bool "MediaTek MT7623 SoCs support" | 26 | bool "MediaTek MT7623 SoCs support" |
| 27 | default ARCH_MEDIATEK | 27 | default ARCH_MEDIATEK |
| 28 | 28 | ||
| 29 | config MACH_MT7629 | ||
| 30 | bool "MediaTek MT7629 SoCs support" | ||
| 31 | default ARCH_MEDIATEK | ||
| 32 | |||
| 29 | config MACH_MT8127 | 33 | config MACH_MT8127 |
| 30 | bool "MediaTek MT8127 SoCs support" | 34 | bool "MediaTek MT8127 SoCs support" |
| 31 | default ARCH_MEDIATEK | 35 | default ARCH_MEDIATEK |
diff --git a/arch/arm/mach-mediatek/mediatek.c b/arch/arm/mach-mediatek/mediatek.c index 6910b4e0d913..b6a81ba1ce32 100644 --- a/arch/arm/mach-mediatek/mediatek.c +++ b/arch/arm/mach-mediatek/mediatek.c | |||
| @@ -30,7 +30,6 @@ static void __init mediatek_timer_init(void) | |||
| 30 | 30 | ||
| 31 | if (of_machine_is_compatible("mediatek,mt6589") || | 31 | if (of_machine_is_compatible("mediatek,mt6589") || |
| 32 | of_machine_is_compatible("mediatek,mt7623") || | 32 | of_machine_is_compatible("mediatek,mt7623") || |
| 33 | of_machine_is_compatible("mediatek,mt7623a") || | ||
| 34 | of_machine_is_compatible("mediatek,mt8135") || | 33 | of_machine_is_compatible("mediatek,mt8135") || |
| 35 | of_machine_is_compatible("mediatek,mt8127")) { | 34 | of_machine_is_compatible("mediatek,mt8127")) { |
| 36 | /* turn on GPT6 which ungates arch timer clocks */ | 35 | /* turn on GPT6 which ungates arch timer clocks */ |
| @@ -50,7 +49,7 @@ static const char * const mediatek_board_dt_compat[] = { | |||
| 50 | "mediatek,mt6589", | 49 | "mediatek,mt6589", |
| 51 | "mediatek,mt6592", | 50 | "mediatek,mt6592", |
| 52 | "mediatek,mt7623", | 51 | "mediatek,mt7623", |
| 53 | "mediatek,mt7623a", | 52 | "mediatek,mt7629", |
| 54 | "mediatek,mt8127", | 53 | "mediatek,mt8127", |
| 55 | "mediatek,mt8135", | 54 | "mediatek,mt8135", |
| 56 | NULL, | 55 | NULL, |
diff --git a/arch/arm/mach-mediatek/platsmp.c b/arch/arm/mach-mediatek/platsmp.c index 6882ff07aaa6..c9d7c0458452 100644 --- a/arch/arm/mach-mediatek/platsmp.c +++ b/arch/arm/mach-mediatek/platsmp.c | |||
| @@ -60,7 +60,7 @@ static const struct of_device_id mtk_tz_smp_boot_infos[] __initconst = { | |||
| 60 | static const struct of_device_id mtk_smp_boot_infos[] __initconst = { | 60 | static const struct of_device_id mtk_smp_boot_infos[] __initconst = { |
| 61 | { .compatible = "mediatek,mt6589", .data = &mtk_mt6589_boot }, | 61 | { .compatible = "mediatek,mt6589", .data = &mtk_mt6589_boot }, |
| 62 | { .compatible = "mediatek,mt7623", .data = &mtk_mt7623_boot }, | 62 | { .compatible = "mediatek,mt7623", .data = &mtk_mt7623_boot }, |
| 63 | { .compatible = "mediatek,mt7623a", .data = &mtk_mt7623_boot }, | 63 | { .compatible = "mediatek,mt7629", .data = &mtk_mt7623_boot }, |
| 64 | {}, | 64 | {}, |
| 65 | }; | 65 | }; |
| 66 | 66 | ||
diff --git a/include/dt-bindings/power/mt8173-power.h b/include/dt-bindings/power/mt8173-power.h index 15d531aa6e78..ef4a7f944848 100644 --- a/include/dt-bindings/power/mt8173-power.h +++ b/include/dt-bindings/power/mt8173-power.h | |||
| @@ -1,6 +1,6 @@ | |||
| 1 | /* SPDX-License-Identifier: GPL-2.0 */ | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
| 2 | #ifndef _DT_BINDINGS_POWER_MT8183_POWER_H | 2 | #ifndef _DT_BINDINGS_POWER_MT8173_POWER_H |
| 3 | #define _DT_BINDINGS_POWER_MT8183_POWER_H | 3 | #define _DT_BINDINGS_POWER_MT8173_POWER_H |
| 4 | 4 | ||
| 5 | #define MT8173_POWER_DOMAIN_VDEC 0 | 5 | #define MT8173_POWER_DOMAIN_VDEC 0 |
| 6 | #define MT8173_POWER_DOMAIN_VENC 1 | 6 | #define MT8173_POWER_DOMAIN_VENC 1 |
| @@ -13,4 +13,4 @@ | |||
| 13 | #define MT8173_POWER_DOMAIN_MFG_2D 8 | 13 | #define MT8173_POWER_DOMAIN_MFG_2D 8 |
| 14 | #define MT8173_POWER_DOMAIN_MFG 9 | 14 | #define MT8173_POWER_DOMAIN_MFG 9 |
| 15 | 15 | ||
| 16 | #endif /* _DT_BINDINGS_POWER_MT8183_POWER_H */ | 16 | #endif /* _DT_BINDINGS_POWER_MT8173_POWER_H */ |
