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

setup.h (345B)


      1// SPDX-License-Identifier: GPL-2.0
      2
      3#ifndef __ARM64_ASM_SETUP_H
      4#define __ARM64_ASM_SETUP_H
      5
      6#include <uapi/asm/setup.h>
      7
      8void *get_early_fdt_ptr(void);
      9void early_fdt_map(u64 dt_phys);
     10
     11/*
     12 * These two variables are used in the head.S file.
     13 */
     14extern phys_addr_t __fdt_pointer __initdata;
     15extern u64 __cacheline_aligned boot_args[4];
     16
     17#endif