Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: GPL-2.0-or-later
0002 /*
0003  *  Setup code for SAMv7x
0004  *
0005  *  Copyright (C) 2013 Atmel,
0006  *                2016 Andras Szemzo <szemzo.andras@gmail.com>
0007  */
0008 #include <linux/of.h>
0009 #include <linux/of_platform.h>
0010 #include <linux/of_address.h>
0011 #include <linux/slab.h>
0012 #include <asm/mach/arch.h>
0013 #include <asm/mach/map.h>
0014 #include <asm/system_misc.h>
0015 #include "generic.h"
0016 
0017 static const char *const samv7_dt_board_compat[] __initconst = {
0018     "atmel,samv7",
0019     NULL
0020 };
0021 
0022 DT_MACHINE_START(samv7_dt, "Atmel SAMV7")
0023     .dt_compat  = samv7_dt_board_compat,
0024 MACHINE_END