Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openeuler
Kernel
提交
2ff9870c
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看板
提交
2ff9870c
编写于
1月 28, 2011
作者:
D
David Brown
浏览文件
操作
浏览文件
下载
差异文件
Merge branch 'msm-core' into for-next
* msm-core: msm: serial: Add MSM8960 serial support
上级
ecca8194
d056fca3
变更
4
隐藏空白更改
内联
并排
Showing
4 changed file
with
111 addition
and
1 deletion
+111
-1
arch/arm/mach-msm/Makefile
arch/arm/mach-msm/Makefile
+1
-1
arch/arm/mach-msm/board-msm8960.c
arch/arm/mach-msm/board-msm8960.c
+22
-0
arch/arm/mach-msm/devices-msm8960.c
arch/arm/mach-msm/devices-msm8960.c
+85
-0
arch/arm/mach-msm/devices.h
arch/arm/mach-msm/devices.h
+3
-0
未找到文件。
arch/arm/mach-msm/Makefile
浏览文件 @
2ff9870c
...
...
@@ -27,7 +27,7 @@ obj-$(CONFIG_MACH_HALIBUT) += board-halibut.o devices-msm7x00.o
obj-$(CONFIG_ARCH_MSM7X30)
+=
board-msm7x30.o devices-msm7x30.o
obj-$(CONFIG_ARCH_QSD8X50)
+=
board-qsd8x50.o devices-qsd8x50.o
obj-$(CONFIG_ARCH_MSM8X60)
+=
board-msm8x60.o
obj-$(CONFIG_ARCH_MSM8960)
+=
board-msm8960.o
obj-$(CONFIG_ARCH_MSM8960)
+=
board-msm8960.o
devices-msm8960.o
obj-$(CONFIG_ARCH_MSM7X30)
+=
gpiomux-v1.o gpiomux.o
obj-$(CONFIG_ARCH_QSD8X50)
+=
gpiomux-8x50.o gpiomux-v1.o gpiomux.o
...
...
arch/arm/mach-msm/board-msm8960.c
浏览文件 @
2ff9870c
...
...
@@ -27,6 +27,8 @@
#include <mach/board.h>
#include <mach/msm_iomap.h>
#include "devices.h"
static
void
__init
msm8960_map_io
(
void
)
{
msm_map_msm8960_io
();
...
...
@@ -54,15 +56,35 @@ static void __init msm8960_init_irq(void)
}
}
static
struct
platform_device
*
sim_devices
[]
__initdata
=
{
&
msm8960_device_uart_gsbi2
,
};
static
struct
platform_device
*
rumi3_devices
[]
__initdata
=
{
&
msm8960_device_uart_gsbi5
,
};
static
void
__init
msm8960_sim_init
(
void
)
{
platform_add_devices
(
sim_devices
,
ARRAY_SIZE
(
sim_devices
));
}
static
void
__init
msm8960_rumi3_init
(
void
)
{
platform_add_devices
(
rumi3_devices
,
ARRAY_SIZE
(
rumi3_devices
));
}
MACHINE_START
(
MSM8960_SIM
,
"QCT MSM8960 SIMULATOR"
)
.
map_io
=
msm8960_map_io
,
.
init_irq
=
msm8960_init_irq
,
.
timer
=
&
msm_timer
,
.
init_machine
=
msm8960_sim_init
,
MACHINE_END
MACHINE_START
(
MSM8960_RUMI3
,
"QCT MSM8960 RUMI3"
)
.
map_io
=
msm8960_map_io
,
.
init_irq
=
msm8960_init_irq
,
.
timer
=
&
msm_timer
,
.
init_machine
=
msm8960_rumi3_init
,
MACHINE_END
arch/arm/mach-msm/devices-msm8960.c
0 → 100644
浏览文件 @
2ff9870c
/* Copyright (c) 2011, Code Aurora Forum. All rights reserved.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 and
* only version 2 as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
* 02110-1301, USA.
*/
#include <linux/kernel.h>
#include <linux/platform_device.h>
#include <linux/dma-mapping.h>
#include <mach/irqs-8960.h>
#include <mach/board.h>
#include "devices.h"
#define MSM_GSBI2_PHYS 0x16100000
#define MSM_UART2DM_PHYS (MSM_GSBI2_PHYS + 0x40000)
#define MSM_GSBI5_PHYS 0x16400000
#define MSM_UART5DM_PHYS (MSM_GSBI5_PHYS + 0x40000)
static
struct
resource
resources_uart_gsbi2
[]
=
{
{
.
start
=
GSBI2_UARTDM_IRQ
,
.
end
=
GSBI2_UARTDM_IRQ
,
.
flags
=
IORESOURCE_IRQ
,
},
{
.
start
=
MSM_UART2DM_PHYS
,
.
end
=
MSM_UART2DM_PHYS
+
PAGE_SIZE
-
1
,
.
name
=
"uart_resource"
,
.
flags
=
IORESOURCE_MEM
,
},
{
.
start
=
MSM_GSBI2_PHYS
,
.
end
=
MSM_GSBI2_PHYS
+
PAGE_SIZE
-
1
,
.
name
=
"gsbi_resource"
,
.
flags
=
IORESOURCE_MEM
,
},
};
struct
platform_device
msm8960_device_uart_gsbi2
=
{
.
name
=
"msm_serial"
,
.
id
=
0
,
.
num_resources
=
ARRAY_SIZE
(
resources_uart_gsbi2
),
.
resource
=
resources_uart_gsbi2
,
};
static
struct
resource
resources_uart_gsbi5
[]
=
{
{
.
start
=
GSBI5_UARTDM_IRQ
,
.
end
=
GSBI5_UARTDM_IRQ
,
.
flags
=
IORESOURCE_IRQ
,
},
{
.
start
=
MSM_UART5DM_PHYS
,
.
end
=
MSM_UART5DM_PHYS
+
PAGE_SIZE
-
1
,
.
name
=
"uart_resource"
,
.
flags
=
IORESOURCE_MEM
,
},
{
.
start
=
MSM_GSBI5_PHYS
,
.
end
=
MSM_GSBI5_PHYS
+
PAGE_SIZE
-
1
,
.
name
=
"gsbi_resource"
,
.
flags
=
IORESOURCE_MEM
,
},
};
struct
platform_device
msm8960_device_uart_gsbi5
=
{
.
name
=
"msm_serial"
,
.
id
=
0
,
.
num_resources
=
ARRAY_SIZE
(
resources_uart_gsbi5
),
.
resource
=
resources_uart_gsbi5
,
};
arch/arm/mach-msm/devices.h
浏览文件 @
2ff9870c
...
...
@@ -22,6 +22,9 @@ extern struct platform_device msm_device_uart1;
extern
struct
platform_device
msm_device_uart2
;
extern
struct
platform_device
msm_device_uart3
;
extern
struct
platform_device
msm8960_device_uart_gsbi2
;
extern
struct
platform_device
msm8960_device_uart_gsbi5
;
extern
struct
platform_device
msm_device_sdc1
;
extern
struct
platform_device
msm_device_sdc2
;
extern
struct
platform_device
msm_device_sdc3
;
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录