Back to home page

OSCL-LXR

 
 

    


0001 // SPDX-License-Identifier: GPL-2.0
0002 /*
0003  * r7s9210 processor support
0004  *
0005  * Copyright (C) 2018  Renesas Electronics Corporation
0006  * Copyright (C) 2018  Chris Brandt
0007  *
0008  */
0009 
0010 #include <linux/kernel.h>
0011 
0012 #include <asm/mach/arch.h>
0013 
0014 #include "common.h"
0015 
0016 static const char *const r7s9210_boards_compat_dt[] __initconst = {
0017     "renesas,r7s9210",
0018     NULL
0019 };
0020 
0021 DT_MACHINE_START(R7S72100_DT, "Generic R7S9210 (Flattened Device Tree)")
0022     .l2c_aux_val    = 0,
0023     .l2c_aux_mask   = ~0,
0024     .init_early = shmobile_init_delay,
0025     .init_late  = shmobile_init_late,
0026     .dt_compat  = r7s9210_boards_compat_dt,
0027 MACHINE_END