added 2.6.29.6 aldebaran kernel
[nao-ulib.git] / kernel / 2.6.29.6-aldebaran-rt / drivers / media / video / cx18 / cx18-mailbox.h
blobce2b6686aa005268363be2335ea61ba0910a001f
1 /*
2 * cx18 mailbox functions
4 * Copyright (C) 2007 Hans Verkuil <hverkuil@xs4all.nl>
5 * Copyright (C) 2008 Andy Walls <awalls@radix.net>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software
19 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
20 * 02111-1307 USA
23 #ifndef _CX18_MAILBOX_H_
24 #define _CX18_MAILBOX_H_
26 /* mailbox max args */
27 #define MAX_MB_ARGUMENTS 6
28 /* compatibility, should be same as the define in cx2341x.h */
29 #define CX2341X_MBOX_MAX_DATA 16
31 #define MB_RESERVED_HANDLE_0 0
32 #define MB_RESERVED_HANDLE_1 0xFFFFFFFF
34 #define APU 0
35 #define CPU 1
36 #define EPU 2
37 #define HPU 3
39 struct cx18;
42 * This structure is used by CPU to provide completed buffers information
43 * Its structure is dictrated by the layout of the SCB, required by the
44 * firmware, but its defintion needs to be here, instead of in cx18-scb.h,
45 * for mailbox work order scheduling
47 struct cx18_mdl_ack {
48 u32 id; /* ID of a completed MDL */
49 u32 data_used; /* Total data filled in the MDL for buffer 'id' */
52 /* The cx18_mailbox struct is the mailbox structure which is used for passing
53 messages between processors */
54 struct cx18_mailbox {
55 /* The sender sets a handle in 'request' after he fills the command. The
56 'request' should be different than 'ack'. The sender, also, generates
57 an interrupt on XPU2YPU_irq where XPU is the sender and YPU is the
58 receiver. */
59 u32 request;
60 /* The receiver detects a new command when 'req' is different than 'ack'.
61 He sets 'ack' to the same value as 'req' to clear the command. He, also,
62 generates an interrupt on YPU2XPU_irq where XPU is the sender and YPU
63 is the receiver. */
64 u32 ack;
65 u32 reserved[6];
66 /* 'cmd' identifies the command. The list of these commands are in
67 cx23418.h */
68 u32 cmd;
69 /* Each command can have up to 6 arguments */
70 u32 args[MAX_MB_ARGUMENTS];
71 /* The return code can be one of the codes in the file cx23418.h. If the
72 command is completed successfuly, the error will be ERR_SYS_SUCCESS.
73 If it is pending, the code is ERR_SYS_PENDING. If it failed, the error
74 code would indicate the task from which the error originated and will
75 be one of the errors in cx23418.h. In that case, the following
76 applies ((error & 0xff) != 0).
77 If the command is pending, the return will be passed in a MB from the
78 receiver to the sender. 'req' will be returned in args[0] */
79 u32 error;
82 struct cx18_stream;
84 struct cx18_api_func_private {
85 struct cx18 *cx;
86 struct cx18_stream *s;
89 int cx18_api(struct cx18 *cx, u32 cmd, int args, u32 data[]);
90 int cx18_vapi_result(struct cx18 *cx, u32 data[MAX_MB_ARGUMENTS], u32 cmd,
91 int args, ...);
92 int cx18_vapi(struct cx18 *cx, u32 cmd, int args, ...);
93 int cx18_api_func(void *priv, u32 cmd, int in, int out,
94 u32 data[CX2341X_MBOX_MAX_DATA]);
96 void cx18_api_epu_cmd_irq(struct cx18 *cx, int rpu);
98 void cx18_epu_work_handler(struct work_struct *work);
100 #endif