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

smem.h (348B)


      1/* SPDX-License-Identifier: GPL-2.0 */
      2#ifndef __QCOM_SMEM_H__
      3#define __QCOM_SMEM_H__
      4
      5#define QCOM_SMEM_HOST_ANY -1
      6
      7int qcom_smem_alloc(unsigned host, unsigned item, size_t size);
      8void *qcom_smem_get(unsigned host, unsigned item, size_t *size);
      9
     10int qcom_smem_get_free_space(unsigned host);
     11
     12phys_addr_t qcom_smem_virt_to_phys(void *p);
     13
     14#endif