Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
a056bef4
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看板
提交
a056bef4
编写于
2月 09, 2010
作者:
E
Eric Miao
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[ARM] pxa: introduce PXA_SSP_LEGACY for legacy SSP API
Signed-off-by:
N
Eric Miao
<
eric.y.miao@gmail.com
>
上级
98acdbe4
变更
4
显示空白变更内容
内联
并排
Showing
4 changed file
with
14 addition
and
0 deletion
+14
-0
arch/arm/mach-pxa/Kconfig
arch/arm/mach-pxa/Kconfig
+6
-0
arch/arm/mach-pxa/include/mach/ssp.h
arch/arm/mach-pxa/include/mach/ssp.h
+2
-0
arch/arm/mach-pxa/ssp.c
arch/arm/mach-pxa/ssp.c
+5
-0
sound/soc/pxa/Kconfig
sound/soc/pxa/Kconfig
+1
-0
未找到文件。
arch/arm/mach-pxa/Kconfig
浏览文件 @
a056bef4
...
...
@@ -458,6 +458,7 @@ config SHARPSL_PM
config CORGI_SSP_DEPRECATED
bool
select PXA_SSP
select PXA_SSP_LEGACY
help
This option will include corgi_ssp.c and corgi_lcd.c
that corgi_ts.c and other legacy drivers (corgi_bl.c
...
...
@@ -658,6 +659,11 @@ config PXA_SSP
help
Enable support for PXA2xx SSP ports
config PXA_SSP_LEGACY
bool
help
Support of legacy SSP API
config TOSA_BT
tristate "Control the state of built-in bluetooth chip on Sharp SL-6000"
depends on MACH_TOSA
...
...
arch/arm/mach-pxa/include/mach/ssp.h
浏览文件 @
a056bef4
...
...
@@ -46,6 +46,7 @@ struct ssp_device {
int
drcmr_tx
;
};
#ifdef CONFIG_PXA_SSP_LEGACY
/*
* SSP initialisation flags
*/
...
...
@@ -78,6 +79,7 @@ void ssp_restore_state(struct ssp_dev *dev, struct ssp_state *ssp);
int
ssp_init
(
struct
ssp_dev
*
dev
,
u32
port
,
u32
init_flags
);
int
ssp_config
(
struct
ssp_dev
*
dev
,
u32
mode
,
u32
flags
,
u32
psp_flags
,
u32
speed
);
void
ssp_exit
(
struct
ssp_dev
*
dev
);
#endif
/* CONFIG_PXA_SSP_LEGACY */
/**
* ssp_write_reg - Write to a SSP register
...
...
arch/arm/mach-pxa/ssp.c
浏览文件 @
a056bef4
...
...
@@ -35,6 +35,8 @@
#include <mach/ssp.h>
#include <mach/regs-ssp.h>
#ifdef CONFIG_PXA_SSP_LEGACY
#define TIMEOUT 100000
static
irqreturn_t
ssp_interrupt
(
int
irq
,
void
*
dev_id
)
...
...
@@ -303,6 +305,7 @@ void ssp_exit(struct ssp_dev *dev)
clk_disable
(
ssp
->
clk
);
ssp_free
(
ssp
);
}
#endif
/* CONFIG_PXA_SSP_LEGACY */
static
DEFINE_MUTEX
(
ssp_lock
);
static
LIST_HEAD
(
ssp_list
);
...
...
@@ -488,6 +491,7 @@ static void __exit pxa_ssp_exit(void)
arch_initcall
(
pxa_ssp_init
);
module_exit
(
pxa_ssp_exit
);
#ifdef CONFIG_PXA_SSP_LEGACY
EXPORT_SYMBOL
(
ssp_write_word
);
EXPORT_SYMBOL
(
ssp_read_word
);
EXPORT_SYMBOL
(
ssp_flush
);
...
...
@@ -498,6 +502,7 @@ EXPORT_SYMBOL(ssp_restore_state);
EXPORT_SYMBOL
(
ssp_init
);
EXPORT_SYMBOL
(
ssp_exit
);
EXPORT_SYMBOL
(
ssp_config
);
#endif
MODULE_DESCRIPTION
(
"PXA SSP driver"
);
MODULE_AUTHOR
(
"Liam Girdwood"
);
...
...
sound/soc/pxa/Kconfig
浏览文件 @
a056bef4
...
...
@@ -23,6 +23,7 @@ config SND_PXA2XX_SOC_I2S
config SND_PXA_SOC_SSP
tristate
select PXA_SSP_LEGACY
config SND_PXA2XX_SOC_CORGI
tristate "SoC Audio support for Sharp Zaurus SL-C7x0"
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录