mirror of
				https://github.com/AetherDroid/android_kernel_samsung_on5xelte.git
				synced 2025-10-31 16:18:51 +01:00 
			
		
		
		
	Fixed MTP to work with TWRP
This commit is contained in:
		
						commit
						f6dfaef42e
					
				
					 50820 changed files with 20846062 additions and 0 deletions
				
			
		
							
								
								
									
										38
									
								
								arch/arm/mach-iop32x/include/mach/uncompress.h
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										38
									
								
								arch/arm/mach-iop32x/include/mach/uncompress.h
									
										
									
									
									
										Normal file
									
								
							|  | @ -0,0 +1,38 @@ | |||
| /*
 | ||||
|  * arch/arm/mach-iop32x/include/mach/uncompress.h | ||||
|  */ | ||||
| 
 | ||||
| #include <asm/types.h> | ||||
| #include <asm/mach-types.h> | ||||
| #include <linux/serial_reg.h> | ||||
| #include <mach/hardware.h> | ||||
| 
 | ||||
| volatile u8 *uart_base; | ||||
| 
 | ||||
| #define TX_DONE		(UART_LSR_TEMT | UART_LSR_THRE) | ||||
| 
 | ||||
| static inline void putc(char c) | ||||
| { | ||||
| 	while ((uart_base[UART_LSR] & TX_DONE) != TX_DONE) | ||||
| 		barrier(); | ||||
| 	uart_base[UART_TX] = c; | ||||
| } | ||||
| 
 | ||||
| static inline void flush(void) | ||||
| { | ||||
| } | ||||
| 
 | ||||
| static __inline__ void __arch_decomp_setup(unsigned long arch_id) | ||||
| { | ||||
| 	if (machine_is_iq80321()) | ||||
| 		uart_base = (volatile u8 *)IQ80321_UART; | ||||
| 	else if (machine_is_iq31244() || machine_is_em7210()) | ||||
| 		uart_base = (volatile u8 *)IQ31244_UART; | ||||
| 	else | ||||
| 		uart_base = (volatile u8 *)0xfe800000; | ||||
| } | ||||
| 
 | ||||
| /*
 | ||||
|  * nothing to do | ||||
|  */ | ||||
| #define arch_decomp_setup()	__arch_decomp_setup(arch_id) | ||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue
	
	 awab228
						awab228