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

TOMOYO Linux Cross Reference
Linux/arch/mips/bcm47xx/serial.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/mips/bcm47xx/serial.c (Version linux-6.11-rc3) and /arch/m68k/bcm47xx/serial.c (Version linux-5.2.21)


  1 /*                                                  1 
  2  * 8250 UART probe driver for the BCM47XX plat    
  3  * Author: Aurelien Jarno                         
  4  *                                                
  5  * This file is subject to the terms and condi    
  6  * License.  See the file "COPYING" in the mai    
  7  * for more details.                              
  8  *                                                
  9  * Copyright (C) 2007 Aurelien Jarno <aurelien    
 10  */                                               
 11                                                   
 12 #include <linux/init.h>                           
 13 #include <linux/serial.h>                         
 14 #include <linux/serial_8250.h>                    
 15 #include <linux/ssb/ssb.h>                        
 16 #include <bcm47xx.h>                              
 17                                                   
 18 static struct plat_serial8250_port uart8250_da    
 19                                                   
 20 static struct platform_device uart8250_device     
 21         .name                   = "serial8250"    
 22         .id                     = PLAT8250_DEV    
 23         .dev                    = {               
 24                 .platform_data  = uart8250_dat    
 25         },                                        
 26 };                                                
 27                                                   
 28 #ifdef CONFIG_BCM47XX_SSB                         
 29 static int __init uart8250_init_ssb(void)         
 30 {                                                 
 31         int i;                                    
 32         struct ssb_mipscore *mcore = &(bcm47xx    
 33                                                   
 34         memset(&uart8250_data, 0,  sizeof(uart    
 35                                                   
 36         for (i = 0; i < mcore->nr_serial_ports    
 37                     i < ARRAY_SIZE(uart8250_da    
 38                 struct plat_serial8250_port *p    
 39                 struct ssb_serial_port *ssb_po    
 40                                                   
 41                 p->mapbase = (unsigned int)ssb    
 42                 p->membase = (void *)ssb_port-    
 43                 p->irq = ssb_port->irq + 2;       
 44                 p->uartclk = ssb_port->baud_ba    
 45                 p->regshift = ssb_port->reg_sh    
 46                 p->iotype = UPIO_MEM;             
 47                 p->flags = UPF_BOOT_AUTOCONF |    
 48         }                                         
 49         return platform_device_register(&uart8    
 50 }                                                 
 51 #endif                                            
 52                                                   
 53 #ifdef CONFIG_BCM47XX_BCMA                        
 54 static int __init uart8250_init_bcma(void)        
 55 {                                                 
 56         int i;                                    
 57         struct bcma_drv_cc *cc = &(bcm47xx_bus    
 58                                                   
 59         memset(&uart8250_data, 0,  sizeof(uart    
 60                                                   
 61         for (i = 0; i < cc->nr_serial_ports &&    
 62                     i < ARRAY_SIZE(uart8250_da    
 63                 struct plat_serial8250_port *p    
 64                 struct bcma_serial_port *bcma_    
 65                 bcma_port = &(cc->serial_ports    
 66                                                   
 67                 p->mapbase = (unsigned int)bcm    
 68                 p->membase = (void *)bcma_port    
 69                 p->irq = bcma_port->irq;          
 70                 p->uartclk = bcma_port->baud_b    
 71                 p->regshift = bcma_port->reg_s    
 72                 p->iotype = UPIO_MEM;             
 73                 p->flags = UPF_BOOT_AUTOCONF |    
 74         }                                         
 75         return platform_device_register(&uart8    
 76 }                                                 
 77 #endif                                            
 78                                                   
 79 static int __init uart8250_init(void)             
 80 {                                                 
 81         switch (bcm47xx_bus_type) {               
 82 #ifdef CONFIG_BCM47XX_SSB                         
 83         case BCM47XX_BUS_TYPE_SSB:                
 84                 return uart8250_init_ssb();       
 85 #endif                                            
 86 #ifdef CONFIG_BCM47XX_BCMA                        
 87         case BCM47XX_BUS_TYPE_BCMA:               
 88                 return uart8250_init_bcma();      
 89 #endif                                            
 90         }                                         
 91         return -EINVAL;                           
 92 }                                                 
 93 device_initcall(uart8250_init);                   
 94                                                   

~ [ 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