On Saturday 21 July 2012, Vivek Gautam wrote:
quoted hunk ↗ jump to hunk
From: Ajay Kumar <redacted>
This patch adds address mapping of USB 2.0 PHY for exynos5
Signed-off-by: Ajay Kumar <redacted>
Signed-off-by: Vivek Gautam <redacted>
---
arch/arm/mach-exynos/common.c | 5 +++++
arch/arm/mach-exynos/include/mach/map.h | 2 ++
2 files changed, 7 insertions(+), 0 deletions(-)
diff --git a/arch/arm/mach-exynos/common.c b/arch/arm/mach-exynos/common.c
index 4eb39cd..92d5e61 100644
--- a/arch/arm/mach-exynos/common.c
+++ b/arch/arm/mach-exynos/common.c
@@ -275,6 +275,11 @@ static struct map_desc exynos5_iodesc[] __initdata = {
.pfn = __phys_to_pfn(EXYNOS5_PA_GIC_DIST),
.length = SZ_4K,
.type = MT_DEVICE,
+ }, {
+ .virtual = (unsigned long)S3C_VA_USB_HSPHY,
+ .pfn = __phys_to_pfn(EXYNOS5_PA_USB_PHY),
+ .length = SZ_4K,
+ .type = MT_DEVICE,
},
};
Can you pleae explain why this is done in the changelog?
We try hard to do such mappings from the device driver instead,
so I'm surprised that this is necessary fo rthe USB phy.
Arnd