~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/nios2/boot/compressed/console.c

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /arch/nios2/boot/compressed/console.c (Architecture sparc64) and /arch/sparc/boot/compressed/console.c (Architecture sparc)


  1 // SPDX-License-Identifier: GPL-2.0-or-later        1 
  2 /*                                                
  3  *  Copyright (C) 2008-2010 Thomas Chou <thoma    
  4  */                                               
  5                                                   
  6 #include <linux/io.h>                             
  7                                                   
  8 #if (defined(CONFIG_SERIAL_ALTERA_JTAGUART_CON    
  9         || (defined(CONFIG_SERIAL_ALTERA_UART_    
 10 static void *my_ioremap(unsigned long physaddr    
 11 {                                                 
 12         return (void *)(physaddr | CONFIG_NIOS    
 13 }                                                 
 14 #endif                                            
 15                                                   
 16 #if defined(CONFIG_SERIAL_ALTERA_JTAGUART_CONS    
 17                                                   
 18 #define ALTERA_JTAGUART_SIZE                      
 19 #define ALTERA_JTAGUART_DATA_REG                  
 20 #define ALTERA_JTAGUART_CONTROL_REG               
 21 #define ALTERA_JTAGUART_CONTROL_AC_MSK            
 22 #define ALTERA_JTAGUART_CONTROL_WSPACE_MSK        
 23 static void *uartbase;                            
 24                                                   
 25 #if defined(CONFIG_SERIAL_ALTERA_JTAGUART_CONS    
 26 static void jtag_putc(int ch)                     
 27 {                                                 
 28         if (readl(uartbase + ALTERA_JTAGUART_C    
 29                 ALTERA_JTAGUART_CONTROL_WSPACE    
 30                 writeb(ch, uartbase + ALTERA_J    
 31 }                                                 
 32 #else                                             
 33 static void jtag_putc(int ch)                     
 34 {                                                 
 35         while ((readl(uartbase + ALTERA_JTAGUA    
 36                 ALTERA_JTAGUART_CONTROL_WSPACE    
 37                 ;                                 
 38         writeb(ch, uartbase + ALTERA_JTAGUART_    
 39 }                                                 
 40 #endif                                            
 41                                                   
 42 static int putchar(int ch)                        
 43 {                                                 
 44         jtag_putc(ch);                            
 45         return ch;                                
 46 }                                                 
 47                                                   
 48 static void console_init(void)                    
 49 {                                                 
 50         uartbase = my_ioremap((unsigned long)     
 51         writel(ALTERA_JTAGUART_CONTROL_AC_MSK,    
 52                 uartbase + ALTERA_JTAGUART_CON    
 53 }                                                 
 54                                                   
 55 #elif defined(CONFIG_SERIAL_ALTERA_UART_CONSOL    
 56                                                   
 57 #define ALTERA_UART_SIZE                32        
 58 #define ALTERA_UART_TXDATA_REG          4         
 59 #define ALTERA_UART_STATUS_REG          8         
 60 #define ALTERA_UART_DIVISOR_REG         16        
 61 #define ALTERA_UART_STATUS_TRDY_MSK     (0x40)    
 62 static unsigned uartbase;                         
 63                                                   
 64 static void uart_putc(int ch)                     
 65 {                                                 
 66         int i;                                    
 67                                                   
 68         for (i = 0; (i < 0x10000); i++) {         
 69                 if (readw(uartbase + ALTERA_UA    
 70                         ALTERA_UART_STATUS_TRD    
 71                         break;                    
 72         }                                         
 73         writeb(ch, uartbase + ALTERA_UART_TXDA    
 74 }                                                 
 75                                                   
 76 static int putchar(int ch)                        
 77 {                                                 
 78         uart_putc(ch);                            
 79         if (ch == '\n')                           
 80                 uart_putc('\r');                  
 81         return ch;                                
 82 }                                                 
 83                                                   
 84 static void console_init(void)                    
 85 {                                                 
 86         unsigned int baud, baudclk;               
 87                                                   
 88         uartbase = (unsigned long) my_ioremap(    
 89         baud = CONFIG_SERIAL_ALTERA_UART_BAUDR    
 90         baudclk = UART0_FREQ / baud;              
 91         writew(baudclk, uartbase + ALTERA_UART    
 92 }                                                 
 93                                                   
 94 #else                                             
 95                                                   
 96 static int putchar(int ch)                        
 97 {                                                 
 98         return ch;                                
 99 }                                                 
100                                                   
101 static void console_init(void)                    
102 {                                                 
103 }                                                 
104                                                   
105 #endif                                            
106                                                   
107 static int puts(const char *s)                    
108 {                                                 
109         while (*s)                                
110                 putchar(*s++);                    
111         return 0;                                 
112 }                                                 
113                                                   

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php