hc
2023-08-30 862c27fc9920c83318c784bfdadf43a65df1ec8f
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
/*
 * MSMC controller
 *
 * (C) Copyright 2014
 *     Texas Instruments Incorporated, <www.ti.com>
 *
 * SPDX-License-Identifier:     GPL-2.0+
 */
 
#ifndef _MSMC_H_
#define _MSMC_H_
 
#include <asm/arch/hardware.h>
 
enum mpax_seg_size {
   MPAX_SEG_4K = 0x0b,
   MPAX_SEG_8K,
   MPAX_SEG_16K,
   MPAX_SEG_32K,
   MPAX_SEG_64K,
   MPAX_SEG_128K,
   MPAX_SEG_256K,
   MPAX_SEG_512K,
   MPAX_SEG_1M,
   MPAX_SEG_2M,
   MPAX_SEG_4M,
   MPAX_SEG_8M,
   MPAX_SEG_16M,
   MPAX_SEG_32M,
   MPAX_SEG_64M,
   MPAX_SEG_128M,
   MPAX_SEG_256M,
   MPAX_SEG_512M,
   MPAX_SEG_1G,
   MPAX_SEG_2G,
   MPAX_SEG_4G
};
 
void msmc_share_all_segments(int priv_id);
void msmc_get_ses_mpax(int priv_id, int ses_pair, u32 *mpax);
void msmc_set_ses_mpax(int priv_id, int ses_pair, u32 *mpax);
void msmc_map_ses_segment(int priv_id, int ses_pair,
             u32 src_pfn, u32 dst_pfn, enum mpax_seg_size size);
 
#endif