Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
torvalds
GitHub Repository: torvalds/linux
Path: blob/master/arch/arm/mach-bcm/bcm_hr2.c
26292 views
1
// SPDX-License-Identifier: GPL-2.0-only
2
// Copyright (C) 2017 Broadcom
3
4
#include <asm/mach/arch.h>
5
6
static const char * const bcm_hr2_dt_compat[] __initconst = {
7
"brcm,hr2",
8
NULL,
9
};
10
11
DT_MACHINE_START(BCM_HR2_DT, "Broadcom Hurricane 2 SoC")
12
.l2c_aux_val = 0,
13
.l2c_aux_mask = ~0,
14
.dt_compat = bcm_hr2_dt_compat,
15
MACHINE_END
16
17