Commit b5ce635d authored by Kuninori Morimoto's avatar Kuninori Morimoto Committed by Simon Horman

ARM: shmobile: marzen: add USB phy support

Signed-off-by: default avatarKuninori Morimoto <kuninori.morimoto.gx@renesas.com>
Signed-off-by: default avatarSimon Horman <horms@verge.net.au>
parent ab3ff12a
...@@ -78,7 +78,8 @@ CONFIG_GPIO_SYSFS=y ...@@ -78,7 +78,8 @@ CONFIG_GPIO_SYSFS=y
CONFIG_THERMAL=y CONFIG_THERMAL=y
CONFIG_RCAR_THERMAL=y CONFIG_RCAR_THERMAL=y
CONFIG_SSB=y CONFIG_SSB=y
# CONFIG_USB_SUPPORT is not set CONFIG_USB=y
CONFIG_USB_RCAR_PHY=y
CONFIG_MMC=y CONFIG_MMC=y
CONFIG_MMC_SDHI=y CONFIG_MMC_SDHI=y
CONFIG_UIO=y CONFIG_UIO=y
......
...@@ -144,11 +144,32 @@ static struct platform_device hspi_device = { ...@@ -144,11 +144,32 @@ static struct platform_device hspi_device = {
.num_resources = ARRAY_SIZE(hspi_resources), .num_resources = ARRAY_SIZE(hspi_resources),
}; };
/* USB PHY */
static struct resource usb_phy_resources[] = {
[0] = {
.start = 0xffe70000,
.end = 0xffe70900 - 1,
.flags = IORESOURCE_MEM,
},
[1] = {
.start = 0xfff70000,
.end = 0xfff70900 - 1,
.flags = IORESOURCE_MEM,
},
};
static struct platform_device usb_phy_device = {
.name = "rcar_usb_phy",
.resource = usb_phy_resources,
.num_resources = ARRAY_SIZE(usb_phy_resources),
};
static struct platform_device *marzen_devices[] __initdata = { static struct platform_device *marzen_devices[] __initdata = {
&eth_device, &eth_device,
&sdhi0_device, &sdhi0_device,
&thermal_device, &thermal_device,
&hspi_device, &hspi_device,
&usb_phy_device,
}; };
static void __init marzen_init(void) static void __init marzen_init(void)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment