mirror of
				git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
				synced 2025-11-01 09:13:37 +00:00 
			
		
		
		
	This patch adds support for the interrupt controllers found in some TI-Nspire models. FIQ support was taken out to simplify the driver code and may be added in later. Since Linux on this platform doesn't really use FIQs, this wasn't really that important in the first place. [ tglx: Made zevio_handle_irq static and reordered __init functions ] Signed-off-by: Daniel Tang <dt.tangr@gmail.com> Acked-by: Grant Likely <grant.likely@secretlab.ca> Link: http://lkml.kernel.org/r/1386223937-12189-1-git-send-email-dt.tangr@gmail.com Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
		
			
				
	
	
		
			18 lines
		
	
	
	
		
			424 B
		
	
	
	
		
			Text
		
	
	
	
	
	
			
		
		
	
	
			18 lines
		
	
	
	
		
			424 B
		
	
	
	
		
			Text
		
	
	
	
	
	
TI-NSPIRE interrupt controller
 | 
						|
 | 
						|
Required properties:
 | 
						|
- compatible: Compatible property value should be "lsi,zevio-intc".
 | 
						|
 | 
						|
- reg: Physical base address of the controller and length of memory mapped
 | 
						|
	region.
 | 
						|
 | 
						|
- interrupt-controller : Identifies the node as an interrupt controller
 | 
						|
 | 
						|
Example:
 | 
						|
 | 
						|
interrupt-controller {
 | 
						|
	compatible = "lsi,zevio-intc";
 | 
						|
	interrupt-controller;
 | 
						|
	reg = <0xDC000000 0x1000>;
 | 
						|
	#interrupt-cells = <1>;
 | 
						|
};
 |