summaryrefslogtreecommitdiff
path: root/arch/arm/mach-at91/at91sam9.c
blob: b9d2909d1b65557797d8f3c411b7ae1f5dae7e9f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
// SPDX-License-Identifier: GPL-2.0-or-later
/*
 *  Setup code for AT91SAM9
 *
 *  Copyright (C) 2011 Atmel,
 *                2011 Nicolas Ferre <nicolas.ferre@atmel.com>
 */

#include <asm/mach/arch.h>
#include <asm/system_misc.h>

#include "generic.h"

static const char *const at91_dt_board_compat[] __initconst = {
	"atmel,at91sam9",
	NULL
};

DT_MACHINE_START(at91sam_dt, "Atmel AT91SAM9")
	/* Maintainer: Atmel */
	.init_late	= at91sam9_pm_init,
	.dt_compat	= at91_dt_board_compat,
MACHINE_END