mirror of
				https://source.denx.de/u-boot/u-boot.git
				synced 2025-10-31 16:31:25 +01:00 
			
		
		
		
	This patch adds a basic group of devicetrees, one for each cpu family, including actually just uart and dspi devices, since these are the drivers supporting devicetree (support added in this patch-set). Acked-by: Jagan Teki <jagan@amarulasolutions.com> Signed-off-by: Angelo Dureghello <angelo@sysam.it> Reviewed-by: Jagan Teki <jagan@amarulasolutions.com>
		
			
				
	
	
		
			20 lines
		
	
	
		
			334 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			20 lines
		
	
	
		
			334 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| Freescale ColdFire UART
 | |
| 
 | |
| Required properties:
 | |
| - compatible : should be "fsl,mcf-uart"
 | |
| - reg: start address and size of the registers
 | |
| 
 | |
| Example:
 | |
| 
 | |
| soc {
 | |
| 	compatible = "simple-bus";
 | |
| 	#address-cells = <1>;
 | |
| 	#size-cells = <1>;
 | |
| 
 | |
| 	uart0: uart@fc060000 {
 | |
| 		compatible = "fsl,mcf-uart";
 | |
| 		reg = <0xfc060000 0x40>;
 | |
| 		status = "disabled";
 | |
| 	};
 | |
| };
 |