Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at master 27 lines 679 B view raw
1// SPDX-License-Identifier: GPL-2.0-only 2/* 3 * Copyright (C) 2013 STMicroelectronics (R&D) Limited. 4 * Author(s): Srinivas Kandagatla <srinivas.kandagatla@st.com> 5 */ 6 7#include <asm/hardware/cache-l2x0.h> 8#include <asm/mach/arch.h> 9 10#include "smp.h" 11 12static const char *const stih41x_dt_match[] __initconst = { 13 "st,stih407", 14 "st,stih410", 15 "st,stih418", 16 NULL 17}; 18 19DT_MACHINE_START(STM, "STi SoC with Flattened Device Tree") 20 .dt_compat = stih41x_dt_match, 21 .l2c_aux_val = L2C_AUX_CTRL_SHARED_OVERRIDE | 22 L310_AUX_CTRL_DATA_PREFETCH | 23 L310_AUX_CTRL_INSTR_PREFETCH | 24 L2C_AUX_CTRL_WAY_SIZE(4), 25 .l2c_aux_mask = 0xc0000fff, 26 .smp = smp_ops(sti_smp_ops), 27MACHINE_END