mirror of
				https://source.denx.de/u-boot/u-boot.git
				synced 2025-10-31 00:11:51 +01:00 
			
		
		
		
	Device tree alignment with Linux kernel v5.11-rc2 - fix DCMI DMA features on stm32mp15 family - Add alternate pinmux for FMC EBI bus - Harmonize EHCI/OHCI DT nodes name on stm32mp15 - update sdmmc IP version for STM32MP15 - Add LP timer irqs on stm32mp151 - Add LP timer wakeup-source on stm32mp151 - enable HASH by default on stm32mp15 - enable CRC1 by default on stm32mp15 - enable CRYP by default on stm32mp15 - set bus-type in DCMI endpoint for stm32mp157c-ev1 board - reorder spi4 within stm32mp15-pinctrl - add STUSB1600 Type-C using I2C4 on stm32mp15xx-dkx - fix mdma1 clients channel priority level on stm32mp151 - fix dmamux reg property on stm32mp151 - adjust USB OTG gadget fifo sizes in stm32mp151 - update stm32mp151 for remote proc synchronization support - support child mfd cells for the stm32mp1 TAMP syscon Signed-off-by: Patrick Delaunay <patrick.delaunay@st.com> Signed-off-by: Patrick Delaunay <patrick.delaunay@foss.st.com>
		
			
				
	
	
		
			102 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			102 lines
		
	
	
		
			1.7 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| // SPDX-License-Identifier: (GPL-2.0+ OR BSD-3-Clause)
 | |
| /*
 | |
|  * Copyright (C) STMicroelectronics 2019 - All Rights Reserved
 | |
|  * Author: Alexandre Torgue <alexandre.torgue@st.com> for STMicroelectronics.
 | |
|  */
 | |
| 
 | |
| /dts-v1/;
 | |
| 
 | |
| #include "stm32mp157.dtsi"
 | |
| #include "stm32mp15xc.dtsi"
 | |
| #include "stm32mp15-pinctrl.dtsi"
 | |
| #include "stm32mp15xxac-pinctrl.dtsi"
 | |
| #include "stm32mp15xx-dkx.dtsi"
 | |
| 
 | |
| / {
 | |
| 	model = "STMicroelectronics STM32MP157C-DK2 Discovery Board";
 | |
| 	compatible = "st,stm32mp157c-dk2", "st,stm32mp157";
 | |
| 
 | |
| 	aliases {
 | |
| 		ethernet0 = ðernet0;
 | |
| 		serial0 = &uart4;
 | |
| 		serial1 = &usart3;
 | |
| 		serial2 = &uart7;
 | |
| 		serial3 = &usart2;
 | |
| 	};
 | |
| 
 | |
| 	chosen {
 | |
| 		stdout-path = "serial0:115200n8";
 | |
| 	};
 | |
| };
 | |
| 
 | |
| &cryp1 {
 | |
| 	status = "okay";
 | |
| };
 | |
| 
 | |
| &dsi {
 | |
| 	status = "okay";
 | |
| 	phy-dsi-supply = <®18>;
 | |
| 
 | |
| 	ports {
 | |
| 		port@0 {
 | |
| 			reg = <0>;
 | |
| 			dsi_in: endpoint {
 | |
| 				remote-endpoint = <<dc_ep1_out>;
 | |
| 			};
 | |
| 		};
 | |
| 
 | |
| 		port@1 {
 | |
| 			reg = <1>;
 | |
| 			dsi_out: endpoint {
 | |
| 				remote-endpoint = <&panel_in>;
 | |
| 			};
 | |
| 		};
 | |
| 	};
 | |
| 
 | |
| 	panel@0 {
 | |
| 		compatible = "orisetech,otm8009a";
 | |
| 		reg = <0>;
 | |
| 		reset-gpios = <&gpioe 4 GPIO_ACTIVE_LOW>;
 | |
| 		power-supply = <&v3v3>;
 | |
| 		status = "okay";
 | |
| 
 | |
| 		port {
 | |
| 			panel_in: endpoint {
 | |
| 				remote-endpoint = <&dsi_out>;
 | |
| 			};
 | |
| 		};
 | |
| 	};
 | |
| };
 | |
| 
 | |
| &i2c1 {
 | |
| 	touchscreen@38 {
 | |
| 		compatible = "focaltech,ft6236";
 | |
| 		reg = <0x38>;
 | |
| 		interrupts = <2 2>;
 | |
| 		interrupt-parent = <&gpiof>;
 | |
| 		interrupt-controller;
 | |
| 		touchscreen-size-x = <480>;
 | |
| 		touchscreen-size-y = <800>;
 | |
| 		status = "okay";
 | |
| 	};
 | |
| };
 | |
| 
 | |
| <dc {
 | |
| 	status = "okay";
 | |
| 
 | |
| 	port {
 | |
| 		ltdc_ep1_out: endpoint@1 {
 | |
| 			reg = <1>;
 | |
| 			remote-endpoint = <&dsi_in>;
 | |
| 		};
 | |
| 	};
 | |
| };
 | |
| 
 | |
| &usart2 {
 | |
| 	pinctrl-names = "default", "sleep", "idle";
 | |
| 	pinctrl-0 = <&usart2_pins_c>;
 | |
| 	pinctrl-1 = <&usart2_sleep_pins_c>;
 | |
| 	pinctrl-2 = <&usart2_idle_pins_c>;
 | |
| 	status = "disabled";
 | |
| };
 |