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