xref: /openbmc/linux/arch/arm/mach-at91/samv7.c (revision ba61bb17)
1 /*
2  *  Setup code for SAMv7x
3  *
4  *  Copyright (C) 2013 Atmel,
5  *                2016 Andras Szemzo <szemzo.andras@gmail.com>
6  *
7  * Licensed under GPLv2 or later.
8  */
9 #include <linux/of.h>
10 #include <linux/of_platform.h>
11 #include <linux/of_address.h>
12 #include <linux/slab.h>
13 #include <asm/mach/arch.h>
14 #include <asm/mach/map.h>
15 #include <asm/system_misc.h>
16 #include "generic.h"
17 
18 static const char *const samv7_dt_board_compat[] __initconst = {
19 	"atmel,samv7",
20 	NULL
21 };
22 
23 DT_MACHINE_START(samv7_dt, "Atmel SAMV7")
24 	.dt_compat	= samv7_dt_board_compat,
25 MACHINE_END
26