mirror of
				https://github.com/smaeul/u-boot.git
				synced 2025-10-31 03:58:17 +00:00 
			
		
		
		
	Mini U-Boot is running out of OCM and it's only purpose is to program non volatile memories. There are different configurations which qspi can be that's why describe them via DT. DT binding is already approved that's why there is no reason not to add it. Signed-off-by: Michal Simek <michal.simek@amd.com> Link: https://lore.kernel.org/r/e7d31a9d9c4a76e171eefc619f31fabd0831a614.1698329087.git.michal.simek@amd.com
		
			
				
	
	
		
			22 lines
		
	
	
		
			334 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			22 lines
		
	
	
		
			334 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| // SPDX-License-Identifier: GPL-2.0+
 | |
| /*
 | |
|  * Xilinx ZynqMP QSPI Quad Parallel DTS
 | |
|  *
 | |
|  * Copyright (C) 2015 - 2017 Xilinx, Inc.
 | |
|  */
 | |
| 
 | |
| #include "zynqmp-mini-qspi.dts"
 | |
| 
 | |
| / {
 | |
| 	model = "ZynqMP MINI QSPI PARALLEL";
 | |
| };
 | |
| 
 | |
| &qspi {
 | |
| 	num-cs = <2>;
 | |
| };
 | |
| 
 | |
| &flash0 {
 | |
| 	reg = <0>, <1>;
 | |
| 	parallel-memories = /bits/ 64 <0x10000000 0x10000000>; /* 256MB */
 | |
| };
 |