mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-03 18:20:25 +02:00 
			
		
		
		
	AM5 and DRA7 SoC families have different set of modules in them so the SoC sepecific dtsi files need to be separated. e.g. Some of the major differences between AM576 and DRA76 DRA76x AM576x USB3 x USB4 x ATL x VCP x MLB x ISS x PRU-ICSS1 x PRU-ICSS2 x This patch only deals with disabling USB3, USB4 and ATL for AM57 variants. Signed-off-by: Roger Quadros <rogerq@ti.com> Reviewed-by: Lokesh Vutla <lokeshvutla@ti.com> Signed-off-by: Tony Lindgren <tony@atomide.com>
		
			
				
	
	
		
			42 lines
		
	
	
	
		
			995 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			42 lines
		
	
	
	
		
			995 B
		
	
	
	
		
			Text
		
	
	
	
	
	
// SPDX-License-Identifier: GPL-2.0
 | 
						|
/*
 | 
						|
 * Copyright (C) 2017 Texas Instruments Incorporated - http://www.ti.com/
 | 
						|
 */
 | 
						|
 | 
						|
 | 
						|
/dts-v1/;
 | 
						|
 | 
						|
#include "am5748.dtsi"
 | 
						|
#include "dra7-mmc-iodelay.dtsi"
 | 
						|
#include "dra76x-mmc-iodelay.dtsi"
 | 
						|
#include "am572x-idk-common.dtsi"
 | 
						|
 | 
						|
/ {
 | 
						|
	model = "TI AM5748 IDK";
 | 
						|
	compatible = "ti,am5748-idk", "ti,am5748", "ti,dra762", "ti,dra7";
 | 
						|
};
 | 
						|
 | 
						|
&qspi {
 | 
						|
	spi-max-frequency = <96000000>;
 | 
						|
	m25p80@0 {
 | 
						|
		spi-max-frequency = <96000000>;
 | 
						|
	};
 | 
						|
};
 | 
						|
 | 
						|
&mmc1 {
 | 
						|
	pinctrl-names = "default", "hs", "sdr12", "sdr25", "sdr50", "ddr50", "sdr104";
 | 
						|
	pinctrl-0 = <&mmc1_pins_default_no_clk_pu>;
 | 
						|
	pinctrl-1 = <&mmc1_pins_hs>;
 | 
						|
	pinctrl-2 = <&mmc1_pins_default>;
 | 
						|
	pinctrl-3 = <&mmc1_pins_hs>;
 | 
						|
	pinctrl-4 = <&mmc1_pins_sdr50>;
 | 
						|
	pinctrl-5 = <&mmc1_pins_ddr50 &mmc1_iodelay_ddr_conf>;
 | 
						|
	pinctrl-6 = <&mmc1_pins_ddr50 &mmc1_iodelay_sdr104_conf>;
 | 
						|
};
 | 
						|
 | 
						|
&mmc2 {
 | 
						|
	pinctrl-names = "default", "hs", "ddr_3_3v";
 | 
						|
	pinctrl-0 = <&mmc2_pins_default>;
 | 
						|
	pinctrl-1 = <&mmc2_pins_default>;
 | 
						|
	pinctrl-2 = <&mmc2_pins_default>;
 | 
						|
};
 |