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

alpine_machine.c (366B)


      1// SPDX-License-Identifier: GPL-2.0-or-later
      2/*
      3 * Machine declaration for Alpine platforms.
      4 *
      5 * Copyright (C) 2015 Annapurna Labs Ltd.
      6 */
      7
      8#include <linux/of_platform.h>
      9
     10#include <asm/mach/arch.h>
     11
     12static const char * const al_match[] __initconst = {
     13	"al,alpine",
     14	NULL,
     15};
     16
     17DT_MACHINE_START(AL_DT, "Annapurna Labs Alpine")
     18	.dt_compat	= al_match,
     19MACHINE_END