Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

ARM: dts: stm32: Add Engicam i.Core STM32MP1 EDIMM2.2 Starter Kit

Engicam EDIMM2.2 Starter Kit is an EDIMM 2.2 Form Factor Capacitive
Evaluation Board.

Genaral features:
- LCD 7" C.Touch
- microSD slot
- Ethernet 1Gb
- Wifi/BT
- 2x LVDS Full HD interfaces
- 3x USB 2.0
- 1x USB 3.0
- HDMI Out
- Mini PCIe
- MIPI CSI
- 2x CAN
- Audio Out

i.Core STM32MP1 is an EDIMM SoM based on STM32MP157A from Engicam.

i.Core STM32MP1 needs to mount on top of this Evaluation board for
creating complete i.Core STM32MP1 EDIMM2.2 Starter Kit.

Add support for it.

Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
Signed-off-by: Alexandre Torgue <alexandre.torgue@foss.st.com>

authored by

Jagan Teki and committed by
Alexandre Torgue
adc04961 2533c956

+48
+1
arch/arm/boot/dts/Makefile
··· 1079 1079 stm32mp157a-microgea-stm32mp1-microdev2.0.dtb \ 1080 1080 stm32mp157a-microgea-stm32mp1-microdev2.0-of7.dtb \ 1081 1081 stm32mp157a-icore-stm32mp1-ctouch2.dtb \ 1082 + stm32mp157a-icore-stm32mp1-edimm2.2.dtb \ 1082 1083 stm32mp157a-stinger96.dtb \ 1083 1084 stm32mp157c-dhcom-pdk2.dtb \ 1084 1085 stm32mp157c-dhcom-picoitx.dtb \
+47
arch/arm/boot/dts/stm32mp157a-icore-stm32mp1-edimm2.2.dts
··· 1 + // SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause) 2 + /* 3 + * Copyright (c) STMicroelectronics 2019 - All Rights Reserved 4 + * Copyright (c) 2020 Engicam srl 5 + * Copyright (c) 2020 Amarula Solutons(India) 6 + */ 7 + 8 + /dts-v1/; 9 + #include "stm32mp157.dtsi" 10 + #include "stm32mp157a-icore-stm32mp1.dtsi" 11 + #include "stm32mp15-pinctrl.dtsi" 12 + #include "stm32mp15xxaa-pinctrl.dtsi" 13 + #include <dt-bindings/gpio/gpio.h> 14 + 15 + / { 16 + model = "Engicam i.Core STM32MP1 EDIMM2.2 Starter Kit"; 17 + compatible = "engicam,icore-stm32mp1-edimm2.2", 18 + "engicam,icore-stm32mp1", "st,stm32mp157"; 19 + 20 + aliases { 21 + serial0 = &uart4; 22 + }; 23 + 24 + chosen { 25 + stdout-path = "serial0:115200n8"; 26 + }; 27 + }; 28 + 29 + &sdmmc1 { 30 + bus-width = <4>; 31 + disable-wp; 32 + pinctrl-names = "default", "opendrain", "sleep"; 33 + pinctrl-0 = <&sdmmc1_b4_pins_a>; 34 + pinctrl-1 = <&sdmmc1_b4_od_pins_a>; 35 + pinctrl-2 = <&sdmmc1_b4_sleep_pins_a>; 36 + st,neg-edge; 37 + vmmc-supply = <&v3v3>; 38 + status = "okay"; 39 + }; 40 + 41 + &uart4 { 42 + pinctrl-names = "default", "sleep", "idle"; 43 + pinctrl-0 = <&uart4_pins_a>; 44 + pinctrl-1 = <&uart4_sleep_pins_a>; 45 + pinctrl-2 = <&uart4_idle_pins_a>; 46 + status = "okay"; 47 + };