Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/arch/arm/mach-at91/sam9x60.c
52467 views
1
// SPDX-License-Identifier: GPL-2.0+
2
/*
3
* Setup code for SAM9X60.
4
*
5
* Copyright (C) 2019 Microchip Technology Inc. and its subsidiaries
6
*
7
* Author: Claudiu Beznea <[email protected]>
8
*/
9
10
#include <asm/mach/arch.h>
11
#include <asm/system_misc.h>
12
13
#include "generic.h"
14
15
static const char *const sam9x60_dt_board_compat[] __initconst = {
16
"microchip,sam9x60",
17
NULL
18
};
19
20
DT_MACHINE_START(sam9x60_dt, "Microchip SAM9X60")
21
/* Maintainer: Microchip */
22
.init_late = sam9x60_pm_init,
23
.dt_compat = sam9x60_dt_board_compat,
24
MACHINE_END
25
26