[PATCH V3 0/3] ARM: S5PV310: Move and Update L2 cache init code

2010-10-21 Thread Kukjin Kim
This patch moves L2X0 cache init code from each machine to ARCH_S5PV310's cpu.c for common usage and updates its feature such as L2X0 Prefetch and Power control configuration. Changes since v1 and v2: - updated L2 cache init function's features. [PATCH V3 1/3] ARM: Add L2X0 PREFETCH and POWER

[PATCH V3 3/3] ARM: S5PV310: Add L2 cache init function in cpu.c

2010-10-21 Thread Kukjin Kim
From: Kyungmin Park kyungmin.p...@samsung.com This patch adds L2 cache initialization code in cpu.c of ARCH_S5PV310. It includes TAG and Data latency, Prefetch, and Power configurations. Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com Signed-off-by: Changhwan Youn chaos.y...@samsung.com

[PATCH V3 2/2] ARM: S5PV310: Add support External Interrupt

2010-10-21 Thread Kukjin Kim
From: Jongsun Han jongsun@samsung.com This patch adds EINT(External Interrupt) support on S5PV310 and S5PC210. All EINTs are transferred to GIC through interrupt combiner. Signed-off-by: Jongsun Han jongsun@samsung.com Signed-off-by: Jongpill Lee boyko@samsung.com Signed-off-by:

RE: [PATCH V3 2/3] ARM: S5PV310: Remove L2 cache init in machine

2010-10-21 Thread Daein Moon
Kukjin Kim wrote: From: Kyungmin Park kyungmin.p...@samsung.com Basically, need L2 cache initialize function in ARCH_S5PV310. So it would be better to move it into ARCH_S5PV310 common part. This patch removes L2 cache initialization code at the each board file. Signed-off-by: Kyungmin

[PATCH] ARM: SAMSUNG: Add the missed s3c_gpio_getpull() API

2010-10-21 Thread Kukjin Kim
From: Daein Moon moon9...@samsung.com This patch adds the s3c_gpio_getpull() API that has been missed in the plat-samsung/gpio-config.c and actullay there is its extern declaration in plat/gpio-cfg.h. Signed-off-by: Daein Moon moon9...@samsung.com Cc: Ben Dooks ben-li...@fluff.org Signed-off-by:

RE: [PATCH 5/6 v5] V4L/DVB: s5p-fimc: Add camera capture support

2010-10-21 Thread Sewoon Park
Latest your reply is easy to understand. And I send you another parts review comments. Tuesday, October 12, 2010 2:27, Sylwester Nawrocki wrote : Add a video device driver per each FIMC entity to support the camera capture input mode. Video capture node is registered only if CCD sensor data

Re: [PATCH V3 1/3] ARM: Add L2X0 PREFETCH and POWER control register

2010-10-21 Thread Catalin Marinas
On Thu, 2010-10-21 at 07:44 +0100, Kukjin Kim wrote: From: Kyungmin Park kyungmin.p...@samsung.com This patch adds L2X0 Prefetch and Power control register. Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com Cc: Catalin Marinas catalin.mari...@arm.com Signed-off-by: Kukjin Kim

RE: [PATCH 3/4] MFC: Add MFC 5.1 V4L2 driver

2010-10-21 Thread Kamil Debski
Hi, I commented as belows, And you missed one important things 'cause there were my comments in the very long email which is strongly fixed in the reset seq. Yes, thanks for your suggestion. [] +#define READL(offset) readl(dev-regs_base + (offset)) +#define

[PATCH 0/4] ARM: S3C64XX: SmartQ suspend support

2010-10-21 Thread Maurus Cuelenaere
These patches add suspend support to SmartQ boards, plus some S3C PM related cleanups. Maurus Cuelenaere (4): ARM: SAMSUNG: make SAMSUNG_PM_DEBUG select DEBUG_LL ARM: SAMSUNG: Fix warning 's3c_pm_show_resume_irqs' defined but not used ARM: S3C64XX: Add suspend support to SmartQ boards

[PATCH 1/4] ARM: SAMSUNG: make SAMSUNG_PM_DEBUG select DEBUG_LL

2010-10-21 Thread Maurus Cuelenaere
When selecting SAMSUNG_PM_DEBUG, it complains about a missing printascii() function if you do not select DEBUG_LL, so make the former select the latter. Signed-off-by: Maurus Cuelenaere mcuelena...@gmail.com --- arch/arm/plat-samsung/Kconfig |1 + 1 files changed, 1 insertions(+), 0

[PATCH 2/4] ARM: SAMSUNG: Fix warning 's3c_pm_show_resume_irqs' defined but not used

2010-10-21 Thread Maurus Cuelenaere
s3c_pm_show_resume_irqs() is used by some s3c_pm_arch_show_resume_irqs() implementations, which get included through mach/pm-core.h. Add __maybe_unused to silence warnings when it isn't used (e.g. on S3C64XX platforms). Signed-off-by: Maurus Cuelenaere mcuelena...@gmail.com ---

[PATCH 3/4] ARM: S3C64XX: Add suspend support to SmartQ boards

2010-10-21 Thread Maurus Cuelenaere
The only missing thing for suspend support on SmartQ boards, is a call to s3c_pm_init, so add that. This was tested on a S3C6410 SmartQ 7. Signed-off-by: Maurus Cuelenaere mcuelena...@gmail.com --- arch/arm/mach-s3c64xx/mach-smartq.c |4 1 files changed, 4 insertions(+), 0 deletions(-)

[PATCH 4/4] ARM: S3C64XX: Add wakeup sources to SmartQ boards

2010-10-21 Thread Maurus Cuelenaere
This patch adds the power on/off button on both SmartQ boards as suspend wakeup sources. Signed-off-by: Maurus Cuelenaere mcuelena...@gmail.com --- arch/arm/mach-s3c64xx/mach-smartq5.c |1 + arch/arm/mach-s3c64xx/mach-smartq7.c |1 + 2 files changed, 2 insertions(+), 0 deletions(-) diff

Re: [PATCH] ARM: SAMSUNG: Add the missed s3c_gpio_getpull() API

2010-10-21 Thread Sergei Shtylyov
Hello. On 21-10-2010 12:04, Kukjin Kim wrote: From: Daein Moonmoon9...@samsung.com This patch adds the s3c_gpio_getpull() API that has been missed in the plat-samsung/gpio-config.c and actullay there is its extern declaration in plat/gpio-cfg.h. Signed-off-by: Daein

Re: [PATCH] ARM: SAMSUNG: Add the missed s3c_gpio_getpull() API

2010-10-21 Thread Ben Dooks
On 21/10/10 09:04, Kukjin Kim wrote: From: Daein Moon moon9...@samsung.com This patch adds the s3c_gpio_getpull() API that has been missed in the plat-samsung/gpio-config.c and actullay there is its extern declaration in plat/gpio-cfg.h. Signed-off-by: Daein Moon moon9...@samsung.com Cc:

Re: [PATCH 1/5] ARM: S5P6442: Add DMA operation clock

2010-10-21 Thread Ben Dooks
On 21/10/10 01:58, Kukjin Kim wrote: From: Seungwhan Youn sw.y...@samsung.com This patch adds DMA operation clock which is disabled as default. Signed-off-by: Seungwhan Youn sw.y...@samsung.com Acked-by: Jassi Brar jassi.b...@samsung.com Signed-off-by: Kukjin Kim kgene@samsung.com

Re: [PATCH 3/4] USB: Gadget: Add Samsung S3C24XX USB High-Speed controller driver

2010-10-21 Thread Ben Dooks
On 13/10/10 01:10, Sangbeom Kim wrote: From: Thomas Abraham thomas...@samsung.com The Samsung's S3C2416, S3C2443 and S3C2450 includes a USB High-Speed device controller module. This driver enables support for USB high-speed gadget functionality for the Samsung S3C24xx SoC's that include this

Re: [PATCH 0/4] USB: gadget: Add Samsung S3C24xx USB HS controller driver

2010-10-21 Thread Ben Dooks
On 13/10/10 01:10, Sangbeom Kim wrote: The Samsung's S3C2416, S3C2443 and S3C2450 includes a USB High-Speed device controller module. This driver enables support for USB high-speed gadget functionality for the Samsung S3C24xx SoC's that include this controller. The patch series contains:

RE: [PATCH] ARM: S3C24XX: Fix the S3C24XX_VA_GPIO mapping

2010-10-21 Thread Kukjin Kim
Ben Dooks wrote: On 20/10/10 14:33, Kukjin Kim wrote: This patch changes the S3C24XX_VA_GPIO for to fix following BUG. BUG: not creating mapping for 0x5600 at 0x0100 in user region It is due to commit 8fecfe9d(ARM: SAMSUNG: Move the start address of Samsung SoCs' VA space)

RE: [PATCH 1/5] ARM: S5P6442: Add DMA operation clock

2010-10-21 Thread Kukjin Kim
Ben Dooks wrote: On 21/10/10 01:58, Kukjin Kim wrote: From: Seungwhan Youn sw.y...@samsung.com This patch adds DMA operation clock which is disabled as default. Signed-off-by: Seungwhan Youn sw.y...@samsung.com Acked-by: Jassi Brar jassi.b...@samsung.com Signed-off-by: Kukjin Kim

RE: [PATCH] ARM: SAMSUNG: Add the missed s3c_gpio_getpull() API

2010-10-21 Thread Kukjin Kim
Ben Dooks wrote: On 21/10/10 09:04, Kukjin Kim wrote: From: Daein Moon moon9...@samsung.com This patch adds the s3c_gpio_getpull() API that has been missed in the plat-samsung/gpio-config.c and actullay there is its extern declaration in plat/gpio-cfg.h. Signed-off-by: Daein Moon

RE: [PATCH 1/2] ARM: S5PV310: Add support SROMC

2010-10-21 Thread Kukjin Kim
Marek Szyprowski wrote: Hello, On Wednesday, October 13, 2010 2:16 PM Sangbeom Kim wrote: From: Daein Moon moon9...@samsung.com This patch adds support SROMC for S5PV310 and S5PC210. Signed-off-by: Daein Moon moon9...@samsung.com Signed-off-by: Sangbeom Kim sbki...@samsung.com