Path: blob/master/drivers/media/video/cx18/cx18-mailbox.h
17745 views
/*1* cx18 mailbox functions2*3* Copyright (C) 2007 Hans Verkuil <[email protected]>4* Copyright (C) 2008 Andy Walls <[email protected]>5*6* This program is free software; you can redistribute it and/or modify7* it under the terms of the GNU General Public License as published by8* the Free Software Foundation; either version 2 of the License, or9* (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 of13* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the14* GNU General Public License for more details.15*16* You should have received a copy of the GNU General Public License17* along with this program; if not, write to the Free Software18* Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA19* 02111-1307 USA20*/2122#ifndef _CX18_MAILBOX_H_23#define _CX18_MAILBOX_H_2425/* mailbox max args */26#define MAX_MB_ARGUMENTS 627/* compatibility, should be same as the define in cx2341x.h */28#define CX2341X_MBOX_MAX_DATA 162930#define MB_RESERVED_HANDLE_0 031#define MB_RESERVED_HANDLE_1 0xFFFFFFFF3233#define APU 034#define CPU 135#define EPU 236#define HPU 33738struct cx18;3940/*41* This structure is used by CPU to provide completed MDL & buffers information.42* Its structure is dictated by the layout of the SCB, required by the43* firmware, but its definition needs to be here, instead of in cx18-scb.h,44* for mailbox work order scheduling45*/46struct cx18_mdl_ack {47u32 id; /* ID of a completed MDL */48u32 data_used; /* Total data filled in the MDL with 'id' */49};5051/* The cx18_mailbox struct is the mailbox structure which is used for passing52messages between processors */53struct cx18_mailbox {54/* The sender sets a handle in 'request' after he fills the command. The55'request' should be different than 'ack'. The sender, also, generates56an interrupt on XPU2YPU_irq where XPU is the sender and YPU is the57receiver. */58u32 request;59/* The receiver detects a new command when 'req' is different than 'ack'.60He sets 'ack' to the same value as 'req' to clear the command. He, also,61generates an interrupt on YPU2XPU_irq where XPU is the sender and YPU62is the receiver. */63u32 ack;64u32 reserved[6];65/* 'cmd' identifies the command. The list of these commands are in66cx23418.h */67u32 cmd;68/* Each command can have up to 6 arguments */69u32 args[MAX_MB_ARGUMENTS];70/* The return code can be one of the codes in the file cx23418.h. If the71command is completed successfuly, the error will be ERR_SYS_SUCCESS.72If it is pending, the code is ERR_SYS_PENDING. If it failed, the error73code would indicate the task from which the error originated and will74be one of the errors in cx23418.h. In that case, the following75applies ((error & 0xff) != 0).76If the command is pending, the return will be passed in a MB from the77receiver to the sender. 'req' will be returned in args[0] */78u32 error;79};8081struct cx18_stream;8283int cx18_api(struct cx18 *cx, u32 cmd, int args, u32 data[]);84int cx18_vapi_result(struct cx18 *cx, u32 data[MAX_MB_ARGUMENTS], u32 cmd,85int args, ...);86int cx18_vapi(struct cx18 *cx, u32 cmd, int args, ...);87int cx18_api_func(void *priv, u32 cmd, int in, int out,88u32 data[CX2341X_MBOX_MAX_DATA]);8990void cx18_api_epu_cmd_irq(struct cx18 *cx, int rpu);9192void cx18_in_work_handler(struct work_struct *work);9394#endif959697