Commit b9fde18c authored by Kuninori Morimoto's avatar Kuninori Morimoto Committed by Mark Brown

ASoC: fsi: Add fsi_dma_soft_push/pop function

Signed-off-by: default avatarKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: default avatarMark Brown <broonie@opensource.wolfsonmicro.com>
parent c8fe2574
...@@ -348,11 +348,59 @@ static int fsi_get_fifo_residue(struct fsi_priv *fsi, int is_play) ...@@ -348,11 +348,59 @@ static int fsi_get_fifo_residue(struct fsi_priv *fsi, int is_play)
return residue; return residue;
} }
/*
* dma function
*/
static u8 *fsi_dma_get_area(struct fsi_priv *fsi) static u8 *fsi_dma_get_area(struct fsi_priv *fsi)
{ {
return fsi->substream->runtime->dma_area + fsi->byte_offset; return fsi->substream->runtime->dma_area + fsi->byte_offset;
} }
static void fsi_dma_soft_push16(struct fsi_priv *fsi, int size)
{
u16 *start;
int i;
start = (u16 *)fsi_dma_get_area(fsi);
for (i = 0; i < size; i++)
fsi_reg_write(fsi, DODT, ((u32)*(start + i) << 8));
}
static void fsi_dma_soft_pop16(struct fsi_priv *fsi, int size)
{
u16 *start;
int i;
start = (u16 *)fsi_dma_get_area(fsi);
for (i = 0; i < size; i++)
*(start + i) = (u16)(fsi_reg_read(fsi, DIDT) >> 8);
}
static void fsi_dma_soft_push32(struct fsi_priv *fsi, int size)
{
u32 *start;
int i;
start = (u32 *)fsi_dma_get_area(fsi);
for (i = 0; i < size; i++)
fsi_reg_write(fsi, DODT, *(start + i));
}
static void fsi_dma_soft_pop32(struct fsi_priv *fsi, int size)
{
u32 *start;
int i;
start = (u32 *)fsi_dma_get_area(fsi);
for (i = 0; i < size; i++)
*(start + i) = fsi_reg_read(fsi, DIDT);
}
/* /*
* irq function * irq function
*/ */
...@@ -500,8 +548,7 @@ static int fsi_data_push(struct fsi_priv *fsi, int startup) ...@@ -500,8 +548,7 @@ static int fsi_data_push(struct fsi_priv *fsi, int startup)
int send; int send;
int fifo_free; int fifo_free;
int width; int width;
u8 *start; int over_period;
int i, over_period;
if (!fsi || if (!fsi ||
!fsi->substream || !fsi->substream ||
...@@ -538,17 +585,12 @@ static int fsi_data_push(struct fsi_priv *fsi, int startup) ...@@ -538,17 +585,12 @@ static int fsi_data_push(struct fsi_priv *fsi, int startup)
if (fifo_free < send) if (fifo_free < send)
send = fifo_free; send = fifo_free;
start = fsi_dma_get_area(fsi);
switch (width) { switch (width) {
case 2: case 2:
for (i = 0; i < send; i++) fsi_dma_soft_push16(fsi, send);
fsi_reg_write(fsi, DODT,
((u32)*((u16 *)start + i) << 8));
break; break;
case 4: case 4:
for (i = 0; i < send; i++) fsi_dma_soft_push32(fsi, send);
fsi_reg_write(fsi, DODT, *((u32 *)start + i));
break; break;
default: default:
return -EINVAL; return -EINVAL;
...@@ -583,8 +625,7 @@ static int fsi_data_pop(struct fsi_priv *fsi, int startup) ...@@ -583,8 +625,7 @@ static int fsi_data_pop(struct fsi_priv *fsi, int startup)
int free; int free;
int fifo_fill; int fifo_fill;
int width; int width;
u8 *start; int over_period;
int i, over_period;
if (!fsi || if (!fsi ||
!fsi->substream || !fsi->substream ||
...@@ -620,17 +661,12 @@ static int fsi_data_pop(struct fsi_priv *fsi, int startup) ...@@ -620,17 +661,12 @@ static int fsi_data_pop(struct fsi_priv *fsi, int startup)
if (free < fifo_fill) if (free < fifo_fill)
fifo_fill = free; fifo_fill = free;
start = fsi_dma_get_area(fsi);
switch (width) { switch (width) {
case 2: case 2:
for (i = 0; i < fifo_fill; i++) fsi_dma_soft_pop16(fsi, fifo_fill);
*((u16 *)start + i) =
(u16)(fsi_reg_read(fsi, DIDT) >> 8);
break; break;
case 4: case 4:
for (i = 0; i < fifo_fill; i++) fsi_dma_soft_pop32(fsi, fifo_fill);
*((u32 *)start + i) = fsi_reg_read(fsi, DIDT);
break; break;
default: default:
return -EINVAL; return -EINVAL;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment