mirror of
				https://source.denx.de/u-boot/u-boot.git
				synced 2025-10-31 16:31:25 +01:00 
			
		
		
		
	Import the device-tree from linux-amlogic/for-next (Linux 6.4-rc1) and omit the NPU node from the A311D board variant dts as this is not supported under U-Boot. Signed-off-by: Christian Hewitt <christianshewitt@gmail.com> Reviewed-by: Neil Armstrong <neil.armstrong@linaro.org> Link: https://lore.kernel.org/r/20230323143142.780306-7-christianshewitt@gmail.com Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
		
			
				
	
	
		
			34 lines
		
	
	
		
			621 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			34 lines
		
	
	
		
			621 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| // SPDX-License-Identifier: (GPL-2.0+ OR MIT)
 | |
| /*
 | |
|  * Copyright (c) 2023 Christian Hewitt <christianshewitt@gmail.com>
 | |
|  */
 | |
| 
 | |
| /dts-v1/;
 | |
| 
 | |
| #include "meson-g12b-a311d.dtsi"
 | |
| #include "meson-g12b-bananapi.dtsi"
 | |
| 
 | |
| / {
 | |
| 	compatible = "bananapi,bpi-m2s", "amlogic,a311d", "amlogic,g12b";
 | |
| 	model = "BananaPi M2S";
 | |
| 
 | |
| 	aliases {
 | |
| 		i2c0 = &i2c1;
 | |
| 		i2c1 = &i2c3;
 | |
| 	};
 | |
| };
 | |
| 
 | |
| /* Camera (CSI) bus */
 | |
| &i2c1 {
 | |
| 	status = "okay";
 | |
| 	pinctrl-0 = <&i2c1_sda_h6_pins>, <&i2c1_sck_h7_pins>;
 | |
| 	pinctrl-names = "default";
 | |
| };
 | |
| 
 | |
| /* Display (DSI) bus */
 | |
| &i2c3 {
 | |
| 	status = "okay";
 | |
| 	pinctrl-0 = <&i2c3_sda_a_pins>, <&i2c3_sck_a_pins>;
 | |
| 	pinctrl-names = "default";
 | |
| };
 |