2 * cx18 mailbox functions
4 * Copyright (C) 2007 Hans Verkuil <hverkuil@xs4all.nl>
5 * Copyright (C) 2008 Andy Walls <awalls@md.metrocast.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
25 #include "cx18-driver.h"
29 #include "cx18-mailbox.h"
30 #include "cx18-queue.h"
31 #include "cx18-streams.h"
32 #include "cx18-alsa-pcm.h" /* FIXME make configurable */
34 static const char *rpu_str
[] = { "APU", "CPU", "EPU", "HPU" };
36 #define API_FAST (1 << 2) /* Short timeout */
37 #define API_SLOW (1 << 3) /* Additional 300ms timeout */
39 struct cx18_api_info
{
41 u8 flags
; /* Flags, see above */
42 u8 rpu
; /* Processing unit */
43 const char *name
; /* The name of the command */
46 #define API_ENTRY(rpu, x, f) { (x), (f), (rpu), #x }
48 static const struct cx18_api_info api_info
[] = {
49 /* MPEG encoder API */
50 API_ENTRY(CPU
, CX18_CPU_SET_CHANNEL_TYPE
, 0),
51 API_ENTRY(CPU
, CX18_EPU_DEBUG
, 0),
52 API_ENTRY(CPU
, CX18_CREATE_TASK
, 0),
53 API_ENTRY(CPU
, CX18_DESTROY_TASK
, 0),
54 API_ENTRY(CPU
, CX18_CPU_CAPTURE_START
, API_SLOW
),
55 API_ENTRY(CPU
, CX18_CPU_CAPTURE_STOP
, API_SLOW
),
56 API_ENTRY(CPU
, CX18_CPU_CAPTURE_PAUSE
, 0),
57 API_ENTRY(CPU
, CX18_CPU_CAPTURE_RESUME
, 0),
58 API_ENTRY(CPU
, CX18_CPU_SET_CHANNEL_TYPE
, 0),
59 API_ENTRY(CPU
, CX18_CPU_SET_STREAM_OUTPUT_TYPE
, 0),
60 API_ENTRY(CPU
, CX18_CPU_SET_VIDEO_IN
, 0),
61 API_ENTRY(CPU
, CX18_CPU_SET_VIDEO_RATE
, 0),
62 API_ENTRY(CPU
, CX18_CPU_SET_VIDEO_RESOLUTION
, 0),
63 API_ENTRY(CPU
, CX18_CPU_SET_FILTER_PARAM
, 0),
64 API_ENTRY(CPU
, CX18_CPU_SET_SPATIAL_FILTER_TYPE
, 0),
65 API_ENTRY(CPU
, CX18_CPU_SET_MEDIAN_CORING
, 0),
66 API_ENTRY(CPU
, CX18_CPU_SET_INDEXTABLE
, 0),
67 API_ENTRY(CPU
, CX18_CPU_SET_AUDIO_PARAMETERS
, 0),
68 API_ENTRY(CPU
, CX18_CPU_SET_VIDEO_MUTE
, 0),
69 API_ENTRY(CPU
, CX18_CPU_SET_AUDIO_MUTE
, 0),
70 API_ENTRY(CPU
, CX18_CPU_SET_MISC_PARAMETERS
, 0),
71 API_ENTRY(CPU
, CX18_CPU_SET_RAW_VBI_PARAM
, API_SLOW
),
72 API_ENTRY(CPU
, CX18_CPU_SET_CAPTURE_LINE_NO
, 0),
73 API_ENTRY(CPU
, CX18_CPU_SET_COPYRIGHT
, 0),
74 API_ENTRY(CPU
, CX18_CPU_SET_AUDIO_PID
, 0),
75 API_ENTRY(CPU
, CX18_CPU_SET_VIDEO_PID
, 0),
76 API_ENTRY(CPU
, CX18_CPU_SET_VER_CROP_LINE
, 0),
77 API_ENTRY(CPU
, CX18_CPU_SET_GOP_STRUCTURE
, 0),
78 API_ENTRY(CPU
, CX18_CPU_SET_SCENE_CHANGE_DETECTION
, 0),
79 API_ENTRY(CPU
, CX18_CPU_SET_ASPECT_RATIO
, 0),
80 API_ENTRY(CPU
, CX18_CPU_SET_SKIP_INPUT_FRAME
, 0),
81 API_ENTRY(CPU
, CX18_CPU_SET_SLICED_VBI_PARAM
, 0),
82 API_ENTRY(CPU
, CX18_CPU_SET_USERDATA_PLACE_HOLDER
, 0),
83 API_ENTRY(CPU
, CX18_CPU_GET_ENC_PTS
, 0),
84 API_ENTRY(CPU
, CX18_CPU_SET_VFC_PARAM
, 0),
85 API_ENTRY(CPU
, CX18_CPU_DE_SET_MDL_ACK
, 0),
86 API_ENTRY(CPU
, CX18_CPU_DE_SET_MDL
, API_FAST
),
87 API_ENTRY(CPU
, CX18_CPU_DE_RELEASE_MDL
, API_SLOW
),
88 API_ENTRY(APU
, CX18_APU_START
, 0),
89 API_ENTRY(APU
, CX18_APU_STOP
, 0),
90 API_ENTRY(APU
, CX18_APU_RESETAI
, 0),
91 API_ENTRY(CPU
, CX18_CPU_DEBUG_PEEK32
, 0),
95 static const struct cx18_api_info
*find_api_info(u32 cmd
)
99 for (i
= 0; api_info
[i
].cmd
; i
++)
100 if (api_info
[i
].cmd
== cmd
)
105 /* Call with buf of n*11+1 bytes */
106 static char *u32arr2hex(u32 data
[], int n
, char *buf
)
111 for (i
= 0, p
= buf
; i
< n
; i
++, p
+= 11) {
112 /* kernel snprintf() appends '\0' always */
113 snprintf(p
, 12, " %#010x", data
[i
]);
119 static void dump_mb(struct cx18
*cx
, struct cx18_mailbox
*mb
, char *name
)
121 char argstr
[MAX_MB_ARGUMENTS
*11+1];
123 if (!(cx18_debug
& CX18_DBGFLG_API
))
126 CX18_DEBUG_API("%s: req %#010x ack %#010x cmd %#010x err %#010x args%s\n",
127 name
, mb
->request
, mb
->ack
, mb
->cmd
, mb
->error
,
128 u32arr2hex(mb
->args
, MAX_MB_ARGUMENTS
, argstr
));
133 * Functions that run in a work_queue work handling context
136 static void cx18_mdl_send_to_dvb(struct cx18_stream
*s
, struct cx18_mdl
*mdl
)
138 struct cx18_buffer
*buf
;
140 if (s
->dvb
== NULL
|| !s
->dvb
->enabled
|| mdl
->bytesused
== 0)
143 /* We ignore mdl and buf readpos accounting here - it doesn't matter */
145 /* The likely case */
146 if (list_is_singular(&mdl
->buf_list
)) {
147 buf
= list_first_entry(&mdl
->buf_list
, struct cx18_buffer
,
150 dvb_dmx_swfilter(&s
->dvb
->demux
,
151 buf
->buf
, buf
->bytesused
);
155 list_for_each_entry(buf
, &mdl
->buf_list
, list
) {
156 if (buf
->bytesused
== 0)
158 dvb_dmx_swfilter(&s
->dvb
->demux
, buf
->buf
, buf
->bytesused
);
162 static void cx18_mdl_send_to_videobuf(struct cx18_stream
*s
,
163 struct cx18_mdl
*mdl
)
165 struct cx18_videobuf_buffer
*vb_buf
;
166 struct cx18_buffer
*buf
;
171 if (mdl
->bytesused
== 0)
174 /* Acquire a videobuf buffer, clone to and and release it */
175 spin_lock(&s
->vb_lock
);
176 if (list_empty(&s
->vb_capture
))
179 vb_buf
= list_first_entry(&s
->vb_capture
, struct cx18_videobuf_buffer
,
182 p
= videobuf_to_vmalloc(&vb_buf
->vb
);
186 offset
= vb_buf
->bytes_used
;
187 list_for_each_entry(buf
, &mdl
->buf_list
, list
) {
188 if (buf
->bytesused
== 0)
191 if ((offset
+ buf
->bytesused
) <= vb_buf
->vb
.bsize
) {
192 memcpy(p
+ offset
, buf
->buf
, buf
->bytesused
);
193 offset
+= buf
->bytesused
;
194 vb_buf
->bytes_used
+= buf
->bytesused
;
198 /* If we've filled the buffer as per the callers res then dispatch it */
199 if (vb_buf
->bytes_used
>= s
->vb_bytes_per_frame
) {
201 vb_buf
->bytes_used
= 0;
205 v4l2_get_timestamp(&vb_buf
->vb
.ts
);
206 list_del(&vb_buf
->vb
.queue
);
207 vb_buf
->vb
.state
= VIDEOBUF_DONE
;
208 wake_up(&vb_buf
->vb
.done
);
211 mod_timer(&s
->vb_timeout
, msecs_to_jiffies(2000) + jiffies
);
214 spin_unlock(&s
->vb_lock
);
217 static void cx18_mdl_send_to_alsa(struct cx18
*cx
, struct cx18_stream
*s
,
218 struct cx18_mdl
*mdl
)
220 struct cx18_buffer
*buf
;
222 if (mdl
->bytesused
== 0)
225 /* We ignore mdl and buf readpos accounting here - it doesn't matter */
227 /* The likely case */
228 if (list_is_singular(&mdl
->buf_list
)) {
229 buf
= list_first_entry(&mdl
->buf_list
, struct cx18_buffer
,
232 cx
->pcm_announce_callback(cx
->alsa
, buf
->buf
,
237 list_for_each_entry(buf
, &mdl
->buf_list
, list
) {
238 if (buf
->bytesused
== 0)
240 cx
->pcm_announce_callback(cx
->alsa
, buf
->buf
, buf
->bytesused
);
244 static void epu_dma_done(struct cx18
*cx
, struct cx18_in_work_order
*order
)
246 u32 handle
, mdl_ack_count
, id
;
247 struct cx18_mailbox
*mb
;
248 struct cx18_mdl_ack
*mdl_ack
;
249 struct cx18_stream
*s
;
250 struct cx18_mdl
*mdl
;
254 handle
= mb
->args
[0];
255 s
= cx18_handle_to_stream(cx
, handle
);
258 CX18_WARN("Got DMA done notification for unknown/inactive handle %d, %s mailbox seq no %d\n",
260 (order
->flags
& CX18_F_EWO_MB_STALE_UPON_RECEIPT
) ?
261 "stale" : "good", mb
->request
);
265 mdl_ack_count
= mb
->args
[2];
266 mdl_ack
= order
->mdl_ack
;
267 for (i
= 0; i
< mdl_ack_count
; i
++, mdl_ack
++) {
270 * Simple integrity check for processing a stale (and possibly
271 * inconsistent mailbox): make sure the MDL id is in the
272 * valid range for the stream.
274 * We go through the trouble of dealing with stale mailboxes
275 * because most of the time, the mailbox data is still valid and
276 * unchanged (and in practice the firmware ping-pongs the
277 * two mdl_ack buffers so mdl_acks are not stale).
279 * There are occasions when we get a half changed mailbox,
280 * which this check catches for a handle & id mismatch. If the
281 * handle and id do correspond, the worst case is that we
282 * completely lost the old MDL, but pick up the new MDL
283 * early (but the new mdl_ack is guaranteed to be good in this
284 * case as the firmware wouldn't point us to a new mdl_ack until
287 * cx18_queue_get_mdl() will detect the lost MDLs
288 * and send them back to q_free for fw rotation eventually.
290 if ((order
->flags
& CX18_F_EWO_MB_STALE_UPON_RECEIPT
) &&
291 !(id
>= s
->mdl_base_idx
&&
292 id
< (s
->mdl_base_idx
+ s
->buffers
))) {
293 CX18_WARN("Fell behind! Ignoring stale mailbox with inconsistent data. Lost MDL for mailbox seq no %d\n",
297 mdl
= cx18_queue_get_mdl(s
, id
, mdl_ack
->data_used
);
299 CX18_DEBUG_HI_DMA("DMA DONE for %s (MDL %d)\n", s
->name
, id
);
301 CX18_WARN("Could not find MDL %d for stream %s\n",
306 CX18_DEBUG_HI_DMA("%s recv bytesused = %d\n",
307 s
->name
, mdl
->bytesused
);
309 if (s
->type
== CX18_ENC_STREAM_TYPE_TS
) {
310 cx18_mdl_send_to_dvb(s
, mdl
);
311 cx18_enqueue(s
, mdl
, &s
->q_free
);
312 } else if (s
->type
== CX18_ENC_STREAM_TYPE_PCM
) {
313 /* Pass the data to cx18-alsa */
314 if (cx
->pcm_announce_callback
!= NULL
) {
315 cx18_mdl_send_to_alsa(cx
, s
, mdl
);
316 cx18_enqueue(s
, mdl
, &s
->q_free
);
318 cx18_enqueue(s
, mdl
, &s
->q_full
);
320 } else if (s
->type
== CX18_ENC_STREAM_TYPE_YUV
) {
321 cx18_mdl_send_to_videobuf(s
, mdl
);
322 cx18_enqueue(s
, mdl
, &s
->q_free
);
324 cx18_enqueue(s
, mdl
, &s
->q_full
);
325 if (s
->type
== CX18_ENC_STREAM_TYPE_IDX
)
326 cx18_stream_rotate_idx_mdls(cx
);
329 /* Put as many MDLs as possible back into fw use */
330 cx18_stream_load_fw_queue(s
);
332 wake_up(&cx
->dma_waitq
);
337 static void epu_debug(struct cx18
*cx
, struct cx18_in_work_order
*order
)
340 char *str
= order
->str
;
342 CX18_DEBUG_INFO("%x %s\n", order
->mb
.args
[0], str
);
343 p
= strchr(str
, '.');
344 if (!test_bit(CX18_F_I_LOADED_FW
, &cx
->i_flags
) && p
&& p
> str
)
345 CX18_INFO("FW version: %s\n", p
- 1);
348 static void epu_cmd(struct cx18
*cx
, struct cx18_in_work_order
*order
)
350 switch (order
->rpu
) {
353 switch (order
->mb
.cmd
) {
354 case CX18_EPU_DMA_DONE
:
355 epu_dma_done(cx
, order
);
358 epu_debug(cx
, order
);
361 CX18_WARN("Unknown CPU to EPU mailbox command %#0x\n",
368 CX18_WARN("Unknown APU to EPU mailbox command %#0x\n",
377 void free_in_work_order(struct cx18
*cx
, struct cx18_in_work_order
*order
)
379 atomic_set(&order
->pending
, 0);
382 void cx18_in_work_handler(struct work_struct
*work
)
384 struct cx18_in_work_order
*order
=
385 container_of(work
, struct cx18_in_work_order
, work
);
386 struct cx18
*cx
= order
->cx
;
388 free_in_work_order(cx
, order
);
393 * Functions that run in an interrupt handling context
396 static void mb_ack_irq(struct cx18
*cx
, struct cx18_in_work_order
*order
)
398 struct cx18_mailbox __iomem
*ack_mb
;
401 switch (order
->rpu
) {
403 ack_irq
= IRQ_EPU_TO_APU_ACK
;
404 ack_mb
= &cx
->scb
->apu2epu_mb
;
407 ack_irq
= IRQ_EPU_TO_CPU_ACK
;
408 ack_mb
= &cx
->scb
->cpu2epu_mb
;
411 CX18_WARN("Unhandled RPU (%d) for command %x ack\n",
412 order
->rpu
, order
->mb
.cmd
);
416 req
= order
->mb
.request
;
417 /* Don't ack if the RPU has gotten impatient and timed us out */
418 if (req
!= cx18_readl(cx
, &ack_mb
->request
) ||
419 req
== cx18_readl(cx
, &ack_mb
->ack
)) {
420 CX18_DEBUG_WARN("Possibly falling behind: %s self-ack'ed our incoming %s to EPU mailbox (sequence no. %u) while processing\n",
421 rpu_str
[order
->rpu
], rpu_str
[order
->rpu
], req
);
422 order
->flags
|= CX18_F_EWO_MB_STALE_WHILE_PROC
;
425 cx18_writel(cx
, req
, &ack_mb
->ack
);
426 cx18_write_reg_expect(cx
, ack_irq
, SW2_INT_SET
, ack_irq
, ack_irq
);
430 static int epu_dma_done_irq(struct cx18
*cx
, struct cx18_in_work_order
*order
)
432 u32 handle
, mdl_ack_offset
, mdl_ack_count
;
433 struct cx18_mailbox
*mb
;
437 handle
= mb
->args
[0];
438 mdl_ack_offset
= mb
->args
[1];
439 mdl_ack_count
= mb
->args
[2];
441 if (handle
== CX18_INVALID_TASK_HANDLE
||
442 mdl_ack_count
== 0 || mdl_ack_count
> CX18_MAX_MDL_ACKS
) {
443 if ((order
->flags
& CX18_F_EWO_MB_STALE
) == 0)
444 mb_ack_irq(cx
, order
);
448 for (i
= 0; i
< sizeof(struct cx18_mdl_ack
) * mdl_ack_count
; i
+= sizeof(u32
))
449 ((u32
*)order
->mdl_ack
)[i
/ sizeof(u32
)] =
450 cx18_readl(cx
, cx
->enc_mem
+ mdl_ack_offset
+ i
);
452 if ((order
->flags
& CX18_F_EWO_MB_STALE
) == 0)
453 mb_ack_irq(cx
, order
);
458 int epu_debug_irq(struct cx18
*cx
, struct cx18_in_work_order
*order
)
461 char *str
= order
->str
;
464 str_offset
= order
->mb
.args
[1];
466 cx18_setup_page(cx
, str_offset
);
467 cx18_memcpy_fromio(cx
, str
, cx
->enc_mem
+ str_offset
, 252);
469 cx18_setup_page(cx
, SCB_OFFSET
);
472 if ((order
->flags
& CX18_F_EWO_MB_STALE
) == 0)
473 mb_ack_irq(cx
, order
);
475 return str_offset
? 1 : 0;
479 int epu_cmd_irq(struct cx18
*cx
, struct cx18_in_work_order
*order
)
483 switch (order
->rpu
) {
486 switch (order
->mb
.cmd
) {
487 case CX18_EPU_DMA_DONE
:
488 ret
= epu_dma_done_irq(cx
, order
);
491 ret
= epu_debug_irq(cx
, order
);
494 CX18_WARN("Unknown CPU to EPU mailbox command %#0x\n",
501 CX18_WARN("Unknown APU to EPU mailbox command %#0x\n",
511 struct cx18_in_work_order
*alloc_in_work_order_irq(struct cx18
*cx
)
514 struct cx18_in_work_order
*order
= NULL
;
516 for (i
= 0; i
< CX18_MAX_IN_WORK_ORDERS
; i
++) {
518 * We only need "pending" atomic to inspect its contents,
519 * and need not do a check and set because:
520 * 1. Any work handler thread only clears "pending" and only
521 * on one, particular work order at a time, per handler thread.
522 * 2. "pending" is only set here, and we're serialized because
523 * we're called in an IRQ handler context.
525 if (atomic_read(&cx
->in_work_order
[i
].pending
) == 0) {
526 order
= &cx
->in_work_order
[i
];
527 atomic_set(&order
->pending
, 1);
534 void cx18_api_epu_cmd_irq(struct cx18
*cx
, int rpu
)
536 struct cx18_mailbox __iomem
*mb
;
537 struct cx18_mailbox
*order_mb
;
538 struct cx18_in_work_order
*order
;
544 mb
= &cx
->scb
->cpu2epu_mb
;
547 mb
= &cx
->scb
->apu2epu_mb
;
553 order
= alloc_in_work_order_irq(cx
);
555 CX18_WARN("Unable to find blank work order form to schedule incoming mailbox command processing\n");
561 order_mb
= &order
->mb
;
563 /* mb->cmd and mb->args[0] through mb->args[2] */
564 for (i
= 0; i
< 4; i
++)
565 (&order_mb
->cmd
)[i
] = cx18_readl(cx
, &mb
->cmd
+ i
);
567 /* mb->request and mb->ack. N.B. we want to read mb->ack last */
568 for (i
= 0; i
< 2; i
++)
569 (&order_mb
->request
)[i
] = cx18_readl(cx
, &mb
->request
+ i
);
571 if (order_mb
->request
== order_mb
->ack
) {
572 CX18_DEBUG_WARN("Possibly falling behind: %s self-ack'ed our incoming %s to EPU mailbox (sequence no. %u)\n",
573 rpu_str
[rpu
], rpu_str
[rpu
], order_mb
->request
);
574 if (cx18_debug
& CX18_DBGFLG_WARN
)
575 dump_mb(cx
, order_mb
, "incoming");
576 order
->flags
= CX18_F_EWO_MB_STALE_UPON_RECEIPT
;
580 * Individual EPU command processing is responsible for ack-ing
581 * a non-stale mailbox as soon as possible
583 submit
= epu_cmd_irq(cx
, order
);
585 queue_work(cx
->in_work_queue
, &order
->work
);
591 * Functions called from a non-interrupt, non work_queue context
594 static int cx18_api_call(struct cx18
*cx
, u32 cmd
, int args
, u32 data
[])
596 const struct cx18_api_info
*info
= find_api_info(cmd
);
597 u32 irq
, req
, ack
, err
;
598 struct cx18_mailbox __iomem
*mb
;
599 wait_queue_head_t
*waitq
;
600 struct mutex
*mb_lock
;
601 unsigned long int t0
, timeout
, ret
;
603 char argstr
[MAX_MB_ARGUMENTS
*11+1];
607 CX18_WARN("unknown cmd %x\n", cmd
);
611 if (cx18_debug
& CX18_DBGFLG_API
) { /* only call u32arr2hex if needed */
612 if (cmd
== CX18_CPU_DE_SET_MDL
) {
613 if (cx18_debug
& CX18_DBGFLG_HIGHVOL
)
614 CX18_DEBUG_HI_API("%s\tcmd %#010x args%s\n",
616 u32arr2hex(data
, args
, argstr
));
618 CX18_DEBUG_API("%s\tcmd %#010x args%s\n",
620 u32arr2hex(data
, args
, argstr
));
625 waitq
= &cx
->mb_apu_waitq
;
626 mb_lock
= &cx
->epu2apu_mb_lock
;
627 irq
= IRQ_EPU_TO_APU
;
628 mb
= &cx
->scb
->epu2apu_mb
;
631 waitq
= &cx
->mb_cpu_waitq
;
632 mb_lock
= &cx
->epu2cpu_mb_lock
;
633 irq
= IRQ_EPU_TO_CPU
;
634 mb
= &cx
->scb
->epu2cpu_mb
;
637 CX18_WARN("Unknown RPU (%d) for API call\n", info
->rpu
);
643 * Wait for an in-use mailbox to complete
645 * If the XPU is responding with Ack's, the mailbox shouldn't be in
646 * a busy state, since we serialize access to it on our end.
648 * If the wait for ack after sending a previous command was interrupted
649 * by a signal, we may get here and find a busy mailbox. After waiting,
650 * mark it "not busy" from our end, if the XPU hasn't ack'ed it still.
652 req
= cx18_readl(cx
, &mb
->request
);
653 timeout
= msecs_to_jiffies(10);
654 ret
= wait_event_timeout(*waitq
,
655 (ack
= cx18_readl(cx
, &mb
->ack
)) == req
,
658 /* waited long enough, make the mbox "not busy" from our end */
659 cx18_writel(cx
, req
, &mb
->ack
);
660 CX18_ERR("mbox was found stuck busy when setting up for %s; clearing busy and trying to proceed\n",
662 } else if (ret
!= timeout
)
663 CX18_DEBUG_API("waited %u msecs for busy mbox to be acked\n",
664 jiffies_to_msecs(timeout
-ret
));
666 /* Build the outgoing mailbox */
667 req
= ((req
& 0xfffffffe) == 0xfffffffe) ? 1 : req
+ 1;
669 cx18_writel(cx
, cmd
, &mb
->cmd
);
670 for (i
= 0; i
< args
; i
++)
671 cx18_writel(cx
, data
[i
], &mb
->args
[i
]);
672 cx18_writel(cx
, 0, &mb
->error
);
673 cx18_writel(cx
, req
, &mb
->request
);
674 cx18_writel(cx
, req
- 1, &mb
->ack
); /* ensure ack & req are distinct */
677 * Notify the XPU and wait for it to send an Ack back
679 timeout
= msecs_to_jiffies((info
->flags
& API_FAST
) ? 10 : 20);
681 CX18_DEBUG_HI_IRQ("sending interrupt SW1: %x to send %s\n",
684 /* So we don't miss the wakeup, prepare to wait before notifying fw */
685 prepare_to_wait(waitq
, &w
, TASK_UNINTERRUPTIBLE
);
686 cx18_write_reg_expect(cx
, irq
, SW1_INT_SET
, irq
, irq
);
689 ack
= cx18_readl(cx
, &mb
->ack
);
691 schedule_timeout(timeout
);
693 ack
= cx18_readl(cx
, &mb
->ack
);
698 finish_wait(waitq
, &w
);
701 mutex_unlock(mb_lock
);
702 if (ret
>= timeout
) {
704 CX18_DEBUG_WARN("sending %s timed out waiting %d msecs for RPU acknowledgment\n",
705 info
->name
, jiffies_to_msecs(ret
));
707 CX18_DEBUG_WARN("woken up before mailbox ack was ready after submitting %s to RPU. only waited %d msecs on req %u but awakened with unmatched ack %u\n",
709 jiffies_to_msecs(ret
),
716 CX18_DEBUG_WARN("failed to be awakened upon RPU acknowledgment sending %s; timed out waiting %d msecs\n",
717 info
->name
, jiffies_to_msecs(ret
));
719 CX18_DEBUG_HI_API("waited %u msecs for %s to be acked\n",
720 jiffies_to_msecs(ret
), info
->name
);
722 /* Collect data returned by the XPU */
723 for (i
= 0; i
< MAX_MB_ARGUMENTS
; i
++)
724 data
[i
] = cx18_readl(cx
, &mb
->args
[i
]);
725 err
= cx18_readl(cx
, &mb
->error
);
726 mutex_unlock(mb_lock
);
729 * Wait for XPU to perform extra actions for the caller in some cases.
730 * e.g. CX18_CPU_DE_RELEASE_MDL will cause the CPU to send all MDLs
731 * back in a burst shortly thereafter
733 if (info
->flags
& API_SLOW
)
734 cx18_msleep_timeout(300, 0);
737 CX18_DEBUG_API("mailbox error %08x for command %s\n", err
,
739 return err
? -EIO
: 0;
742 int cx18_api(struct cx18
*cx
, u32 cmd
, int args
, u32 data
[])
744 return cx18_api_call(cx
, cmd
, args
, data
);
747 static int cx18_set_filter_param(struct cx18_stream
*s
)
749 struct cx18
*cx
= s
->cx
;
753 mode
= (cx
->filter_mode
& 1) ? 2 : (cx
->spatial_strength
? 1 : 0);
754 ret
= cx18_vapi(cx
, CX18_CPU_SET_FILTER_PARAM
, 4,
755 s
->handle
, 1, mode
, cx
->spatial_strength
);
756 mode
= (cx
->filter_mode
& 2) ? 2 : (cx
->temporal_strength
? 1 : 0);
757 ret
= ret
? ret
: cx18_vapi(cx
, CX18_CPU_SET_FILTER_PARAM
, 4,
758 s
->handle
, 0, mode
, cx
->temporal_strength
);
759 ret
= ret
? ret
: cx18_vapi(cx
, CX18_CPU_SET_FILTER_PARAM
, 4,
760 s
->handle
, 2, cx
->filter_mode
>> 2, 0);
764 int cx18_api_func(void *priv
, u32 cmd
, int in
, int out
,
765 u32 data
[CX2341X_MBOX_MAX_DATA
])
767 struct cx18_stream
*s
= priv
;
768 struct cx18
*cx
= s
->cx
;
771 case CX2341X_ENC_SET_OUTPUT_PORT
:
773 case CX2341X_ENC_SET_FRAME_RATE
:
774 return cx18_vapi(cx
, CX18_CPU_SET_VIDEO_IN
, 6,
775 s
->handle
, 0, 0, 0, 0, data
[0]);
776 case CX2341X_ENC_SET_FRAME_SIZE
:
777 return cx18_vapi(cx
, CX18_CPU_SET_VIDEO_RESOLUTION
, 3,
778 s
->handle
, data
[1], data
[0]);
779 case CX2341X_ENC_SET_STREAM_TYPE
:
780 return cx18_vapi(cx
, CX18_CPU_SET_STREAM_OUTPUT_TYPE
, 2,
782 case CX2341X_ENC_SET_ASPECT_RATIO
:
783 return cx18_vapi(cx
, CX18_CPU_SET_ASPECT_RATIO
, 2,
786 case CX2341X_ENC_SET_GOP_PROPERTIES
:
787 return cx18_vapi(cx
, CX18_CPU_SET_GOP_STRUCTURE
, 3,
788 s
->handle
, data
[0], data
[1]);
789 case CX2341X_ENC_SET_GOP_CLOSURE
:
791 case CX2341X_ENC_SET_AUDIO_PROPERTIES
:
792 return cx18_vapi(cx
, CX18_CPU_SET_AUDIO_PARAMETERS
, 2,
794 case CX2341X_ENC_MUTE_AUDIO
:
795 return cx18_vapi(cx
, CX18_CPU_SET_AUDIO_MUTE
, 2,
797 case CX2341X_ENC_SET_BIT_RATE
:
798 return cx18_vapi(cx
, CX18_CPU_SET_VIDEO_RATE
, 5,
799 s
->handle
, data
[0], data
[1], data
[2], data
[3]);
800 case CX2341X_ENC_MUTE_VIDEO
:
801 return cx18_vapi(cx
, CX18_CPU_SET_VIDEO_MUTE
, 2,
803 case CX2341X_ENC_SET_FRAME_DROP_RATE
:
804 return cx18_vapi(cx
, CX18_CPU_SET_SKIP_INPUT_FRAME
, 2,
806 case CX2341X_ENC_MISC
:
807 return cx18_vapi(cx
, CX18_CPU_SET_MISC_PARAMETERS
, 4,
808 s
->handle
, data
[0], data
[1], data
[2]);
809 case CX2341X_ENC_SET_DNR_FILTER_MODE
:
810 cx
->filter_mode
= (data
[0] & 3) | (data
[1] << 2);
811 return cx18_set_filter_param(s
);
812 case CX2341X_ENC_SET_DNR_FILTER_PROPS
:
813 cx
->spatial_strength
= data
[0];
814 cx
->temporal_strength
= data
[1];
815 return cx18_set_filter_param(s
);
816 case CX2341X_ENC_SET_SPATIAL_FILTER_TYPE
:
817 return cx18_vapi(cx
, CX18_CPU_SET_SPATIAL_FILTER_TYPE
, 3,
818 s
->handle
, data
[0], data
[1]);
819 case CX2341X_ENC_SET_CORING_LEVELS
:
820 return cx18_vapi(cx
, CX18_CPU_SET_MEDIAN_CORING
, 5,
821 s
->handle
, data
[0], data
[1], data
[2], data
[3]);
823 CX18_WARN("Unknown cmd %x\n", cmd
);
827 int cx18_vapi_result(struct cx18
*cx
, u32 data
[MAX_MB_ARGUMENTS
],
828 u32 cmd
, int args
, ...)
834 for (i
= 0; i
< args
; i
++)
835 data
[i
] = va_arg(ap
, u32
);
837 return cx18_api(cx
, cmd
, args
, data
);
840 int cx18_vapi(struct cx18
*cx
, u32 cmd
, int args
, ...)
842 u32 data
[MAX_MB_ARGUMENTS
];
847 CX18_ERR("cx == NULL (cmd=%x)\n", cmd
);
850 if (args
> MAX_MB_ARGUMENTS
) {
851 CX18_ERR("args too big (cmd=%x)\n", cmd
);
852 args
= MAX_MB_ARGUMENTS
;
855 for (i
= 0; i
< args
; i
++)
856 data
[i
] = va_arg(ap
, u32
);
858 return cx18_api(cx
, cmd
, args
, data
);