blob: 33a3491c45374a1128eb8ec8e09e1e91450bc769 [file] [log] [blame]
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03001/*
2 * cx18 mailbox functions
3 *
4 * Copyright (C) 2007 Hans Verkuil <hverkuil@xs4all.nl>
Andy Walls1ed9dcc2008-11-22 01:37:34 -03005 * Copyright (C) 2008 Andy Walls <awalls@radix.net>
Hans Verkuil1c1e45d2008-04-28 20:24:33 -03006 *
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.
11 *
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.
16 *
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
21 */
22
23#ifndef _CX18_MAILBOX_H_
24#define _CX18_MAILBOX_H_
25
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
30
31#define MB_RESERVED_HANDLE_0 0
32#define MB_RESERVED_HANDLE_1 0xFFFFFFFF
33
Andy Walls72c2d6d2008-11-06 01:15:41 -030034#define APU 0
35#define CPU 1
36#define EPU 2
37#define HPU 3
38
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030039struct cx18;
40
Andy Wallsee2d64f2008-11-16 01:38:19 -030041/*
Andy Walls52fcb3e2009-11-08 23:45:24 -030042 * This structure is used by CPU to provide completed MDL & buffers information.
43 * Its structure is dictated by the layout of the SCB, required by the
Adam Buchbinder6070d812009-12-04 15:47:01 -050044 * firmware, but its definition needs to be here, instead of in cx18-scb.h,
Andy Wallsee2d64f2008-11-16 01:38:19 -030045 * for mailbox work order scheduling
46 */
47struct cx18_mdl_ack {
48 u32 id; /* ID of a completed MDL */
Andy Walls52fcb3e2009-11-08 23:45:24 -030049 u32 data_used; /* Total data filled in the MDL with 'id' */
Andy Wallsee2d64f2008-11-16 01:38:19 -030050};
51
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030052/* The cx18_mailbox struct is the mailbox structure which is used for passing
53 messages between processors */
54struct 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;
80};
81
Andy Walls50b86ba2008-11-23 19:16:44 -030082struct cx18_stream;
83
84struct cx18_api_func_private {
85 struct cx18 *cx;
86 struct cx18_stream *s;
87};
88
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030089int cx18_api(struct cx18 *cx, u32 cmd, int args, u32 data[]);
90int cx18_vapi_result(struct cx18 *cx, u32 data[MAX_MB_ARGUMENTS], u32 cmd,
91 int args, ...);
92int cx18_vapi(struct cx18 *cx, u32 cmd, int args, ...);
93int cx18_api_func(void *priv, u32 cmd, int in, int out,
94 u32 data[CX2341X_MBOX_MAX_DATA]);
Andy Wallsee2d64f2008-11-16 01:38:19 -030095
96void cx18_api_epu_cmd_irq(struct cx18 *cx, int rpu);
97
Andy Wallsdeed75e2009-04-13 22:22:40 -030098void cx18_in_work_handler(struct work_struct *work);
Hans Verkuil1c1e45d2008-04-28 20:24:33 -030099
100#endif