4 * Copyright (C) 2013 Atmel,
7 * Licensed under GPLv2 or later.
11 #include <linux/of_platform.h>
13 #include <asm/mach/arch.h>
14 #include <asm/mach/map.h>
15 #include <asm/system_misc.h>
19 static void __init sama5_dt_device_init(void)
21 of_platform_default_populate(NULL, NULL, NULL);
25 static const char *const sama5_dt_board_compat[] __initconst = {
30 DT_MACHINE_START(sama5_dt, "Atmel SAMA5")
31 /* Maintainer: Atmel */
32 .init_machine = sama5_dt_device_init,
33 .dt_compat = sama5_dt_board_compat,
36 static const char *const sama5_alt_dt_board_compat[] __initconst = {
41 DT_MACHINE_START(sama5_alt_dt, "Atmel SAMA5")
42 /* Maintainer: Atmel */
43 .init_machine = sama5_dt_device_init,
44 .dt_compat = sama5_alt_dt_board_compat,
48 static void __init sama5d2_init(void)
50 of_platform_default_populate(NULL, NULL, NULL);
54 static const char *const sama5d2_compat[] __initconst = {
59 DT_MACHINE_START(sama5d2, "Atmel SAMA5")
60 /* Maintainer: Atmel */
61 .init_machine = sama5d2_init,
62 .dt_compat = sama5d2_compat,