mirror of
				https://git.kernel.org/pub/scm/linux/kernel/git/chenhuacai/linux-loongson
				synced 2025-10-31 16:38:31 +00:00 
			
		
		
		
	 2bec19feab
			
		
	
	
		2bec19feab
		
	
	
	
	
		
			
			Add support to orion_spi for the 88F6183 ARM SoC by adding code to work around a 6183-specific erratum. Signed-off-by: Lennert Buytenhek <buytenh@marvell.com> Signed-off-by: David Brownell <dbrownell@users.sourceforge.net> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
		
			
				
	
	
		
			19 lines
		
	
	
		
			384 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			19 lines
		
	
	
		
			384 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * orion_spi.h
 | |
|  *
 | |
|  * This file is licensed under the terms of the GNU General Public
 | |
|  * License version 2. This program is licensed "as is" without any
 | |
|  * warranty of any kind, whether express or implied.
 | |
|  */
 | |
| 
 | |
| #ifndef __LINUX_SPI_ORION_SPI_H
 | |
| #define __LINUX_SPI_ORION_SPI_H
 | |
| 
 | |
| struct orion_spi_info {
 | |
| 	u32	tclk;		/* no <linux/clk.h> support yet */
 | |
| 	u32	enable_clock_fix;
 | |
| };
 | |
| 
 | |
| 
 | |
| #endif
 |