Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
a4e9a65a
cloud-kernel
项目概览
openanolis
/
cloud-kernel
大约 1 年 前同步成功
通知
158
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看板
提交
a4e9a65a
编写于
1月 28, 2009
作者:
S
Sascha Hauer
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
[ARM] PCM038 board: Add I2C support
Signed-off-by:
N
Sascha Hauer
<
s.hauer@pengutronix.de
>
上级
c5d4dbff
变更
1
隐藏空白更改
内联
并排
Showing
1 changed file
with
59 addition
and
0 deletion
+59
-0
arch/arm/mach-mx2/pcm038.c
arch/arm/mach-mx2/pcm038.c
+59
-0
未找到文件。
arch/arm/mach-mx2/pcm038.c
浏览文件 @
a4e9a65a
...
...
@@ -21,11 +21,17 @@
#include <linux/mtd/physmap.h>
#include <linux/mtd/plat-ram.h>
#include <linux/io.h>
#include <linux/i2c.h>
#include <linux/i2c/at24.h>
#include <asm/mach/arch.h>
#include <asm/mach-types.h>
#include <mach/common.h>
#include <mach/hardware.h>
#include <mach/iomux.h>
#ifdef CONFIG_I2C_IMX
#include <mach/i2c.h>
#endif
#include <asm/mach/time.h>
#include <mach/imx-uart.h>
#include <mach/board-pcm038.h>
...
...
@@ -204,6 +210,51 @@ static void __init pcm038_init_sram(void)
__raw_writel
(
0x22220a00
,
CSCR_A
(
1
));
}
#ifdef CONFIG_I2C_IMX
static
int
mxc_i2c1_pins
[]
=
{
PC5_PF_I2C2_SDA
,
PC6_PF_I2C2_SCL
};
static
int
pcm038_i2c_1_init
(
struct
device
*
dev
)
{
return
mxc_gpio_setup_multiple_pins
(
mxc_i2c1_pins
,
ARRAY_SIZE
(
mxc_i2c1_pins
),
"I2C1"
);
}
static
void
pcm038_i2c_1_exit
(
struct
device
*
dev
)
{
mxc_gpio_release_multiple_pins
(
mxc_i2c1_pins
,
ARRAY_SIZE
(
mxc_i2c1_pins
));
}
static
struct
imxi2c_platform_data
pcm038_i2c_1_data
=
{
.
bitrate
=
100000
,
.
init
=
pcm038_i2c_1_init
,
.
exit
=
pcm038_i2c_1_exit
,
};
static
struct
at24_platform_data
board_eeprom
=
{
.
byte_len
=
4096
,
.
page_size
=
32
,
.
flags
=
AT24_FLAG_ADDR16
,
};
static
struct
i2c_board_info
pcm038_i2c_devices
[]
=
{
[
0
]
=
{
I2C_BOARD_INFO
(
"at24"
,
0x52
),
/* E0=0, E1=1, E2=0 */
.
platform_data
=
&
board_eeprom
,
},
[
1
]
=
{
I2C_BOARD_INFO
(
"rtc-pcf8563"
,
0x51
),
.
type
=
"pcf8563"
},
[
2
]
=
{
I2C_BOARD_INFO
(
"lm75"
,
0x4a
),
.
type
=
"lm75"
}
};
#endif
static
void
__init
pcm038_init
(
void
)
{
gpio_fec_active
();
...
...
@@ -216,6 +267,14 @@ static void __init pcm038_init(void)
mxc_gpio_mode
(
PE16_AF_OWIRE
);
mxc_register_device
(
&
mxc_nand_device
,
&
pcm038_nand_board_info
);
#ifdef CONFIG_I2C_IMX
/* only the i2c master 1 is used on this CPU card */
i2c_register_board_info
(
1
,
pcm038_i2c_devices
,
ARRAY_SIZE
(
pcm038_i2c_devices
));
mxc_register_device
(
&
mxc_i2c_device1
,
&
pcm038_i2c_1_data
);
#endif
platform_add_devices
(
platform_devices
,
ARRAY_SIZE
(
platform_devices
));
#ifdef CONFIG_MACH_PCM970_BASEBOARD
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录