All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH-RESEND 0/4] ARM: S5PV210: Enable FIMC & MFC on SMDKC110 & V210 boards
@ 2012-02-13  5:18 Sachin Kamat
  2012-02-13  5:18 ` [PATCH-RESEND 1/4] ARM: S5PV210: Enable MFC on SMDKV210 Sachin Kamat
                   ` (4 more replies)
  0 siblings, 5 replies; 8+ messages in thread
From: Sachin Kamat @ 2012-02-13  5:18 UTC (permalink / raw)
  To: linux-samsung-soc; +Cc: sachin.kamat, kgene.kim, patches

Re-sending the patch series rebased onto next/board-samsung branch of 
Kukjin Kim's tree: 
git://git.kernel.org/pub/scm/linux/kernel/git/kgene/linux-samsung.git

Sachin Kamat (4):
  ARM: S5PV210: Enable MFC on SMDKV210
  ARM: S5PV210: Enable MFC on SMDKC110
  ARM: S5PV210: Enable FIMC on SMDKV210
  ARM: S5PV210: Enable FIMC on SMDKC110

 arch/arm/mach-s5pv210/Kconfig         |    8 ++++++++
 arch/arm/mach-s5pv210/mach-smdkc110.c |   14 ++++++++++++++
 arch/arm/mach-s5pv210/mach-smdkv210.c |   14 ++++++++++++++
 3 files changed, 36 insertions(+), 0 deletions(-)

-- 
1.7.4.1

^ permalink raw reply	[flat|nested] 8+ messages in thread

* [PATCH-RESEND 1/4] ARM: S5PV210: Enable MFC on SMDKV210
  2012-02-13  5:18 [PATCH-RESEND 0/4] ARM: S5PV210: Enable FIMC & MFC on SMDKC110 & V210 boards Sachin Kamat
@ 2012-02-13  5:18 ` Sachin Kamat
  2012-02-13  5:18 ` [PATCH-RESEND 2/4] ARM: S5PV210: Enable MFC on SMDKC110 Sachin Kamat
                   ` (3 subsequent siblings)
  4 siblings, 0 replies; 8+ messages in thread
From: Sachin Kamat @ 2012-02-13  5:18 UTC (permalink / raw)
  To: linux-samsung-soc; +Cc: sachin.kamat, kgene.kim, patches

Add MFC support on SMDKV210 board.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
---
 arch/arm/mach-s5pv210/Kconfig         |    1 +
 arch/arm/mach-s5pv210/mach-smdkv210.c |   10 ++++++++++
 2 files changed, 11 insertions(+), 0 deletions(-)

diff --git a/arch/arm/mach-s5pv210/Kconfig b/arch/arm/mach-s5pv210/Kconfig
index 2cdc42e..1e0131b 100644
--- a/arch/arm/mach-s5pv210/Kconfig
+++ b/arch/arm/mach-s5pv210/Kconfig
@@ -142,6 +142,7 @@ config MACH_SMDKV210
 	select S3C_DEV_I2C2
 	select S3C_DEV_RTC
 	select S3C_DEV_WDT
+	select S5P_DEV_MFC
 	select SAMSUNG_DEV_ADC
 	select SAMSUNG_DEV_BACKLIGHT
 	select SAMSUNG_DEV_IDE
diff --git a/arch/arm/mach-s5pv210/mach-smdkv210.c b/arch/arm/mach-s5pv210/mach-smdkv210.c
index dff9ea7..0b0d65d 100644
--- a/arch/arm/mach-s5pv210/mach-smdkv210.c
+++ b/arch/arm/mach-s5pv210/mach-smdkv210.c
@@ -46,6 +46,7 @@
 #include <plat/s5p-time.h>
 #include <plat/backlight.h>
 #include <plat/regs-fb-v4.h>
+#include <plat/mfc.h>
 
 #include "common.h"
 
@@ -223,6 +224,9 @@ static struct platform_device *smdkv210_devices[] __initdata = {
 	&s3c_device_rtc,
 	&s3c_device_ts,
 	&s3c_device_wdt,
+	&s5p_device_mfc,
+	&s5p_device_mfc_l,
+	&s5p_device_mfc_r,
 	&s5pv210_device_ac97,
 	&s5pv210_device_iis0,
 	&s5pv210_device_spdif,
@@ -282,6 +286,11 @@ static void __init smdkv210_map_io(void)
 	s5p_set_timer_source(S5P_PWM2, S5P_PWM4);
 }
 
+static void __init smdkv210_reserve(void)
+{
+	s5p_mfc_reserve_mem(0x43000000, 8 << 20, 0x51000000, 8 << 20);
+}
+
 static void __init smdkv210_machine_init(void)
 {
 	s3c_pm_init();
@@ -319,4 +328,5 @@ MACHINE_START(SMDKV210, "SMDKV210")
 	.init_machine	= smdkv210_machine_init,
 	.timer		= &s5p_timer,
 	.restart	= s5pv210_restart,
+	.reserve	= &smdkv210_reserve,
 MACHINE_END
-- 
1.7.4.1

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH-RESEND 2/4] ARM: S5PV210: Enable MFC on SMDKC110
  2012-02-13  5:18 [PATCH-RESEND 0/4] ARM: S5PV210: Enable FIMC & MFC on SMDKC110 & V210 boards Sachin Kamat
  2012-02-13  5:18 ` [PATCH-RESEND 1/4] ARM: S5PV210: Enable MFC on SMDKV210 Sachin Kamat
@ 2012-02-13  5:18 ` Sachin Kamat
  2012-02-13  5:18 ` [PATCH-RESEND 3/4] ARM: S5PV210: Enable FIMC on SMDKV210 Sachin Kamat
                   ` (2 subsequent siblings)
  4 siblings, 0 replies; 8+ messages in thread
From: Sachin Kamat @ 2012-02-13  5:18 UTC (permalink / raw)
  To: linux-samsung-soc; +Cc: sachin.kamat, kgene.kim, patches

Add MFC support on SMDKC110 board.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
---
 arch/arm/mach-s5pv210/Kconfig         |    1 +
 arch/arm/mach-s5pv210/mach-smdkc110.c |   10 ++++++++++
 2 files changed, 11 insertions(+), 0 deletions(-)

diff --git a/arch/arm/mach-s5pv210/Kconfig b/arch/arm/mach-s5pv210/Kconfig
index 1e0131b..dd9bdab 100644
--- a/arch/arm/mach-s5pv210/Kconfig
+++ b/arch/arm/mach-s5pv210/Kconfig
@@ -118,6 +118,7 @@ config MACH_SMDKC110
 	select S3C_DEV_I2C2
 	select S3C_DEV_RTC
 	select S3C_DEV_WDT
+	select S5P_DEV_MFC
 	select SAMSUNG_DEV_IDE
 	select S5PV210_SETUP_I2C1
 	select S5PV210_SETUP_I2C2
diff --git a/arch/arm/mach-s5pv210/mach-smdkc110.c b/arch/arm/mach-s5pv210/mach-smdkc110.c
index b323983..7100f7e 100644
--- a/arch/arm/mach-s5pv210/mach-smdkc110.c
+++ b/arch/arm/mach-s5pv210/mach-smdkc110.c
@@ -31,6 +31,7 @@
 #include <plat/iic.h>
 #include <plat/pm.h>
 #include <plat/s5p-time.h>
+#include <plat/mfc.h>
 
 #include "common.h"
 
@@ -94,6 +95,9 @@ static struct platform_device *smdkc110_devices[] __initdata = {
 	&s3c_device_i2c2,
 	&s3c_device_rtc,
 	&s3c_device_wdt,
+	&s5p_device_mfc,
+	&s5p_device_mfc_l,
+	&s5p_device_mfc_r,
 };
 
 static struct i2c_board_info smdkc110_i2c_devs0[] __initdata = {
@@ -117,6 +121,11 @@ static void __init smdkc110_map_io(void)
 	s5p_set_timer_source(S5P_PWM3, S5P_PWM4);
 }
 
+static void __init smdkc110_reserve(void)
+{
+	s5p_mfc_reserve_mem(0x43000000, 8 << 20, 0x51000000, 8 << 20);
+}
+
 static void __init smdkc110_machine_init(void)
 {
 	s3c_pm_init();
@@ -145,4 +154,5 @@ MACHINE_START(SMDKC110, "SMDKC110")
 	.init_machine	= smdkc110_machine_init,
 	.timer		= &s5p_timer,
 	.restart	= s5pv210_restart,
+	.reserve	= &smdkc110_reserve,
 MACHINE_END
-- 
1.7.4.1

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH-RESEND 3/4] ARM: S5PV210: Enable FIMC on SMDKV210
  2012-02-13  5:18 [PATCH-RESEND 0/4] ARM: S5PV210: Enable FIMC & MFC on SMDKC110 & V210 boards Sachin Kamat
  2012-02-13  5:18 ` [PATCH-RESEND 1/4] ARM: S5PV210: Enable MFC on SMDKV210 Sachin Kamat
  2012-02-13  5:18 ` [PATCH-RESEND 2/4] ARM: S5PV210: Enable MFC on SMDKC110 Sachin Kamat
@ 2012-02-13  5:18 ` Sachin Kamat
  2012-02-13  5:18 ` [PATCH-RESEND 4/4] ARM: S5PV210: Enable FIMC on SMDKC110 Sachin Kamat
  2012-02-16 13:00 ` [PATCH-RESEND 0/4] ARM: S5PV210: Enable FIMC & MFC on SMDKC110 & V210 boards Kukjin Kim
  4 siblings, 0 replies; 8+ messages in thread
From: Sachin Kamat @ 2012-02-13  5:18 UTC (permalink / raw)
  To: linux-samsung-soc; +Cc: sachin.kamat, kgene.kim, patches

Enable FIMC 0,1,2 and media device(md) on SMDKV210 board.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
---
 arch/arm/mach-s5pv210/Kconfig         |    3 +++
 arch/arm/mach-s5pv210/mach-smdkv210.c |    4 ++++
 2 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/arch/arm/mach-s5pv210/Kconfig b/arch/arm/mach-s5pv210/Kconfig
index dd9bdab..cf3be3b 100644
--- a/arch/arm/mach-s5pv210/Kconfig
+++ b/arch/arm/mach-s5pv210/Kconfig
@@ -143,6 +143,9 @@ config MACH_SMDKV210
 	select S3C_DEV_I2C2
 	select S3C_DEV_RTC
 	select S3C_DEV_WDT
+	select S5P_DEV_FIMC0
+	select S5P_DEV_FIMC1
+	select S5P_DEV_FIMC2
 	select S5P_DEV_MFC
 	select SAMSUNG_DEV_ADC
 	select SAMSUNG_DEV_BACKLIGHT
diff --git a/arch/arm/mach-s5pv210/mach-smdkv210.c b/arch/arm/mach-s5pv210/mach-smdkv210.c
index 0b0d65d..7b9d0ce 100644
--- a/arch/arm/mach-s5pv210/mach-smdkv210.c
+++ b/arch/arm/mach-s5pv210/mach-smdkv210.c
@@ -224,6 +224,10 @@ static struct platform_device *smdkv210_devices[] __initdata = {
 	&s3c_device_rtc,
 	&s3c_device_ts,
 	&s3c_device_wdt,
+	&s5p_device_fimc0,
+	&s5p_device_fimc1,
+	&s5p_device_fimc2,
+	&s5p_device_fimc_md,
 	&s5p_device_mfc,
 	&s5p_device_mfc_l,
 	&s5p_device_mfc_r,
-- 
1.7.4.1

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* [PATCH-RESEND 4/4] ARM: S5PV210: Enable FIMC on SMDKC110
  2012-02-13  5:18 [PATCH-RESEND 0/4] ARM: S5PV210: Enable FIMC & MFC on SMDKC110 & V210 boards Sachin Kamat
                   ` (2 preceding siblings ...)
  2012-02-13  5:18 ` [PATCH-RESEND 3/4] ARM: S5PV210: Enable FIMC on SMDKV210 Sachin Kamat
@ 2012-02-13  5:18 ` Sachin Kamat
  2012-02-16 13:00 ` [PATCH-RESEND 0/4] ARM: S5PV210: Enable FIMC & MFC on SMDKC110 & V210 boards Kukjin Kim
  4 siblings, 0 replies; 8+ messages in thread
From: Sachin Kamat @ 2012-02-13  5:18 UTC (permalink / raw)
  To: linux-samsung-soc; +Cc: sachin.kamat, kgene.kim, patches

Enable FIMC 0,1,2 and media device (md) on SMDKC110 board.

Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org>
---
 arch/arm/mach-s5pv210/Kconfig         |    3 +++
 arch/arm/mach-s5pv210/mach-smdkc110.c |    4 ++++
 2 files changed, 7 insertions(+), 0 deletions(-)

diff --git a/arch/arm/mach-s5pv210/Kconfig b/arch/arm/mach-s5pv210/Kconfig
index cf3be3b..c338b86 100644
--- a/arch/arm/mach-s5pv210/Kconfig
+++ b/arch/arm/mach-s5pv210/Kconfig
@@ -118,6 +118,9 @@ config MACH_SMDKC110
 	select S3C_DEV_I2C2
 	select S3C_DEV_RTC
 	select S3C_DEV_WDT
+	select S5P_DEV_FIMC0
+	select S5P_DEV_FIMC1
+	select S5P_DEV_FIMC2
 	select S5P_DEV_MFC
 	select SAMSUNG_DEV_IDE
 	select S5PV210_SETUP_I2C1
diff --git a/arch/arm/mach-s5pv210/mach-smdkc110.c b/arch/arm/mach-s5pv210/mach-smdkc110.c
index 7100f7e..dfc2923 100644
--- a/arch/arm/mach-s5pv210/mach-smdkc110.c
+++ b/arch/arm/mach-s5pv210/mach-smdkc110.c
@@ -95,6 +95,10 @@ static struct platform_device *smdkc110_devices[] __initdata = {
 	&s3c_device_i2c2,
 	&s3c_device_rtc,
 	&s3c_device_wdt,
+	&s5p_device_fimc0,
+	&s5p_device_fimc1,
+	&s5p_device_fimc2,
+	&s5p_device_fimc_md,
 	&s5p_device_mfc,
 	&s5p_device_mfc_l,
 	&s5p_device_mfc_r,
-- 
1.7.4.1

^ permalink raw reply related	[flat|nested] 8+ messages in thread

* Re: [PATCH-RESEND 0/4] ARM: S5PV210: Enable FIMC & MFC on SMDKC110 & V210 boards
  2012-02-13  5:18 [PATCH-RESEND 0/4] ARM: S5PV210: Enable FIMC & MFC on SMDKC110 & V210 boards Sachin Kamat
                   ` (3 preceding siblings ...)
  2012-02-13  5:18 ` [PATCH-RESEND 4/4] ARM: S5PV210: Enable FIMC on SMDKC110 Sachin Kamat
@ 2012-02-16 13:00 ` Kukjin Kim
  2012-03-08 11:29   ` Sachin Kamat
  4 siblings, 1 reply; 8+ messages in thread
From: Kukjin Kim @ 2012-02-16 13:00 UTC (permalink / raw)
  To: Sachin Kamat; +Cc: linux-samsung-soc, kgene.kim, patches

On 02/13/12 14:18, Sachin Kamat wrote:
> Re-sending the patch series rebased onto next/board-samsung branch of
> Kukjin Kim's tree:
> git://git.kernel.org/pub/scm/linux/kernel/git/kgene/linux-samsung.git
>
> Sachin Kamat (4):
>    ARM: S5PV210: Enable MFC on SMDKV210
>    ARM: S5PV210: Enable MFC on SMDKC110
>    ARM: S5PV210: Enable FIMC on SMDKV210
>    ARM: S5PV210: Enable FIMC on SMDKC110
>
>   arch/arm/mach-s5pv210/Kconfig         |    8 ++++++++
>   arch/arm/mach-s5pv210/mach-smdkc110.c |   14 ++++++++++++++
>   arch/arm/mach-s5pv210/mach-smdkv210.c |   14 ++++++++++++++
>   3 files changed, 36 insertions(+), 0 deletions(-)
>

Hi Sachin,

Looks good to me, will apply this whole series.

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] 8+ messages in thread

* Re: [PATCH-RESEND 0/4] ARM: S5PV210: Enable FIMC & MFC on SMDKC110 & V210 boards
  2012-02-16 13:00 ` [PATCH-RESEND 0/4] ARM: S5PV210: Enable FIMC & MFC on SMDKC110 & V210 boards Kukjin Kim
@ 2012-03-08 11:29   ` Sachin Kamat
  2012-03-09 15:34     ` Kukjin Kim
  0 siblings, 1 reply; 8+ messages in thread
From: Sachin Kamat @ 2012-03-08 11:29 UTC (permalink / raw)
  To: Kukjin Kim; +Cc: linux-samsung-soc, patches

Hi Kukjin,

Could not find this series applied on any of your branches. Please
check the same.

Regards
Sachin

On 16/02/2012, Kukjin Kim <kgene.kim@samsung.com> wrote:
> On 02/13/12 14:18, Sachin Kamat wrote:
>> Re-sending the patch series rebased onto next/board-samsung branch of
>> Kukjin Kim's tree:
>> git://git.kernel.org/pub/scm/linux/kernel/git/kgene/linux-samsung.git
>>
>> Sachin Kamat (4):
>>    ARM: S5PV210: Enable MFC on SMDKV210
>>    ARM: S5PV210: Enable MFC on SMDKC110
>>    ARM: S5PV210: Enable FIMC on SMDKV210
>>    ARM: S5PV210: Enable FIMC on SMDKC110
>>
>>   arch/arm/mach-s5pv210/Kconfig         |    8 ++++++++
>>   arch/arm/mach-s5pv210/mach-smdkc110.c |   14 ++++++++++++++
>>   arch/arm/mach-s5pv210/mach-smdkv210.c |   14 ++++++++++++++
>>   3 files changed, 36 insertions(+), 0 deletions(-)
>>
>
> Hi Sachin,
>
> Looks good to me, will apply this whole series.
>
> Thanks.
>
> Best regards,
> Kgene.
> --
> Kukjin Kim <kgene.kim@samsung.com>, Senior Engineer,
> SW Solution Development Team, Samsung Electronics Co., Ltd.
>


-- 
With warm regards,
Sachin

^ permalink raw reply	[flat|nested] 8+ messages in thread

* Re: [PATCH-RESEND 0/4] ARM: S5PV210: Enable FIMC & MFC on SMDKC110 & V210 boards
  2012-03-08 11:29   ` Sachin Kamat
@ 2012-03-09 15:34     ` Kukjin Kim
  0 siblings, 0 replies; 8+ messages in thread
From: Kukjin Kim @ 2012-03-09 15:34 UTC (permalink / raw)
  To: Sachin Kamat; +Cc: Kukjin Kim, linux-samsung-soc, patches

On 03/08/12 03:29, Sachin Kamat wrote:
> Hi Kukjin,
>
> Could not find this series applied on any of your branches. Please
> check the same.
>
Applied this whole series in my next/board-samsung.

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] 8+ messages in thread

end of thread, other threads:[~2012-03-09 15:34 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-02-13  5:18 [PATCH-RESEND 0/4] ARM: S5PV210: Enable FIMC & MFC on SMDKC110 & V210 boards Sachin Kamat
2012-02-13  5:18 ` [PATCH-RESEND 1/4] ARM: S5PV210: Enable MFC on SMDKV210 Sachin Kamat
2012-02-13  5:18 ` [PATCH-RESEND 2/4] ARM: S5PV210: Enable MFC on SMDKC110 Sachin Kamat
2012-02-13  5:18 ` [PATCH-RESEND 3/4] ARM: S5PV210: Enable FIMC on SMDKV210 Sachin Kamat
2012-02-13  5:18 ` [PATCH-RESEND 4/4] ARM: S5PV210: Enable FIMC on SMDKC110 Sachin Kamat
2012-02-16 13:00 ` [PATCH-RESEND 0/4] ARM: S5PV210: Enable FIMC & MFC on SMDKC110 & V210 boards Kukjin Kim
2012-03-08 11:29   ` Sachin Kamat
2012-03-09 15:34     ` Kukjin Kim

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.