cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

meson.c (457B)


      1// SPDX-License-Identifier: GPL-2.0-or-later
      2/*
      3 * Copyright (C) 2014 Carlo Caione <carlo@caione.org>
      4 */
      5
      6#include <linux/of_platform.h>
      7#include <asm/mach/arch.h>
      8
      9static const char * const meson_common_board_compat[] = {
     10	"amlogic,meson6",
     11	"amlogic,meson8",
     12	"amlogic,meson8b",
     13	"amlogic,meson8m2",
     14	NULL,
     15};
     16
     17DT_MACHINE_START(MESON, "Amlogic Meson platform")
     18	.dt_compat	= meson_common_board_compat,
     19	.l2c_aux_val	= 0,
     20	.l2c_aux_mask	= ~0,
     21MACHINE_END