mirror of
				https://source.denx.de/u-boot/u-boot.git
				synced 2025-10-31 16:31:25 +01:00 
			
		
		
		
	Device tree alignment with Linux kernel v5.18-rc2: - ARM: dts: stm32: Add support for the emtrion emSBC-Argon (only the pincontrol part) - ARM: dts: stm32: Drop duplicate status okay from DHCOM gpioc node - ARM: dts: stm32: add st,stm32-sdmmc2 compatible on stm32mp151 - ARM: dts: stm32: fix AV96 board SAI2 pin muxing on stm32mp15 - ARM: dts: stm32: use exti 19 as main interrupt to support RTC wakeup on stm32mp157 - ARM: dts: stm32: add DMA configuration to UART nodes on stm32mp151 - ARM: dts: stm32: keep uart4 behavior on * - ARM: dts: stm32: Correct masks for GIC PPI interrupts on stm32mp15 Signed-off-by: Patrick Delaunay <patrick.delaunay@foss.st.com> Reviewed-by: Patrice Chotard <patrice.chotard@foss.st.com> Signed-off-by: Patrice Chotard <patrice.chotard@foss.st.com>
		
			
				
	
	
		
			60 lines
		
	
	
		
			1.6 KiB
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			60 lines
		
	
	
		
			1.6 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.
 | |
|  */
 | |
| 
 | |
| #include "stm32mp151.dtsi"
 | |
| 
 | |
| / {
 | |
| 	cpus {
 | |
| 		cpu1: cpu@1 {
 | |
| 			compatible = "arm,cortex-a7";
 | |
| 			clock-frequency = <650000000>;
 | |
| 			device_type = "cpu";
 | |
| 			reg = <1>;
 | |
| 		};
 | |
| 	};
 | |
| 
 | |
| 	arm-pmu {
 | |
| 		interrupts = <GIC_SPI 200 IRQ_TYPE_LEVEL_HIGH>,
 | |
| 			     <GIC_SPI 201 IRQ_TYPE_LEVEL_HIGH>;
 | |
| 		interrupt-affinity = <&cpu0>, <&cpu1>;
 | |
| 	};
 | |
| 
 | |
| 	timer {
 | |
| 		interrupts = <GIC_PPI 13 (GIC_CPU_MASK_SIMPLE(2) | IRQ_TYPE_LEVEL_LOW)>,
 | |
| 			     <GIC_PPI 14 (GIC_CPU_MASK_SIMPLE(2) | IRQ_TYPE_LEVEL_LOW)>,
 | |
| 			     <GIC_PPI 11 (GIC_CPU_MASK_SIMPLE(2) | IRQ_TYPE_LEVEL_LOW)>,
 | |
| 			     <GIC_PPI 10 (GIC_CPU_MASK_SIMPLE(2) | IRQ_TYPE_LEVEL_LOW)>;
 | |
| 	};
 | |
| 
 | |
| 	soc {
 | |
| 		m_can1: can@4400e000 {
 | |
| 			compatible = "bosch,m_can";
 | |
| 			reg = <0x4400e000 0x400>, <0x44011000 0x1400>;
 | |
| 			reg-names = "m_can", "message_ram";
 | |
| 			interrupts = <GIC_SPI 19 IRQ_TYPE_LEVEL_HIGH>,
 | |
| 				     <GIC_SPI 21 IRQ_TYPE_LEVEL_HIGH>;
 | |
| 			interrupt-names = "int0", "int1";
 | |
| 			clocks = <&rcc CK_HSE>, <&rcc FDCAN_K>;
 | |
| 			clock-names = "hclk", "cclk";
 | |
| 			bosch,mram-cfg = <0x0 0 0 32 0 0 2 2>;
 | |
| 			status = "disabled";
 | |
| 		};
 | |
| 
 | |
| 		m_can2: can@4400f000 {
 | |
| 			compatible = "bosch,m_can";
 | |
| 			reg = <0x4400f000 0x400>, <0x44011000 0x2800>;
 | |
| 			reg-names = "m_can", "message_ram";
 | |
| 			interrupts = <GIC_SPI 20 IRQ_TYPE_LEVEL_HIGH>,
 | |
| 				     <GIC_SPI 22 IRQ_TYPE_LEVEL_HIGH>;
 | |
| 			interrupt-names = "int0", "int1";
 | |
| 			clocks = <&rcc CK_HSE>, <&rcc FDCAN_K>;
 | |
| 			clock-names = "hclk", "cclk";
 | |
| 			bosch,mram-cfg = <0x1400 0 0 32 0 0 2 2>;
 | |
| 			status = "disabled";
 | |
| 		};
 | |
| 	};
 | |
| };
 |