-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Atmel SAME70/SAMS70/SAMV71 SoC support. Signed-off-by: Szemző András <sza@esh.hu> Acked-by: Nicolas Ferre <nicolas.ferre@microchip.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
- Loading branch information
Szemző András
authored and
Alexandre Belloni
committed
Jun 2, 2017
1 parent
8a9d600
commit 2d4c44e
Showing
4 changed files
with
38 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
# Empty file waiting for deletion once Makefile.boot isn't needed any more. | ||
# Patch waits for application at | ||
# http://www.arm.linux.org.uk/developer/patches/viewpatch.php?id=7889/1 . |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/* | ||
* Setup code for SAMv7x | ||
* | ||
* Copyright (C) 2013 Atmel, | ||
* 2016 Andras Szemzo <szemzo.andras@gmail.com> | ||
* | ||
* Licensed under GPLv2 or later. | ||
*/ | ||
#include <linux/of.h> | ||
#include <linux/of_platform.h> | ||
#include <linux/of_address.h> | ||
#include <linux/slab.h> | ||
#include <asm/mach/arch.h> | ||
#include <asm/mach/map.h> | ||
#include <asm/system_misc.h> | ||
#include "generic.h" | ||
|
||
static const char *const samv7_dt_board_compat[] __initconst = { | ||
"atmel,samv7", | ||
NULL | ||
}; | ||
|
||
DT_MACHINE_START(samv7_dt, "Atmel SAMV7") | ||
.dt_compat = samv7_dt_board_compat, | ||
MACHINE_END |