misc: fastrpc: make sure memory read and writes are visible
dma_alloc_coherent buffers could have writes queued in store buffers so
commit them before sending buffer to DSP using correct dma barriers.
Same with vice-versa.
Fixes: c68cfb718c
("misc: fastrpc: Add support for context Invoke method")
Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
This commit is contained in:
parent
b49f6d83e2
commit
415a0729bd
|
@ -792,6 +792,9 @@ static int fastrpc_internal_invoke(struct fastrpc_user *fl, u32 kernel,
|
||||||
if (err)
|
if (err)
|
||||||
goto bail;
|
goto bail;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
/* make sure that all CPU memory writes are seen by DSP */
|
||||||
|
dma_wmb();
|
||||||
/* Send invoke buffer to remote dsp */
|
/* Send invoke buffer to remote dsp */
|
||||||
err = fastrpc_invoke_send(fl->sctx, ctx, kernel, handle);
|
err = fastrpc_invoke_send(fl->sctx, ctx, kernel, handle);
|
||||||
if (err)
|
if (err)
|
||||||
|
@ -808,6 +811,8 @@ static int fastrpc_internal_invoke(struct fastrpc_user *fl, u32 kernel,
|
||||||
goto bail;
|
goto bail;
|
||||||
|
|
||||||
if (ctx->nscalars) {
|
if (ctx->nscalars) {
|
||||||
|
/* make sure that all memory writes by DSP are seen by CPU */
|
||||||
|
dma_rmb();
|
||||||
/* populate all the output buffers with results */
|
/* populate all the output buffers with results */
|
||||||
err = fastrpc_put_args(ctx, kernel);
|
err = fastrpc_put_args(ctx, kernel);
|
||||||
if (err)
|
if (err)
|
||||||
|
|
Loading…
Reference in New Issue