1 // SPDX-License-Identifier: GPL-2.0-or-later 2 /* 3 * Setup code for AT91SAM9 4 * 5 * Copyright (C) 2011 Atmel, 6 * 2011 Nicolas Ferre <nicolas.ferre@atmel.com> 7 */ 8 9 #include <asm/mach/arch.h> 10 #include <asm/system_misc.h> 11 12 #include "generic.h" 13 14 static const char *const at91_dt_board_compat[] __initconst = { 15 "atmel,at91sam9", 16 NULL 17 }; 18 19 DT_MACHINE_START(at91sam_dt, "Atmel AT91SAM9") 20 /* Maintainer: Atmel */ 21 .init_late = at91sam9_pm_init, 22 .dt_compat = at91_dt_board_compat, 23 MACHINE_END 24