Skip to content
体验新版
项目
组织
正在加载...
登录
切换导航
打开侧边栏
openanolis
cloud-kernel
提交
bd455ed3
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看板
提交
bd455ed3
编写于
11月 09, 2010
作者:
U
Uwe Kleine-König
浏览文件
操作
浏览文件
下载
电子邮件补丁
差异文件
ARM: imx: dynamically allocate fsl-usb2-udc devices
Signed-off-by:
N
Uwe Kleine-König
<
u.kleine-koenig@pengutronix.de
>
上级
2eb42d5c
变更
10
隐藏空白更改
内联
并排
Showing
10 changed file
with
64 addition
and
35 deletion
+64
-35
arch/arm/mach-imx/Kconfig
arch/arm/mach-imx/Kconfig
+2
-0
arch/arm/mach-imx/devices-imx27.h
arch/arm/mach-imx/devices-imx27.h
+4
-0
arch/arm/mach-imx/devices.c
arch/arm/mach-imx/devices.c
+0
-28
arch/arm/mach-imx/devices.h
arch/arm/mach-imx/devices.h
+0
-1
arch/arm/mach-imx/mach-cpuimx27.c
arch/arm/mach-imx/mach-cpuimx27.c
+2
-3
arch/arm/mach-imx/mach-pca100.c
arch/arm/mach-imx/mach-pca100.c
+2
-3
arch/arm/plat-mxc/devices/Kconfig
arch/arm/plat-mxc/devices/Kconfig
+3
-0
arch/arm/plat-mxc/devices/Makefile
arch/arm/plat-mxc/devices/Makefile
+1
-0
arch/arm/plat-mxc/devices/platform-fsl-usb2-udc.c
arch/arm/plat-mxc/devices/platform-fsl-usb2-udc.c
+41
-0
arch/arm/plat-mxc/include/mach/devices-common.h
arch/arm/plat-mxc/include/mach/devices-common.h
+9
-0
未找到文件。
arch/arm/mach-imx/Kconfig
浏览文件 @
bd455ed3
...
...
@@ -128,6 +128,7 @@ endchoice
config MACH_CPUIMX27
bool "Eukrea CPUIMX27 module"
select IMX_HAVE_PLATFORM_FSL_USB2_UDC
select IMX_HAVE_PLATFORM_IMX2_WDT
select IMX_HAVE_PLATFORM_IMX_I2C
select IMX_HAVE_PLATFORM_IMX_UART
...
...
@@ -200,6 +201,7 @@ config MACH_IMX27LITE
config MACH_PCA100
bool "Phytec phyCARD-s (pca100)"
select IMX_HAVE_PLATFORM_FSL_USB2_UDC
select IMX_HAVE_PLATFORM_IMX2_WDT
select IMX_HAVE_PLATFORM_IMX_FB
select IMX_HAVE_PLATFORM_IMX_I2C
...
...
arch/arm/mach-imx/devices-imx27.h
浏览文件 @
bd455ed3
...
...
@@ -13,6 +13,10 @@ extern const struct imx_fec_data imx27_fec_data __initconst;
#define imx27_add_fec(pdata) \
imx_add_fec(&imx27_fec_data, pdata)
extern
const
struct
imx_fsl_usb2_udc_data
imx27_fsl_usb2_udc_data
__initconst
;
#define imx27_add_fsl_usb2_udc(pdata) \
imx_add_fsl_usb2_udc(&imx27_fsl_usb2_udc_data, pdata)
extern
const
struct
imx_imx2_wdt_data
imx27_imx2_wdt_data
__initconst
;
#define imx27_add_imx2_wdt(pdata) \
imx_add_imx2_wdt(&imx27_imx2_wdt_data)
...
...
arch/arm/mach-imx/devices.c
浏览文件 @
bd455ed3
...
...
@@ -76,34 +76,6 @@ int __init imx1_register_gpios(void)
}
#endif
#ifdef CONFIG_MACH_MX27
static
struct
resource
otg_resources
[]
=
{
{
.
start
=
MX27_USB_OTG_BASE_ADDR
,
.
end
=
MX27_USB_OTG_BASE_ADDR
+
0x1ff
,
.
flags
=
IORESOURCE_MEM
,
},
{
.
start
=
MX27_INT_USB_OTG
,
.
end
=
MX27_INT_USB_OTG
,
.
flags
=
IORESOURCE_IRQ
,
},
};
static
u64
otg_dmamask
=
DMA_BIT_MASK
(
32
);
/* OTG gadget device */
struct
platform_device
mxc_otg_udc_device
=
{
.
name
=
"fsl-usb2-udc"
,
.
id
=
-
1
,
.
dev
=
{
.
dma_mask
=
&
otg_dmamask
,
.
coherent_dma_mask
=
DMA_BIT_MASK
(
32
),
},
.
resource
=
otg_resources
,
.
num_resources
=
ARRAY_SIZE
(
otg_resources
),
};
#endif
#if defined(CONFIG_MACH_MX21) || defined(CONFIG_MACH_MX27)
/* GPIO port description */
#define DEFINE_MXC_GPIO_PORT_IRQ(SOC, n, _irq) \
...
...
arch/arm/mach-imx/devices.h
浏览文件 @
bd455ed3
#if defined(CONFIG_MACH_MX21) || defined(CONFIG_MACH_MX27)
extern
struct
platform_device
mxc_otg_udc_device
;
extern
struct
platform_device
mx21_usbhc_device
;
extern
struct
platform_device
imx_kpp_device
;
#endif
arch/arm/mach-imx/mach-cpuimx27.c
浏览文件 @
bd455ed3
...
...
@@ -28,7 +28,6 @@
#include <linux/serial_8250.h>
#include <linux/usb/otg.h>
#include <linux/usb/ulpi.h>
#include <linux/fsl_devices.h>
#include <asm/mach-types.h>
#include <asm/mach/arch.h>
...
...
@@ -223,7 +222,7 @@ static struct mxc_usbh_platform_data usbh2_pdata __initdata = {
};
#endif
static
struct
fsl_usb2_platform_data
otg_device_pdata
=
{
static
const
struct
fsl_usb2_platform_data
otg_device_pdata
__initconst
=
{
.
operating_mode
=
FSL_USB2_DR_DEVICE
,
.
phy_mode
=
FSL_USB2_PHY_ULPI
,
};
...
...
@@ -289,7 +288,7 @@ static void __init eukrea_cpuimx27_init(void)
imx27_add_mxc_ehci_hs
(
2
,
&
usbh2_pdata
);
#endif
if
(
!
otg_mode_host
)
mxc_register_device
(
&
mxc_otg_udc_device
,
&
otg_device_pdata
);
imx27_add_fsl_usb2_udc
(
&
otg_device_pdata
);
#ifdef CONFIG_MACH_EUKREA_MBIMX27_BASEBOARD
eukrea_mbimx27_baseboard_init
();
...
...
arch/arm/mach-imx/mach-pca100.c
浏览文件 @
bd455ed3
...
...
@@ -29,7 +29,6 @@
#include <linux/gpio.h>
#include <linux/usb/otg.h>
#include <linux/usb/ulpi.h>
#include <linux/fsl_devices.h>
#include <asm/mach/arch.h>
#include <asm/mach-types.h>
...
...
@@ -297,7 +296,7 @@ static struct mxc_usbh_platform_data usbh2_pdata __initdata = {
};
#endif
static
struct
fsl_usb2_platform_data
otg_device_pdata
=
{
static
const
struct
fsl_usb2_platform_data
otg_device_pdata
__initconst
=
{
.
operating_mode
=
FSL_USB2_DR_DEVICE
,
.
phy_mode
=
FSL_USB2_PHY_ULPI
,
};
...
...
@@ -419,7 +418,7 @@ static void __init pca100_init(void)
#endif
if
(
!
otg_mode_host
)
{
gpio_set_value
(
OTG_PHY_CS_GPIO
,
0
);
mxc_register_device
(
&
mxc_otg_udc_device
,
&
otg_device_pdata
);
imx27_add_fsl_usb2_udc
(
&
otg_device_pdata
);
}
imx27_add_imx_fb
(
&
pca100_fb_data
);
...
...
arch/arm/plat-mxc/devices/Kconfig
浏览文件 @
bd455ed3
...
...
@@ -9,6 +9,9 @@ config IMX_HAVE_PLATFORM_FLEXCAN
select HAVE_CAN_FLEXCAN if CAN
bool
config IMX_HAVE_PLATFORM_FSL_USB2_UDC
bool
config IMX_HAVE_PLATFORM_GPIO_KEYS
bool
default y if ARCH_MX51
...
...
arch/arm/plat-mxc/devices/Makefile
浏览文件 @
bd455ed3
obj-$(CONFIG_IMX_HAVE_PLATFORM_ESDHC)
+=
platform-esdhc.o
obj-$(CONFIG_IMX_HAVE_PLATFORM_FEC)
+=
platform-fec.o
obj-$(CONFIG_IMX_HAVE_PLATFORM_FLEXCAN)
+=
platform-flexcan.o
obj-$(CONFIG_IMX_HAVE_PLATFORM_FSL_USB2_UDC)
+=
platform-fsl-usb2-udc.o
obj-$(CONFIG_IMX_HAVE_PLATFORM_GPIO_KEYS)
+=
platform-gpio_keys.o
obj-$(CONFIG_IMX_HAVE_PLATFORM_IMX2_WDT)
+=
platform-imx2-wdt.o
obj-y
+=
platform-imx-dma.o
...
...
arch/arm/plat-mxc/devices/platform-fsl-usb2-udc.c
0 → 100644
浏览文件 @
bd455ed3
/*
* Copyright (C) 2010 Pengutronix
* Uwe Kleine-Koenig <u.kleine-koenig@pengutronix.de>
*
* This program is free software; you can redistribute it and/or modify it under
* the terms of the GNU General Public License version 2 as published by the
* Free Software Foundation.
*/
#include <mach/hardware.h>
#include <mach/devices-common.h>
#define imx_fsl_usb2_udc_data_entry_single(soc) \
{ \
.iobase = soc ## _USB_OTG_BASE_ADDR, \
.irq = soc ## _INT_USB_OTG, \
}
#ifdef CONFIG_SOC_IMX27
const
struct
imx_fsl_usb2_udc_data
imx27_fsl_usb2_udc_data
__initconst
=
imx_fsl_usb2_udc_data_entry_single
(
MX27
);
#endif
/* ifdef CONFIG_SOC_IMX27 */
struct
platform_device
*
__init
imx_add_fsl_usb2_udc
(
const
struct
imx_fsl_usb2_udc_data
*
data
,
const
struct
fsl_usb2_platform_data
*
pdata
)
{
struct
resource
res
[]
=
{
{
.
start
=
data
->
iobase
,
.
end
=
data
->
iobase
+
SZ_512
-
1
,
.
flags
=
IORESOURCE_MEM
,
},
{
.
start
=
data
->
irq
,
.
end
=
data
->
irq
,
.
flags
=
IORESOURCE_IRQ
,
},
};
return
imx_add_platform_device_dmamask
(
"fsl-usb2-udc"
,
-
1
,
res
,
ARRAY_SIZE
(
res
),
pdata
,
sizeof
(
*
pdata
),
DMA_BIT_MASK
(
32
));
}
arch/arm/plat-mxc/include/mach/devices-common.h
浏览文件 @
bd455ed3
...
...
@@ -44,6 +44,15 @@ struct platform_device *__init imx_add_flexcan(
const
struct
imx_flexcan_data
*
data
,
const
struct
flexcan_platform_data
*
pdata
);
#include <linux/fsl_devices.h>
struct
imx_fsl_usb2_udc_data
{
resource_size_t
iobase
;
resource_size_t
irq
;
};
struct
platform_device
*
__init
imx_add_fsl_usb2_udc
(
const
struct
imx_fsl_usb2_udc_data
*
data
,
const
struct
fsl_usb2_platform_data
*
pdata
);
#include <linux/gpio_keys.h>
struct
platform_device
*
__init
imx_add_gpio_keys
(
const
struct
gpio_keys_platform_data
*
pdata
);
...
...
编辑
预览
Markdown
is supported
0%
请重试
或
添加新附件
.
添加附件
取消
You are about to add
0
people
to the discussion. Proceed with caution.
先完成此消息的编辑!
取消
想要评论请
注册
或
登录