From mboxrd@z Thu Jan 1 00:00:00 1970 From: Subject: [PATCH v3 11/14] ARM: stm32: Add AMBA support for STM32F4 and STM32F7 SoCs Date: Thu, 18 Jan 2018 15:34:27 +0100 Message-ID: <1516286070-24927-12-git-send-email-patrice.chotard@st.com> References: <1516286070-24927-1-git-send-email-patrice.chotard@st.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1516286070-24927-1-git-send-email-patrice.chotard@st.com> List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=m.gmane.org@lists.infradead.org To: Russell King , Ulf Hansson , Michael Turquette , Stephen Boyd , Linus Walleij , Rob Herring , Mark Rutland , Alexandre Torgue Cc: devicetree@vger.kernel.org, linux-mmc@vger.kernel.org, linux-kernel@vger.kernel.org, Patrice Chotard , linux-gpio@vger.kernel.org, linux-clk@vger.kernel.org, linux-arm-kernel@lists.infradead.org List-Id: linux-gpio@vger.kernel.org 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 --- v3: _ none 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 From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932598AbeAROiK (ORCPT ); Thu, 18 Jan 2018 09:38:10 -0500 Received: from mx07-00178001.pphosted.com ([62.209.51.94]:25855 "EHLO mx07-00178001.pphosted.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1756487AbeAROgG (ORCPT ); Thu, 18 Jan 2018 09:36:06 -0500 From: To: Russell King , Ulf Hansson , Michael Turquette , Stephen Boyd , Linus Walleij , Rob Herring , Mark Rutland , Alexandre Torgue CC: , , , , , , Patrice Chotard Subject: [PATCH v3 11/14] ARM: stm32: Add AMBA support for STM32F4 and STM32F7 SoCs Date: Thu, 18 Jan 2018 15:34:27 +0100 Message-ID: <1516286070-24927-12-git-send-email-patrice.chotard@st.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1516286070-24927-1-git-send-email-patrice.chotard@st.com> References: <1516286070-24927-1-git-send-email-patrice.chotard@st.com> MIME-Version: 1.0 Content-Type: text/plain X-Originating-IP: [10.75.127.51] X-ClientProxiedBy: SFHDAG4NODE3.st.com (10.75.127.12) To SFHDAG6NODE3.st.com (10.75.127.18) X-Proofpoint-Virus-Version: vendor=fsecure engine=2.50.10432:,, definitions=2018-01-18_07:,, signatures=0 Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org 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 --- v3: _ none 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 From mboxrd@z Thu Jan 1 00:00:00 1970 From: patrice.chotard@st.com (patrice.chotard at st.com) Date: Thu, 18 Jan 2018 15:34:27 +0100 Subject: [PATCH v3 11/14] ARM: stm32: Add AMBA support for STM32F4 and STM32F7 SoCs In-Reply-To: <1516286070-24927-1-git-send-email-patrice.chotard@st.com> References: <1516286070-24927-1-git-send-email-patrice.chotard@st.com> Message-ID: <1516286070-24927-12-git-send-email-patrice.chotard@st.com> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org 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 --- v3: _ none 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