4e3fea4a95
Freescale LS1021A SoCs deploy two cortex-A7 processors, this adds bring-up support for the secondary core. Signed-off-by: Jingchang Lu <b35083@freescale.com> Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
23 lines
581 B
C
23 lines
581 B
C
/*
|
|
* Copyright 2013-2014 Freescale Semiconductor, Inc.
|
|
*
|
|
* This program is free software; you can redistribute it and/or modify
|
|
* it under the terms of the GNU General Public License as published by
|
|
* the Free Software Foundation; either version 2 of the License, or
|
|
* (at your option) any later version.
|
|
*/
|
|
|
|
#include <asm/mach/arch.h>
|
|
|
|
#include "common.h"
|
|
|
|
static const char * const ls1021a_dt_compat[] __initconst = {
|
|
"fsl,ls1021a",
|
|
NULL,
|
|
};
|
|
|
|
DT_MACHINE_START(LS1021A, "Freescale LS1021A")
|
|
.smp = smp_ops(ls1021a_smp_ops),
|
|
.dt_compat = ls1021a_dt_compat,
|
|
MACHINE_END
|