]> Git Repo - linux.git/blob - arch/arm/mach-meson/meson.c
Linux 6.14-rc3
[linux.git] / arch / arm / mach-meson / meson.c
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3  * Copyright (C) 2014 Carlo Caione <[email protected]>
4  */
5
6 #include <asm/mach/arch.h>
7
8 static const char * const meson_common_board_compat[] = {
9         "amlogic,meson6",
10         "amlogic,meson8",
11         "amlogic,meson8b",
12         "amlogic,meson8m2",
13         NULL,
14 };
15
16 DT_MACHINE_START(MESON, "Amlogic Meson platform")
17         .dt_compat      = meson_common_board_compat,
18         .l2c_aux_val    = 0,
19         .l2c_aux_mask   = ~0,
20 MACHINE_END
This page took 0.03206 seconds and 4 git commands to generate.