162306a36Sopenharmony_ci// SPDX-License-Identifier: GPL-2.0 262306a36Sopenharmony_ci/* 362306a36Sopenharmony_ci * r7s72100 processor support 462306a36Sopenharmony_ci * 562306a36Sopenharmony_ci * Copyright (C) 2013 Renesas Solutions Corp. 662306a36Sopenharmony_ci * Copyright (C) 2013 Magnus Damm 762306a36Sopenharmony_ci */ 862306a36Sopenharmony_ci 962306a36Sopenharmony_ci#include <linux/kernel.h> 1062306a36Sopenharmony_ci 1162306a36Sopenharmony_ci#include <asm/mach/arch.h> 1262306a36Sopenharmony_ci 1362306a36Sopenharmony_ci#include "common.h" 1462306a36Sopenharmony_ci 1562306a36Sopenharmony_cistatic const char *const r7s72100_boards_compat_dt[] __initconst = { 1662306a36Sopenharmony_ci "renesas,r7s72100", 1762306a36Sopenharmony_ci NULL 1862306a36Sopenharmony_ci}; 1962306a36Sopenharmony_ci 2062306a36Sopenharmony_ciDT_MACHINE_START(R7S72100_DT, "Generic R7S72100 (Flattened Device Tree)") 2162306a36Sopenharmony_ci .l2c_aux_val = 0, 2262306a36Sopenharmony_ci .l2c_aux_mask = ~0, 2362306a36Sopenharmony_ci .init_early = shmobile_init_delay, 2462306a36Sopenharmony_ci .init_late = shmobile_init_late, 2562306a36Sopenharmony_ci .dt_compat = r7s72100_boards_compat_dt, 2662306a36Sopenharmony_ciMACHINE_END 27