diff options
author | Sangbeom Kim <sbkim73@samsung.com> | 2011-07-20 04:07:13 -0400 |
---|---|---|
committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2011-08-11 20:48:26 -0400 |
commit | f09aecd50f39d35372e551491d9f36ff0f51ee4d (patch) | |
tree | 458ad2831b3792d9f56a70bb1a9930acf1c1da14 /sound/soc/samsung/idma.h | |
parent | feb00dceb5af57ce34514ce66096b32d133ded3d (diff) |
ASoC: SAMSUNG: Add I2S0 internal dma driver
I2S in Exynos4 and S5PC110(S5PV210) has a internal dma.
It can be used low power audio mode and 2nd channel transfer.
This patch can support idma.
[Reapplied after dependencies propagated through in 3.1-rc1. --broonie]
Signed-off-by: Sangbeom Kim <sbkim73@samsung.com>
Acked-by: Jassi Brar <jassisinghbrar@gmail.com>
Acked-by: Liam Girdwood <lrg@ti.com>
Acked-by: Jassi Brar <jassisinghbrar@gmail.com>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
Diffstat (limited to 'sound/soc/samsung/idma.h')
-rw-r--r-- | sound/soc/samsung/idma.h | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/sound/soc/samsung/idma.h b/sound/soc/samsung/idma.h new file mode 100644 index 000000000000..48273216166e --- /dev/null +++ b/sound/soc/samsung/idma.h | |||
@@ -0,0 +1,26 @@ | |||
1 | /* | ||
2 | * sound/soc/samsung/idma.h | ||
3 | * | ||
4 | * Copyright (c) 2011 Samsung Electronics Co., Ltd | ||
5 | * http://www.samsung.com | ||
6 | * | ||
7 | * This program is free software; you can redistribute it and/or modify it | ||
8 | * under the terms of the GNU General Public License as published by the | ||
9 | * Free Software Foundation; either version 2 of the License, or (at your | ||
10 | * option) any later version. | ||
11 | * | ||
12 | */ | ||
13 | |||
14 | #ifndef __SND_SOC_SAMSUNG_IDMA_H_ | ||
15 | #define __SND_SOC_SAMSUNG_IDMA_H_ | ||
16 | |||
17 | extern void idma_reg_addr_init(void *regs, dma_addr_t addr); | ||
18 | |||
19 | /* dma_state */ | ||
20 | #define LPAM_DMA_STOP 0 | ||
21 | #define LPAM_DMA_START 1 | ||
22 | |||
23 | #define MAX_IDMA_PERIOD (128 * 1024) | ||
24 | #define MAX_IDMA_BUFFER (160 * 1024) | ||
25 | |||
26 | #endif /* __SND_SOC_SAMSUNG_IDMA_H_ */ | ||