Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
f9892a52
R
raspberrypi-kernel
项目概览
openeuler
/
raspberrypi-kernel
通知
13
Star
1
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
R
raspberrypi-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
f9892a52
编写于
9月 10, 2009
作者:
T
Takashi Iwai
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'topic/dma-sgbuf' into for-linus
* topic/dma-sgbuf: ALSA: Fix SG-buffer DMA with non-coherent architectures
上级
6c5cb93b
cc6a8acd
变更
6
显示空白变更内容
内联
并排
Showing
6 changed file
with
40 addition
and
1 deletion
+40
-1
include/sound/memalloc.h
include/sound/memalloc.h
+6
-0
include/sound/pcm.h
include/sound/pcm.h
+23
-0
sound/core/Kconfig
sound/core/Kconfig
+4
-0
sound/core/Makefile
sound/core/Makefile
+1
-1
sound/core/memalloc.c
sound/core/memalloc.c
+4
-0
sound/core/pcm_memory.c
sound/core/pcm_memory.c
+2
-0
未找到文件。
include/sound/memalloc.h
浏览文件 @
f9892a52
...
...
@@ -47,7 +47,11 @@ struct snd_dma_device {
#define SNDRV_DMA_TYPE_UNKNOWN 0
/* not defined */
#define SNDRV_DMA_TYPE_CONTINUOUS 1
/* continuous no-DMA memory */
#define SNDRV_DMA_TYPE_DEV 2
/* generic device continuous */
#ifdef CONFIG_SND_DMA_SGBUF
#define SNDRV_DMA_TYPE_DEV_SG 3
/* generic device SG-buffer */
#else
#define SNDRV_DMA_TYPE_DEV_SG SNDRV_DMA_TYPE_DEV
/* no SG-buf support */
#endif
/*
* info for buffer allocation
...
...
@@ -60,6 +64,7 @@ struct snd_dma_buffer {
void
*
private_data
;
/* private for allocator; don't touch */
};
#ifdef CONFIG_SND_DMA_SGBUF
/*
* Scatter-Gather generic device pages
*/
...
...
@@ -107,6 +112,7 @@ static inline void *snd_sgbuf_get_ptr(struct snd_sg_buf *sgbuf, size_t offset)
{
return
sgbuf
->
table
[
offset
>>
PAGE_SHIFT
].
buf
+
offset
%
PAGE_SIZE
;
}
#endif
/* CONFIG_SND_DMA_SGBUF */
/* allocate/release a buffer */
int
snd_dma_alloc_pages
(
int
type
,
struct
device
*
dev
,
size_t
size
,
...
...
include/sound/pcm.h
浏览文件 @
f9892a52
...
...
@@ -902,6 +902,7 @@ int snd_pcm_lib_preallocate_pages_for_all(struct snd_pcm *pcm,
int
snd_pcm_lib_malloc_pages
(
struct
snd_pcm_substream
*
substream
,
size_t
size
);
int
snd_pcm_lib_free_pages
(
struct
snd_pcm_substream
*
substream
);
#ifdef CONFIG_SND_DMA_SGBUF
/*
* SG-buffer handling
*/
...
...
@@ -927,6 +928,28 @@ struct page *snd_pcm_sgbuf_ops_page(struct snd_pcm_substream *substream,
unsigned
int
snd_pcm_sgbuf_get_chunk_size
(
struct
snd_pcm_substream
*
substream
,
unsigned
int
ofs
,
unsigned
int
size
);
#else
/* !SND_DMA_SGBUF */
/*
* fake using a continuous buffer
*/
static
inline
dma_addr_t
snd_pcm_sgbuf_get_addr
(
struct
snd_pcm_substream
*
substream
,
unsigned
int
ofs
)
{
return
substream
->
runtime
->
dma_addr
+
ofs
;
}
static
inline
void
*
snd_pcm_sgbuf_get_ptr
(
struct
snd_pcm_substream
*
substream
,
unsigned
int
ofs
)
{
return
substream
->
runtime
->
dma_area
+
ofs
;
}
#define snd_pcm_sgbuf_ops_page NULL
#define snd_pcm_sgbuf_get_chunk_size(subs, ofs, size) (size)
#endif
/* SND_DMA_SGBUF */
/* handle mmap counter - PCM mmap callback should handle this counter properly */
static
inline
void
snd_pcm_mmap_data_open
(
struct
vm_area_struct
*
area
)
{
...
...
sound/core/Kconfig
浏览文件 @
f9892a52
...
...
@@ -206,4 +206,8 @@ config SND_PCM_XRUN_DEBUG
config SND_VMASTER
bool
config SND_DMA_SGBUF
def_bool y
depends on X86
source "sound/core/seq/Kconfig"
sound/core/Makefile
浏览文件 @
f9892a52
...
...
@@ -13,7 +13,7 @@ snd-pcm-objs := pcm.o pcm_native.o pcm_lib.o pcm_timer.o pcm_misc.o \
pcm_memory.o
snd-page-alloc-y
:=
memalloc.o
snd-page-alloc-$(CONFIG_
HAS_DMA
)
+=
sgbuf.o
snd-page-alloc-$(CONFIG_
SND_DMA_SGBUF
)
+=
sgbuf.o
snd-rawmidi-objs
:=
rawmidi.o
snd-timer-objs
:=
timer.o
...
...
sound/core/memalloc.c
浏览文件 @
f9892a52
...
...
@@ -199,6 +199,8 @@ int snd_dma_alloc_pages(int type, struct device *device, size_t size,
case
SNDRV_DMA_TYPE_DEV
:
dmab
->
area
=
snd_malloc_dev_pages
(
device
,
size
,
&
dmab
->
addr
);
break
;
#endif
#ifdef CONFIG_SND_DMA_SGBUF
case
SNDRV_DMA_TYPE_DEV_SG
:
snd_malloc_sgbuf_pages
(
device
,
size
,
dmab
,
NULL
);
break
;
...
...
@@ -269,6 +271,8 @@ void snd_dma_free_pages(struct snd_dma_buffer *dmab)
case
SNDRV_DMA_TYPE_DEV
:
snd_free_dev_pages
(
dmab
->
dev
.
dev
,
dmab
->
bytes
,
dmab
->
area
,
dmab
->
addr
);
break
;
#endif
#ifdef CONFIG_SND_DMA_SGBUF
case
SNDRV_DMA_TYPE_DEV_SG
:
snd_free_sgbuf_pages
(
dmab
);
break
;
...
...
sound/core/pcm_memory.c
浏览文件 @
f9892a52
...
...
@@ -304,6 +304,7 @@ int snd_pcm_lib_preallocate_pages_for_all(struct snd_pcm *pcm,
EXPORT_SYMBOL
(
snd_pcm_lib_preallocate_pages_for_all
);
#ifdef CONFIG_SND_DMA_SGBUF
/**
* snd_pcm_sgbuf_ops_page - get the page struct at the given offset
* @substream: the pcm substream instance
...
...
@@ -349,6 +350,7 @@ unsigned int snd_pcm_sgbuf_get_chunk_size(struct snd_pcm_substream *substream,
return
size
;
}
EXPORT_SYMBOL
(
snd_pcm_sgbuf_get_chunk_size
);
#endif
/* CONFIG_SND_DMA_SGBUF */
/**
* snd_pcm_lib_malloc_pages - allocate the DMA buffer
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录