Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752236AbeAPMcS (ORCPT + 1 other); Tue, 16 Jan 2018 07:32:18 -0500 Received: from mx07-00178001.pphosted.com ([62.209.51.94]:23245 "EHLO mx07-00178001.pphosted.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751914AbeAPMcP (ORCPT ); Tue, 16 Jan 2018 07:32:15 -0500 From: To: Russell King , Ulf Hansson , Michael Turquette , Stephen Boyd , Linus Walleij , Rob Herring , Mark Rutland , Alexandre Torgue CC: , , , , , , Patrice Chotard Subject: [PATCH v2 11/15] ARM: stm32: Add AMBA support for STM32F4 and STM32F7 SoCs Date: Tue, 16 Jan 2018 13:30:55 +0100 Message-ID: <1516105859-3525-12-git-send-email-patrice.chotard@st.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1516105859-3525-1-git-send-email-patrice.chotard@st.com> References: <1516105859-3525-1-git-send-email-patrice.chotard@st.com> MIME-Version: 1.0 Content-Type: text/plain X-Originating-IP: [10.75.127.45] X-ClientProxiedBy: SFHDAG7NODE1.st.com (10.75.127.19) To SFHDAG6NODE3.st.com (10.75.127.18) X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:,, definitions=2018-01-16_05:,, signatures=0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Return-Path: From: Patrice Chotard As both STM32F4 and STM32F7 SoCs embeds an AMBA PL180 mmci IP, we need to enable AMBA support in mach-stm32. Signed-off-by: Patrice Chotard --- v2 _ none arch/arm/mach-stm32/Kconfig | 3 +++ 1 file changed, 3 insertions(+) diff --git a/arch/arm/mach-stm32/Kconfig b/arch/arm/mach-stm32/Kconfig index 0d1889b..f53a8db 100644 --- a/arch/arm/mach-stm32/Kconfig +++ b/arch/arm/mach-stm32/Kconfig @@ -13,16 +13,19 @@ config ARCH_STM32 config MACH_STM32F429 bool "STMicrolectronics STM32F429" depends on ARCH_STM32 + select ARM_AMBA default y config MACH_STM32F469 bool "STMicrolectronics STM32F469" depends on ARCH_STM32 + select ARM_AMBA default y config MACH_STM32F746 bool "STMicrolectronics STM32F746" depends on ARCH_STM32 + select ARM_AMBA default y config MACH_STM32H743 -- 1.9.1