hc
2024-03-26 e9199a72d842cbda78ac614eee5db7cdaa6f2530
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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
/* SPDX-License-Identifier: GPL-2.0 WITH Linux-syscall-note */
/*
 *
 * (C) COPYRIGHT 2019-2021 ARM Limited. All rights reserved.
 *
 * This program is free software and is provided to you under the terms of the
 * GNU General Public License version 2 as published by the Free Software
 * Foundation, and any use by you of this program is subject to the terms
 * of such GNU license.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, you can access it online at
 * http://www.gnu.org/licenses/gpl-2.0.html.
 *
 */
 
#ifndef _PROTECTED_MEMORY_ALLOCATOR_H_
#define _PROTECTED_MEMORY_ALLOCATOR_H_
 
#include <linux/mm.h>
 
/**
 * struct protected_memory_allocation - Protected memory allocation
 *
 * @pa:    Physical address of the protected memory allocation.
 * @order: Size of memory allocation in pages, as a base-2 logarithm.
 */
struct protected_memory_allocation {
   phys_addr_t pa;
   unsigned int order;
};
 
struct protected_memory_allocator_device;
 
/**
 * struct protected_memory_allocator_ops - Callbacks for protected memory
 *                                         allocator operations
 *
 * @pma_alloc_page:    Callback to allocate protected memory
 * @pma_get_phys_addr: Callback to get the physical address of an allocation
 * @pma_free_page:     Callback to free protected memory
 */
struct protected_memory_allocator_ops {
   /*
    * pma_alloc_page - Allocate protected memory pages
    *
    * @pma_dev: The protected memory allocator the request is being made
    *           through.
    * @order:   How many pages to allocate, as a base-2 logarithm.
    *
    * Return: Pointer to allocated memory, or NULL if allocation failed.
    */
   struct protected_memory_allocation *(*pma_alloc_page)(
       struct protected_memory_allocator_device *pma_dev,
       unsigned int order);
 
   /*
    * pma_get_phys_addr - Get the physical address of the protected memory
    *                     allocation
    *
    * @pma_dev: The protected memory allocator the request is being made
    *           through.
    * @pma:     The protected memory allocation whose physical address
    *           shall be retrieved
    *
    * Return: The physical address of the given allocation.
    */
   phys_addr_t (*pma_get_phys_addr)(
       struct protected_memory_allocator_device *pma_dev,
       struct protected_memory_allocation *pma);
 
   /*
    * pma_free_page - Free a page of memory
    *
    * @pma_dev: The protected memory allocator the request is being made
    *           through.
    * @pma:     The protected memory allocation to free.
    */
   void (*pma_free_page)(
       struct protected_memory_allocator_device *pma_dev,
       struct protected_memory_allocation *pma);
};
 
/**
 * struct protected_memory_allocator_device - Device structure for protected
 *                                            memory allocator
 *
 * @ops:   Callbacks associated with this device
 * @owner: Pointer to the module owner
 *
 * In order for a system integrator to provide custom behaviors for protected
 * memory operations performed by the kbase module (controller driver),
 * they shall provide a platform-specific driver module which implements
 * this interface.
 *
 * This structure should be registered with the platform device using
 * platform_set_drvdata().
 */
struct protected_memory_allocator_device {
   struct protected_memory_allocator_ops ops;
   struct module *owner;
};
 
#endif /* _PROTECTED_MEMORY_ALLOCATOR_H_ */