Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: GPL-2.0
0002 /*
0003  * r8a73a4 processor support
0004  *
0005  * Copyright (C) 2013  Renesas Solutions Corp.
0006  * Copyright (C) 2013  Magnus Damm
0007  */
0008 
0009 #include <linux/init.h>
0010 
0011 #include <asm/mach/arch.h>
0012 
0013 #include "common.h"
0014 
0015 static const char *const r8a73a4_boards_compat_dt[] __initconst = {
0016     "renesas,r8a73a4",
0017     NULL
0018 };
0019 
0020 DT_MACHINE_START(R8A73A4_DT, "Generic R8A73A4 (Flattened Device Tree)")
0021     .init_late  = shmobile_init_late,
0022     .dt_compat  = r8a73a4_boards_compat_dt,
0023 MACHINE_END