Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933773AbeALMUP (ORCPT + 1 other); Fri, 12 Jan 2018 07:20:15 -0500 Received: from mx07-00178001.pphosted.com ([62.209.51.94]:54495 "EHLO mx07-00178001.pphosted.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S933380AbeALMRS (ORCPT ); Fri, 12 Jan 2018 07:17:18 -0500 From: To: Russell King , Ulf Hansson , Michael Turquette , Stephen Boyd , Linus Walleij , Rob Herring , Mark Rutland , Alexandre Torgue CC: , , , , , , Patrice Chotard Subject: [PATCH 10/14] ARM: stm32: Add AMBA support for STM32F4 and STM32F7 SoCs Date: Fri, 12 Jan 2018 13:16:04 +0100 Message-ID: <1515759368-16946-11-git-send-email-patrice.chotard@st.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1515759368-16946-1-git-send-email-patrice.chotard@st.com> References: <1515759368-16946-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: SFHDAG2NODE2.st.com (10.75.127.5) To SFHDAG6NODE3.st.com (10.75.127.18) X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:,, definitions=2018-01-12_06:,, 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 --- 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