Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
raspberrypi-kernel
提交
2dbe7f2c
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看板
提交
2dbe7f2c
编写于
7月 24, 2013
作者:
L
Laurent Pinchart
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
sh-pfc: r8a7790: Add SCIF2 pin groups and functions
Signed-off-by:
N
Laurent Pinchart
<
laurent.pinchart+renesas@ideasonboard.com
>
上级
4f47cc5e
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
32 addition
and
0 deletion
+32
-0
drivers/pinctrl/sh-pfc/pfc-r8a7790.c
drivers/pinctrl/sh-pfc/pfc-r8a7790.c
+32
-0
未找到文件。
drivers/pinctrl/sh-pfc/pfc-r8a7790.c
浏览文件 @
2dbe7f2c
...
@@ -2311,6 +2311,28 @@ static const unsigned int scif1_clk_e_pins[] = {
...
@@ -2311,6 +2311,28 @@ static const unsigned int scif1_clk_e_pins[] = {
static
const
unsigned
int
scif1_clk_e_mux
[]
=
{
static
const
unsigned
int
scif1_clk_e_mux
[]
=
{
SCK1_E_MARK
,
SCK1_E_MARK
,
};
};
/* - SCIF2 ------------------------------------------------------------------ */
static
const
unsigned
int
scif2_data_pins
[]
=
{
/* RX, TX */
RCAR_GP_PIN
(
5
,
6
),
RCAR_GP_PIN
(
5
,
5
),
};
static
const
unsigned
int
scif2_data_mux
[]
=
{
RX2_MARK
,
TX2_MARK
,
};
static
const
unsigned
int
scif2_clk_pins
[]
=
{
/* SCK */
RCAR_GP_PIN
(
5
,
4
),
};
static
const
unsigned
int
scif2_clk_mux
[]
=
{
SCK2_MARK
,
};
static
const
unsigned
int
scif2_data_b_pins
[]
=
{
/* RX, TX */
RCAR_GP_PIN
(
0
,
24
),
RCAR_GP_PIN
(
0
,
25
),
};
static
const
unsigned
int
scif2_data_b_mux
[]
=
{
RX2_B_MARK
,
TX2_B_MARK
,
};
/* - SCIFA0 ----------------------------------------------------------------- */
/* - SCIFA0 ----------------------------------------------------------------- */
static
const
unsigned
int
scifa0_data_pins
[]
=
{
static
const
unsigned
int
scifa0_data_pins
[]
=
{
/* RXD, TXD */
/* RXD, TXD */
...
@@ -2921,6 +2943,9 @@ static const struct sh_pfc_pin_group pinmux_groups[] = {
...
@@ -2921,6 +2943,9 @@ static const struct sh_pfc_pin_group pinmux_groups[] = {
SH_PFC_PIN_GROUP
(
scif1_clk_d
),
SH_PFC_PIN_GROUP
(
scif1_clk_d
),
SH_PFC_PIN_GROUP
(
scif1_data_e
),
SH_PFC_PIN_GROUP
(
scif1_data_e
),
SH_PFC_PIN_GROUP
(
scif1_clk_e
),
SH_PFC_PIN_GROUP
(
scif1_clk_e
),
SH_PFC_PIN_GROUP
(
scif2_data
),
SH_PFC_PIN_GROUP
(
scif2_clk
),
SH_PFC_PIN_GROUP
(
scif2_data_b
),
SH_PFC_PIN_GROUP
(
scifa0_data
),
SH_PFC_PIN_GROUP
(
scifa0_data
),
SH_PFC_PIN_GROUP
(
scifa0_clk
),
SH_PFC_PIN_GROUP
(
scifa0_clk
),
SH_PFC_PIN_GROUP
(
scifa0_ctrl
),
SH_PFC_PIN_GROUP
(
scifa0_ctrl
),
...
@@ -3106,6 +3131,12 @@ static const char * const scif1_groups[] = {
...
@@ -3106,6 +3131,12 @@ static const char * const scif1_groups[] = {
"scif1_clk_e"
,
"scif1_clk_e"
,
};
};
static
const
char
*
const
scif2_groups
[]
=
{
"scif2_data"
,
"scif2_clk"
,
"scif2_data_b"
,
};
static
const
char
*
const
scifa0_groups
[]
=
{
static
const
char
*
const
scifa0_groups
[]
=
{
"scifa0_data"
,
"scifa0_data"
,
"scifa0_clk"
,
"scifa0_clk"
,
...
@@ -3227,6 +3258,7 @@ static const struct sh_pfc_function pinmux_functions[] = {
...
@@ -3227,6 +3258,7 @@ static const struct sh_pfc_function pinmux_functions[] = {
SH_PFC_FUNCTION
(
msiof3
),
SH_PFC_FUNCTION
(
msiof3
),
SH_PFC_FUNCTION
(
scif0
),
SH_PFC_FUNCTION
(
scif0
),
SH_PFC_FUNCTION
(
scif1
),
SH_PFC_FUNCTION
(
scif1
),
SH_PFC_FUNCTION
(
scif2
),
SH_PFC_FUNCTION
(
scifa0
),
SH_PFC_FUNCTION
(
scifa0
),
SH_PFC_FUNCTION
(
scifa1
),
SH_PFC_FUNCTION
(
scifa1
),
SH_PFC_FUNCTION
(
scifa2
),
SH_PFC_FUNCTION
(
scifa2
),
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录