Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1570714
| From | Alexandre TORGUE <alexandre.torgue@st.com> |
|---|---|
| Newsgroups | linux.kernel |
| Subject | [PATCH 0/8] ADD STM32H743 MCU and STM32H743i-Eval board supports |
| Date | 2017-01-31 14:20 +0100 |
| Message-ID | <t5GvM-19j-9@gated-at.bofh.it> (permalink) |
| Organization | linux.* mail to news gateway |
This series adds basic support for STM32H743 MCU and stm32h743i-eval board. With it, you can boot stm32h743i-eval board successfully. For your information: The STMicrolectornics's STM32H743 MCU has the following main features: - Cortex-M7 core running up to @400MHz - 2MB internal flash, about 1MBytes internal RAM - FMC controller to connect SDRAM, NOR and NAND memories - Dual mode QSPI - SD/MMC/SDIO support - Ethernet controller - USB OTFG FS & HS controllers - I2C, SPI, CAN busses support - Several 16 & 32 bits general purpose timers - Serial Audio interface - LCD controller - HDMI-CEC - SPDIFRX Regards Alex Alexandre TORGUE (8): include: dt-bindings: Add STM32H7 pinctrl DT bindings pinctrl: stm32: Add STM32H743 MCU support Documentation: dt-bindings: Add STM32 pinctrl driver DT bindings ARM: stm32: create dedicated kconfig for STM32 machine ARM: stm32: Add a new SOC - STM32H743 ARM: stm32: Introduce MACH_STM32H743 flag ARM: dts: stm32: Add STM32H743 MCU and STM32H743i-EVAL board ARM: configs: Add new config fragment to change RAM start point Documentation/arm/stm32/stm32h743-overview.txt | 30 + .../bindings/pinctrl/st,stm32-pinctrl.txt | 1 + arch/arm/Kconfig | 24 +- arch/arm/boot/dts/Makefile | 3 +- arch/arm/boot/dts/stm32h743-pinctrl.dtsi | 156 ++ arch/arm/boot/dts/stm32h743.dtsi | 83 + arch/arm/boot/dts/stm32h743i-eval.dts | 74 + arch/arm/configs/dram_0xd0000000.config | 1 + arch/arm/mach-stm32/Kconfig | 26 + arch/arm/mach-stm32/board-dt.c | 1 + drivers/pinctrl/stm32/Kconfig | 5 + drivers/pinctrl/stm32/Makefile | 1 + drivers/pinctrl/stm32/pinctrl-stm32h743.c | 1980 ++++++++++++++++++++ include/dt-bindings/pinctrl/stm32h7-pinfunc.h | 1612 ++++++++++++++++ 14 files changed, 3974 insertions(+), 23 deletions(-) create mode 100644 Documentation/arm/stm32/stm32h743-overview.txt create mode 100644 arch/arm/boot/dts/stm32h743-pinctrl.dtsi create mode 100644 arch/arm/boot/dts/stm32h743.dtsi create mode 100644 arch/arm/boot/dts/stm32h743i-eval.dts create mode 100644 arch/arm/configs/dram_0xd0000000.config create mode 100644 arch/arm/mach-stm32/Kconfig create mode 100644 drivers/pinctrl/stm32/pinctrl-stm32h743.c create mode 100644 include/dt-bindings/pinctrl/stm32h7-pinfunc.h -- 1.9.1
Back to linux.kernel | Previous | Next — Next in thread | Find similar | Unroll thread
[PATCH 0/8] ADD STM32H743 MCU and STM32H743i-Eval board supports Alexandre TORGUE <alexandre.torgue@st.com> - 2017-01-31 14:20 +0100
[PATCH 5/8] ARM: stm32: Add a new SOC - STM32H743 Alexandre TORGUE <alexandre.torgue@st.com> - 2017-01-31 14:20 +0100
[PATCH 8/8] ARM: configs: Add new config fragment to change RAM start point Alexandre TORGUE <alexandre.torgue@st.com> - 2017-01-31 14:20 +0100
[PATCH 3/8] Documentation: dt-bindings: Add STM32 pinctrl driver DT bindings Alexandre TORGUE <alexandre.torgue@st.com> - 2017-01-31 14:20 +0100
Re: [PATCH 3/8] Documentation: dt-bindings: Add STM32 pinctrl driver DT bindings Rob Herring <robh@kernel.org> - 2017-02-01 18:40 +0100
Re: [PATCH 3/8] Documentation: dt-bindings: Add STM32 pinctrl driver DT bindings Rob Herring <robh@kernel.org> - 2017-02-01 18:40 +0100
Re: [PATCH 3/8] Documentation: dt-bindings: Add STM32 pinctrl driver DT bindings Linus Walleij <linus.walleij@linaro.org> - 2017-02-06 09:50 +0100
[PATCH 6/8] ARM: stm32: Introduce MACH_STM32H743 flag Alexandre TORGUE <alexandre.torgue@st.com> - 2017-01-31 14:20 +0100
[PATCH 7/8] ARM: dts: stm32: Add STM32H743 MCU and STM32H743i-EVAL board Alexandre TORGUE <alexandre.torgue@st.com> - 2017-01-31 14:20 +0100
[PATCH 4/8] ARM: stm32: create dedicated kconfig for STM32 machine Alexandre TORGUE <alexandre.torgue@st.com> - 2017-01-31 14:20 +0100
Re: [PATCH 0/8] ADD STM32H743 MCU and STM32H743i-Eval board supports Linus Walleij <linus.walleij@linaro.org> - 2017-02-01 16:20 +0100
Re: [PATCH 0/8] ADD STM32H743 MCU and STM32H743i-Eval board supports Alexandre Torgue <alexandre.torgue@st.com> - 2017-02-01 17:50 +0100
Re: [PATCH 1/8] include: dt-bindings: Add STM32H7 pinctrl DT bindings Linus Walleij <linus.walleij@linaro.org> - 2017-02-06 09:40 +0100
Re: [PATCH 2/8] pinctrl: stm32: Add STM32H743 MCU support Linus Walleij <linus.walleij@linaro.org> - 2017-02-06 09:50 +0100
csiph-web