Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: GPL-2.0-or-later
0002 /*
0003  * Support for the LSI Axxia SoC devices based on ARM cores.
0004  *
0005  * Copyright (C) 2012 LSI
0006  */
0007 #include <linux/init.h>
0008 #include <asm/mach/arch.h>
0009 
0010 static const char *const axxia_dt_match[] __initconst = {
0011     "lsi,axm5516",
0012     "lsi,axm5516-sim",
0013     "lsi,axm5516-emu",
0014     NULL
0015 };
0016 
0017 DT_MACHINE_START(AXXIA_DT, "LSI Axxia AXM55XX")
0018     .dt_compat = axxia_dt_match,
0019 MACHINE_END