Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
738384aa
cloud-kernel
项目概览
openanolis
/
cloud-kernel
1 年多 前同步成功
通知
160
Star
36
Fork
7
代码
文件
提交
分支
Tags
贡献者
分支图
Diff
Issue
10
列表
看板
标记
里程碑
合并请求
2
Wiki
0
Wiki
分析
仓库
DevOps
项目成员
Pages
cloud-kernel
项目概览
项目概览
详情
发布
仓库
仓库
文件
提交
分支
标签
贡献者
分支图
比较
Issue
10
Issue
10
列表
看板
标记
里程碑
合并请求
2
合并请求
2
Pages
分析
分析
仓库分析
DevOps
Wiki
0
Wiki
成员
成员
收起侧边栏
关闭侧边栏
动态
分支图
创建新Issue
提交
Issue看板
提交
738384aa
编写于
12月 13, 2011
作者:
A
Arnd Bergmann
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'imx-fixes-for-arnd' of
git://git.pengutronix.de/git/imx/linux-2.6
into fixes
上级
dc47ce90
847a2ee7
变更
6
隐藏空白更改
内联
并排
Showing
6 changed file
with
11 addition
and
5 deletion
+11
-5
arch/arm/mach-mx5/board-mx51_babbage.c
arch/arm/mach-mx5/board-mx51_babbage.c
+1
-1
arch/arm/mach-mx5/board-mx53_evk.c
arch/arm/mach-mx5/board-mx53_evk.c
+1
-1
arch/arm/mach-mx5/board-mx53_loco.c
arch/arm/mach-mx5/board-mx53_loco.c
+1
-1
arch/arm/mach-mx5/board-mx53_smd.c
arch/arm/mach-mx5/board-mx53_smd.c
+1
-1
arch/arm/plat-mxc/cpufreq.c
arch/arm/plat-mxc/cpufreq.c
+1
-0
arch/arm/plat-mxc/pwm.c
arch/arm/plat-mxc/pwm.c
+6
-1
未找到文件。
arch/arm/mach-mx5/board-mx51_babbage.c
浏览文件 @
738384aa
...
...
@@ -362,7 +362,7 @@ static void __init mx51_babbage_init(void)
{
iomux_v3_cfg_t
usbh1stp
=
MX51_PAD_USBH1_STP__USBH1_STP
;
iomux_v3_cfg_t
power_key
=
NEW_PAD_CTRL
(
MX51_PAD_EIM_A27__GPIO2_21
,
PAD_CTL_SRE_FAST
|
PAD_CTL_DSE_HIGH
|
PAD_CTL_PUS_100K_UP
);
PAD_CTL_SRE_FAST
|
PAD_CTL_DSE_HIGH
);
imx51_soc_init
();
...
...
arch/arm/mach-mx5/board-mx53_evk.c
浏览文件 @
738384aa
...
...
@@ -106,7 +106,7 @@ static inline void mx53_evk_fec_reset(void)
gpio_set_value
(
MX53_EVK_FEC_PHY_RST
,
1
);
}
static
struct
fec_platform_data
mx53_evk_fec_pdata
=
{
static
const
struct
fec_platform_data
mx53_evk_fec_pdata
__initconst
=
{
.
phy
=
PHY_INTERFACE_MODE_RMII
,
};
...
...
arch/arm/mach-mx5/board-mx53_loco.c
浏览文件 @
738384aa
...
...
@@ -242,7 +242,7 @@ static inline void mx53_loco_fec_reset(void)
gpio_set_value
(
LOCO_FEC_PHY_RST
,
1
);
}
static
struct
fec_platform_data
mx53_loco_fec_data
=
{
static
const
struct
fec_platform_data
mx53_loco_fec_data
__initconst
=
{
.
phy
=
PHY_INTERFACE_MODE_RMII
,
};
...
...
arch/arm/mach-mx5/board-mx53_smd.c
浏览文件 @
738384aa
...
...
@@ -104,7 +104,7 @@ static inline void mx53_smd_fec_reset(void)
gpio_set_value
(
SMD_FEC_PHY_RST
,
1
);
}
static
struct
fec_platform_data
mx53_smd_fec_data
=
{
static
const
struct
fec_platform_data
mx53_smd_fec_data
__initconst
=
{
.
phy
=
PHY_INTERFACE_MODE_RMII
,
};
...
...
arch/arm/plat-mxc/cpufreq.c
浏览文件 @
738384aa
...
...
@@ -17,6 +17,7 @@
* the CPU clock speed on the fly.
*/
#include <linux/module.h>
#include <linux/cpufreq.h>
#include <linux/clk.h>
#include <linux/err.h>
...
...
arch/arm/plat-mxc/pwm.c
浏览文件 @
738384aa
...
...
@@ -32,6 +32,9 @@
#define MX3_PWMSAR 0x0C
/* PWM Sample Register */
#define MX3_PWMPR 0x10
/* PWM Period Register */
#define MX3_PWMCR_PRESCALER(x) (((x - 1) & 0xFFF) << 4)
#define MX3_PWMCR_DOZEEN (1 << 24)
#define MX3_PWMCR_WAITEN (1 << 23)
#define MX3_PWMCR_DBGEN (1 << 22)
#define MX3_PWMCR_CLKSRC_IPG_HIGH (2 << 16)
#define MX3_PWMCR_CLKSRC_IPG (1 << 16)
#define MX3_PWMCR_EN (1 << 0)
...
...
@@ -77,7 +80,9 @@ int pwm_config(struct pwm_device *pwm, int duty_ns, int period_ns)
writel
(
duty_cycles
,
pwm
->
mmio_base
+
MX3_PWMSAR
);
writel
(
period_cycles
,
pwm
->
mmio_base
+
MX3_PWMPR
);
cr
=
MX3_PWMCR_PRESCALER
(
prescale
)
|
MX3_PWMCR_EN
;
cr
=
MX3_PWMCR_PRESCALER
(
prescale
)
|
MX3_PWMCR_DOZEEN
|
MX3_PWMCR_WAITEN
|
MX3_PWMCR_DBGEN
|
MX3_PWMCR_EN
;
if
(
cpu_is_mx25
())
cr
|=
MX3_PWMCR_CLKSRC_IPG
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录