mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-15 01:17:39 +00:00
4f71c80b0d
Add DT for DH DRC Compact unit, which is a universal controller device. The system has two ethernet ports, one CAN, RS485 and RS232, USB, uSD card slot, eMMC and SDIO Wi-Fi. Signed-off-by: Marek Vasut <marex@denx.de> Cc: Patrice Chotard <patrice.chotard@foss.st.com> Cc: Patrick Delaunay <patrick.delaunay@foss.st.com> Reviewed-by: Patrice Chotard <patrice.chotard@foss.st.com> Reviewed-by: Patrick Delaunay <patrick.delaunay@foss.st.com>
30 lines
730 B
Text
30 lines
730 B
Text
// SPDX-License-Identifier: (GPL-2.0 OR BSD-3-Clause)
|
|
/*
|
|
* Copyright (C) 2022 Marek Vasut <marex@denx.de>
|
|
*
|
|
* DHCOR STM32MP1 variant:
|
|
* DHCR-STM32MP153C-C065-R051-V33-SPI-I-01LG
|
|
* DHCOR PCB number: 586-100 or newer
|
|
* DRC Compact PCB number: 627-100 or newer
|
|
*/
|
|
|
|
/dts-v1/;
|
|
|
|
#include "stm32mp153.dtsi"
|
|
#include "stm32mp15xc.dtsi"
|
|
#include "stm32mp15xx-dhcor-som.dtsi"
|
|
#include "stm32mp15xx-dhcor-drc-compact.dtsi"
|
|
|
|
/ {
|
|
model = "DH electronics STM32MP153C DHCOR DRC Compact";
|
|
compatible = "dh,stm32mp153c-dhcor-drc-compact",
|
|
"dh,stm32mp153c-dhcor-som",
|
|
"st,stm32mp153";
|
|
};
|
|
|
|
&m_can1 {
|
|
pinctrl-names = "default", "sleep";
|
|
pinctrl-0 = <&m_can1_pins_c>;
|
|
pinctrl-1 = <&m_can1_sleep_pins_c>;
|
|
status = "okay";
|
|
};
|