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

TOMOYO Linux Cross Reference
Linux/arch/arm/mach-artpec/board-artpec6.c

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ 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.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /arch/arm/mach-artpec/board-artpec6.c (Version linux-6.12-rc7) and /arch/alpha/mach-artpec/board-artpec6.c (Version linux-4.9.337)


  1 // SPDX-License-Identifier: GPL-2.0-only            1 
  2 /*                                                
  3  * ARTPEC-6 device support.                       
  4  */                                               
  5                                                   
  6 #include <linux/amba/bus.h>                       
  7 #include <linux/clocksource.h>                    
  8 #include <linux/dma-mapping.h>                    
  9 #include <linux/io.h>                             
 10 #include <linux/irqchip.h>                        
 11 #include <linux/irqchip/arm-gic.h>                
 12 #include <linux/mfd/syscon.h>                     
 13 #include <linux/of.h>                             
 14 #include <linux/of_address.h>                     
 15 #include <linux/clk-provider.h>                   
 16 #include <linux/regmap.h>                         
 17 #include <linux/smp.h>                            
 18 #include <asm/smp_scu.h>                          
 19 #include <asm/mach/arch.h>                        
 20 #include <asm/mach/map.h>                         
 21 #include <asm/psci.h>                             
 22 #include <linux/arm-smccc.h>                      
 23                                                   
 24                                                   
 25 #define ARTPEC6_DMACFG_REGNUM 0x10                
 26 #define ARTPEC6_DMACFG_UARTS_BURST 0xff           
 27                                                   
 28 #define SECURE_OP_L2C_WRITEREG 0xb4000001         
 29                                                   
 30 static void __init artpec6_init_machine(void)     
 31 {                                                 
 32         struct regmap *regmap;                    
 33                                                   
 34         regmap = syscon_regmap_lookup_by_compa    
 35                                                   
 36         if (!IS_ERR(regmap)) {                    
 37                 /* Use PL011 DMA Burst Request    
 38                  *  Single Request                
 39                  */                               
 40                 regmap_write(regmap, ARTPEC6_D    
 41                              ARTPEC6_DMACFG_UA    
 42         };                                        
 43 }                                                 
 44                                                   
 45 static void artpec6_l2c310_write_sec(unsigned     
 46 {                                                 
 47         struct arm_smccc_res res;                 
 48                                                   
 49         arm_smccc_smc(SECURE_OP_L2C_WRITEREG,     
 50                       0, 0, 0, 0, &res);          
 51                                                   
 52         WARN_ON(res.a0);                          
 53 }                                                 
 54                                                   
 55 static const char * const artpec6_dt_match[] =    
 56         "axis,artpec6",                           
 57         NULL                                      
 58 };                                                
 59                                                   
 60 DT_MACHINE_START(ARTPEC6, "Axis ARTPEC-6 Platf    
 61         .l2c_aux_val    = 0x0C000000,             
 62         .l2c_aux_mask   = 0xF3FFFFFF,             
 63         .l2c_write_sec  = artpec6_l2c310_write    
 64         .init_machine   = artpec6_init_machine    
 65         .dt_compat      = artpec6_dt_match,       
 66 MACHINE_END                                       
 67                                                   

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