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

sw842.h (328B)


      1/* SPDX-License-Identifier: GPL-2.0 */
      2#ifndef __SW842_H__
      3#define __SW842_H__
      4
      5#define SW842_MEM_COMPRESS	(0xf000)
      6
      7int sw842_compress(const u8 *src, unsigned int srclen,
      8		   u8 *dst, unsigned int *destlen, void *wmem);
      9
     10int sw842_decompress(const u8 *src, unsigned int srclen,
     11		     u8 *dst, unsigned int *destlen);
     12
     13#endif