[PATCHv6 1/4] iio: adc: exynos_adc: Add exynos_adc_data structure to improve readability

2014-07-18 Thread Chanwoo Choi
This patchset add 'exynos_adc_data' structure which includes some functions to control ADC operation and specific data according to ADC version (v1 or v2). Signed-off-by: Chanwoo Choi cw00.c...@samsung.com Acked-by: Kyungmin Park kyungmin.p...@samsung.com Reviewed-by: Naveen Krishna Chatradhi

[PATCHv6 3/4] iio: devicetree: Add DT binding documentation for Exynos3250 ADC

2014-07-18 Thread Chanwoo Choi
This patch add DT binding documentation for Exynos3250 ADC IP. Exynos3250 has special clock ('sclk_adc') for ADC which provide clock to internal ADC. Signed-off-by: Chanwoo Choi cw00.c...@samsung.com Acked-by: Kyungmin Park kyungmin.p...@samsung.com Reviewed-by: Naveen Krishna Chatradhi

[PATCHv6 2/4] iio: adc: exynos_adc: Control special clock of ADC to support Exynos3250 ADC

2014-07-18 Thread Chanwoo Choi
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. Exynos3250/Exynos4/Exynos5 has 'adc' clock as following: - 'adc' clock: bus clock for ADC Exynos3250

Re: [PATCH v2 0/4] Add Exynos4412 based Odroid X2 and U2/U3/U3+ support

2014-07-18 Thread Olof Johansson
On Thu, Jul 17, 2014 at 10:56 PM, Olof Johansson o...@lixom.net wrote: I gave the kernel (next-0717) a go here on my U3, and it boots (as you mention, no USB comes up). Btw, please update multi_v7_defconfig as well (as a separate patch, since it needs to be merged directly by us). Right now it

Re: [PATCH v2 0/4] Add Exynos4412 based Odroid X2 and U2/U3/U3+ support

2014-07-18 Thread Daniel Drake
Hi Olof, Thanks for joining the party here :) On Fri, Jul 18, 2014 at 6:56 AM, Olof Johansson o...@lixom.net wrote: Anyone got a simple writeup on the steps needed to boot, bl1/2 needed, expected offset into eMMC for where it goes, etc?

Re: [PATCH V5 05/12] Documentation: Add DT bindings for panel-lvds driver

2014-07-18 Thread Ajay kumar
Hi Thierry, Thanks for your comments. On Fri, Jul 18, 2014 at 4:18 AM, Thierry Reding thierry.red...@gmail.com wrote: On Fri, Jul 18, 2014 at 02:20:39AM +0530, Ajay kumar wrote: +devicet...@vger.kernel.org On Fri, Jul 18, 2014 at 2:13 AM, Ajay Kumar ajaykumar...@samsung.com wrote: Add DT

Re: [PATCH v7 06/24] mfd: max77686: Make error checking consistent

2014-07-18 Thread Lee Jones
On Fri, 04 Jul 2014, Javier Martinez Canillas wrote: Error checking across the driver is mostly consistent besides a few exceptions, so change these exceptions for consistency. Signed-off-by: Javier Martinez Canillas javier.marti...@collabora.co.uk Reviewed-by: Krzysztof Kozlowski

Re: [PATCH v7 07/24] mfd: max77686: Remove unneeded OOM error message

2014-07-18 Thread Lee Jones
On Fri, 04 Jul 2014, Javier Martinez Canillas wrote: There is no need to print out-of-memory errors since this is already done by the memory management subsystem which even calls dump_stack(). Signed-off-by: Javier Martinez Canillas javier.marti...@collabora.co.uk ---

Re: [PATCH v7 05/24] mfd: max77686: Return correct error when pdata isn't found

2014-07-18 Thread Lee Jones
On Fri, 04 Jul 2014, Javier Martinez Canillas wrote: When platform data is not found an -EIO (I/O error) code is returned. This doesn't seem to be the correct error so better return -EINVAL (Invalid argument) which is what most drivers do in this case. Signed-off-by: Javier Martinez

Re: [PATCH v7 03/24] mfd: max77686: Don't define dummy function if OF isn't enabled

2014-07-18 Thread Lee Jones
On Fri, 04 Jul 2014, Javier Martinez Canillas wrote: When the CONFIG_OF option was not enabled, a dummy function max77686_i2c_parse_dt_pdata() was defined since this is called unconditionally on probe(). Just always define the real function and conditionally call it if CONFIG_OF is enabled

Re: [PATCH v7 02/24] mfd: max77686: Add power management support

2014-07-18 Thread Lee Jones
On Fri, 04 Jul 2014, Javier Martinez Canillas wrote: The driver doesn't have PM operations defined so add a suspend and resume function handlers to allow the PMIC IRQ to wakeup the system when it is put into a sleep state. Signed-off-by: Javier Martinez Canillas

Re: [PATCH v7 04/24] mfd: max77686: Make platform data over-rule DT

2014-07-18 Thread Lee Jones
On Fri, 04 Jul 2014, Javier Martinez Canillas wrote: The function max77802_i2c_parse_dt_pdata() should only be called if there isn't already platform data for the device. Signed-off-by: Javier Martinez Canillas javier.marti...@collabora.co.uk --- drivers/mfd/max77686.c | 2 +- 1 file

Re: ASoC: samsung: MACH_SMDKC100

2014-07-18 Thread Paul Bolle
to MACH_SMDKC100 from sound/soc/samsung/Kconfig/ queued somewhere? I don't think it was part of the series that included the above commit. Have you had time to look at this? Those last two references to MACH_SMDKC100 can still be seen in next-20140718. Paul Bolle -- To unsubscribe from this list

Re: [PATCHv6 0/4] iio: adc: exynos_adc: Support Exynos3250 ADC and code clean

2014-07-18 Thread Arnd Bergmann
On Friday 18 July 2014 14:59:42 Chanwoo Choi wrote: This patchset support Exynos3250 ADC (Analog Digital Converter) because Exynos3250 has additional special clock for ADC IP. by coincidence, I have just looked at the same driver in order to add support for s3c24xx and s3c64xx, so we can

Re: [PATCHv6 1/4] iio: adc: exynos_adc: Add exynos_adc_data structure to improve readability

2014-07-18 Thread Arnd Bergmann
On Friday 18 July 2014 14:59:43 Chanwoo Choi wrote: This patchset add 'exynos_adc_data' structure which includes some functions to control ADC operation and specific data according to ADC version (v1 or v2). This new structure makes a lot of sense for covering the exynos specific versions,

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

2014-07-18 Thread Arnd Bergmann
On Friday 18 July 2014 14:59:44 Chanwoo Choi 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. Exynos3250/Exynos4/Exynos5 has 'adc' clock as

Re: [PATCHv6 3/4] iio: devicetree: Add DT binding documentation for Exynos3250 ADC

2014-07-18 Thread Arnd Bergmann
On Friday 18 July 2014 14:59:45 Chanwoo Choi wrote: Must be samsung,exynos-adc-v2 for future controllers. It would be good to change 'future controllers' to something else now. Presumably that word was used before the actual products were

[PATCH 1/2] clk: samsung: exynos4x12: Enable ARMCLK down feature

2014-07-18 Thread Krzysztof Kozlowski
Enable ARMCLK down and up features on Exynos4212 and 4412 SoCs. The frequency of ARMCLK will be reduced upon entering idle mode (WFI or WFE). Additionally upon exiting from idle mode the divider for ARMCLK will be brought back to 1. These are exactly the same settings as for Exynos5250

[PATCH 2/2] clk: samsung: exynos3250: Enable ARMCLK down feature

2014-07-18 Thread Krzysztof Kozlowski
Enable ARMCLK down and up features on Exynos3250 SoC. The frequency of ARMCLK will be reduced upon entering idle mode (WFI or WFE). Additionally upon exiting from idle mode the divider for ARMCLK will be brought back to 1. These are exactly the same settings as for Exynos5250 (clk-exynos5250.c).

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

2014-07-18 Thread Chanwoo Choi
Hi Arnd, On 07/18/2014 06:47 PM, Arnd Bergmann wrote: On Friday 18 July 2014 14:59:44 Chanwoo Choi 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

Re: [PATCHv6 1/4] iio: adc: exynos_adc: Add exynos_adc_data structure to improve readability

2014-07-18 Thread Naveen Krishna Ch
Hello Arnd, On 18 July 2014 15:12, Arnd Bergmann a...@arndb.de wrote: On Friday 18 July 2014 14:59:43 Chanwoo Choi wrote: This patchset add 'exynos_adc_data' structure which includes some functions to control ADC operation and specific data according to ADC version (v1 or v2). This new

Re: [PATCHv6 0/4] iio: adc: exynos_adc: Support Exynos3250 ADC and code clean

2014-07-18 Thread Naveen Krishna Ch
Hello Arnd, On 18 July 2014 15:08, Arnd Bergmann a...@arndb.de wrote: On Friday 18 July 2014 14:59:42 Chanwoo Choi wrote: This patchset support Exynos3250 ADC (Analog Digital Converter) because Exynos3250 has additional special clock for ADC IP. by coincidence, I have just looked at the

Re: [PATCHv6 0/4] iio: adc: exynos_adc: Support Exynos3250 ADC and code clean

2014-07-18 Thread Naveen Krishna Ch
Hello All, On 18 July 2014 15:43, Naveen Krishna Ch naveenkrishna...@gmail.com wrote: Hello Arnd, On 18 July 2014 15:08, Arnd Bergmann a...@arndb.de wrote: On Friday 18 July 2014 14:59:42 Chanwoo Choi wrote: This patchset support Exynos3250 ADC (Analog Digital Converter) because Exynos3250

[PATCH] cpufreq: tests: Providing cpufreq regression test

2014-07-18 Thread Lukasz Majewski
This commit adds first regression test cpufreq_freq_test.sh for the cpufreq subsystem. Signed-off-by: Lukasz Majewski l.majew...@samsung.com --- drivers/cpufreq/tests/README | 23 + drivers/cpufreq/tests/cpufreq_freq_test.sh | 149 + 2 files

[PATCH 2/2] drm/exynos: dsi: add LPM (Low Power Mode) transfer support

2014-07-18 Thread Inki Dae
This patch adds LPM transfer support for video or command data. With this patch, Exynos MIPI DSI controller can transfer command or video data with HS or LP mode in accordance with mode_flags set by LCD Panel driver. Signed-off-by: Inki Dae inki@samsung.com Acked-by: Kyungmin Park

[PATCH 0/2] drm/mipi-dsi: support LPM (Low Power Mode) transfer

2014-07-18 Thread Inki Dae
This patch series adds LPM tranfer support for video and command data. For this, this patch adds two flags, and makes MIPI DSI host to send commands to LCD Panel device with LPM if mode_flags of LCD Panel driver includes LPM flag. And also it applies this feature to Exynos MIPI DSI driver. Inki

[PATCH 1/2] drm/mipi-dsi: add (LPM) Low Power Mode transfer support

2014-07-18 Thread Inki Dae
This patch adds below two flags for LPM transfer, and it attaches LPM flags to a msg in accordance with master's mode_flags set by LCD Panel driver. MIPI_DSI_MODE_CMD_LPM: low power command transfer MIPI_DSI_MODE_VIDEO_LPM: low power video transfer MIPI DSI spec says, the host processor

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

2014-07-18 Thread Arnd Bergmann
On Friday 18 July 2014 19:00:48 Chanwoo Choi wrote: On 07/18/2014 06:47 PM, Arnd Bergmann wrote: Further, why is it called sclk_adc rather than just sclk? The sclk means 'special clock' in Exynos TRM. Exynos SoC has varisou sclk clocks. 'sclk_adc' is only used for ADC IP. But that

Re: [PATCHv6 1/4] iio: adc: exynos_adc: Add exynos_adc_data structure to improve readability

2014-07-18 Thread Arnd Bergmann
On Friday 18 July 2014 15:41:27 Naveen Krishna Ch wrote: { .name = s3c24xx-adc, .driver_data= TYPE_ADCV1, }, { .name = s3c2443-adc, .driver_data= TYPE_ADCV11, }, {

Re: [PATCH] cpufreq: tests: Providing cpufreq regression test

2014-07-18 Thread Rafael J. Wysocki
On Friday, July 18, 2014 12:23:05 PM Lukasz Majewski wrote: This commit adds first regression test cpufreq_freq_test.sh for the cpufreq subsystem. Care to add any description of how it is supposed to work and what it is going to test? Signed-off-by: Lukasz Majewski l.majew...@samsung.com ---

Re: [PATCH] cpufreq: tests: Providing cpufreq regression test

2014-07-18 Thread Sachin Kamat
Hi Lukasz, I tested this script on 4210 based Origen board. This is the output: ./cpufreq_freq_test.sh CURRENT GOVERNOR: performance SET GOVERNOR: performance ## TEST AVAILABLE FREQS ## FREQ: 120 sleep: invalid number

Re: [PATCH] cpufreq: tests: Providing cpufreq regression test

2014-07-18 Thread Lukasz Majewski
Hi Sachin, Hi Lukasz, I tested this script on 4210 based Origen board. This is the output: ./cpufreq_freq_test.sh CURRENT GOVERNOR: performance SET GOVERNOR: performance ## TEST AVAILABLE FREQS ## FREQ: 120

Re: [PATCH] cpufreq: tests: Providing cpufreq regression test

2014-07-18 Thread Lukasz Majewski
Hi Rafael, On Friday, July 18, 2014 12:23:05 PM Lukasz Majewski wrote: This commit adds first regression test cpufreq_freq_test.sh for the cpufreq subsystem. Care to add any description of how it is supposed to work and what it is going to test? Ok. I will extend the description in the

Re: [PATCH 1/2] clk: samsung: exynos4x12: Enable ARMCLK down feature

2014-07-18 Thread Tomasz Figa
Hi Krzysztof, On 18.07.2014 11:53, Krzysztof Kozlowski wrote: Enable ARMCLK down and up features on Exynos4212 and 4412 SoCs. The frequency of ARMCLK will be reduced upon entering idle mode (WFI or WFE). Additionally upon exiting from idle mode the divider for ARMCLK will be brought back to

Re: [PATCH] irqchip: gic: Fix core ID calculation when topology is read from DT

2014-07-18 Thread Jason Cooper
On Thu, Jul 17, 2014 at 05:23:44PM +0200, Tomasz Figa wrote: Certain GIC implementation, namely those found on earlier, single cluster, Exynos SoCs, have registers mapped without per-CPU banking, which means that the driver needs to use different offset for each CPU. Currently the driver

RE: [PATCHv6] mmc: dw_mmc: change to use recommended reset procedure

2014-07-18 Thread Seungwon Jeon
On Tue, July 15, 2014, Sonny Rao wrote: This patch changes the fifo reset code to follow the reset procedure outlined in the documentation of Synopsys Mobile storage host databook. Signed-off-by: Sonny Rao sonny...@chromium.org Signed-off-by: Yuvaraj Kumar C D yuvaraj...@samsung.com

Re: [PATCH 1/2] clk: samsung: exynos4x12: Enable ARMCLK down feature

2014-07-18 Thread Krzysztof Kozlowski
On pią, 2014-07-18 at 15:01 +0200, Tomasz Figa wrote: Hi Krzysztof, On 18.07.2014 11:53, Krzysztof Kozlowski wrote: Enable ARMCLK down and up features on Exynos4212 and 4412 SoCs. The frequency of ARMCLK will be reduced upon entering idle mode (WFI or WFE). Additionally upon exiting

[PATCH 0/2] Convert exynos PPMU driver to be built as module

2014-07-18 Thread Punit Agrawal
Hi, There's no reason why the exynos PPMU can't be built as a module except you need - - The first patch exports the functions that are needed to build devfreq drivers as modules. - The second patch then converts the exynos PPMU devfreq driver to be built as a module. Compile tested only.

[PATCH 1/2] PM / devfreq: Export helper functions for drivers

2014-07-18 Thread Punit Agrawal
From: Ørjan Eide orjan.e...@arm.com These functions are indended for use by drivers and should be available also when the driver is built as a module. Cc: MyungJoo Ham myungjoo@samsung.com Cc: Kyungmin Park kyungmin.p...@samsung.com Signed-off-by: Ørjan Eide orjan.e...@arm.com ---

[PATCH 2/2] PM / devfreq: exynos: Enable building exynos PPMU as module

2014-07-18 Thread Punit Agrawal
Export symbols from the PPMU driver needed to build the exynos bus driver as a module. Cc: MyungJoo Ham myungjoo@samsung.com Cc: Kyungmin Park kyungmin.p...@samsung.com Cc: Kukjin Kim kgene@samsung.com Cc: Bartlomiej Zolnierkiewicz b.zolnier...@samsung.com Signed-off-by: Punit Agrawal

[PATCH v2 1/2] clk: samsung: exynos4: Enable ARMCLK down feature

2014-07-18 Thread Krzysztof Kozlowski
Enable ARMCLK down feature on all Exynos4 SoCs. The frequency of ARMCLK will be reduced upon entering idle mode (WFI or WFE). The feature behaves like very fast cpufreq ondemand governor. In idle mode this reduces energy consumption on full frequency chosen by cpufreq governor by approximately:

[PATCH v2 2/2] clk: samsung: exynos3250: Enable ARMCLK down feature

2014-07-18 Thread Krzysztof Kozlowski
Enable ARMCLK down feature on Exynos3250 SoC. The frequency of ARMCLK will be reduced upon entering idle mode (WFI or WFE). The feature behaves like very fast cpufreq ondemand governor. The patch uses simillar settings as Exynos5250 (clk-exynos5250.c), except it disables clock up feature.

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

2014-07-18 Thread Chanwoo Choi
On Fri, Jul 18, 2014 at 8:14 PM, Arnd Bergmann a...@arndb.de wrote: On Friday 18 July 2014 19:00:48 Chanwoo Choi wrote: On 07/18/2014 06:47 PM, Arnd Bergmann wrote: Further, why is it called sclk_adc rather than just sclk? The sclk means 'special clock' in Exynos TRM. Exynos SoC has

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

2014-07-18 Thread Arnd Bergmann
On Saturday 19 July 2014 00:15:35 Chanwoo Choi wrote: On Fri, Jul 18, 2014 at 8:14 PM, Arnd Bergmann a...@arndb.de wrote: On Friday 18 July 2014 19:00:48 Chanwoo Choi wrote: On 07/18/2014 06:47 PM, Arnd Bergmann wrote: Further, why is it called sclk_adc rather than just sclk? The

Re: [PATCH v2 0/4] Add Exynos4412 based Odroid X2 and U2/U3/U3+ support

2014-07-18 Thread Przemyslaw Marczak
Hello, On 06/30/2014 07:34 AM, Marek Szyprowski wrote: Hello, On 2014-06-25 15:26, Marek Szyprowski wrote: Hello, This is the second version of the initial patch series adding support for Exynos 4412 based Odroid X2 and U2/U3/U3+ boards and improving support for Odroid X. Complete USB

[PATCH] ARM: dts: add CPU nodes for Exynos4 SoCs

2014-07-18 Thread Bartlomiej Zolnierkiewicz
Recent patch by Tomasz Figa (irqchip: gic: Fix core ID calculation when topology is read from DT) fixed GIC driver to filter cluster ID from values returned by cpu_logical_map() for SoCs having registers mapped without per-CPU banking making it is possible to add CPU nodes for Exynos4 SoCs. In

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

2014-07-18 Thread Chanwoo Choi
On Sat, Jul 19, 2014 at 12:23 AM, Arnd Bergmann a...@arndb.de wrote: On Saturday 19 July 2014 00:15:35 Chanwoo Choi wrote: On Fri, Jul 18, 2014 at 8:14 PM, Arnd Bergmann a...@arndb.de wrote: On Friday 18 July 2014 19:00:48 Chanwoo Choi wrote: On 07/18/2014 06:47 PM, Arnd Bergmann wrote:

Re: [PATCHv6 3/4] iio: devicetree: Add DT binding documentation for Exynos3250 ADC

2014-07-18 Thread Chanwoo Choi
On Fri, Jul 18, 2014 at 6:50 PM, Arnd Bergmann a...@arndb.de wrote: On Friday 18 July 2014 14:59:45 Chanwoo Choi wrote: Must be samsung,exynos-adc-v2 for future controllers. It would be good to change 'future controllers' to something

Re: [PATCH] ARM: dts: add CPU nodes for Exynos4 SoCs

2014-07-18 Thread Mark Rutland
On Fri, Jul 18, 2014 at 05:00:02PM +0100, Bartlomiej Zolnierkiewicz wrote: Recent patch by Tomasz Figa (irqchip: gic: Fix core ID calculation when topology is read from DT) fixed GIC driver to filter cluster ID from values returned by cpu_logical_map() for SoCs having registers mapped without

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

2014-07-18 Thread Arnd Bergmann
On Saturday 19 July 2014 01:11:53 Chanwoo Choi wrote: Exynos3250/Exynos4/Exynos5 has 'adc' clock as following: - 'adc' clock: bus clock for ADC Exynos3250 has additional 'sclk_adc' clock as following: - 'sclk_adc' clock: special clock for ADC which provide clock to internal ADC

Re: [PATCHv6 3/4] iio: devicetree: Add DT binding documentation for Exynos3250 ADC

2014-07-18 Thread Arnd Bergmann
On Saturday 19 July 2014 01:23:15 Chanwoo Choi wrote: If don't add new compatible including specific exynos version, I would add new 'adc-needs-sclk' property with existing 'exynos-adc-v2' compatible name. Dear Naveen, Tomasz, If existing exynos-adc driver add just one property for

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

2014-07-18 Thread Chanwoo Choi
On Sat, Jul 19, 2014 at 1:31 AM, Arnd Bergmann a...@arndb.de wrote: On Saturday 19 July 2014 01:11:53 Chanwoo Choi wrote: Exynos3250/Exynos4/Exynos5 has 'adc' clock as following: - 'adc' clock: bus clock for ADC Exynos3250 has additional 'sclk_adc' clock as following: - 'sclk_adc'

Re: [PATCHv6 3/4] iio: devicetree: Add DT binding documentation for Exynos3250 ADC

2014-07-18 Thread Chanwoo Choi
On Sat, Jul 19, 2014 at 1:33 AM, Arnd Bergmann a...@arndb.de wrote: On Saturday 19 July 2014 01:23:15 Chanwoo Choi wrote: If don't add new compatible including specific exynos version, I would add new 'adc-needs-sclk' property with existing 'exynos-adc-v2' compatible name. Dear Naveen,

[PATCH v2 0/4] ARM: dts: exynos: Prepare Spring

2014-07-18 Thread Andreas Färber
Hello, Based on the preinstalled 3.8 based ChromeOS kernel and previous 3.15 based attempts by Stephan and me that broke for 3.16, I've prepared a device tree for the HP Chromebook 11 aka Google Spring. v2 reuses the new cros-ec-keyboard.dtsi and retires exynos5250-cros-common.dtsi. It drops

[PATCH v2 2/4] ARM: dts: exynos5250: cypress,cyapa trackpad is Snow only

2014-07-18 Thread Andreas Färber
Move it from exynos5250-cros-common.dtsi to exynos5250-snow.dts. Spring does not need it, it uses an Atmel maXTouch instead. Signed-off-by: Andreas Färber afaer...@suse.de --- v2: New (Doug Anderson) arch/arm/boot/dts/exynos5250-cros-common.dtsi | 8

[PATCH v2 4/4] ARM: dts: exynos5250: Add Spring device tree

2014-07-18 Thread Andreas Färber
Adds initial support for the HP Chromebook 11. Cc: Vincent Palatin vpala...@chromium.org Cc: Doug Anderson diand...@chromium.org Cc: Stephan van Schaik step...@synkhronix.com Signed-off-by: Andreas Färber afaer...@suse.de --- v1 - v2: * Use label-based overriding/extension of nodes. (Doug

[PATCH v2 3/4] ARM: dts: exynos5250: Fold common ChromeOS parts into Snow

2014-07-18 Thread Andreas Färber
The remaining pieces are fairly minor. Suggested-by: Doug Anderson diand...@chromium.org Signed-off-by: Andreas Färber afaer...@suse.de --- v2: New (Doug Anderson) arch/arm/boot/dts/exynos5250-cros-common.dtsi | 164 - arch/arm/boot/dts/exynos5250-snow.dts | 169

[PATCH v2 1/4] ARM: dts: exynos5250: max77686 is Snow only

2014-07-18 Thread Andreas Färber
Move it from exynos5250-cros-common.dtsi to exynos5250-snow.dts. Spring does not need it, it uses an s5m8767 instead. Signed-off-by: Andreas Färber afaer...@suse.de --- v2: New (Doug Anderson) arch/arm/boot/dts/exynos5250-cros-common.dtsi | 151 -

Re: [PATCHv6 3/4] iio: devicetree: Add DT binding documentation for Exynos3250 ADC

2014-07-18 Thread Arnd Bergmann
On Saturday 19 July 2014 02:02:09 Chanwoo Choi wrote: On Sat, Jul 19, 2014 at 1:33 AM, Arnd Bergmann a...@arndb.de wrote: On Saturday 19 July 2014 01:23:15 Chanwoo Choi wrote: If don't add new compatible including specific exynos version, I would add new 'adc-needs-sclk' property with

Re: [RESPIN PATCH v6] ARM: EXYNOS: Move cpufreq and cpuidle device registration to init_machine

2014-07-18 Thread Kukjin Kim
On 07/14/14 12:58, Pankaj Dubey wrote: As exynos_cpuidle_init and exynos_cpufreq_init function have just one lines of code for registering platform devices. We can move these lines to exynos_dt_machine_init and delete exynos_cpuidle_init and exynos_cpufreq_init function. This will help in

[PATCH] ASoC: samsung: remove MACH_SMDKC100

2014-07-18 Thread Kukjin Kim
This removes MACH_SMDKC100 because of no more support for SMDKC100. Reported-by: Paul Bolle pebo...@tiscali.nl Signed-off-by: Kukjin Kim kgene@samsung.com Cc: Mark Brown broo...@linaro.org --- sound/soc/samsung/Kconfig | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git

Re: ASoC: samsung: MACH_SMDKC100

2014-07-18 Thread Kukjin Kim
patch to also remove the last two references to MACH_SMDKC100 from sound/soc/samsung/Kconfig/ queued somewhere? I don't think it was part of the series that included the above commit. Have you had time to look at this? Those last two references to MACH_SMDKC100 can still be seen in next-20140718

Re: [PATCH v3] ARM: dts: Add cros_ec to exynos5420-peach-pit and exynos5800-peach-pi

2014-07-18 Thread Kukjin Kim
On 07/18/14 07:42, Javier Martinez Canillas wrote: Hello Kukjin, Hi, On 06/24/2014 06:28 PM, Doug Anderson wrote: This adds cros_ec to exynos5420-peach-pit and exynos5800-peach-pi, including: * The keyboard * The i2c tunnel * The tps65090 under the i2c tunnel * The battery under the i2c

Re: [PATCHv2] ARM: dts: Add I2S dt node for Exynos3250

2014-07-18 Thread Kukjin Kim
On 07/18/14 09:10, Chanwoo Choi wrote: On 07/09/2014 12:00 PM, Chanwoo Choi wrote: From: Tomasz Figat.f...@samsung.com This patch add I2S (Inter-IC Sound) dt node which supports 1-port stereo (1 channels) IIS-bus for audio interface with DMA-based operation. Signed-off-by: Tomasz

Re: [PATCH 4/4] ARM: DTS: fix the chip select gpios definition in the SPI nodes

2014-07-18 Thread Kukjin Kim
On 07/18/14 03:49, Mark Brown wrote: On Wed, Jul 16, 2014 at 05:19:10PM +0200, Javier Martinez Canillas wrote: From: Naveen Krishna Chatradhich.nav...@samsung.com This patch replaces the cs-gpio from controller-data node as was specified in the old binding and uses the standard cs-gpios

[PATCH 1/2] iio: exynos-adc: add support for s3c64xx adc

2014-07-18 Thread Arnd Bergmann
The ADC in s3c64xx is almost the same as exynosv1, but has a different 'select' method. Adding this here will be helpful to move over the existing s3c64xx platform from the legacy plat-samsung/adc driver to the new exynos-adc. Signed-off-by: Arnd Bergmann a...@arndb.de --- [In reply to Exynos3250

[PATCH 2/2] iio: exynos-adc: add experimental touchscreen support

2014-07-18 Thread Arnd Bergmann
This adds support for the touchscreen on Samsung s3c64xx. The driver is completely untested but shows roughly how it could be done, following the example of the at91 driver. Open questions include: - compared to the old plat-samsung/adc driver, there is no support for prioritizing ts over

Re: [PATCH 13/19] ARM: s5pv210: move debug-macro.S into the common space

2014-07-18 Thread Kukjin Kim
On 07/16/14 09:56, Tomasz Figa wrote: On 16.07.2014 02:53, Kukjin Kim wrote: Kukjin Kim wrote: On 07/05/14 02:48, Tomasz Figa wrote: Move debug-macro.S from mach/include to include/debug where all other common debug macros are. Signed-off-by: Tomasz Figat.f...@samsung.com ---

Re: [PATCH v2] ARM: EXYNOS: Fix build with PM_SLEEP=n

2014-07-18 Thread Kukjin Kim
On 07/16/14 20:59, Tomasz Figa wrote: Hi Krzysztof, On 14.07.2014 09:45, Krzysztof Kozlowski wrote: Fix building of exynos defconfig with disabled PM_SLEEP: CONFIG_PM_SLEEP=n CONFIG_PM_SLEEP_SMP=n CONFIG_SUSPEND=n by moving functions for power up/down of CPU and cluster to platsmp.c The build

[PATCH 0/3] drm/exynos: Allow module to be autoloaded

2014-07-18 Thread Sjoerd Simons
The exynos DRM module currently is not automatically loaded when build as a module. This is due to the simple fact that it doesn't have any MODULE_DEVICE_TABLE entries whatsoever... Most of these were removed previously as it wasn't possible at the time to have multiple calls to

[PATCH 3/3] drm/exynos: Add MODULE_DEVICE_TABLE entries for various components

2014-07-18 Thread Sjoerd Simons
Add MODULE_DEVICE_TABLE calls for the various OF match tables that currently don't have one. This allows the module to be autoloaded based on devicetree information. Signed-off-by: Sjoerd Simons sjoerd.sim...@collabora.co.uk --- drivers/gpu/drm/exynos/exynos_drm_fimc.c| 1 +

[PATCH 2/3] Revert drm/exynos: remove MODULE_DEVICE_TABLE definitions

2014-07-18 Thread Sjoerd Simons
This reverts commit d089621896c3530a9bd309f96e9c9124d07f6c3f was original to prevent multiple MODULE_DEVICE_TABLE in one module. Which, as a side-effect broke autoloading of the module. Since 21bdd17b21b45ea48e06e23918d681afbe0622e9 it is possible to have multiple calls to MODULE_DEVICE_TABLE, so

[PATCH 1/3] Revert drm/exynos: fix module build error

2014-07-18 Thread Sjoerd Simons
This reverts commit de1d3677017a1d58419722b60564cb56bd9462c3, which was original added to fix build errors when building exynosdrm as a single module caused by multiple MODULE_DEVICE_TABLE in one module. Which, as a side-effect broke autoloading of the module. Since

Re: [PATCH 13/19] ARM: s5pv210: move debug-macro.S into the common space

2014-07-18 Thread Tomasz Figa
Hi Kukjin, On 18.07.2014 21:38, Kukjin Kim wrote: On 07/16/14 09:56, Tomasz Figa wrote: On 16.07.2014 02:53, Kukjin Kim wrote: Kukjin Kim wrote: On 07/05/14 02:48, Tomasz Figa wrote: Move debug-macro.S from mach/include to include/debug where all other common debug macros are.

[GIT PULL] Samsung fixes-4 for v3.16

2014-07-18 Thread Kukjin Kim
Hi, This is a regression for v3.16 so please take this in -rc. Thanks, Kukjin The following changes since commit 1795cd9b3a91d4b5473c97f491d63892442212ab: Linux 3.16-rc5 (2014-07-13 14:04:33 -0700) are available in the git repository at:

Re: [GIT PULL] Samsung fixes-4 for v3.16

2014-07-18 Thread Olof Johansson
On Fri, Jul 18, 2014 at 4:34 PM, Kukjin Kim kgene@samsung.com wrote: Hi, This is a regression for v3.16 so please take this in -rc. Thanks, Kukjin The following changes since commit 1795cd9b3a91d4b5473c97f491d63892442212ab: Linux 3.16-rc5 (2014-07-13 14:04:33 -0700) are available

Re: [GIT PULL] Samsung fixes-4 for v3.16

2014-07-18 Thread Kukjin Kim
On 07/19/14 09:12, Olof Johansson wrote: On Fri, Jul 18, 2014 at 4:34 PM, Kukjin Kimkgene@samsung.com wrote: Hi, This is a regression for v3.16 so please take this in -rc. Thanks, Kukjin The following changes since commit 1795cd9b3a91d4b5473c97f491d63892442212ab: Linux 3.16-rc5

Re: [GIT PULL] Samsung fixes-4 for v3.16

2014-07-18 Thread Kukjin Kim
On 07/19/14 09:18, Kukjin Kim wrote: On 07/19/14 09:12, Olof Johansson wrote: On Fri, Jul 18, 2014 at 4:34 PM, Kukjin Kimkgene@samsung.com wrote: Hi, This is a regression for v3.16 so please take this in -rc. Thanks, Kukjin The following changes since commit

[GIT PULL 1/5] Samsung non-critical-fixes for v3.17

2014-07-18 Thread Kukjin Kim
The following changes since commit 1795cd9b3a91d4b5473c97f491d63892442212ab: Linux 3.16-rc5 (2014-07-13 14:04:33 -0700) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/kgene/linux-samsung.git tags/fixes-for-3.17 for you to fetch changes up to

[GIT PULL 4/5] Samsung exynos_mct update for v3.17

2014-07-18 Thread Kukjin Kim
Note that this is also based on 3.16-rc5 because of dependency with previous samsung fixes including exynos_mct already merged in mainline during -rc. The following changes since commit 1795cd9b3a91d4b5473c97f491d63892442212ab: Linux 3.16-rc5 (2014-07-13 14:04:33 -0700) are available in

[GIT PULL 2/5] Samsung cleanup for v3.17

2014-07-18 Thread Kukjin Kim
Note that this is based on 3.16-rc5 because of dependency with previous samsung fixes already merged in mainline during -rc. The following changes since commit 1795cd9b3a91d4b5473c97f491d63892442212ab: Linux 3.16-rc5 (2014-07-13 14:04:33 -0700) are available in the git repository at:

[GIT PULL 3/5] Samsung exynos cpuidle update for v3.17

2014-07-18 Thread Kukjin Kim
The following changes since commit 1795cd9b3a91d4b5473c97f491d63892442212ab: Linux 3.16-rc5 (2014-07-13 14:04:33 -0700) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/kgene/linux-samsung.git tags/exynos-cpuidle for you to fetch changes up to

[GIT PULL 5/5] Samsung DT updates for v3.17

2014-07-18 Thread Kukjin Kim
The following changes since commit 7171511eaec5bf23fb06078f59784a3a0626b38f: Linux 3.16-rc1 (2014-06-15 17:45:28 -1000) are available in the git repository at: git://git.kernel.org/pub/scm/linux/kernel/git/kgene/linux-samsung.git tags/samsung-dt for you to fetch changes up to

Re: [GIT PULL] Samsung fixes-4 for v3.16

2014-07-18 Thread Olof Johansson
On Fri, Jul 18, 2014 at 5:43 PM, Kukjin Kim kgene@samsung.com wrote: On 07/19/14 09:18, Kukjin Kim wrote: On 07/19/14 09:12, Olof Johansson wrote: On Fri, Jul 18, 2014 at 4:34 PM, Kukjin Kimkgene@samsung.com wrote: Hi, This is a regression for v3.16 so please take this in -rc.

RE: [GIT PULL] Samsung fixes-4 for v3.16

2014-07-18 Thread Kukjin Kim
Olof Johansson wrote: On Fri, Jul 18, 2014 at 5:43 PM, Kukjin Kim kgene@samsung.com wrote: On 07/19/14 09:18, Kukjin Kim wrote: On 07/19/14 09:12, Olof Johansson wrote: On Fri, Jul 18, 2014 at 4:34 PM, Kukjin Kimkgene@samsung.com wrote: Hi, This is a regression for

Re: [GIT PULL] Samsung fixes-4 for v3.16

2014-07-18 Thread Olof Johansson
On Fri, Jul 18, 2014 at 10:11 PM, Kukjin Kim kgene@samsung.com wrote: Olof Johansson wrote: On Fri, Jul 18, 2014 at 5:43 PM, Kukjin Kim kgene@samsung.com wrote: On 07/19/14 09:18, Kukjin Kim wrote: On 07/19/14 09:12, Olof Johansson wrote: On Fri, Jul 18, 2014 at 4:34 PM,