* [PATCH 1/3] ARM: S5PC210: Use the correct GPIO base addresses
@ 2010-08-06 4:23 Kyungmin Park
2010-08-06 13:41 ` Kukjin Kim
2010-08-20 10:03 ` Kukjin Kim
0 siblings, 2 replies; 4+ messages in thread
From: Kyungmin Park @ 2010-08-06 4:23 UTC (permalink / raw)
To: linux-arm-kernel
From: Kyungmin Park <kyungmin.park@samsung.com>
The S5PC210 has three GPIO base addresses.
Part1 Base Address=0x11400000
Part2 Base Address=0x11000000
Part3 Base Address=0x03860000
Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
---
arch/arm/mach-s5pv310/include/mach/map.h | 4 +++-
1 files changed, 3 insertions(+), 1 deletions(-)
diff --git a/arch/arm/mach-s5pv310/include/mach/map.h b/arch/arm/mach-s5pv310/include/mach/map.h
index 87697c9..7eb2a7a 100644
--- a/arch/arm/mach-s5pv310/include/mach/map.h
+++ b/arch/arm/mach-s5pv310/include/mach/map.h
@@ -39,8 +39,10 @@
#define S5PV310_PA_GIC_DIST (0x10501000)
#define S5PV310_PA_L2CC (0x10502000)
-#define S5PV310_PA_GPIO (0x11000000)
+#define S5PV310_PA_GPIO (0x11400000)
#define S5P_PA_GPIO S5PV310_PA_GPIO
+#define S5PV310_PA_GPIO2 (0x11000000)
+#define S5PV310_PA_GPIO3 (0x03860000)
#define S5PV310_PA_UART (0x13800000)
--
1.5.3.3
^ permalink raw reply related [flat|nested] 4+ messages in thread
* [PATCH 1/3] ARM: S5PC210: Use the correct GPIO base addresses
2010-08-06 4:23 [PATCH 1/3] ARM: S5PC210: Use the correct GPIO base addresses Kyungmin Park
@ 2010-08-06 13:41 ` Kukjin Kim
2010-08-07 2:30 ` Kyungmin Park
2010-08-20 10:03 ` Kukjin Kim
1 sibling, 1 reply; 4+ messages in thread
From: Kukjin Kim @ 2010-08-06 13:41 UTC (permalink / raw)
To: linux-arm-kernel
Kyungmin Park wrote:
>
> From: Kyungmin Park <kyungmin.park@samsung.com>
>
> The S5PC210 has three GPIO base addresses.
>
> Part1 Base Address=0x11400000
> Part2 Base Address=0x11000000
> Part3 Base Address=0x03860000
>
Yes, maybe missed.
> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
> ---
> arch/arm/mach-s5pv310/include/mach/map.h | 4 +++-
> 1 files changed, 3 insertions(+), 1 deletions(-)
>
> diff --git a/arch/arm/mach-s5pv310/include/mach/map.h b/arch/arm/mach-
> s5pv310/include/mach/map.h
> index 87697c9..7eb2a7a 100644
> --- a/arch/arm/mach-s5pv310/include/mach/map.h
> +++ b/arch/arm/mach-s5pv310/include/mach/map.h
> @@ -39,8 +39,10 @@
> #define S5PV310_PA_GIC_DIST (0x10501000)
> #define S5PV310_PA_L2CC (0x10502000)
>
> -#define S5PV310_PA_GPIO (0x11000000)
> +#define S5PV310_PA_GPIO (0x11400000)
S5PV310_PA_GPIO1 is better...
> #define S5P_PA_GPIO S5PV310_PA_GPIO
> +#define S5PV310_PA_GPIO2 (0x11000000)
> +#define S5PV310_PA_GPIO3 (0x03860000)
>
> #define S5PV310_PA_UART (0x13800000)
>
> --
Thanks.
Best regards,
Kgene.
--
Kukjin Kim <kgene.kim@samsung.com>, Senior Engineer,
SW Solution Development Team, Samsung Electronics Co., Ltd.
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 1/3] ARM: S5PC210: Use the correct GPIO base addresses
2010-08-06 13:41 ` Kukjin Kim
@ 2010-08-07 2:30 ` Kyungmin Park
0 siblings, 0 replies; 4+ messages in thread
From: Kyungmin Park @ 2010-08-07 2:30 UTC (permalink / raw)
To: linux-arm-kernel
On Fri, Aug 6, 2010 at 10:41 PM, Kukjin Kim <kgene.kim@samsung.com> wrote:
> Kyungmin Park wrote:
>>
>> From: Kyungmin Park <kyungmin.park@samsung.com>
>>
>> The S5PC210 has three GPIO base addresses.
>>
>> Part1 Base Address=0x11400000
>> Part2 Base Address=0x11000000
>> Part3 Base Address=0x03860000
>>
> Yes, maybe missed.
>
>> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
>> ---
>> ?arch/arm/mach-s5pv310/include/mach/map.h | ? ?4 +++-
>> ?1 files changed, 3 insertions(+), 1 deletions(-)
>>
>> diff --git a/arch/arm/mach-s5pv310/include/mach/map.h b/arch/arm/mach-
>> s5pv310/include/mach/map.h
>> index 87697c9..7eb2a7a 100644
>> --- a/arch/arm/mach-s5pv310/include/mach/map.h
>> +++ b/arch/arm/mach-s5pv310/include/mach/map.h
>> @@ -39,8 +39,10 @@
>> ?#define S5PV310_PA_GIC_DIST ? ? ? ? ?(0x10501000)
>> ?#define S5PV310_PA_L2CC ? ? ? ? ? ? ? ? ? ? ?(0x10502000)
>>
>> -#define S5PV310_PA_GPIO ? ? ? ? ? ? ? ? ? ? ?(0x11000000)
>> +#define S5PV310_PA_GPIO ? ? ? ? ? ? ? ? ? ? ?(0x11400000)
>
> S5PV310_PA_GPIO1 is better...
No problem.
>
>> ?#define S5P_PA_GPIO ? ? ? ? ? ? ? ? ?S5PV310_PA_GPIO
>
>> +#define S5PV310_PA_GPIO2 ? ? ? ? ? ? (0x11000000)
>> +#define S5PV310_PA_GPIO3 ? ? ? ? ? ? (0x03860000)
>
>>
>> ?#define S5PV310_PA_UART ? ? ? ? ? ? ? ? ? ? ?(0x13800000)
>>
>> --
>
>
> Thanks.
>
> Best regards,
> Kgene.
> --
> Kukjin Kim <kgene.kim@samsung.com>, Senior Engineer,
> SW Solution Development Team, Samsung Electronics Co., Ltd.
>
>
> _______________________________________________
> linux-arm-kernel mailing list
> linux-arm-kernel at lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/linux-arm-kernel
>
^ permalink raw reply [flat|nested] 4+ messages in thread
* [PATCH 1/3] ARM: S5PC210: Use the correct GPIO base addresses
2010-08-06 4:23 [PATCH 1/3] ARM: S5PC210: Use the correct GPIO base addresses Kyungmin Park
2010-08-06 13:41 ` Kukjin Kim
@ 2010-08-20 10:03 ` Kukjin Kim
1 sibling, 0 replies; 4+ messages in thread
From: Kukjin Kim @ 2010-08-20 10:03 UTC (permalink / raw)
To: linux-arm-kernel
Kyungmin Park wrote:
>
> From: Kyungmin Park <kyungmin.park@samsung.com>
>
> The S5PC210 has three GPIO base addresses.
>
> Part1 Base Address=0x11400000
> Part2 Base Address=0x11000000
> Part3 Base Address=0x03860000
>
> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com>
> ---
> arch/arm/mach-s5pv310/include/mach/map.h | 4 +++-
> 1 files changed, 3 insertions(+), 1 deletions(-)
>
> diff --git a/arch/arm/mach-s5pv310/include/mach/map.h b/arch/arm/mach-
> s5pv310/include/mach/map.h
> index 87697c9..7eb2a7a 100644
> --- a/arch/arm/mach-s5pv310/include/mach/map.h
> +++ b/arch/arm/mach-s5pv310/include/mach/map.h
> @@ -39,8 +39,10 @@
> #define S5PV310_PA_GIC_DIST (0x10501000)
> #define S5PV310_PA_L2CC (0x10502000)
>
> -#define S5PV310_PA_GPIO (0x11000000)
> +#define S5PV310_PA_GPIO (0x11400000)
> #define S5P_PA_GPIO S5PV310_PA_GPIO
> +#define S5PV310_PA_GPIO2 (0x11000000)
> +#define S5PV310_PA_GPIO3 (0x03860000)
>
> #define S5PV310_PA_UART (0x13800000)
>
> --
Ok..will apply.
Thanks.
Best regards,
Kgene.
--
Kukjin Kim <kgene.kim@samsung.com>, Senior Engineer,
SW Solution Development Team, Samsung Electronics Co., Ltd.
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2010-08-20 10:03 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-08-06 4:23 [PATCH 1/3] ARM: S5PC210: Use the correct GPIO base addresses Kyungmin Park
2010-08-06 13:41 ` Kukjin Kim
2010-08-07 2:30 ` Kyungmin Park
2010-08-20 10:03 ` Kukjin Kim
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).