RE: [PATCH 8/8] ARM: dma-mapping: add support for IOMMU mapper

2012-01-25 Thread Marek Szyprowski
Hello, On Wednesday, January 25, 2012 1:47 PM Hiroshi Doyu wrote: > Hi Marek, > > On Fri, 9 Dec 2011 17:39:58 +0100 > Marek Szyprowski wrote: > > > This patch add a complete implementation of DMA-mapping API for > > devices that have IOMMU support. All DMA-mapping calls are supported. > > > >

Re: [PATCH 5/6] ARM: SAMSUNG: Correct M-5MOLS sensor clock frequency on Nuri board

2012-01-25 Thread Sylwester Nawrocki
oops, it's for Universal C210 so the subject should be: ARM: SAMSUNG: Correct M-5MOLS sensor clock frequency on Universal C210 board Should I resend or would you fix it when applying. -- Regards, Sylwester On 01/25/2012 03:23 PM, Sylwester Nawrocki wrote: > In order to keep the sensor's master

Re: [PATCH] spi: Add spi-s3c64xx driver dependency on ARCH_EXYNOS4

2012-01-25 Thread Grant Likely
On Wed, Jan 25, 2012 at 05:20:59PM +0100, Sylwester Nawrocki wrote: > The spi-s3c64xx driver is also used on Exynos4 so update the dependency > to enable build on those platforms. > > Cc: Jaswinder Singh > Signed-off-by: Sylwester Nawrocki > Signed-off-by: Kyungmin Park Applied, thanks. > ---

[PATCH v2] spi: Add spi-s3c64xx driver dependency on ARCH_EXYNOS4

2012-01-25 Thread Sylwester Nawrocki
The spi-s3c64xx driver is also used on Exynos4 so update the dependency to enable build on those platforms. Signed-off-by: Sylwester Nawrocki Signed-off-by: Kyungmin Park --- Resending with Jaswinder Singh e-mail address, which is not valid any more, removed. My apologies for the noise. --- dri

[PATCH] spi: Add spi-s3c64xx driver dependency on ARCH_EXYNOS4

2012-01-25 Thread Sylwester Nawrocki
The spi-s3c64xx driver is also used on Exynos4 so update the dependency to enable build on those platforms. Cc: Jaswinder Singh Signed-off-by: Sylwester Nawrocki Signed-off-by: Kyungmin Park --- drivers/spi/Kconfig |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) diff --git a/drive

[PATCH 4/6] ARM: SAMSUNG: Correct framebuffer window size on Nuri board

2012-01-25 Thread Sylwester Nawrocki
The real LCD resolution on Nuri is 1024x600, not 1280x800. This change fixes the color distortion (green shadows) on half of the screen. Also increase framebuffer virtual size for display panning support. Signed-off-by: Sylwester Nawrocki Signed-off-by: Marek Szyprowski Signed-off-by: Kyungmin P

[PATCH 6/6] ARM: SAMSUNG: Fix platform data setup for I2C adapter 0

2012-01-25 Thread Sylwester Nawrocki
The common static default_i2c_data structure gets bus_num set by each s3c_i2c?_set_platdata() call, except for s3c_i2c0_set_platdata(). Thus if for instance s3c_i2c1_set_platdata() is called prior to s3c_i2c0_set_platdata() the I2C0 controller has bus_num set to wrong value of 1, i.e. the one from

[PATCH 3/6] ARM: SAMSUNG: Add support for S5K6AAFX camera on Nuri board

2012-01-25 Thread Sylwester Nawrocki
Add voltage regulator and platform data definitions for S5K6AAFX sensor driver and configure I2C6 bus timings. Signed-off-by: Sylwester Nawrocki Signed-off-by: HeungJun Kim Signed-off-by: Kyungmin Park --- arch/arm/mach-exynos/Kconfig |2 + arch/arm/mach-exynos/mach-nuri.c | 65 +

[PATCH 5/6] ARM: SAMSUNG: Correct M-5MOLS sensor clock frequency on Nuri board

2012-01-25 Thread Sylwester Nawrocki
In order to keep the sensor's master clock frequency in valid range when FIMC parent clock is xusbxti, the specified frequency must be exactly 24MHZ, otherwise it's being set to too low value due to rounding. Signed-off-by: Sylwester Nawrocki Signed-off-by: Kyungmin Park --- arch/arm/mach-exyno

[PATCH 2/6] ARM: SAMSUNG: Add support for S5K6AAFX image sensor on Universal C210 board

2012-01-25 Thread Sylwester Nawrocki
Add voltage regulator and platform data definitions for S5K6AAFX image sensor driver. Signed-off-by: Sylwester Nawrocki Signed-off-by: Kyungmin Park --- arch/arm/mach-exynos/mach-universal_c210.c | 74 ++-- 1 files changed, 70 insertions(+), 4 deletions(-) diff --git

[PATCH 1/6] ARM: SAMSUNG: Increase virtual framebuffer size on Universal C210 board

2012-01-25 Thread Sylwester Nawrocki
Increase framebuffer virtual size to enable display panning. Signed-off-by: Sylwester Nawrocki Signed-off-by: Kyungmin Park --- arch/arm/mach-exynos/mach-universal_c210.c |2 ++ 1 files changed, 2 insertions(+), 0 deletions(-) diff --git a/arch/arm/mach-exynos/mach-universal_c210.c b/arch

[PATCH 0/6] ARM: SAMSUNG: Board updates and minor fixes

2012-01-25 Thread Sylwester Nawrocki
The following patch series adds S5K6AAFX sensor support on Nuri and UNIVERSAL_C210 boards. It also includes minor correction for the I2C controller setup and the M-5MOLS sensor. Sylwester Nawrocki (6): ARM: SAMSUNG: Increase virtual framebuffer size on Universal C210 board ARM: SAMSUNG: Add

Re: [PATCH v2 2/2] regulator: add device tree support for max8997

2012-01-25 Thread Mark Brown
On Wed, Jan 25, 2012 at 01:02:29PM +0100, Karol Lewandowski wrote: > On 25.01.2012 12:26, Mark Brown wrote: > However, I still find it little problematic that dt and non-dt > versions behave differently when given the same set of parameters > (previously apply_uV wasn't the default and required ex

Re: [PATCH 8/8 RESEND] ARM: dma-mapping: add support for IOMMU mapper

2012-01-25 Thread Russell King - ARM Linux
On Mon, Jan 09, 2012 at 04:49:21PM +0100, Marek Szyprowski wrote: > This patch add a complete implementation of DMA-mapping API for > devices that have IOMMU support. All DMA-mapping calls are supported. > > This patch contains some of the code kindly provided by Krishna Reddy > and Andrzej Pietr

Re: [PATCH 8/8] ARM: dma-mapping: add support for IOMMU mapper

2012-01-25 Thread Hiroshi Doyu
Hi Marek, On Fri, 9 Dec 2011 17:39:58 +0100 Marek Szyprowski wrote: > This patch add a complete implementation of DMA-mapping API for > devices that have IOMMU support. All DMA-mapping calls are supported. > > This patch contains some of the code kindly provided by Krishna Reddy > and Andrzej P

Re: [PATCH v2 2/2] regulator: add device tree support for max8997

2012-01-25 Thread Karol Lewandowski
On 25.01.2012 12:26, Mark Brown wrote: On Wed, Jan 25, 2012 at 10:55:49AM +0100, Karol Lewandowski wrote: On 12.01.2012 08:35, Thomas Abraham wrote: Add device tree based discovery support for max8997. + pdata->regulators = rdata; + for_each_child_of_node(regulators_np, reg_np) {

Re: [PATCH v8 2/2] iommu/exynos: Add iommu driver for Exynos Platforms

2012-01-25 Thread Joerg Roedel
On Wed, Jan 25, 2012 at 03:51:58PM +0900, KyongHo Cho wrote: > > This isn't really a problem. We allow destroying a domain with devices > > attached. So this WARN_ON is not necessary. > > > BTW, Isn't it a problem when a device driver does not know that its > iommu domain is destroyed? > Can we reg

Re: [PATCH v2 2/2] regulator: add device tree support for max8997

2012-01-25 Thread Mark Brown
On Wed, Jan 25, 2012 at 10:55:49AM +0100, Karol Lewandowski wrote: > On 12.01.2012 08:35, Thomas Abraham wrote: > >Add device tree based discovery support for max8997. > > >+pdata->regulators = rdata; > >+for_each_child_of_node(regulators_np, reg_np) { > >+for (i = 0; i< ARRAY

Re: [PATCH 21/31] ARM: amba: realview: get rid of private platform amba_device initializer

2012-01-25 Thread Russell King - ARM Linux
On Wed, Jan 25, 2012 at 10:39:06AM +, Will Deacon wrote: > On Wed, Jan 25, 2012 at 10:22:02AM +, Russell King - ARM Linux wrote: > > On Wed, Jan 25, 2012 at 09:58:00AM +, Will Deacon wrote: > > > Sure. Which branch shall I take it against (before or after your amba > > > changes)? > >

[PATCH] ARM: Exynos4: dts: Specify address and size cells for i2c controllers

2012-01-25 Thread Karol Lewandowski
Signed-off-by: Karol Lewandowski Signed-off-by: Kyungmin Park --- arch/arm/boot/dts/exynos4210.dtsi | 16 1 files changed, 16 insertions(+), 0 deletions(-) diff --git a/arch/arm/boot/dts/exynos4210.dtsi b/arch/arm/boot/dts/exynos4210.dtsi index 63d7578..d11e167 100644 --- a/

Re: [PATCH 21/31] ARM: amba: realview: get rid of private platform amba_device initializer

2012-01-25 Thread Will Deacon
On Wed, Jan 25, 2012 at 10:22:02AM +, Russell King - ARM Linux wrote: > On Wed, Jan 25, 2012 at 09:58:00AM +, Will Deacon wrote: > > Sure. Which branch shall I take it against (before or after your amba > > changes)? > > If it's before them, we can think about putting it in as a fix during

Re: [PATCH 21/31] ARM: amba: realview: get rid of private platform amba_device initializer

2012-01-25 Thread Russell King - ARM Linux
On Wed, Jan 25, 2012 at 09:58:00AM +, Will Deacon wrote: > Sure. Which branch shall I take it against (before or after your amba > changes)? If it's before them, we can think about putting it in as a fix during this -rc independently of the rest of the changes. If it's after, then it'll proba

Re: [PATCH 21/31] ARM: amba: realview: get rid of private platform amba_device initializer

2012-01-25 Thread Will Deacon
On Tue, Jan 24, 2012 at 09:45:31PM +, Russell King - ARM Linux wrote: > On Tue, Jan 24, 2012 at 05:26:00PM +, Will Deacon wrote: > > diff --git a/arch/arm/mach-realview/include/mach/irqs-pb1176.h > > b/arch/arm/mach-realview/include/mach/irqs-pb1176.h > > index 5c3c625..708f841 100644 > >

Re: [PATCH v2 2/2] regulator: add device tree support for max8997

2012-01-25 Thread Karol Lewandowski
On 12.01.2012 08:35, Thomas Abraham wrote: Add device tree based discovery support for max8997. +static int max8997_pmic_dt_parse_pdata(struct max8997_dev *iodev, + struct max8997_platform_data *pdata) +{ + pdata->regulators = rdata; + for_e