mirror of
				https://xff.cz/git/u-boot/
				synced 2025-10-31 18:35:42 +01:00 
			
		
		
		
	Enable PCIe/NVMe support on DH i.MX8M Plus DHCOM PDK3. Except for the configuration options which are enabled, add slight adjustment to board u-boot.dtsi, which is necessary as there is currently no driver for the I2C PCIe clock generator. Since the generator is strapped to be always on, it is possible to supplant the generator functionality by fixed-clock. Signed-off-by: Marek Vasut <marex@denx.de>
		
			
				
	
	
		
			19 lines
		
	
	
		
			307 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			307 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| // SPDX-License-Identifier: (GPL-2.0+ OR MIT)
 | |
| /*
 | |
|  * Copyright (C) 2023 Marek Vasut <marex@denx.de>
 | |
|  */
 | |
| 
 | |
| #include "imx8mp-dhcom-u-boot.dtsi"
 | |
| 
 | |
| / {
 | |
| 	clk_pcie100: clk-pcie100 {
 | |
| 		compatible = "fixed-clock";
 | |
| 		#clock-cells = <0>;
 | |
| 		clock-frequency = <100000000>;
 | |
| 	};
 | |
| };
 | |
| 
 | |
| &pcie_phy {
 | |
| 	clocks = <&clk_pcie100>;
 | |
| };
 |