Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
c5517b1e
K
Kernel
项目概览
openeuler
/
Kernel
1 年多 前同步成功
通知
8
Star
0
Fork
0
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
0
列表
看板
标记
里程碑
合并请求
0
DevOps
流水线
流水线任务
计划
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
K
Kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
0
Issue
0
列表
看板
标记
里程碑
合并请求
0
合并请求
0
Pages
DevOps
DevOps
流水线
流水线任务
计划
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
流水线任务
提交
Issue看板
提交
c5517b1e
编写于
2月 02, 2015
作者:
N
Nicolas Ferre
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'at91-3.19-fixes' into at91-3.20-soc
上级
eaa27f34
b8659752
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
22 addition
and
2 deletion
+22
-2
arch/arm/boot/dts/at91sam9263.dtsi
arch/arm/boot/dts/at91sam9263.dtsi
+2
-0
arch/arm/boot/dts/sama5d3xmb.dtsi
arch/arm/boot/dts/sama5d3xmb.dtsi
+1
-1
arch/arm/boot/dts/sama5d4.dtsi
arch/arm/boot/dts/sama5d4.dtsi
+1
-1
arch/arm/mach-at91/board-dt-sama5.c
arch/arm/mach-at91/board-dt-sama5.c
+18
-0
未找到文件。
arch/arm/boot/dts/at91sam9263.dtsi
浏览文件 @
c5517b1e
...
...
@@ -953,6 +953,8 @@
interrupts
=
<
26
IRQ_TYPE_LEVEL_HIGH
3
>;
pinctrl
-
names
=
"default"
;
pinctrl
-
0
=
<&
pinctrl_fb
>;
clocks
=
<&
lcd_clk
>,
<&
lcd_clk
>;
clock
-
names
=
"lcdc_clk"
,
"hclk"
;
status
=
"disabled"
;
};
...
...
arch/arm/boot/dts/sama5d3xmb.dtsi
浏览文件 @
c5517b1e
...
...
@@ -176,7 +176,7 @@
"Headphone Jack", "HPOUTR",
"IN2L", "Line In Jack",
"IN2R", "Line In Jack",
"M
ICBIAS", "IN1L
",
"M
ic", "MICBIAS
",
"IN1L", "Mic";
atmel,ssc-controller = <&ssc0>;
...
...
arch/arm/boot/dts/sama5d4.dtsi
浏览文件 @
c5517b1e
...
...
@@ -1008,7 +1008,7 @@
pit
:
timer
@
fc068630
{
compatible
=
"atmel,at91sam9260-pit"
;
reg
=
<
0xfc068630
0x
f
>;
reg
=
<
0xfc068630
0x
10
>;
interrupts
=
<
3
IRQ_TYPE_LEVEL_HIGH
5
>;
clocks
=
<&
h32ck
>;
};
...
...
arch/arm/mach-at91/board-dt-sama5.c
浏览文件 @
c5517b1e
...
...
@@ -17,6 +17,7 @@
#include <linux/of_platform.h>
#include <linux/phy.h>
#include <linux/clk-provider.h>
#include <linux/phy.h>
#include <asm/setup.h>
#include <asm/irq.h>
...
...
@@ -26,8 +27,25 @@
#include "generic.h"
static
int
ksz8081_phy_fixup
(
struct
phy_device
*
phy
)
{
int
value
;
value
=
phy_read
(
phy
,
0x16
);
value
&=
~
0x20
;
phy_write
(
phy
,
0x16
,
value
);
return
0
;
}
static
void
__init
sama5_dt_device_init
(
void
)
{
if
(
of_machine_is_compatible
(
"atmel,sama5d4ek"
)
&&
IS_ENABLED
(
CONFIG_PHYLIB
))
{
phy_register_fixup_for_id
(
"fc028000.etherne:00"
,
ksz8081_phy_fixup
);
}
of_platform_populate
(
NULL
,
of_default_bus_match_table
,
NULL
,
NULL
);
}
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录