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

io.h (620B)


      1/* SPDX-License-Identifier: GPL-2.0 */
      2#ifndef ___ASM_SPARC_IO_H
      3#define ___ASM_SPARC_IO_H
      4#if defined(__sparc__) && defined(__arch64__)
      5#include <asm/io_64.h>
      6#else
      7#include <asm/io_32.h>
      8#endif
      9
     10/*
     11 * Defines used for both SPARC32 and SPARC64
     12 */
     13
     14/* Big endian versions of memory read/write routines */
     15#define readb_be(__addr)	__raw_readb(__addr)
     16#define readw_be(__addr)	__raw_readw(__addr)
     17#define readl_be(__addr)	__raw_readl(__addr)
     18#define writeb_be(__b, __addr)	__raw_writeb(__b, __addr)
     19#define writel_be(__w, __addr)	__raw_writel(__w, __addr)
     20#define writew_be(__l, __addr)	__raw_writew(__l, __addr)
     21
     22#endif