[PATCH 0/3] Exynos multi-platform support

2014-05-21 Thread Sachin Kamat
platform support for Exynos as suggested by Arnd and Olof (patch 2/3). With this change certain features (drivers) which are not yet multi-platform aware like cpufreq, devfreq and DRM based gscaler will not be available now. Arnd Bergmann (1): ARM: EXYNOS: Enable multi-platform build support Sachin

Re: [PATCH 2/3] ARM: EXYNOS: Enable multi-platform build support

2014-05-21 Thread Sachin Kamat
On 21 May 2014 13:46, Arnd Bergmann a...@arndb.de wrote: On Wednesday 21 May 2014 12:22:48 Sachin Kamat wrote: # Configuration options for the EXYNOS4 +config ARCH_EXYNOS + bool Samsung EXYNOS if ARCH_MULTI_V7 + select ARCH_HAS_BANDGAP + select ARCH_HAS_CPUFREQ

Re: [PATCH 1/3] ARM: dts: replace number by macro in clock binding for exynos4

2014-05-21 Thread Sachin Kamat
Hi Beomho, On 21 May 2014 14:09, Beomho Seo beomho@samsung.com wrote: This patch replaces magic number of MIPI DSI Master node with macros in clock binding for exynos4 Signed-off-by: Beomho Seo beomho@samsung.com --- Looks good. All 3 patches Reviewed-by: Sachin Kamat sachin.ka

Re: [PATCH v2 0/3] Support for multiple MFC FW sub-versions

2014-05-21 Thread Sachin Kamat
]. [1] http://permalink.gmane.org/gmane.linux.kernel.samsung-soc/31735 Changes from v1 - Addressed nits pointed by Sachin on PATCH 2/3 Thanks Arun. Series looks good. Reviewed-by: Sachin Kamat sachin.ka...@linaro.org -- With warm regards, Sachin -- To unsubscribe from this list: send the line

Re: [PATCH 2/3] ARM: EXYNOS: Enable multi-platform build support

2014-05-21 Thread Sachin Kamat
Hi Bartlomiej, On 21 May 2014 16:06, Bartlomiej Zolnierkiewicz b.zolnier...@samsung.com wrote: Hi, On Wednesday, May 21, 2014 12:22:48 PM Sachin Kamat wrote: From: Arnd Bergmann a...@arndb.de This makes it possible to enable the exynos platform as part of a multiplatform kernel

Re: [PATCH 1/1] ARM: EXYNOS: Fix compilation warning

2014-05-21 Thread Sachin Kamat
On 5 May 2014 14:56, Sachin Kamat sachin.ka...@linaro.org wrote: of_get_flat_dt_prop return type is now const. Fixes the following compilation warning introduced by commit 9d0c4dfedd96 (of/fdt: update of_get_flat_dt_prop in prep for libfdt) arch/arm/mach-exynos/exynos.c:259:6: warning

[PATCH 1/1] clk: exynos5420: Staticize local variables

2014-05-21 Thread Sachin Kamat
Local symbols are made static. Signed-off-by: Sachin Kamat sachin.ka...@linaro.org --- drivers/clk/samsung/clk-exynos5420.c | 10 +- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/drivers/clk/samsung/clk-exynos5420.c b/drivers/clk/samsung/clk-exynos5420.c index

Re: [PATCH 2/3] [media] s5p-mfc: Support multiple firmware sub-versions

2014-05-20 Thread Sachin Kamat
Hi Arun, On 20 May 2014 15:47, Arun Kumar K arun...@samsung.com wrote: For MFC firmwares, improved versions with bug fixes and feature additions are released keeping the firmware version including major and minor number same. The issue came with the release of a new MFCv6 firmware with an

Re: [PATCH v2 2/5] ARM: dts: enable fimd for exynos5250 based snow board

2014-05-08 Thread Sachin Kamat
@@ clock-frequency = 2400; }; }; + + fimd@1440 { + status = okay; (+cc Sachin Kamat, Tomasz Figa) For readability, how about moving 'status' to the last entry of the node? The same comment applies to other patches, too. Either at the top

Re: [PATCH] [media] s5p-mfc: Dequeue sequence header after STREAMON

2014-05-08 Thread Sachin Kamat
Hi Arun, Just 2 small nits. On 7 May 2014 17:00, Arun Kumar K arun...@samsung.com wrote: MFCv6 encoder needs specific minimum number of buffers to be queued in the CAPTURE plane. This minimum number will be known only when the sequence header is generated. So we used to allow STREAMON on the

Re: [PATCH v2 1/2] ARM: EXYNOS: Map SYSRAM through generic SRAM bindings

2014-05-07 Thread Sachin Kamat
Hi Tomasz, On 7 May 2014 22:33, Tomasz Figa t.f...@samsung.com wrote: On 06.05.2014 20:09, Sachin Kamat wrote: [snip] On 6 May 2014 22:14, Tomasz Figa tomasz.f...@gmail.com wrote: [snip] On 06.05.2014 10:10, Sachin Kamat wrote: [snip] diff --git a/arch/arm/mach-exynos/platsmp.c b/arch/arm

[PATCH v3 2/2] Documentation: DT: Exynos: Bind SRAM though DT

2014-05-07 Thread Sachin Kamat
Add SRAM binding documentation. Signed-off-by: Sachin Kamat sachin.ka...@linaro.org Acked-by: Arnd Bergmann a...@arndb.de --- No changes since v1. --- .../devicetree/bindings/arm/exynos/smp-sram.txt| 38 1 file changed, 38 insertions(+) create mode 100644

[PATCH v3 1/2] ARM: EXYNOS: Map SYSRAM through generic SRAM bindings

2014-05-07 Thread Sachin Kamat
Instead of hardcoding the SYSRAM details for each SoC, pass this information through device tree (DT) and make the code SoC agnostic. Generic SRAM bindings are used for achieving this. Signed-off-by: Sachin Kamat sachin.ka...@linaro.org Acked-by: Arnd Bergmann a...@arndb.de Acked-by: Heiko

[PATCH v2 1/2] ARM: EXYNOS: Map SYSRAM through generic SRAM bindings

2014-05-06 Thread Sachin Kamat
Instead of hardcoding the SYSRAM details for each SoC, pass this information through device tree (DT) and make the code SoC agnostic. Generic SRAM bindings are used for achieving this. Signed-off-by: Sachin Kamat sachin.ka...@linaro.org Acked-by: Arnd Bergmann a...@arndb.de Acked-by: Heiko

[PATCH v2 2/2] Documentation: DT: Exynos: Bind SRAM though DT

2014-05-06 Thread Sachin Kamat
Add SRAM binding documentation. Signed-off-by: Sachin Kamat sachin.ka...@linaro.org Acked-by: Arnd Bergmann a...@arndb.de --- No changes since v1. --- .../devicetree/bindings/arm/exynos/smp-sram.txt| 38 1 file changed, 38 insertions(+) create mode 100644

Re: [PATCH v2 1/2] ARM: EXYNOS: Map SYSRAM through generic SRAM bindings

2014-05-06 Thread Sachin Kamat
before, due to limited time for review. Please see inline. Thanks for your review. On 06.05.2014 10:10, Sachin Kamat wrote: Instead of hardcoding the SYSRAM details for each SoC, pass this information through device tree (DT) and make the code SoC agnostic. Generic SRAM bindings are used

Re: [PATCH v2 1/2] ARM: EXYNOS: Map SYSRAM through generic SRAM bindings

2014-05-06 Thread Sachin Kamat
Hi Tomasz, On 6 May 2014 23:39, Sachin Kamat sachin.ka...@linaro.org wrote: Hi Tomasz, On 6 May 2014 22:14, Tomasz Figa tomasz.f...@gmail.com wrote: Hi Sachin, Thanks for addressing the comments. I need to verify few things on Universal C210 board first, before I could give my Reviewed

Re: [PATCH v2 1/2] ARM: EXYNOS: Map SYSRAM through generic SRAM bindings

2014-05-04 Thread Sachin Kamat
Hi Tomasz, On 2 May 2014 23:24, Tomasz Figa tomasz.f...@gmail.com wrote: Hi Sachin, The whole series looks quite good, Thanks :) but I have one concern about support for Universal C210 board. Please see my comment inline. On 02.05.2014 07:06, Sachin Kamat wrote: Instead of hardcoding

Re: [PATCH 1/1] ARM: dts: Keep LDO4 always ON on Arndale board

2014-05-04 Thread Sachin Kamat
On 21 April 2014 10:33, Sachin Kamat sachin.ka...@linaro.org wrote: LDO4 regulator was getting disabled preventing the system from going into low power states. Keep it always on to fix it. Signed-off-by: Sachin Kamat sachin.ka...@linaro.org --- arch/arm/boot/dts/exynos5250-arndale.dts

Re: [PATCH v2 0/6] Further cleanup and enable multiplat build

2014-05-04 Thread Sachin Kamat
On 16 April 2014 19:21, Tomasz Figa t.f...@samsung.com wrote: Hi Sachin, On 15.04.2014 11:28, Sachin Kamat wrote: This series is based on latest linux-next and depends on the following patch: ARM: EXYNOS: Consolidate Kconfig entries http://article.gmane.org/gmane.linux.kernel.samsung-soc

Re: [PATCH 1/1] ARM: dts: Fix SPI interrupt numbers for Exynos5420

2014-05-04 Thread Sachin Kamat
On 10 April 2014 18:28, Sachin Kamat sachin.ka...@linaro.org wrote: Updated as per the user manual. Signed-off-by: Sachin Kamat sachin.ka...@linaro.org --- arch/arm/boot/dts/exynos5420.dtsi |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/arm/boot/dts

Re: [PATCH 1/1] ARM: dts: Add MFC memory banks to Exynos5420 boards

2014-05-04 Thread Sachin Kamat
On 17 March 2014 11:41, Sachin Kamat sachin.ka...@linaro.org wrote: Add MFC memory banks to Exynos5420 based SMDK and Arndale-octa boards. Signed-off-by: Sachin Kamat sachin.ka...@linaro.org --- arch/arm/boot/dts/exynos5420-arndale-octa.dts |5 + arch/arm/boot/dts/exynos5420

[PATCH 2/2] Documentation: DT: Exynos: Bind SRAM though DT

2014-05-01 Thread Sachin Kamat
Add SRAM binding documentation. Signed-off-by: Sachin Kamat sachin.ka...@linaro.org --- .../devicetree/bindings/arm/exynos/smp-sram.txt| 38 1 file changed, 38 insertions(+) create mode 100644 Documentation/devicetree/bindings/arm/exynos/smp-sram.txt diff --git

[PATCH 1/2] ARM: EXYNOS: Map SYSRAM through generic SRAM bindings

2014-05-01 Thread Sachin Kamat
Instead of hardcoding the SYSRAM details for each SoC, pass this information through device tree (DT) and make the code SoC agnostic. Generic SRAM bindings are used for achieving this. Signed-off-by: Sachin Kamat sachin.ka...@linaro.org Cc: Heiko Stuebner he...@sntech.de Cc: Arnd Bergmann

Re: [PATCH 1/1] clk: exynos-5420: Fix VPLL lock offset

2014-05-01 Thread Sachin Kamat
Hi Tomasz, On 13 March 2014 20:27, Sachin Kamat sachin.ka...@linaro.org wrote: On 13 March 2014 17:23, Tomasz Figa t.f...@samsung.com wrote: Hi Sachin, On 13.03.2014 04:27, Sachin Kamat wrote: Set it as per the user manual. Signed-off-by: Sachin Kamat sachin.ka...@linaro.org

Re: [PATCH 1/2] ARM: EXYNOS: Map SYSRAM through generic SRAM bindings

2014-05-01 Thread Sachin Kamat
Hi Heiko, On 1 May 2014 18:57, Heiko Stübner he...@sntech.de wrote: Hi Sachin, Am Donnerstag, 1. Mai 2014, 16:14:44 schrieb Sachin Kamat: Instead of hardcoding the SYSRAM details for each SoC, pass this information through device tree (DT) and make the code SoC agnostic. Generic SRAM

[PATCH v2 1/2] ARM: EXYNOS: Map SYSRAM through generic SRAM bindings

2014-05-01 Thread Sachin Kamat
Instead of hardcoding the SYSRAM details for each SoC, pass this information through device tree (DT) and make the code SoC agnostic. Generic SRAM bindings are used for achieving this. Signed-off-by: Sachin Kamat sachin.ka...@linaro.org Acked-by: Arnd Bergmann a...@arndb.de Acked-by: Heiko

[PATCH v2 2/2] Documentation: DT: Exynos: Bind SRAM though DT

2014-05-01 Thread Sachin Kamat
Add SRAM binding documentation. Signed-off-by: Sachin Kamat sachin.ka...@linaro.org Acked-by: Arnd Bergmann a...@arndb.de --- Changes since v1: Minor re-wording for better clarity. --- .../devicetree/bindings/arm/exynos/smp-sram.txt| 38 1 file changed, 38 insertions

Re: [PATCH 1/2] ARM: EXYNOS: Map SYSRAM through generic SRAM bindings

2014-05-01 Thread Sachin Kamat
On 2 May 2014 07:55, Kukjin Kim kgene@samsung.com wrote: Heiko Stübner wrote: Hi Sachin, Am Donnerstag, 1. Mai 2014, 16:14:44 schrieb Sachin Kamat: Instead of hardcoding the SYSRAM details for each SoC, pass this information through device tree (DT) and make the code SoC agnostic

Re: [PATCH v3 01/12] ARM: EXYNOS: Make exynos machine_ops as static

2014-04-30 Thread Sachin Kamat
Hi Pankaj, On 30 April 2014 10:47, Pankaj Dubey pankaj.du...@samsung.com wrote: As machine function ops are used only in this file let's make them static. Signed-off-by: Pankaj Dubey pankaj.du...@samsung.com --- arch/arm/mach-exynos/exynos.c |6 +++--- 1 file changed, 3 insertions(+),

Re: [PATCH v3 05/12] ARM: EXYNOS: Remove file path from comment section

2014-04-30 Thread Sachin Kamat
Reviewed-by: Tomasz Figa t.f...@samsung.com --- The change is sensible. However Kukjin had refused to accept such patches when I had submitted patches doing such cleanup for all Samsung platform files. Anyway, FWIW Reviewed-by: Sachin Kamat sachin.ka...@linaro.org -- With warm regards, Sachin

Re: [PATCH v3 12/16] clk: exynos5420: fix register offset for sclk_bpll

2014-04-30 Thread Sachin Kamat
Hi Shaik, On 24 April 2014 18:33, Shaik Ameer Basha shaik.am...@samsung.com wrote: This patch fixes the wrong register offset for sclk_bpll clock. Since this patch is a fix, it is better to send it separately so that it gets into one of the upcoming RCs (and if needed to stable).

Re: [PATCH v3 08/16] clk: exynos5420: update clocks for PERIS and GEN blocks

2014-04-30 Thread Sachin Kamat
Hi Shaik, On 24 April 2014 18:33, Shaik Ameer Basha shaik.am...@samsung.com wrote: This patch fixes some parent-child relationships according to the latest datasheet and adds more clocks related to PERIS and GEN blocks. Again, it is better to split up the fixes from other stuff so that it can

Re: [PATCH 2/4] ARM: dts: Add usb2phy to Exynos 5250

2014-04-30 Thread Sachin Kamat
Hi Vivek, On 30 April 2014 14:25, Vivek Gautam gautam.vi...@samsung.com wrote: From: Kamil Debski k.deb...@samsung.com Add support to PHY of USB2 of the Exynos 5250 SoC. Signed-off-by: Kamil Debski k.deb...@samsung.com [gautam.vi...@samsung.com: Split the usb phy entries from syscon

Re: [PATCH 4/4] ARM: dts: Add usb 2.0 support on exynos5420

2014-04-30 Thread Sachin Kamat
On 30 April 2014 14:25, Vivek Gautam gautam.vi...@samsung.com wrote: Add required device node for ehci and ohci controllers to enable USB 2.0 support. Signed-off-by: Vivek Gautam gautam.vi...@samsung.com --- arch/arm/boot/dts/exynos5420.dtsi | 36 +++- 1

[PATCH 1/1] ARM: dts: Add PD entry to MFC codec on 5420

2014-04-29 Thread Sachin Kamat
PD entry was missing in MFC codec node. Signed-off-by: Sachin Kamat sachin.ka...@linaro.org --- arch/arm/boot/dts/exynos5420.dtsi |1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/boot/dts/exynos5420.dtsi b/arch/arm/boot/dts/exynos5420.dtsi index 6f662b5cc90d..2fd36b0a7568 100644

Re: [PATCHv2 2/4] ARM: dts: exynos4: add exynos_usbphy node

2014-04-29 Thread Sachin Kamat
Hi Chanho, On 25 April 2014 12:29, Chanho Park chanho61.p...@samsung.com wrote: This patch enables a exynos_usbphy node for exynos4 SoCs. A exynos4x12 usb phy node is almost same with 4210's one except compatible string and pmu syscon. Cc: Tomasz Figa t.f...@samsung.com Cc: Kamil Debski

Re: [RFC v3 PATCH v2 10/16] drm/exynos: dsi: add driver data to support Exynos5420

2014-04-29 Thread Sachin Kamat
On 27 April 2014 07:20, YoungJun Cho yj44@samsung.com wrote: The offset of register DSIM_PLLTMR_REG in Exynos5420 is different from the one in Exynos4 SoC. In case of Exynos5420 SoC, there is no frequency band bit in DSIM_PLLCTRL_REG, and it uses DSIM_PHYCTRL_REG and DSIM_PHYTIMING*_REG

Re: [RFC v3 PATCH 08/16] drm/exynos: fimd: support I80 interface

2014-04-29 Thread Sachin Kamat
Hi YoungJun, On 27 April 2014 07:20, YoungJun Cho yj44@samsung.com wrote: To support MIPI DSI command mode interface, FIMD should do followings: - Sets LCD block configuration for I80 interface. - Uses lcd_sys as an IRQ resource and sets relevant IRQ configuration. - Implements trigger

Re: [PATCH 5/5] devfreq: exynos5: Use devm_devfreq_* function using device resource management

2014-04-29 Thread Sachin Kamat
@samsung.com Cc: Sachin Kamat sachin.ka...@linaro.org Cc: Bartlomiej Zolnierkiewicz b.zolnier...@samsung.com Cc: Manish Badarkhe badarkhe.man...@gmail.com Cc: Abhilash Kesavan a.kesa...@samsung.com Cc: linux-arm-ker...@lists.infradead.org Cc: linux-samsung-soc@vger.kernel.org --- drivers/devfreq

Re: [PATCH 2/3] [media] s5p-mfc: Core support to add v8 decoder

2014-04-29 Thread Sachin Kamat
Hi Arun, On 23 April 2014 18:27, Arun Kumar K arun...@samsung.com wrote: From: Kiran AVND avnd.ki...@samsung.com This patch adds variant data and core support for V8 decoder. This patch also adds the register definition file for new firmware version v8 for MFC. Signed-off-by: Kiran AVND

Re: [PATCH Resend] ARM: EXYNOS: Map SYSRAM address through DT

2014-04-29 Thread Sachin Kamat
Hi Heiko, On 16 April 2014 22:55, Heiko Stübner he...@sntech.de wrote: Hi, Am Mittwoch, 16. April 2014, 16:35:36 schrieb Arnd Bergmann: On Wednesday 16 April 2014 17:20:51 Sachin Kamat wrote: Instead of hardcoding the SYSRAM details for each SoC, pass this information through device tree

Re: [PATCH] ARM: dts: Remove vmmc-supply for mmc@12220000 on arndale-octa board

2014-04-27 Thread Sachin Kamat
Hi Javi, On 26 April 2014 16:49, Kukjin Kim kgene@samsung.com wrote: Javi Merino wrote: On Fri, Apr 25, 2014 at 09:35:35PM +0100, Tomasz Figa wrote: On 25.04.2014 22:30, Javi Merino wrote: On Fri, Apr 25, 2014 at 09:16:30PM +0100, Tomasz Figa wrote: On 25.04.2014 22:11, Javi Merino

[PATCH 1/1] ARM: dts: Keep LDO4 always ON on Arndale board

2014-04-20 Thread Sachin Kamat
LDO4 regulator was getting disabled preventing the system from going into low power states. Keep it always on to fix it. Signed-off-by: Sachin Kamat sachin.ka...@linaro.org --- arch/arm/boot/dts/exynos5250-arndale.dts |1 + 1 file changed, 1 insertion(+) diff --git a/arch/arm/boot/dts

Re: [PATCH] ARM: dts: Add peach-pit board support

2014-04-20 Thread Sachin Kamat
Hi Arun, On 20 April 2014 10:56, Arun Kumar K arun...@samsung.com wrote: Adds the google peach-pit board dts file which uses exynos5420 SoC. Signed-off-by: Arun Kumar K arun...@samsung.com Signed-off-by: Doug Anderson diand...@chromium.org --- arch/arm/boot/dts/Makefile |

Re: [PATCH 0/2] Support cpufreq driver for Exynos3250

2014-04-19 Thread Sachin Kamat
Hi Tomasz, On 19 April 2014 19:21, Tomasz Figa tomasz.f...@gmail.com wrote: Hi Chanwoo, Sachin, On 19.04.2014 15:43, Chanwoo Choi wrote: Hi Sachin, On Fri, Apr 18, 2014 at 5:14 PM, Sachin Kamat sachin.ka...@linaro.org wrote: Hi Chanwoo, On 18 April 2014 07:50, Chanwoo Choi cw00.c

Re: [PATCH 0/2] Support cpufreq driver for Exynos3250

2014-04-18 Thread Sachin Kamat
Hi Chanwoo, On 18 April 2014 07:50, Chanwoo Choi cw00.c...@samsung.com wrote: This patchset support cpufreq driver for Exynos3250 which uses the Cortex-A7 dual cores and has a target speed of 1.0 GHz and code clean using dev_err/info instead of pr_err/info function. Per SoC cpufreq driver

Re: [PATCH v8 1/3] ARM: EXYNOS: initial board support for exynos5260 SoC

2014-04-16 Thread Sachin Kamat
Hi Tomasz, On 16 April 2014 13:27, Tomasz Figa tomasz.f...@gmail.com wrote: Hi Rahul, On 16.04.2014 05:58, Rahul Sharma wrote: From: Pankaj Dubey pankaj.du...@samsung.com This patch add basic arch side support for exynos5260 SoC. Signed-off-by: Pankaj Dubey pankaj.du...@samsung.com

[PATCH Resend] ARM: EXYNOS: Map SYSRAM address through DT

2014-04-16 Thread Sachin Kamat
Instead of hardcoding the SYSRAM details for each SoC, pass this information through device tree (DT) and make the code SoC agnostic. Signed-off-by: Sachin Kamat sachin.ka...@linaro.org --- Rebased on latest linux-next. --- .../devicetree/bindings/arm/samsung-boards.txt | 11 +++ arch/arm

Re: [PATCH Resend 3/3] ARM: EXYNOS: Map SYSRAM address through DT

2014-04-16 Thread Sachin Kamat
Hi Chanwoo, On 16 April 2014 16:36, Chanwoo Choi cw00.c...@samsung.com wrote: Hi Sachin, I want to use this patch to remove static SYSRAM memory mapping for Exynos3250. But this patch has conflict on 3.15-rc1 base. Do you have a plan to resend this patch? Rebased and resent (CC'd you).

Re: [PATCH 4/4] regulator: s5m8767: Use same binding for external control as in s2mps11

2014-04-15 Thread Sachin Kamat
On 15 April 2014 02:41, Mark Brown broo...@kernel.org wrote: On Mon, Apr 14, 2014 at 10:09:09AM +0200, Krzysztof Kozlowski wrote: - - s5m8767,pmic-ext-control-gpios: (optional) GPIO specifier for one + - samsung,ext-control-gpios: (optional) GPIO specifier for one GPIO

Re: [RFC PATCH 04/14] ARM: dts: add exynos5 compatible to sysreg

2014-04-15 Thread Sachin Kamat
Hi YoungJun, On 15 April 2014 11:17, YoungJun Cho yj44@samsung.com wrote: This patch adds sysreg support for exynos5 SoCs. The patch title and commit description seem a bit off here. This patch does not add support per se. It only updates the binding documentaion. -- With warm regards,

Re: [RFC PATCH 14/14] ARM: dts: exynos5420: add dsi node

2014-04-15 Thread Sachin Kamat
Hi YoungJun, On 15 April 2014 11:17, YoungJun Cho yj44@samsung.com wrote: This patch adds common part of dsi node. Signed-off-by: YoungJun Cho yj44@samsung.com Signed-off-by: Inki Dae inki@samsung.com Signed-off-by: Kyungmin Park kyungmin.p...@samsung.com ---

Re: [RFC PATCH 07/14] ARM: dts: exynos_dsim: add exynos5420 Soc compatible

2014-04-15 Thread Sachin Kamat
On 15 April 2014 11:17, YoungJun Cho yj44@samsung.com wrote: This patch adds exynos5420 SoC support. This patch just updates binding documentation :) Signed-off-by: YoungJun Cho yj44@samsung.com Signed-off-by: Inki Dae inki@samsung.com Signed-off-by: Kyungmin Park

Re: [RFC PATCH 09/14] ARM: dts: s6e3fa0: add DT bindings

2014-04-15 Thread Sachin Kamat
On 15 April 2014 11:17, YoungJun Cho yj44@samsung.com wrote: This patch adds DT bindings for s6e3fa0 panel. The bindings describes panel resources, display timings, delays and physical size. Signed-off-by: YoungJun Cho yj44@samsung.com Signed-off-by: Inki Dae inki@samsung.com

Re: [PATCH 4/4] regulator: s5m8767: Use same binding for external control as in s2mps11

2014-04-15 Thread Sachin Kamat
On 15 April 2014 13:42, Krzysztof Kozlowski k.kozlow...@samsung.com wrote: On wto, 2014-04-15 at 13:26 +0530, Sachin Kamat wrote: On 15 April 2014 02:41, Mark Brown broo...@kernel.org wrote: On Mon, Apr 14, 2014 at 10:09:09AM +0200, Krzysztof Kozlowski wrote: - - s5m8767,pmic-ext

Re: [RFC PATCH 12/14] ARM: dts: exynos5: add system register support

2014-04-15 Thread Sachin Kamat
On 15 April 2014 11:17, YoungJun Cho yj44@samsung.com wrote: This patch adds sysreg device node, and sysreg property to fimd device node which is required to use I80 interface. Signed-off-by: YoungJun Cho yj44@samsung.com Signed-off-by: Inki Dae inki@samsung.com Signed-off-by:

Re: [PATCH 2/6] ARM: EXYNOS: Staticize exynos_subsys

2014-04-15 Thread Sachin Kamat
Hi Tomasz, On 10 April 2014 18:05, Sachin Kamat sachin.ka...@linaro.org wrote: On 10 April 2014 18:02, Tomasz Figa t.f...@samsung.com wrote: On 10.04.2014 11:22, Sachin Kamat wrote: Hi Tomasz, On 10 April 2014 14:47, Tomasz Figa t.f...@samsung.com wrote: snip Hmm, I don't see why it could

[PATCH 2/6] ARM: EXYNOS: Remove exynos_subsys registration

2014-04-15 Thread Sachin Kamat
'exynos_subsys' has no users. Remove this code. Signed-off-by: Sachin Kamat sachin.ka...@linaro.org --- arch/arm/mach-exynos/exynos.c| 11 --- arch/arm/plat-samsung/include/plat/cpu.h |1 - 2 files changed, 12 deletions(-) diff --git a/arch/arm/mach-exynos/exynos.c b

[PATCH v2 0/6] Further cleanup and enable multiplat build

2014-04-15 Thread Sachin Kamat
registration as that code is no more used. Tested on Exynos4210, 4412, 5250 and 5420 based boards. Arnd Bergmann (1): ARM: EXYNOS: Enable multi-platform build support Sachin Kamat (5): ARM: EXYNOS: Remove duplicate lines in Makefile ARM: EXYNOS: Remove exynos_subsys registration ARM: EXYNOS

[PATCH 4/6] ARM: EXYNOS: Remove unnecessary inclusion of cpu.h

2014-04-15 Thread Sachin Kamat
Exynos specific macros and declarations have been moved to mach-exynos. Inclusion of plat/cpu.h is no more necessary. Signed-off-by: Sachin Kamat sachin.ka...@linaro.org --- arch/arm/mach-exynos/cpuidle.c |1 - arch/arm/mach-exynos/exynos.c |2 -- arch/arm/mach-exynos/hotplug.c |2

[PATCH 6/6] ARM: multi_v7_defconfig: Enable Exynos platform

2014-04-15 Thread Sachin Kamat
Enable Exynos platform and its related IPs. Signed-off-by: Sachin Kamat sachin.ka...@linaro.org --- arch/arm/configs/multi_v7_defconfig | 10 ++ 1 file changed, 10 insertions(+) diff --git a/arch/arm/configs/multi_v7_defconfig b/arch/arm/configs/multi_v7_defconfig index d4e8a47a2f7c

[PATCH 5/6] ARM: EXYNOS: Enable multi-platform build support

2014-04-15 Thread Sachin Kamat
-by: Sachin Kamat sachin.ka...@linaro.org --- arch/arm/Kconfig | 27 +++ arch/arm/configs/exynos_defconfig |2 +- arch/arm/mach-exynos/Kconfig | 27 +++ arch/arm/mach-exynos/Makefile |2 ++ arch/arm/plat-samsung/Makefile

[PATCH 3/6] ARM: EXYNOS: Migrate Exynos specific macros from plat to mach

2014-04-15 Thread Sachin Kamat
Move Exynos specific macros to mach-exynos from plat-samsung to avoid unnecessary dependency on plat based header files. Signed-off-by: Sachin Kamat sachin.ka...@linaro.org --- arch/arm/mach-exynos/common.h| 72 ++ arch/arm/plat-samsung/include/plat

Re: [RFC PATCH 12/14] ARM: dts: exynos5: add system register support

2014-04-15 Thread Sachin Kamat
On 15 April 2014 14:48, Sylwester Nawrocki s.nawro...@samsung.com wrote: On 15/04/14 10:41, Sachin Kamat wrote: On 15 April 2014 11:17, YoungJun Cho yj44@samsung.com wrote: This patch adds sysreg device node, and sysreg property to fimd device node which is required to use I80 interface

Re: [PATCH 4/4] regulator: s5m8767: Use same binding for external control as in s2mps11

2014-04-15 Thread Sachin Kamat
On 15 April 2014 14:25, Krzysztof Kozlowski k.kozlow...@samsung.com wrote: On wto, 2014-04-15 at 14:02 +0530, Sachin Kamat wrote: On 15 April 2014 13:42, Krzysztof Kozlowski k.kozlow...@samsung.com wrote: On wto, 2014-04-15 at 13:26 +0530, Sachin Kamat wrote: On 15 April 2014 02:41, Mark

Re: [PATCH 3/4] ARM: dts: exynos5250-snow: add tps65090 power regulator

2014-04-15 Thread Sachin Kamat
Hi Doug, On 15 April 2014 04:13, Doug Anderson diand...@chromium.org wrote: Sachin, On Mon, Apr 14, 2014 at 6:16 AM, Sachin Kamat sachin.ka...@linaro.org wrote: From: Doug Anderson diand...@chromium.org Added TPS65090 regulator related nodes to Snow board. Signed-off-by: Doug Anderson

Re: [PATCHv2 1/2] iio: adc: exynos_adc: Control special clock of ADC to support Exynos3250 ADC

2014-04-15 Thread Sachin Kamat
Hi Chanwoo, On 14 April 2014 14:37, Chanwoo Choi cw00.c...@samsung.com wrote: This patch control special clock for ADC in Exynos series's FSYS block. If special clock of ADC is registerd on clock list of common clk framework, Exynos ADC drvier have to control this clock.

Re: [PATCH v8 0/3] exynos: arch: add support for exynos5260 SoC

2014-04-15 Thread Sachin Kamat
/dts/exynos5260-pinctrl.dtsi create mode 100644 arch/arm/boot/dts/exynos5260-xyref5260.dts create mode 100644 arch/arm/boot/dts/exynos5260.dtsi Series looks good. Reviewed-by: Sachin Kamat sachin.ka...@linaro.org -- With warm regards, Sachin -- To unsubscribe from this list: send the line

Re: [PATCHv2 1/2] iio: adc: exynos_adc: Control special clock of ADC to support Exynos3250 ADC

2014-04-15 Thread Sachin Kamat
Hi Chanwoo, On 16 April 2014 10:25, Chanwoo Choi cw00.c...@samsung.com wrote: Hi Sachin, On 04/16/2014 01:44 PM, Chanwoo Choi wrote: Hi Sachin, On 04/16/2014 12:48 PM, Sachin Kamat wrote: Hi Chanwoo, On 14 April 2014 14:37, Chanwoo Choi cw00.c...@samsung.com wrote: This patch control

[PATCH 1/4] ARM: dts: exynos5250-snow: add pinctrl for i2c-arbitrator

2014-04-14 Thread Sachin Kamat
From: Doug Anderson diand...@chromium.org Added i2c-arbitrator pinctrl node to Snow board. Signed-off-by: Doug Anderson diand...@chromium.org Signed-off-by: Sachin Kamat sachin.ka...@linaro.org --- arch/arm/boot/dts/exynos5250-snow.dts | 19 +++ 1 file changed, 19 insertions

[PATCH 2/4] ARM: dts: exynos5250-snow: add pinctrl for EC irq

2014-04-14 Thread Sachin Kamat
From: Doug Anderson diand...@chromium.org Added pinctrl node for embedded controller (EC) IRQ on Snow board. Signed-off-by: Doug Anderson diand...@chromium.org Signed-off-by: Sachin Kamat sachin.ka...@linaro.org --- arch/arm/boot/dts/exynos5250-snow.dts |9 + 1 file changed, 9

[PATCH 4/4] ARM: dts: exynos5250-snow: add ptn3460 node

2014-04-14 Thread Sachin Kamat
From: Doug Anderson diand...@chromium.org Added nodes for ptn3460 driver to Snow board. Signed-off-by: Doug Anderson diand...@chromium.org Signed-off-by: Ajay Kumar ajaykumar...@samsung.com Signed-off-by: Sachin Kamat sachin.ka...@linaro.org --- arch/arm/boot/dts/exynos5250-snow.dts | 19

[PATCH 3/6] ARM: EXYNOS: Migrate Exynos specific macros from plat to mach

2014-04-10 Thread Sachin Kamat
Move Exynos specific macros to mach-exynos from plat-samsung to avoid unnecessary dependency on plat based header files. Signed-off-by: Sachin Kamat sachin.ka...@linaro.org --- arch/arm/mach-exynos/common.h| 72 ++ arch/arm/plat-samsung/include/plat

[PATCH 2/6] ARM: EXYNOS: Staticize exynos_subsys

2014-04-10 Thread Sachin Kamat
'exynos_subsys' is now local to this file. Make it static and remove the declaration from header file. Signed-off-by: Sachin Kamat sachin.ka...@linaro.org --- arch/arm/mach-exynos/exynos.c|2 +- arch/arm/plat-samsung/include/plat/cpu.h |1 - 2 files changed, 1 insertion(+), 2

[PATCH 0/6] Further cleanup and enable multiplat build

2014-04-10 Thread Sachin Kamat
driver support for Exynos gets merged. This (disabling) patch is available in PM tree. http://www.spinics.net/lists/cpufreq/msg09693.html Tested on Exynos4210, 4412, 5250 and 5420 based boards. Arnd Bergmann (1): ARM: EXYNOS: Enable multi-platform build support Sachin Kamat (5): ARM: EXYNOS

[PATCH 1/6] ARM: EXYNOS: Remove duplicate lines in Makefile

2014-04-10 Thread Sachin Kamat
Group all files compiled under common config option together. Signed-off-by: Sachin Kamat sachin.ka...@linaro.org --- arch/arm/mach-exynos/Makefile |7 +-- 1 file changed, 1 insertion(+), 6 deletions(-) diff --git a/arch/arm/mach-exynos/Makefile b/arch/arm/mach-exynos/Makefile index

[PATCH 6/6] ARM: multi_v7_defconfig: Enable Exynos platform

2014-04-10 Thread Sachin Kamat
Enable Exynos platform and its related IPs. Signed-off-by: Sachin Kamat sachin.ka...@linaro.org --- arch/arm/configs/multi_v7_defconfig | 10 ++ 1 file changed, 10 insertions(+) diff --git a/arch/arm/configs/multi_v7_defconfig b/arch/arm/configs/multi_v7_defconfig index d4e8a47a2f7c

Re: [PATCH 2/6] ARM: EXYNOS: Staticize exynos_subsys

2014-04-10 Thread Sachin Kamat
Hi Tomasz, On 10 April 2014 14:47, Tomasz Figa t.f...@samsung.com wrote: Hi Sachin, On 10.04.2014 10:24, Sachin Kamat wrote: 'exynos_subsys' is now local to this file. Make it static and remove the declaration from header file. Signed-off-by: Sachin Kamat sachin.ka...@linaro.org

Re: [PATCH 2/6] ARM: EXYNOS: Staticize exynos_subsys

2014-04-10 Thread Sachin Kamat
On 10 April 2014 18:02, Tomasz Figa t.f...@samsung.com wrote: On 10.04.2014 11:22, Sachin Kamat wrote: Hi Tomasz, On 10 April 2014 14:47, Tomasz Figa t.f...@samsung.com wrote: Hi Sachin, On 10.04.2014 10:24, Sachin Kamat wrote: 'exynos_subsys' is now local to this file. Make it static

[PATCH 1/1] ARM: dts: Fix SPI interrupt numbers for Exynos5420

2014-04-10 Thread Sachin Kamat
Updated as per the user manual. Signed-off-by: Sachin Kamat sachin.ka...@linaro.org --- arch/arm/boot/dts/exynos5420.dtsi |6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/arm/boot/dts/exynos5420.dtsi b/arch/arm/boot/dts/exynos5420.dtsi index c3a9a66c5767

Re: [PATCH 01/27] ARM: EXYNOS: Add Exynos3250 SoC ID

2014-04-10 Thread Sachin Kamat
Hi Chanwoo, On 10 April 2014 15:07, Chanwoo Choi cw00.c...@samsung.com wrote: This patch add Exynos3250's SoC ID. Exynos 3250 is System-On-Chip(SoC) that is based on the 32-bit RISC processor for Smartphone. Exynos3250 uses Cortex-A7 dual cores and has a target speed of 1.0GHz.

Re: [PATCH 10/27] ARM: dts: exynos3250: Add new exynos3250.dtsi file

2014-04-10 Thread Sachin Kamat
Hi Chanwoo, On 10 April 2014 15:36, Chanwoo Choi cw00.c...@samsung.com wrote: From: Tomasz Figa t.f...@samsung.com This patch add new exynos3250.dtsi to support Exynos3250 SoC and includes chipid/sys_reg dt node. Signed-off-by: Tomasz Figa t.f...@samsung.com Signed-off-by: Chanwoo Choi

Re: [PATCH 15/27] ARM: dts: exynos3250: Add uart dt node to support seiral ports

2014-04-10 Thread Sachin Kamat
On 10 April 2014 15:36, Chanwoo Choi cw00.c...@samsung.com wrote: This patch add UART dt node for Exynos3250. Exynos3250 uses same UART IP of Exynos4 SoC and has only two independent channels. Signed-off-by: Chanwoo Choi cw00.c...@samsung.com [Fix incorrect clock id by Tomasz Figa]

Re: [PATCH 01/27] ARM: EXYNOS: Add Exynos3250 SoC ID

2014-04-10 Thread Sachin Kamat
Hi Chanwoo, On 11 April 2014 11:24, Chanwoo Choi cw00.c...@samsung.com wrote: Hi Sachin, On 04/11/2014 12:56 PM, Sachin Kamat wrote: Hi Chanwoo, On 10 April 2014 15:07, Chanwoo Choi cw00.c...@samsung.com wrote: This patch add Exynos3250's SoC ID. Exynos 3250 is System-On-Chip(SoC

Re: [PATCH v6 2/3] ARM: dts: add dts files for exynos5260 SoC

2014-04-09 Thread Sachin Kamat
On 7 April 2014 14:14, Sachin Kamat sachin.ka...@linaro.org wrote: On 3 April 2014 10:47, Rahul Sharma rahul.sha...@samsung.com wrote: The patch adds the dts files for exynos5260. Signed-off-by: Pankaj Dubey pankaj.du...@samsung.com Signed-off-by: Rahul Sharma rahul.sha...@samsung.com Signed

Re: [PATCH v7 1/3] ARM: EXYNOS: initial board support for exynos5260 SoC

2014-04-07 Thread Sachin Kamat
Hi Rahul, On 3 April 2014 15:30, Rahul Sharma rahul.sha...@samsung.com wrote: From: Pankaj Dubey pankaj.du...@samsung.com This patch add basic arch side support for exynos5260 SoC. snip @@ -374,6 +374,7 @@ static char const *exynos_dt_compat[] __initconst = { samsung,exynos4412,

Re: [PATCH v7 3/3] ARM: dts: add dts files for xyref5260 board

2014-04-07 Thread Sachin Kamat
On 3 April 2014 15:30, Rahul Sharma rahul.sha...@samsung.com wrote: The patch adds the dts files for xyref5260 board which is based on Exynos5260 Evt0 sample. Signed-off-by: Rahul Sharma rahul.sha...@samsung.com --- +/ { + model = SAMSUNG XYREF5260 EVT0 board based on EXYNOS5260; +

Re: [PATCH v6 2/3] ARM: dts: add dts files for exynos5260 SoC

2014-04-07 Thread Sachin Kamat
On 3 April 2014 10:47, Rahul Sharma rahul.sha...@samsung.com wrote: The patch adds the dts files for exynos5260. Signed-off-by: Pankaj Dubey pankaj.du...@samsung.com Signed-off-by: Rahul Sharma rahul.sha...@samsung.com Signed-off-by: Arun Kumar K arun...@samsung.com Reviewed-by: Tomasz Figa

Re: [PATCH V2 16/17] ARM: exynos: cpuidle: Move the driver to drivers/cpuidle directory

2014-04-07 Thread Sachin Kamat
Hi Daniel, On 4 April 2014 19:13, Daniel Lezcano daniel.lezc...@linaro.org wrote: Signed-off-by: Daniel Lezcano daniel.lezc...@linaro.org Reviewed-by: Viresh Kumar viresh.ku...@linaro.org --- arch/arm/mach-exynos/Makefile |1 - drivers/cpuidle/Kconfig.arm

Re: [PATCH V2 17/17] ARM: exynos: config: Enable cpuidle

2014-04-07 Thread Sachin Kamat
On 8 April 2014 00:03, Olof Johansson o...@lixom.net wrote: On Mon, Apr 7, 2014 at 10:44 AM, Bartlomiej Zolnierkiewicz b.zolnier...@samsung.com wrote: Hi, On Monday, April 07, 2014 09:28:39 AM Olof Johansson wrote: On Fri, Apr 4, 2014 at 9:09 AM, Bartlomiej Zolnierkiewicz

Re: [PATCH 00/17] ARM: exynos: cpuidle: Move the driver to drivers/cpuidle

2014-04-04 Thread Sachin Kamat
Hi Daniel, On 4 April 2014 13:17, Daniel Lezcano daniel.lezc...@linaro.org wrote: This patchset relies on the cpm_pm notifier to initiate the powerdown sequence operations from pm.c instead cpuidle.c. Thus the cpuidle driver is no longer dependent from arch specific code as everything is

[PATCH 1/1] ARM: EXYNOS: Consolidate Kconfig entries

2014-04-02 Thread Sachin Kamat
Instead of repeating the Kconfig entries for every SoC, move them under ARCH_EXYNOS4 and 5 and move the entries common to both 4 and 5 under ARCH_EXYNOS. Signed-off-by: Sachin Kamat sachin.ka...@linaro.org --- Changes since previous version: Kept the individual machines selectable as suggested

Re: [RFC 3/4] drm: exynos: add IELCD post processor

2014-03-21 Thread Sachin Kamat
On 19 March 2014 19:52, Ajay Kumar ajaykumar...@samsung.com wrote: Add post processor ops for IELCD and their support functions. Expose an interface for the FIMD to register IELCD PP. [snip] + +#define exynos_ielcd_readl(addr) readl(ielcd-exynos_ielcd_base + addr) +#define

Re: [PATCH v11 10/27] iommu/exynos: use managed device helper functions

2014-03-19 Thread Sachin Kamat
On 19 March 2014 14:29, Cho KyongHo pullip@samsung.com wrote: On Tue, 18 Mar 2014 16:14:53 +0100, Tomasz Figa wrote: On 18.03.2014 12:09, Cho KyongHo wrote: On Fri, 14 Mar 2014 20:52:43 +0530, Sachin Kamat wrote: Hi KyongHo, On 14 March 2014 10:35, Cho KyongHo pullip@samsung.com

[PATCH Resend 2/3] ARM: EXYNOS: Consolidate CPU init code

2014-03-19 Thread Sachin Kamat
it for every SoC. Tested on Exynos4210, 5250 and 5420 based boards. Signed-off-by: Sachin Kamat sachin.ka...@linaro.org Tested-by: Tomasz Figa t.f...@samsung.com --- arch/arm/mach-exynos/common.c | 108 + 1 file changed, 23 insertions(+), 85 deletions

[PATCH Resend 1/3] ARM: EXYNOS: Consolidate Kconfig entries

2014-03-19 Thread Sachin Kamat
and select them from Exynos4 and 5 config symbols. Individual SoC symbols can be removed eventually once the driver Kconfig dependencies on these symbols are removed. Signed-off-by: Sachin Kamat sachin.ka...@linaro.org Acked-by: Tomasz Figa t.f...@samsung.com --- This is a resend of the series rebased

[PATCH Resend 3/3] ARM: EXYNOS: Map SYSRAM address through DT

2014-03-19 Thread Sachin Kamat
Instead of hardcoding the SYSRAM details for each SoC, pass this information through device tree (DT) and make the code SoC agnostic. Signed-off-by: Sachin Kamat sachin.ka...@linaro.org --- .../devicetree/bindings/arm/samsung-boards.txt | 11 +++ arch/arm/boot/dts/exynos4210-universal_c210

[PATCH 0/4] Consolidate Exynos machine code

2014-03-19 Thread Sachin Kamat
to reserve memory for MFC-v7 http://www.spinics.net/lists/arm-kernel/msg315940.html 4. Kconfig and CPU init Consolidation series http://article.gmane.org/gmane.linux.kernel.samsung-soc/28216 Sachin Kamat (4): ARM: SAMSUNG: Introduce generic Exynos4 and 5 helpers ARM: EXYNOS: Consolidate Exynos4 and 5

[PATCH 1/4] ARM: SAMSUNG: Introduce generic Exynos4 and 5 helpers

2014-03-19 Thread Sachin Kamat
Add helpers to check for Exynos4 and 5 family of SoCs. This will eliminate comparing long list of SoCs and make code simpler. Signed-off-by: Sachin Kamat sachin.ka...@linaro.org --- arch/arm/plat-samsung/include/plat/cpu.h |4 1 file changed, 4 insertions(+) diff --git a/arch/arm/plat

<    1   2   3   4   5   6   7   8   >