root/arch/arm/mach-at91/samv7.c

/* [<][>][^][v][top][bottom][index][help] */
   1 // SPDX-License-Identifier: GPL-2.0-or-later
   2 /*
   3  *  Setup code for SAMv7x
   4  *
   5  *  Copyright (C) 2013 Atmel,
   6  *                2016 Andras Szemzo <szemzo.andras@gmail.com>
   7  */
   8 #include <linux/of.h>
   9 #include <linux/of_platform.h>
  10 #include <linux/of_address.h>
  11 #include <linux/slab.h>
  12 #include <asm/mach/arch.h>
  13 #include <asm/mach/map.h>
  14 #include <asm/system_misc.h>
  15 #include "generic.h"
  16 
  17 static const char *const samv7_dt_board_compat[] __initconst = {
  18         "atmel,samv7",
  19         NULL
  20 };
  21 
  22 DT_MACHINE_START(samv7_dt, "Atmel SAMV7")
  23         .dt_compat      = samv7_dt_board_compat,
  24 MACHINE_END

/* [<][>][^][v][top][bottom][index][help] */