summaryrefslogtreecommitdiff
path: root/arch/arm/plat-omap/include/syslink/hw_mbox.h
blob: f50ef782e66fa5d45af6478d5db99a074911a765 (plain)
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
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
/*
 * hw_mbox.h
 *
 * Syslink driver support for OMAP Processors.
 *
 *  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 __MBOX_H
#define __MBOX_H

#include <syslink/hw_defs.h>


#define HW_MBOX_INT_NEW_MSG    0x1
#define HW_MBOX_INT_NOT_FULL   0x2
#define HW_MBOX_INT_ALL        0x3

/*
 * DEFINITION:   HW_MBOX_MAX_NUM_MESSAGES
 *
 * DESCRIPTION:  Maximum number of messages that mailbox can hald at a time.
 *
 *
 */

#define HW_MBOX_MAX_NUM_MESSAGES   4


	/* width in bits of MBOX Id */
#define HW_MBOX_ID_WIDTH           2


/*
 * TYPE:         enum hw_mbox_id_t
 *
 * DESCRIPTION:  Enumerated Type used to specify Mail Box Sub Module Id Number
 *
 *
 */
	enum hw_mbox_id_t {
		HW_MBOX_ID_0,
		HW_MBOX_ID_1,
		HW_MBOX_ID_2,
		HW_MBOX_ID_3,
		HW_MBOX_ID_4,
		HW_MBOX_ID_5
	};

/*
 * TYPE:         enum hw_mbox_userid_t
 *
 * DESCRIPTION:  Enumerated Type used to specify Mail box User Id
 *
 *
 */
	enum hw_mbox_userid_t {
		HW_MBOX_U0_ARM11,
		HW_MBOX_U1_UMA,
		HW_MBOX_U2_IVA,
		HW_MBOX_U3_ARM11
	};

#if defined(OMAP3430)
/*
* TYPE:         mailbox_context
*
* DESCRIPTION:  Mailbox context settings
*
*
*/
struct mailbox_context {
	unsigned long sysconfig;
	unsigned long irqEnable0;
	unsigned long irqEnable1;
};
#endif/* defined(OMAP3430)*/

/*
* FUNCTION      : hw_mbox_msg_read
*
* INPUTS:
*
*   Identifier  : base_address
*   Type        : const unsigned long
*   Description : Base Address of instance of Mailbox module
*
*   Identifier  : mail_box_id
*   Type        : const enum hw_mbox_id_t
*   Description : Mail Box Sub module Id to read
*
* OUTPUTS:
*
*   Identifier  : p_read_value
*   Type        : unsigned long *const
*   Description : Value read from MailBox
*
* RETURNS:
*
*   Type        : ReturnCode_t
*   Description : RET_OK              No errors occured
*   RET_BAD_NULL_PARAM  Address/pointer Paramater was set to 0/NULL
*   RET_INVALID_ID      Invalid Id used
*   RET_EMPTY           Mailbox empty
*
* PURPOSE:
*     : this function reads a unsigned long from the sub module message
*     box Specified. if there are no messages in the mailbox
*    then and error is returned.
*
*/
extern long hw_mbox_msg_read(
		const unsigned long base_address,
		const enum hw_mbox_id_t mail_box_id,
		unsigned long *const p_read_value
	);

/*
* FUNCTION      : hw_mbox_msg_write
*
* INPUTS:
*
*   Identifier  : base_address
*   Type        : const unsigned long
*   Description : Base Address of instance of Mailbox module
*
*   Identifier  : mail_box_id
*   Type        : const enum hw_mbox_id_t
*   Description : Mail Box Sub module Id to write
*
*   Identifier  : write_value
*   Type        : const unsigned long
*   Description : Value to write to MailBox
*
* RETURNS:
*
*   Type        : ReturnCode_t
*   Description : RET_OK              No errors occured
*   RET_BAD_NULL_PARAM  Address/pointer Paramater was set to 0/NULL
*   RET_INVALID_ID      Invalid Id used
*
* PURPOSE:: this function writes a unsigned long from the sub module message
*           box Specified.
*
*
*/
extern long hw_mbox_msg_write(
		const unsigned long base_address,
		const enum hw_mbox_id_t mail_box_id,
		const unsigned long write_value
	);

/*
* FUNCTION      : hw_mbox_is_full
*
* INPUTS:
*
*   Identifier  : base_address
*   Type        : const unsigned long
*   Description : Base Address of instance of Mailbox module
*
*   Identifier  : mail_box_id
*   Type        : const enum hw_mbox_id_t
*   Description : Mail Box Sub module Id to check
*
* OUTPUTS:
*
*   Identifier  : p_is_full
*   Type        : unsigned long *const
*   Description : false means mail box not Full
*                 true means mailbox full.
*
* RETURNS:
*
*   Type        : ReturnCode_t
*   Description : RET_OK              No errors occured
*   RET_BAD_NULL_PARAM  Address/pointer Paramater was set to 0/NULL
*   RET_INVALID_ID      Invalid Id used
*
* PURPOSE:      : this function reads the full status register for mailbox.
*
*
*/
extern long hw_mbox_is_full(
		const unsigned long base_address,
		const enum hw_mbox_id_t mail_box_id,
		unsigned long *const p_is_full
	);

/* -----------------------------------------------------------------
* FUNCTION      : hw_mbox_nomsg_get
*
* INPUTS:
*
*   Identifier  : base_address
*   Type        : const unsigned long
*   Description : Base Address of instance of Mailbox module
*
*   Identifier  : mail_box_id
*   Type        : const enum hw_mbox_id_t
*   Description : Mail Box Sub module Id to get num messages
*
* OUTPUTS:
*
*   Identifier  : p_num_msg
*   Type        : unsigned long *const
*   Description : Number of messages in mailbox
*
* RETURNS:
*
*   Type        : ReturnCode_t
*   Description : RET_OK              No errors occured
*   RET_BAD_NULL_PARAM  Address/pointer Paramater was set to 0/NULL
*   RET_INVALID_ID      Inavlid ID input at parameter
*
* PURPOSE:
*    : this function gets number of messages in a specified mailbox.
*
*
*/
extern long hw_mbox_nomsg_get(
		const unsigned long base_address,
		const enum hw_mbox_id_t mail_box_id,
		unsigned long *const p_num_msg
	);

/*
* FUNCTION      : hw_mbox_event_enable
*
* INPUTS:
*
*   Identifier  : base_address
*   Type        : const unsigned long
*   RET_BAD_NULL_PARAM  Address/pointer Paramater was set to 0/NULL
*
*   Identifier  : mail_box_id
*   Type        : const enum hw_mbox_id_t
*   Description : Mail Box Sub module Id to enable
*
*   Identifier  : user_id
*   Type        : const enum hw_mbox_userid_t
*   Description : Mail box User Id to enable
*
*   Identifier  : enableIrq
*   Type        : const unsigned long
*   Description : Irq value to enable
*
* RETURNS:
*
*   Type        : ReturnCode_t
*   Description : RET_OK              No errors occured
*    RET_BAD_NULL_PARAM  A Pointer Paramater was set to NULL
*    RET_INVALID_ID      Invalid Id used
*
* PURPOSE:      : this function enables the specified IRQ.
*
*
*/
extern long hw_mbox_event_enable(
		const unsigned long base_address,
		const enum hw_mbox_id_t mail_box_id,
		const enum hw_mbox_userid_t user_id,
		const unsigned long events
	);

/*
* FUNCTION      : hw_mbox_event_disable
*
* INPUTS:
*
*   Identifier  : base_address
*   Type        : const unsigned long
*  RET_BAD_NULL_PARAM  Address/pointer Paramater was set to 0/NULL
*
*   Identifier  : mail_box_id
*   Type        : const enum hw_mbox_id_t
*   Description : Mail Box Sub module Id to disable
*
*   Identifier  : user_id
*   Type        : const enum hw_mbox_userid_t
*   Description : Mail box User Id to disable
*
*   Identifier  : enableIrq
*   Type        : const unsigned long
*   Description : Irq value to disable
*
* RETURNS:
*
*   Type        : ReturnCode_t
*   Description : RET_OK              No errors occured
*                 RET_BAD_NULL_PARAM  A Pointer Paramater was set to NULL
*                 RET_INVALID_ID      Invalid Id used
*
* PURPOSE:      : this function disables the specified IRQ.
*
*
*/
extern long hw_mbox_event_disable(
		const unsigned long base_address,
		const enum hw_mbox_id_t mail_box_id,
		const enum hw_mbox_userid_t user_id,
		const unsigned long events
	);

/*
* FUNCTION      : hw_mbox_event_status
*
* INPUTS:
*
*   Identifier  : base_address
*   Type        : const unsigned long
*   Description : Base Address of instance of Mailbox module
*
*   Identifier  : mail_box_id
*   Type        : const enum hw_mbox_id_t
*   Description : Mail Box Sub module Id to clear
*
*   Identifier  : user_id
*   Type        : const enum hw_mbox_userid_t
*   Description : Mail box User Id to clear
*
* OUTPUTS:
*
*   Identifier  : pIrqStatus
*   Type        : pMBOX_Int_t *const
*   Description : The value in IRQ status register
*
* RETURNS:
*
*   Type        : ReturnCode_t
*   Description : RET_OK              No errors occured
*   RET_BAD_NULL_PARAM  Address/pointer Paramater was set to 0/NULL
*   RET_INVALID_ID      Invalid Id used
*
* PURPOSE:      : this function gets the status of the specified IRQ.
*
*
*/
extern long hw_mbox_event_status(
		const unsigned long base_address,
		const enum hw_mbox_id_t mail_box_id,
		const enum hw_mbox_userid_t user_id,
		unsigned long *const p_eventStatus
	);

/*
* FUNCTION      : hw_mbox_event_ack
*
* INPUTS:
*
*   Identifier  : base_address
*   Type        : const unsigned long
*   Description : Base Address of instance of Mailbox module
*
*   Identifier  : mail_box_id
*   Type        : const enum hw_mbox_id_t
*   Description : Mail Box Sub module Id to set
*
*   Identifier  : user_id
*   Type        : const enum hw_mbox_userid_t
*   Description : Mail box User Id to set
*
*   Identifier  : irqStatus
*   Type        : const unsigned long
*   Description : The value to write IRQ status
*
* OUTPUTS:
*
* RETURNS:
*
*   Type        : ReturnCode_t
*   Description : RET_OK              No errors occured
*                 RET_BAD_NULL_PARAM  Address Paramater was set to 0
*                 RET_INVALID_ID      Invalid Id used
*
* PURPOSE:      : this function sets the status of the specified IRQ.
*
*
*/
extern long hw_mbox_event_ack(
		const unsigned long base_address,
		const enum hw_mbox_id_t mail_box_id,
		const enum hw_mbox_userid_t user_id,
		const unsigned long event
	);

#if defined(OMAP3430)
/* ---------------------------------------------------------------
* FUNCTION      : hw_mbox_save_settings
*
* INPUTS:
*
*   Identifier  : base_address
*   Type        : const unsigned long
*   Description : Base Address of instance of Mailbox module
*
*
* RETURNS:
*
*   Type        : ReturnCode_t
*   Description : RET_OK              No errors occured
*   RET_BAD_NULL_PARAM  Address/pointer Paramater was set to 0/NULL
*   RET_INVALID_ID      Invalid Id used
*    RET_EMPTY           Mailbox empty
*
* PURPOSE:      : this function saves the context of mailbox
*
* ----------------------------------------------------------------
*/
extern long hw_mbox_save_settings(unsigned long baseAddres);

/*
* FUNCTION      : hw_mbox_restore_settings
*
* INPUTS:
*
*   Identifier  : base_address
*   Type        : const unsigned long
*   Description : Base Address of instance of Mailbox module
*
*
* RETURNS:
*
*   Type        : ReturnCode_t
*   Description : RET_OK              No errors occured
*   RET_BAD_NULL_PARAM  Address/pointer Paramater was set to 0/NULL
*   RET_INVALID_ID      Invalid Id used
*   RET_EMPTY           Mailbox empty
*
* PURPOSE:      : this function restores the context of mailbox
*
*
*/
extern long hw_mbox_restore_settings(unsigned long baseAddres);
#endif/* defined(OMAP3430)*/

#endif  /* __MBOX_H */