mirror of
https://github.com/torvalds/linux.git
synced 2024-12-18 09:02:17 +00:00
b32de9dd38
To simplify machine init and as the soc_device struct is not used as the parent for on-chip devices anymore, move SoC detection to its own driver. Change in dmesg: - before: DMA: preallocated 256 KiB pool for atomic coherent allocations AT91: Detected SoC family: sama5d2 AT91: Detected SoC: sama5d27, revision 0 No ATAGs? clocksource: tcb_clksrc: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 184217874325 ns at_xdmac f0010000.dma-controller: 16 channels, mapped at 0xe085b000 SCSI subsystem initialized - after: DMA: preallocated 256 KiB pool for atomic coherent allocations No ATAGs? clocksource: tcb_clksrc: mask: 0xffffffff max_cycles: 0xffffffff, max_idle_ns: 184217874325 ns at_xdmac f0010000.dma-controller: 16 channels, mapped at 0xe0859000 AT91: Detected SoC family: sama5d2 AT91: Detected SoC: sama5d27, revision 0 SCSI subsystem initialized Suggested-by: Arnd Bergmann <arnd@arndb.de> Acked-by: Nicolas Ferre <nicolas.ferre@microchip.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@free-electrons.com>
48 lines
999 B
C
48 lines
999 B
C
/*
|
|
* Setup code for SAMA5
|
|
*
|
|
* Copyright (C) 2013 Atmel,
|
|
* 2013 Ludovic Desroches <ludovic.desroches@atmel.com>
|
|
*
|
|
* Licensed under GPLv2 or later.
|
|
*/
|
|
|
|
#include <linux/of.h>
|
|
#include <linux/of_platform.h>
|
|
|
|
#include <asm/mach/arch.h>
|
|
#include <asm/mach/map.h>
|
|
#include <asm/system_misc.h>
|
|
|
|
#include "generic.h"
|
|
|
|
static void __init sama5_dt_device_init(void)
|
|
{
|
|
of_platform_default_populate(NULL, NULL, NULL);
|
|
sama5_pm_init();
|
|
}
|
|
|
|
static const char *const sama5_dt_board_compat[] __initconst = {
|
|
"atmel,sama5",
|
|
NULL
|
|
};
|
|
|
|
DT_MACHINE_START(sama5_dt, "Atmel SAMA5")
|
|
/* Maintainer: Atmel */
|
|
.init_machine = sama5_dt_device_init,
|
|
.dt_compat = sama5_dt_board_compat,
|
|
MACHINE_END
|
|
|
|
static const char *const sama5_alt_dt_board_compat[] __initconst = {
|
|
"atmel,sama5d2",
|
|
"atmel,sama5d4",
|
|
NULL
|
|
};
|
|
|
|
DT_MACHINE_START(sama5_alt_dt, "Atmel SAMA5")
|
|
/* Maintainer: Atmel */
|
|
.init_machine = sama5_dt_device_init,
|
|
.dt_compat = sama5_alt_dt_board_compat,
|
|
.l2c_aux_mask = ~0UL,
|
|
MACHINE_END
|