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
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
|
/*
* heapbufmp_ioctl.h
*
* Heap module manages fixed size buffers that can be used
* in a multiprocessor system with shared memory.
*
* Copyright (C) 2008-2009 Texas Instruments, Inc.
*
* This package is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* THIS PACKAGE IS PROVIDED ``AS IS'' AND WITHOUT ANY EXPRESS OR
* IMPLIED WARRANTIES, INCLUDING, WITHOUT LIMITATION, THE IMPLIED
* WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR A PARTICULAR
* PURPOSE.
*/
#ifndef _HEAPBUFMP_IOCTL_
#define _HEAPBUFMP_IOCTL_
#include <linux/ioctl.h>
#include <linux/types.h>
#include <ipc_ioctl.h>
#include <heapbufmp.h>
enum CMD_HEAPBUF {
HEAPBUFMP_GETCONFIG = HEAPBUFMP_BASE_CMD,
HEAPBUFMP_SETUP,
HEAPBUFMP_DESTROY,
HEAPBUFMP_PARAMS_INIT,
HEAPBUFMP_CREATE,
HEAPBUFMP_DELETE,
HEAPBUFMP_OPEN,
HEAPBUFMP_OPENBYADDR,
HEAPBUFMP_CLOSE,
HEAPBUFMP_ALLOC,
HEAPBUFMP_FREE,
HEAPBUFMP_SHAREDMEMREQ,
HEAPBUFMP_GETSTATS,
HEAPBUFMP_GETEXTENDEDSTATS
};
/*
* Command for heapbufmp_get_config
*/
#define CMD_HEAPBUFMP_GETCONFIG _IOWR(IPC_IOC_MAGIC, \
HEAPBUFMP_GETCONFIG, \
struct heapbufmp_cmd_args)
/*
* Command for heapbufmp_setup
*/
#define CMD_HEAPBUFMP_SETUP _IOWR(IPC_IOC_MAGIC, \
HEAPBUFMP_SETUP, \
struct heapbufmp_cmd_args)
/*
* Command for heapbufmp_destroy
*/
#define CMD_HEAPBUFMP_DESTROY _IOWR(IPC_IOC_MAGIC, \
HEAPBUFMP_DESTROY, \
struct heapbufmp_cmd_args)
/*
* Command for heapbufmp_prams_init
*/
#define CMD_HEAPBUFMP_PARAMS_INIT _IOWR(IPC_IOC_MAGIC, \
HEAPBUFMP_PARAMS_INIT, \
struct heapbufmp_cmd_args)
/*
* Command for heapbufmp_create
*/
#define CMD_HEAPBUFMP_CREATE _IOWR(IPC_IOC_MAGIC, \
HEAPBUFMP_CREATE, \
struct heapbufmp_cmd_args)
/*
* Command for heapbufmp_delete
*/
#define CMD_HEAPBUFMP_DELETE _IOWR(IPC_IOC_MAGIC, \
HEAPBUFMP_DELETE, \
struct heapbufmp_cmd_args)
/*
* Command for heapbufmp_open
*/
#define CMD_HEAPBUFMP_OPEN _IOWR(IPC_IOC_MAGIC, \
HEAPBUFMP_OPEN, \
struct heapbufmp_cmd_args)
/*
* Command for heapbufmp_open_by_addr
*/
#define CMD_HEAPBUFMP_OPENBYADDR _IOWR(IPC_IOC_MAGIC, \
HEAPBUFMP_OPENBYADDR, \
struct heapbufmp_cmd_args)
/*
* Command for heapbufmp_close
*/
#define CMD_HEAPBUFMP_CLOSE _IOWR(IPC_IOC_MAGIC, \
HEAPBUFMP_CLOSE, \
struct heapbufmp_cmd_args)
/*
* Command for heapbufmp_alloc
*/
#define CMD_HEAPBUFMP_ALLOC _IOWR(IPC_IOC_MAGIC, \
HEAPBUFMP_ALLOC, \
struct heapbufmp_cmd_args)
/*
* Command for heapbufmp_free
*/
#define CMD_HEAPBUFMP_FREE _IOWR(IPC_IOC_MAGIC, \
HEAPBUFMP_FREE, \
struct heapbufmp_cmd_args)
/*
* Command for heapbufmp_shared_mem_req
*/
#define CMD_HEAPBUFMP_SHAREDMEMREQ _IOWR(IPC_IOC_MAGIC, \
HEAPBUFMP_SHAREDMEMREQ, \
struct heapbufmp_cmd_args)
/*
* Command for heapbufmp_get_stats
*/
#define CMD_HEAPBUFMP_GETSTATS _IOWR(IPC_IOC_MAGIC, \
HEAPBUFMP_GETSTATS, \
struct heapbufmp_cmd_args)
/*
* Command for heapbufmp_get_extended_stats
*/
#define CMD_HEAPBUFMP_GETEXTENDEDSTATS _IOWR(IPC_IOC_MAGIC, \
HEAPBUFMP_GETEXTENDEDSTATS, \
struct heapbufmp_cmd_args)
/*
* Command arguments for heapbuf
*/
union heapbufmp_arg {
struct {
struct heapbufmp_params *params;
} params_init;
struct {
struct heapbufmp_config *config;
} get_config;
struct {
struct heapbufmp_config *config;
} setup;
struct {
void *handle;
struct heapbufmp_params *params;
u32 name_len;
u32 *shared_addr_srptr;
void *knl_gate;
} create;
struct {
void *handle;
} delete;
struct {
void *handle;
char *name;
u32 name_len;
} open;
struct {
void *handle;
u32 *shared_addr_srptr;
} open_by_addr;
struct {
void *handle;
} close;
struct {
void *handle;
u32 size;
u32 align;
u32 *block_srptr;
} alloc;
struct {
void *handle;
u32 *block_srptr;
u32 size;
} free;
struct {
void *handle;
struct memory_stats *stats;
} get_stats;
struct {
void *handle;
struct heapbufmp_extended_stats *stats;
} get_extended_stats;
struct {
void *handle;
struct heapbufmp_params *params;
u32 *shared_addr_srptr;
u32 bytes;
} shared_mem_req;
};
/*
* Command arguments for heapbuf
*/
struct heapbufmp_cmd_args{
union heapbufmp_arg args;
s32 api_status;
};
/*
* This ioctl interface for heapbuf module
*/
int heapbufmp_ioctl(struct inode *pinode, struct file *filp,
unsigned int cmd, unsigned long args, bool user);
#endif /* _HEAPBUFMP_IOCTL_ */
|