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

TOMOYO Linux Cross Reference
Linux/arch/arm/mach-at91/sama5.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 ] ~

  1 // SPDX-License-Identifier: GPL-2.0-or-later
  2 /*
  3  *  Setup code for SAMA5
  4  *
  5  *  Copyright (C) 2013 Atmel,
  6  *                2013 Ludovic Desroches <ludovic.desroches@atmel.com>
  7  */
  8 
  9 #include <linux/of.h>
 10 #include <linux/of_platform.h>
 11 
 12 #include <asm/hardware/cache-l2x0.h>
 13 #include <asm/mach/arch.h>
 14 #include <asm/mach/map.h>
 15 #include <asm/outercache.h>
 16 #include <asm/system_misc.h>
 17 
 18 #include "generic.h"
 19 #include "sam_secure.h"
 20 
 21 static void sama5_l2c310_write_sec(unsigned long val, unsigned reg)
 22 {
 23         /* OP-TEE configures the L2 cache and does not allow modifying it yet */
 24 }
 25 
 26 static void __init sama5_secure_cache_init(void)
 27 {
 28         sam_secure_init();
 29         if (IS_ENABLED(CONFIG_OUTER_CACHE) && sam_linux_is_optee_available())
 30                 outer_cache.write_sec = sama5_l2c310_write_sec;
 31 }
 32 
 33 static void __init sama5_dt_device_init(void)
 34 {
 35         of_platform_default_populate(NULL, NULL, NULL);
 36         sama5_pm_init();
 37 }
 38 
 39 static const char *const sama5_dt_board_compat[] __initconst = {
 40         "atmel,sama5",
 41         NULL
 42 };
 43 
 44 DT_MACHINE_START(sama5_dt, "Atmel SAMA5")
 45         /* Maintainer: Atmel */
 46         .init_machine   = sama5_dt_device_init,
 47         .dt_compat      = sama5_dt_board_compat,
 48 MACHINE_END
 49 
 50 static const char *const sama5_alt_dt_board_compat[] __initconst = {
 51         "atmel,sama5d4",
 52         NULL
 53 };
 54 
 55 DT_MACHINE_START(sama5_alt_dt, "Atmel SAMA5")
 56         /* Maintainer: Atmel */
 57         .init_machine   = sama5_dt_device_init,
 58         .dt_compat      = sama5_alt_dt_board_compat,
 59         .l2c_aux_mask   = ~0UL,
 60 MACHINE_END
 61 
 62 static void __init sama5d2_init(void)
 63 {
 64         of_platform_default_populate(NULL, NULL, NULL);
 65         sama5d2_pm_init();
 66 }
 67 
 68 static const char *const sama5d2_compat[] __initconst = {
 69         "atmel,sama5d2",
 70         NULL
 71 };
 72 
 73 DT_MACHINE_START(sama5d2, "Atmel SAMA5")
 74         /* Maintainer: Atmel */
 75         .init_machine   = sama5d2_init,
 76         .init_early     = sama5_secure_cache_init,
 77         .dt_compat      = sama5d2_compat,
 78         .l2c_aux_mask   = ~0UL,
 79 MACHINE_END
 80 

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