Re: [PATCH] ARM: dts: am33xx: Correct gpio #interrupt-cells property

2013-08-13 Thread Benoit Cousson
Hi lars, On 07/08/2013 17:11, Lars Poeschel wrote: On Wednesday 07 August 2013 at 16:53:09, Mark Rutland wrote: On Wed, Aug 07, 2013 at 12:06:32PM +0100, Lars Poeschel wrote: From: Lars Poeschel poesc...@lemonage.de Following commit ff5c9059 and therefore other omap platforms using the

Re: [PATCH 2/2] fuse: wait for writeback in fuse_file_fallocate()

2013-08-13 Thread Brian Foster
On 08/13/2013 08:56 AM, Maxim Patlasov wrote: Hi, 08/13/2013 04:05 PM, Brian Foster пишет: ... @@ -2478,8 +2516,11 @@ static long fuse_file_fallocate(struct file *file, int mode, loff_t offset, if (lock_inode) { mutex_lock(inode-i_mutex); -if (mode

Re: [PATCH 1/3] misc: Add crossbar driver

2013-08-13 Thread Santosh Shilimkar
On Tuesday 13 August 2013 04:10 AM, Tony Lindgren wrote: * Santosh Shilimkar santosh.shilim...@ti.com [130724 12:06]: On Wednesday 24 July 2013 02:51 PM, Nishanth Menon wrote: On 07/24/2013 01:43 PM, Sricharan R wrote: On Wednesday 24 July 2013 10:17 PM, Nishanth Menon wrote: On 07/24/2013

Re: [PATCH 1/3] misc: Add crossbar driver

2013-08-13 Thread Santosh Shilimkar
On Tuesday 13 August 2013 05:56 AM, Sricharan R wrote: Hi Tony, On Tuesday 13 August 2013 01:40 PM, Tony Lindgren wrote: * Santosh Shilimkar santosh.shilim...@ti.com [130724 12:06]: On Wednesday 24 July 2013 02:51 PM, Nishanth Menon wrote: On 07/24/2013 01:43 PM, Sricharan R wrote: On

[PATCH 0/3] cpufreq: sa11x0: cleanups for 3.13

2013-08-13 Thread Viresh Kumar
Hi Rafael/Russell, These patches would be part of this patchset finally, sending it separately as I didn't wanted to send other patches in that series.. https://lkml.org/lkml/2013/8/10/48 (Above series was rebased over https://lkml.org/lkml/2013/8/8/263 and hence this patchset too).. These

[PATCH 2/3] cpufreq: sa11x0: let cpufreq core initialize struct policy fields

2013-08-13 Thread Viresh Kumar
Many fields of struct policy are filled by cpufreq core when we call cpufreq_table_validate_and_show() and so cpufreq driver doesn't need to set them anymore. Signed-off-by: Viresh Kumar viresh.ku...@linaro.org --- drivers/cpufreq/sa1100-cpufreq.c | 4 +--- drivers/cpufreq/sa1110-cpufreq.c | 4

[PATCH 3/3] cpufreq: sa11x0: Use generic cpufreq routines

2013-08-13 Thread Viresh Kumar
Most of the CPUFreq drivers do similar things in .exit() and .verify() routines and .attr. So its better if we have generic routines for them which can be used by cpufreq drivers then. This patch uses these generic routines for this driver. Signed-off-by: Viresh Kumar viresh.ku...@linaro.org ---

[PATCH 1/3] cpufreq: sa11x0: Expose frequency table

2013-08-13 Thread Viresh Kumar
This patch exposes sa11x0's frequency table to cpufreq core. It always existed but not as an array frequencies and not in the format cpufreq core wants it to. Also it was present in the unit of 100kHz earlier which is made consistent with cpufreq core now, i.e. kHz. Signed-off-by: Viresh Kumar

[PATCH V2 00/35] CPUFreq: Implement light weight -target(): for 3.13

2013-08-13 Thread Viresh Kumar
Currently prototype of cpufreq_drivers target routines is: int target(struct cpufreq_policy *policy, unsigned int target_freq, unsigned int relation); And most of the drivers call cpufreq_frequency_table_target() to get a valid index of their frequency table which is closest to the

Re: nouveau: temperature on nv40 is unavailable since ad40d73ef533ab0ad16b4a1ab2f7870c1f8ab954

2013-08-13 Thread Martin Peres
On 13/08/2013 09:23, Pali Rohár wrote: On Tuesday 13 August 2013 09:01:19 Martin Peres wrote: On 13/08/2013 05:56, Pali Rohár wrote: Hello, after commit ad40d73ef533ab0ad16b4a1ab2f7870c1f8ab954 temperature information from lm sensors is not available on my Nvidia 6600GT graphics card. There

[PATCH V2 03/35] cpufreq: acpi: Covert to light weight -target_index() routine

2013-08-13 Thread Viresh Kumar
This patch converts existing .target() to newly defined light weight .target_index() routine for this driver. CPUFreq core will call cpufreq_frequency_table_target() before calling this routine and will pass index to it. Signed-off-by: Viresh Kumar viresh.ku...@linaro.org ---

[PATCH V2 01/35] cpufreq: Implement light weight -target_index() routine

2013-08-13 Thread Viresh Kumar
Currently prototype of cpufreq_drivers target routines is: int target(struct cpufreq_policy *policy, unsigned int target_freq, unsigned int relation); And most of the drivers call cpufreq_frequency_table_target() to get a valid index of their frequency table which is closest to

Re: [PATCH] usb: musb: am335x: Do not remove the session bin HOST-only mode

2013-08-13 Thread Bin Liu
Sebastian, On Tue, Aug 13, 2013 at 8:17 AM, Sebastian Andrzej Siewior bige...@linutronix.de wrote: On 08/13/2013 03:03 PM, Bin Liu wrote: Sebastian, Hi Bin, +if (musb-port_mode == MUSB_PORT_MODE_HOST) { +val = USBMODE_IDDIG_A; +val |= USBMODE_ID_MUX_REG; I am going

[PATCH V2 02/35] cpufreq: remove CONFIG_CPU_FREQ_TABLE

2013-08-13 Thread Viresh Kumar
CONFIG_CPU_FREQ_TABLE will be always enabled when cpufreq framework is used, as cpufreq core depends on it. So, we don't need this CONFIG option anymore as it is not configurable. Remove CONFIG_CPU_FREQ_TABLE and update its users. Signed-off-by: Viresh Kumar viresh.ku...@linaro.org ---

[PATCH V2 05/35] cpufreq: at32ap: Covert to light weight -target_index() routine

2013-08-13 Thread Viresh Kumar
This patch converts existing .target() to newly defined light weight .target_index() routine for this driver. CPUFreq core will call cpufreq_frequency_table_target() before calling this routine and will pass index to it. Cc: Hans-Christian Egtvedt egtv...@samfundet.no Signed-off-by: Viresh Kumar

[PATCH V2 06/35] cpufreq: blackfin: Covert to light weight -target_index() routine

2013-08-13 Thread Viresh Kumar
This patch converts existing .target() to newly defined light weight .target_index() routine for this driver. CPUFreq core will call cpufreq_frequency_table_target() before calling this routine and will pass index to it. Cc: Steven Miao real...@gmail.com Signed-off-by: Viresh Kumar

[PATCH V2 07/35] cpufreq: cpu0: Covert to light weight -target_index() routine

2013-08-13 Thread Viresh Kumar
This patch converts existing .target() to newly defined light weight .target_index() routine for this driver. CPUFreq core will call cpufreq_frequency_table_target() before calling this routine and will pass index to it. Cc: Shawn Guo shawn@linaro.org Signed-off-by: Viresh Kumar

[PATCH V2 14/35] cpufreq: ia64: Covert to light weight -target_index() routine

2013-08-13 Thread Viresh Kumar
This patch converts existing .target() to newly defined light weight .target_index() routine for this driver. CPUFreq core will call cpufreq_frequency_table_target() before calling this routine and will pass index to it. Cc: Tony Luck tony.l...@intel.com Signed-off-by: Viresh Kumar

[PATCH V2 23/35] cpufreq: pmac32: Covert to light weight -target_index() routine

2013-08-13 Thread Viresh Kumar
This patch converts existing .target() to newly defined light weight .target_index() routine for this driver. CPUFreq core will call cpufreq_frequency_table_target() before calling this routine and will pass index to it. Signed-off-by: Viresh Kumar viresh.ku...@linaro.org ---

Re: [PATCH] usb: dwc3: core: clarify usb-phy array binding

2013-08-13 Thread Mark Rutland
On Mon, Aug 12, 2013 at 07:05:53PM +0100, Felipe Balbi wrote: On Fri, Aug 09, 2013 at 01:42:15PM -0500, Kumar Gala wrote: On Aug 9, 2013, at 11:28 AM, Mark Rutland wrote: On Fri, Aug 09, 2013 at 04:40:32PM +0100, Kumar Gala wrote: The binding spec wasn't clear that the order of the

[PATCH V2 13/35] cpufreq: exynos: Covert to light weight -target_index() routine

2013-08-13 Thread Viresh Kumar
This patch converts existing .target() to newly defined light weight .target_index() routine for this driver. CPUFreq core will call cpufreq_frequency_table_target() before calling this routine and will pass index to it. Cc: Kukjin Kim kgene@samsung.com Signed-off-by: Viresh Kumar

[PATCH V2 20/35] cpufreq: omap: Covert to light weight -target_index() routine

2013-08-13 Thread Viresh Kumar
This patch converts existing .target() to newly defined light weight .target_index() routine for this driver. CPUFreq core will call cpufreq_frequency_table_target() before calling this routine and will pass index to it. Cc: Santosh Shilimkar santosh.shilim...@ti.com Signed-off-by: Viresh Kumar

[PATCH V2 21/35] cpufreq: p4: Covert to light weight -target_index() routine

2013-08-13 Thread Viresh Kumar
This patch converts existing .target() to newly defined light weight .target_index() routine for this driver. CPUFreq core will call cpufreq_frequency_table_target() before calling this routine and will pass index to it. Cc: David S. Miller da...@davemloft.net Signed-off-by: Viresh Kumar

[PATCH V2 15/35] cpufreq: imx6q: Covert to light weight -target_index() routine

2013-08-13 Thread Viresh Kumar
This patch converts existing .target() to newly defined light weight .target_index() routine for this driver. CPUFreq core will call cpufreq_frequency_table_target() before calling this routine and will pass index to it. Cc: Shawn Guo shawn@linaro.org Signed-off-by: Viresh Kumar

[PATCH V2 16/35] cpufreq: kirkwood: Covert to light weight -target_index() routine

2013-08-13 Thread Viresh Kumar
This patch converts existing .target() to newly defined light weight .target_index() routine for this driver. CPUFreq core will call cpufreq_frequency_table_target() before calling this routine and will pass index to it. Cc: Andrew Lunn and...@lunn.ch Signed-off-by: Viresh Kumar

[PATCH V2 17/35] cpufreq: longhaul: Covert to light weight -target_index() routine

2013-08-13 Thread Viresh Kumar
This patch converts existing .target() to newly defined light weight .target_index() routine for this driver. CPUFreq core will call cpufreq_frequency_table_target() before calling this routine and will pass index to it. Signed-off-by: Viresh Kumar viresh.ku...@linaro.org ---

[PATCH V2 08/35] cpufreq: cris: Covert to light weight -target_index() routine

2013-08-13 Thread Viresh Kumar
This patch converts existing .target() to newly defined light weight .target_index() routine for this driver. CPUFreq core will call cpufreq_frequency_table_target() before calling this routine and will pass index to it. Cc: Jesper Nilsson jesper.nils...@axis.com Cc: Mikael Starvik

[PATCH V2 12/35] cpufreq: elanfreq: Covert to light weight -target_index() routine

2013-08-13 Thread Viresh Kumar
This patch converts existing .target() to newly defined light weight .target_index() routine for this driver. CPUFreq core will call cpufreq_frequency_table_target() before calling this routine and will pass index to it. Signed-off-by: Viresh Kumar viresh.ku...@linaro.org ---

[PATCH V2 10/35] cpufreq: dbx500: Covert to light weight -target_index() routine

2013-08-13 Thread Viresh Kumar
This patch converts existing .target() to newly defined light weight .target_index() routine for this driver. CPUFreq core will call cpufreq_frequency_table_target() before calling this routine and will pass index to it. Cc: Linus Walleij linus.wall...@linaro.org Signed-off-by: Viresh Kumar

[PATCH V2 18/35] cpufreq: loongson2: Covert to light weight -target_index() routine

2013-08-13 Thread Viresh Kumar
This patch converts existing .target() to newly defined light weight .target_index() routine for this driver. CPUFreq core will call cpufreq_frequency_table_target() before calling this routine and will pass index to it. Cc: John Crispin blo...@openwrt.org Signed-off-by: Viresh Kumar

[PATCH V2 25/35] cpufreq: ppc: Covert to light weight -target_index() routine

2013-08-13 Thread Viresh Kumar
This patch converts existing .target() to newly defined light weight .target_index() routine for this driver. CPUFreq core will call cpufreq_frequency_table_target() before calling this routine and will pass index to it. Signed-off-by: Viresh Kumar viresh.ku...@linaro.org ---

[PATCH V2 24/35] cpufreq: powernow: Covert to light weight -target_index() routine

2013-08-13 Thread Viresh Kumar
This patch converts existing .target() to newly defined light weight .target_index() routine for this driver. CPUFreq core will call cpufreq_frequency_table_target() before calling this routine and will pass index to it. Signed-off-by: Viresh Kumar viresh.ku...@linaro.org ---

[PATCH V2 27/35] cpufreq: s3c2416: Covert to light weight -target_index() routine

2013-08-13 Thread Viresh Kumar
This patch converts existing .target() to newly defined light weight .target_index() routine for this driver. CPUFreq core will call cpufreq_frequency_table_target() before calling this routine and will pass index to it. Cc: Kukjin Kim kgene@samsung.com Signed-off-by: Viresh Kumar

[PATCH V2 26/35] cpufreq: pxa: Covert to light weight -target_index() routine

2013-08-13 Thread Viresh Kumar
This patch converts existing .target() to newly defined light weight .target_index() routine for this driver. CPUFreq core will call cpufreq_frequency_table_target() before calling this routine and will pass index to it. Cc: Eric Miao eric.y.m...@gmail.com Signed-off-by: Viresh Kumar

[PATCH V2 30/35] cpufreq: sa11x0: Covert to light weight -target_index() routine

2013-08-13 Thread Viresh Kumar
This patch converts existing .target() to newly defined light weight .target_index() routine for this driver. CPUFreq core will call cpufreq_frequency_table_target() before calling this routine and will pass index to it. Some existing routines are no more required and so are removed now. Cc:

[PATCH V2 33/35] cpufreq: SPEAr: Covert to light weight -target_index() routine

2013-08-13 Thread Viresh Kumar
This patch converts existing .target() to newly defined light weight .target_index() routine for this driver. CPUFreq core will call cpufreq_frequency_table_target() before calling this routine and will pass index to it. Signed-off-by: Viresh Kumar viresh.ku...@linaro.org ---

[PATCH V2 32/35] cpufreq: sparc: Covert to light weight -target_index() routine

2013-08-13 Thread Viresh Kumar
This patch converts existing .target() to newly defined light weight .target_index() routine for this driver. CPUFreq core will call cpufreq_frequency_table_target() before calling this routine and will pass index to it. Cc: David S. Miller da...@davemloft.net Cc: sparcli...@vger.kernel.org

[PATCH V2 35/35] cpufreq: tegra: Covert to light weight -target_index() routine

2013-08-13 Thread Viresh Kumar
This patch converts existing .target() to newly defined light weight .target_index() routine for this driver. CPUFreq core will call cpufreq_frequency_table_target() before calling this routine and will pass index to it. Cc: Stephen Warren swar...@nvidia.com Signed-off-by: Viresh Kumar

[PATCH v3] N900: add device tree

2013-08-13 Thread Pavel Machek
Hi! I finally got released by the aliens. It took longer than expected and beside a small scar on the back of my neck, I feel pretty OK. Scars on neck sound scary... The order should not matter at all in DT, it should be a static representation of the HW, so there is probably something

[PATCH] drivers/rtc/rtc-max77686.c: Fix wrong register

2013-08-13 Thread Sangjung Woo
Fix to read the wrong register when cheching whether the RTC timer has reached or not. Signed-off-by: Sangjung Woo sangjung@samsung.com Signed-off-by: Myugnjoo Ham myungjoo@samsung.com Reviewed-by: Jonghwa Lee jonghwa3@samsung.com --- drivers/rtc/rtc-max77686.c |2 +- 1 file

[PATCH V2 34/35] cpufreq: speedstep: Covert to light weight -target_index() routine

2013-08-13 Thread Viresh Kumar
This patch converts existing .target() to newly defined light weight .target_index() routine for this driver. CPUFreq core will call cpufreq_frequency_table_target() before calling this routine and will pass index to it. Cc: David S. Miller da...@davemloft.net Signed-off-by: Viresh Kumar

[PATCH V2 31/35] cpufreq: sc520: Covert to light weight -target_index() routine

2013-08-13 Thread Viresh Kumar
This patch converts existing .target() to newly defined light weight .target_index() routine for this driver. CPUFreq core will call cpufreq_frequency_table_target() before calling this routine and will pass index to it. Signed-off-by: Viresh Kumar viresh.ku...@linaro.org ---

[PATCH V2] irq: enable all irqs unconditionally in irq_resume

2013-08-13 Thread Laxman Dewangan
When system enters into suspend, it disable all irqs in single function call. This disables EARLY_RESUME irqs also along with normal irqs. The EARLY_RESUME irqs get enabled in sys_core_ops-resume and non-EARLY_RESUME irqs get enabled in normal system resume path. When suspend_noirq failed or

[PATCH V2 29/35] cpufreq: s5pv210: Covert to light weight -target_index() routine

2013-08-13 Thread Viresh Kumar
This patch converts existing .target() to newly defined light weight .target_index() routine for this driver. CPUFreq core will call cpufreq_frequency_table_target() before calling this routine and will pass index to it. This drivers wasn't as straight forward as other ones. It was doing some

[PATCH V2 28/35] cpufreq: s3c64xx: Covert to light weight -target_index() routine

2013-08-13 Thread Viresh Kumar
This patch converts existing .target() to newly defined light weight .target_index() routine for this driver. CPUFreq core will call cpufreq_frequency_table_target() before calling this routine and will pass index to it. Cc: Kukjin Kim kgene@samsung.com Signed-off-by: Viresh Kumar

[PATCH V2 22/35] cpufreq: pasemi: Covert to light weight -target_index() routine

2013-08-13 Thread Viresh Kumar
This patch converts existing .target() to newly defined light weight .target_index() routine for this driver. CPUFreq core will call cpufreq_frequency_table_target() before calling this routine and will pass index to it. Signed-off-by: Viresh Kumar viresh.ku...@linaro.org ---

[PATCH V2 19/35] cpufreq: maple: Covert to light weight -target_index() routine

2013-08-13 Thread Viresh Kumar
This patch converts existing .target() to newly defined light weight .target_index() routine for this driver. CPUFreq core will call cpufreq_frequency_table_target() before calling this routine and will pass index to it. Cc: Dmitry Eremin-Solenikov dbarysh...@gmail.com Signed-off-by: Viresh

Re: brcsmac kernel panic

2013-08-13 Thread Arend van Spriel
On 08/12/2013 10:11 PM, Daniel Wagner wrote: Hi Arend, On 08/12/2013 12:38 PM, Arend van Spriel wrote: On 08/11/2013 06:21 PM, Daniel Wagner wrote: I just updated my laptop (MacBook Air 2012) from 3.11-rc3+ to 3.11-rc4+ and since then brcsmac crashes short after enabling it. Unfortunately, I

[PATCH V2 11/35] cpufreq: e_powersaver: Covert to light weight -target_index() routine

2013-08-13 Thread Viresh Kumar
This patch converts existing .target() to newly defined light weight .target_index() routine for this driver. CPUFreq core will call cpufreq_frequency_table_target() before calling this routine and will pass index to it. Signed-off-by: Viresh Kumar viresh.ku...@linaro.org ---

[PATCH V2 04/35] cpufreq: arm_big_little: Covert to light weight -target_index() routine

2013-08-13 Thread Viresh Kumar
This patch converts existing .target() to newly defined light weight .target_index() routine for this driver. CPUFreq core will call cpufreq_frequency_table_target() before calling this routine and will pass index to it. Signed-off-by: Viresh Kumar viresh.ku...@linaro.org ---

Re: [PATCH] usb: musb: am335x: Do not remove the session bin HOST-only mode

2013-08-13 Thread Sebastian Andrzej Siewior
On 08/13/2013 03:33 PM, Bin Liu wrote: Sebastian, Hi Bin, I've been looking at the wiki page and it did not mention the ID pin for the second port. If it is grounded then this piece can be removed I thought you have already tried that without setting the mode register the session bit cannot

Re: [PATCH 2/2] fuse: wait for writeback in fuse_file_fallocate()

2013-08-13 Thread Maxim Patlasov
08/13/2013 05:23 PM, Brian Foster пишет: On 08/13/2013 08:56 AM, Maxim Patlasov wrote: Hi, 08/13/2013 04:05 PM, Brian Foster пишет: ... @@ -2478,8 +2516,11 @@ static long fuse_file_fallocate(struct file *file, int mode, loff_t offset, if (lock_inode) {

Re: [PATCH V2 00/35] CPUFreq: Implement light weight -target(): for 3.13

2013-08-13 Thread Viresh Kumar
On 13 August 2013 19:02, Viresh Kumar viresh.ku...@linaro.org wrote: Currently prototype of cpufreq_drivers target routines is: int target(struct cpufreq_policy *policy, unsigned int target_freq, unsigned int relation); And most of the drivers call cpufreq_frequency_table_target() to

Re: [PATCH v2] iio: add Bosch BMA180 acceleration sensor driver

2013-08-13 Thread Mark Rutland
On Tue, Aug 13, 2013 at 10:09:16AM +0100, Oleksandr Kravchenko wrote: This patch adds IIO driver for Bosch BMA180 triaxial acceleration sensor. http://omapworld.com/BMA180_111_1002839.pdf Signed-off-by: Oleksandr Kravchenko o.v.kravche...@globallogic.com ---

Re: [PATCH 7/9] ARM: dove: add PCIe controllers to SoC DT

2013-08-13 Thread Jason Cooper
On Tue, Aug 13, 2013 at 01:28:49PM +0200, Sebastian Hesselbarth wrote: On 08/12/13 22:04, Jason Cooper wrote: On Mon, Aug 12, 2013 at 08:46:53PM +0200, Sebastian Hesselbarth wrote: This adds a node for the pcie controllers found on Dove SoCs to the SoC DT include. Signed-off-by: Sebastian

[PATCH V2 09/35] cpufreq: davinci: Covert to light weight -target_index() routine

2013-08-13 Thread Viresh Kumar
This patch converts existing .target() to newly defined light weight .target_index() routine for this driver. CPUFreq core will call cpufreq_frequency_table_target() before calling this routine and will pass index to it. Cc: Sekhar Nori nsek...@ti.com Signed-off-by: Viresh Kumar

Re: nouveau: temperature on nv40 is unavailable since ad40d73ef533ab0ad16b4a1ab2f7870c1f8ab954

2013-08-13 Thread Pali Rohár
On utorok, 13. augusta 2013 15:32:45 CEST, Martin Peres wrote: On 13/08/2013 09:23, Pali Rohár wrote: On Tuesday 13 August 2013 09:01:19 Martin Peres wrote: ... You can check the temperature by running nvidia-settings. If you can't see the temperature in it, then nvidia doesn't support it on

Re: brcsmac kernel panic

2013-08-13 Thread Daniel Wagner
On 08/13/2013 03:41 PM, Arend van Spriel wrote: On 08/12/2013 10:11 PM, Daniel Wagner wrote: On 08/12/2013 12:38 PM, Arend van Spriel wrote: On 08/11/2013 06:21 PM, Daniel Wagner wrote: I just updated my laptop (MacBook Air 2012) from 3.11-rc3+ to 3.11-rc4+ and since then brcsmac crashes

Re: nouveau: temperature on nv40 is unavailable since ad40d73ef533ab0ad16b4a1ab2f7870c1f8ab954

2013-08-13 Thread Martin Peres
On 13/08/2013 09:53, Pali Rohár wrote: On utorok, 13. augusta 2013 15:32:45 CEST, Martin Peres wrote: On 13/08/2013 09:23, Pali Rohár wrote: On Tuesday 13 August 2013 09:01:19 Martin Peres wrote: ... You can check the temperature by running nvidia-settings. If you can't see the temperature

Re: [PATCH 01/16] Move common EFI stub code from x86 arch code to common location

2013-08-13 Thread Mark Salter
On Fri, 2013-08-09 at 16:26 -0700, Roy Franz wrote: No code changes made, just moving functions from x86 arch directory to common location. Code is shared using #include, similar to how decompression code is shared among architectures. Signed-off-by: Roy Franz roy.fr...@linaro.org ---

Re: [PATCH 02/16] Add system pointer argument to shared EFI stub related functions so they no longer use global system table pointer as they did when part of eboot.c. This code is now shared, so using

2013-08-13 Thread Mark Salter
On Fri, 2013-08-09 at 16:26 -0700, Roy Franz wrote: Signed-off-by: Roy Franz roy.fr...@linaro.org --- arch/x86/boot/compressed/eboot.c | 38 +++-- drivers/firmware/efi/efi-stub-helper.c | 96 +--- 2 files changed, 72 insertions(+), 62

Re: [PATCH 08/16] Generalize handle_ramdisks() and rename to handle_cmdline_files().

2013-08-13 Thread Mark Salter
On Fri, 2013-08-09 at 16:26 -0700, Roy Franz wrote: The handle_cmdline_files now takes the option to handle as a string, and returns the loaded data through parameters, rather than taking an x86 specific setup_header structure. For ARM, this will be used to load a device tree blob in addition

Re: [PATCH 09/16] Renames in handle_cmdline_files() to complete generalization.

2013-08-13 Thread Mark Salter
On Fri, 2013-08-09 at 16:26 -0700, Roy Franz wrote: Rename variables to be not initrd specific, as now the function loads arbitrary files. Signed-off-by: Roy Franz roy.fr...@linaro.org --- Tested on arm64. Acked-by: Mark Salter msal...@redhat.com -- To unsubscribe from this list: send

Re: [PATCH 05/16] rename __get_map() to efi_get_memory_map(), add parameter to optionally return mmap key. The mmap key is required to exit EFI boot services, and allows efi_get_memory_map() to be use

2013-08-13 Thread Mark Salter
On Fri, 2013-08-09 at 16:26 -0700, Roy Franz wrote: Signed-off-by: Roy Franz roy.fr...@linaro.org --- drivers/firmware/efi/efi-stub-helper.c | 17 +++-- 1 file changed, 11 insertions(+), 6 deletions(-) Tested on arm64. Acked-by: Mark Salter msal...@redhat.com -- To

Re: [PATCH 04/16] Add minimum address parameter to efi_low_alloc()

2013-08-13 Thread Mark Salter
On Fri, 2013-08-09 at 16:26 -0700, Roy Franz wrote: This allows allocations to be made low in memory while avoiding allocations at the base of memory. Signed-off-by: Roy Franz roy.fr...@linaro.org --- Tested on arm64. Acked-by: Mark Salter msal...@redhat.com -- To unsubscribe from this

Re: [PATCH 12/16] Fix types in EFI calls to match EFI function definitions.

2013-08-13 Thread Mark Salter
On Fri, 2013-08-09 at 16:26 -0700, Roy Franz wrote: EFI calls can made directly on ARM, so the function pointers are directly invoked. This allows types to be checked at compile time, so here we ensure that the parameters match the function signature. Signed-off-by: Roy Franz

Re: [PATCH 10/16] Move EFI_READ_CHUNK_SIZE define to shared location.

2013-08-13 Thread Mark Salter
On Fri, 2013-08-09 at 16:26 -0700, Roy Franz wrote: This #define is only used the the shared code, so move it there. Signed-off-by: Roy Franz roy.fr...@linaro.org --- Tested on arm64. Acked-by: Mark Salter msal...@redhat.com -- To unsubscribe from this list: send the line unsubscribe

Re: [PATCH] hwspinlock/msm: Add support for Qualcomm MSM HW Mutex block

2013-08-13 Thread Kumar Gala
On Aug 13, 2013, at 1:01 AM, Ohad Ben-Cohen wrote: On Mon, Aug 12, 2013 at 8:24 PM, Kumar Gala ga...@codeaurora.org wrote: So I think I'd ask you to recommend a name, should we just us 'hwspinlock'. The general view from ePAPR and dts is the node name should be a bit more generic (like

Re: [PATCH 11/16] Add proper definitions for some EFI function pointers.

2013-08-13 Thread Mark Salter
On Fri, 2013-08-09 at 16:26 -0700, Roy Franz wrote: The x86/AMD64 EFI stubs must us a call wrapper to convert between the Linux and EFI ABIs, so void pointers are sufficient. For ARM, the ABIs are compatible, so we can directly invoke the function pointers. The functions that are used by the

Re: [PATCH 13/16] resolve warnings found on ARM compile

2013-08-13 Thread Mark Salter
On Fri, 2013-08-09 at 16:26 -0700, Roy Franz wrote: 2 unused labels 1 value computed is not used Signed-off-by: Roy Franz roy.fr...@linaro.org --- Tested on arm64. Acked-by: Mark Salter msal...@redhat.com -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the

Re: [PATCH 03/16] Rename memory allocation/free functions

2013-08-13 Thread Mark Salter
On Fri, 2013-08-09 at 16:26 -0700, Roy Franz wrote: Rename them to be more similar, as low_free() could be used to free memory allocated by both high_alloc() and low_alloc(). high_alloc() - efi_high_alloc() low_alloc() - efi_low_alloc() low_free() - efi_free() Signed-off-by: Roy Franz

Re: [PATCH 06/16] Enforce minimum alignment of 1 page on allocations. The efi_high_alloc() and efi_low_alloc() functions use the EFI_ALLOCATE_ADDRESS option to the EFI function allocate_pages(), which

2013-08-13 Thread Mark Salter
On Fri, 2013-08-09 at 16:26 -0700, Roy Franz wrote: The existing code could fail to allocate depending on allocation size, as although repeated allocation attempts were made, none were guaranteed to be page aligned. Signed-off-by: Roy Franz roy.fr...@linaro.org --- Tested on arm64.

Re: [PATCH] usb: musb: am335x: Do not remove the session bin HOST-only mode

2013-08-13 Thread Bin Liu
Sebastian, On Tue, Aug 13, 2013 at 8:44 AM, Sebastian Andrzej Siewior bige...@linutronix.de wrote: This was a misunderstanding then. Sorry. I understood that the bin has to be unset and then the controller set it once a device there. You meant ID pin? I think it should be set all the time since

Re: [PATCH v2 0/5] ARM: dove: DT PCIe support

2013-08-13 Thread Jason Cooper
Bjorn, On Tue, Aug 13, 2013 at 02:25:19PM +0200, Sebastian Hesselbarth wrote: This patch set adds support for the PCIe controllers found on Marvell Dove SoCs. It depends on mvebu-pci patches sent by Thomas Petazzoni. Well, when it rains, it pours. If this series looks good to you, I'll go

Re: [GIT PULL] tracing: final fixes for events and some

2013-08-13 Thread Steven Rostedt
On Tue, 13 Aug 2013 07:45:03 -0400 Dave Jones da...@redhat.com wrote: But the recent fix where you had a test-case that did module unloads didn't really seem to fit the profile of what I was seeing. It's feasible that my fuzzer can trigger module _loads_, but I don't think there's any way we

Re: [PATCH] RFC: perf, tools: Move gtk browser into separate perfgtk executable

2013-08-13 Thread Vince Weaver
On Tue, 13 Aug 2013, Ingo Molnar wrote: * Vince Weaver vi...@deater.net wrote: In the past you used to only test your library once the -stable kernel was released - has this changed recently by any chance? I remember that in one particular case I got a regression bugreport from you

Re: [PATCH 04/22] block: Abstract out bvec iterator

2013-08-13 Thread Ed Cashin
On Aug 9, 2013, Ed Cashin wrote: On Aug 8, 2013, at 9:05 PM, Kent Overstreet wrote: ... It's in the for-jens branch now. Just examining the patches, I like the way it cleans up the aoe code. I had a question about a new BUG added by the for-jens branch the read-response handling path

Re: [PATCH v3] N900: add device tree

2013-08-13 Thread Benoit Cousson
On 13/08/2013 15:36, Pavel Machek wrote: Hi! I finally got released by the aliens. It took longer than expected and beside a small scar on the back of my neck, I feel pretty OK. Scars on neck sound scary... The order should not matter at all in DT, it should be a static representation of

Re: linux-next: Tree for Aug 13 [ screen corruption in graphical mode ]

2013-08-13 Thread Sedat Dilek
-20130812 LAST GOOD: next-20130809 [2] With Ubuntu's X stack: next-20130813 is OK (Xorg.log attached) - Sedat - Xorg.0.log Description: Binary data

[PATCH RFC v2] mmc: sdhci-msm: Add support for MSM chipsets

2013-08-13 Thread Georgi Djakov
This platform driver adds the support of Secure Digital Host Controller Interface compliant controller in MSM chipsets. CC: Asutosh Das asuto...@codeaurora.org CC: Venkat Gopalakrishnan venk...@codeaurora.org CC: Sahitya Tummala stumm...@codeaurora.org CC: Subhash Jadavani subha...@codeaurora.org

Re: [PATCH 15/16] Add EFI stub for ARM

2013-08-13 Thread Dave Martin
On Fri, Aug 09, 2013 at 04:26:16PM -0700, Roy Franz wrote: This patch adds EFI stub support for the ARM Linux kernel. The EFI stub operations similarly to the x86 stub: it is a shim between the EFI firmware and the normal zImage entry point, and sets up the environment that the zImage is

Re: [PATCH] usb: musb: am335x: Do not remove the session bin HOST-only mode

2013-08-13 Thread Sebastian Andrzej Siewior
On 08/13/2013 04:01 PM, Bin Liu wrote: Sebastian, Hi Bin, On Tue, Aug 13, 2013 at 8:44 AM, Sebastian Andrzej Siewior bige...@linutronix.de wrote: This was a misunderstanding then. Sorry. I understood that the bin has to be unset and then the controller set it once a device there. You meant

Re: [RFC 0/3] Pin page control subsystem

2013-08-13 Thread Benjamin LaHaise
On Tue, Aug 13, 2013 at 11:46:42AM +0200, Krzysztof Kozlowski wrote: Hi Minchan, On wto, 2013-08-13 at 16:04 +0900, Minchan Kim wrote: patch 2 introduce pinpage control subsystem. So, subsystems want to control pinpage should implement own pinpage_xxx functions because each subsystem

Re: [PATCH v1 09/14] clk: msm: Add support for MSM8960's global clock controller (GCC)

2013-08-13 Thread Mike Turquette
Quoting Stephen Boyd (2013-08-12 22:03:34) On 08/08, Mark Rutland wrote: Hi Stephen, On Thu, Jul 25, 2013 at 01:43:37AM +0100, Stephen Boyd wrote: Fill in the data and wire up the global clock controller to the MSM clock driver. This should allow most non-multimedia device drivers

Re: Zynq clk fixes

2013-08-13 Thread Michal Simek
Hi Mike, On 07/27/2013 12:25 AM, Mike Turquette wrote: Quoting Sören Brinkmann (2013-07-26 14:11:52) On Fri, Jul 26, 2013 at 01:07:03PM -0700, Mike Turquette wrote: Quoting Michal Simek (2013-07-26 05:09:58) Hi Mike, [cc: Arnd and Olof] Soren has found two bug fixes in zynq clk code. Can

Re: [PATCH] usb: musb: am335x: Do not remove the session bin HOST-only mode

2013-08-13 Thread Bin Liu
Sebastian, On Tue, Aug 13, 2013 at 9:23 AM, Sebastian Andrzej Siewior bige...@linutronix.de wrote: Where is my memory going? So now I have a beagle bone in front of me and I see a micro USB port a standard A connector. My memory was different. The micro USB is the UART and standard is most

Re: [PATCH 16/17] Add EFI stub for ARM

2013-08-13 Thread Dave P Martin
On Thu, Aug 08, 2013 at 10:57:29PM +0100, Roy Franz wrote: On Wed, Aug 7, 2013 at 11:05 AM, Dave Martin dave.mar...@arm.com wrote: On Tue, Aug 06, 2013 at 08:45:12PM -0700, Roy Franz wrote: This patch adds EFI stub support for the ARM Linux kernel. The EFI stub operations similarly to the

Re: [PATCH] drivers/rtc/rtc-max77686.c: Fix wrong register

2013-08-13 Thread jonghwa3 . lee
On 2013년 08월 13일 22:37, Sangjung Woo wrote: Fix to read the wrong register when cheching whether the RTC timer has reached or not. Signed-off-by: Sangjung Woo sangjung@samsung.com Signed-off-by: Myugnjoo Ham myungjoo@samsung.com Reviewed-by: Jonghwa Lee jonghwa3@samsung.com

Re: [PATCH 2/4] perf, x86: Report TSX transaction abort cost as weight

2013-08-13 Thread Andi Kleen
How about something like the below instead? I didn't copy the !fll test because I couldn't find why that was. Section 18.10.5.1 (Aug 2012) !fll is so that if a memory weight is requested we don't overwrite it. u64 status, dla, dse, lat; }; -/* - * Same as pebs_record_nhm, with

Re: [PATCH part5 0/7] Arrange hotpluggable memory as ZONE_MOVABLE.

2013-08-13 Thread Tejun Heo
Hello, Tang. On Tue, Aug 13, 2013 at 05:56:46PM +0800, Tang Chen wrote: 1. Introduce a memblock.current_limit_low to limit the lowest address that memblock can use. 2. Make memblock be able to allocate memory from low to high. 3. Get kernel image address on x86, and set

[PATCH] drivers/misc/hpilo: Correct panic when an AUX iLO is detected

2013-08-13 Thread Mark Rusk
Using an uninitialized variable 'devnum' after 'goto out;' was causing panic. Just go ahead and return, we need to ignore AUX iLO devs. Oops: 0002 [#1] SMP . . . RIP [a033e270] ilo_probe+0xec/0xe7c [hpilo] --- drivers/misc/hpilo.c |4 ++-- 1 files changed, 2

Re: [PATCH] sched: fix the theoretical signal_wake_up() vs schedule() race

2013-08-13 Thread Oleg Nesterov
On 08/13, Peter Zijlstra wrote: On Mon, Aug 12, 2013 at 07:02:57PM +0200, Oleg Nesterov wrote: +/* + * Despite its name it doesn't necessarily has to be a full barrier. + * It should only guarantee that a STORE before the critical section + * can not be reordered with a LOAD inside this

Re: [PATCH net-next 2/3] net/usb/r8152: enable tx checksum

2013-08-13 Thread Sergei Shtylyov
Hello. On 08/13/2013 11:28 AM, Hayes Wang wrote: Enable tx checksum. Signed-off-by: Hayes Wang hayesw...@realtek.com --- drivers/net/usb/r8152.c | 63 + 1 file changed, 58 insertions(+), 5 deletions(-) diff --git

Re: linux-next: Tree for Aug 13 [ screen corruption in graphical mode ]

2013-08-13 Thread Sedat Dilek
, too. - Sedat - Some more testing: [1] With my X stack: FIRST BAD: next-20130812 LAST GOOD: next-20130809 [2] With Ubuntu's X stack: next-20130813 is OK (Xorg.log attached) drm-intel-nightly is also BAD with my X stack (with Ubuntu's X stack no problems). - Sedat - - Sedat

Re: [PATCH] mm/hotplug: Remove stop_machine() from try_offline_node()

2013-08-13 Thread Toshi Kani
On Tue, 2013-08-13 at 13:41 +0200, Rafael J. Wysocki wrote: On Monday, August 12, 2013 01:34:31 PM Toshi Kani wrote: lock_device_hotplug() serializes hotplug online/offline operations. The lock is held in common sysfs online/offline interfaces and ACPI hotplug code paths.

Re: [PATCH] arm: omap5: dts: split SMPS10 dt node

2013-08-13 Thread Kishon Vijay Abraham I
Hi, On Tuesday 13 August 2013 06:51 PM, Benoit Cousson wrote: Hi Kishon, On 12/08/2013 11:37, Kishon Vijay Abraham I wrote: SMPS10 has two outputs OUT1 and OUT2. Hence SMPS10 is modeled as two regulators. The dt node is split to reflect it. Mmm, I'm curious. How is it supposed to work?

Re: [RFC] gcc feature request: Moving blocks into sections

2013-08-13 Thread H. Peter Anvin
On Mon, Aug 12, 2013 at 10:47:37AM -0700, H. Peter Anvin wrote: Since we really doesn't want to... Ow. Can't believe I wrote that. -hpa -- To unsubscribe from this list: send the line unsubscribe linux-kernel in the body of a message to majord...@vger.kernel.org More majordomo info

Re: [PATCH] arm: omap5: dts: split SMPS10 dt node

2013-08-13 Thread Benoit Cousson
On 13/08/2013 16:45, Kishon Vijay Abraham I wrote: Hi, On Tuesday 13 August 2013 06:51 PM, Benoit Cousson wrote: Hi Kishon, On 12/08/2013 11:37, Kishon Vijay Abraham I wrote: SMPS10 has two outputs OUT1 and OUT2. Hence SMPS10 is modeled as two regulators. The dt node is split to reflect it.

Re: [PATCH v3 1/4] leds-pca9633: Add support for PCA9634

2013-08-13 Thread Ricardo Ribalda Delgado
Hello Bryan Did you have a chance to look at the new series? Thanks! On Fri, Aug 9, 2013 at 8:45 AM, Ricardo Ribalda Delgado ricardo.riba...@gmail.com wrote: Add support for PCA9634 chip, which belongs to the same family as the 9633 but with support for 8 outputs instead of 4.

Re: [PATCH] m68k: truncate base in do_div

2013-08-13 Thread Geert Uytterhoeven
On Fri, Aug 9, 2013 at 3:14 PM, Andreas Schwab sch...@linux-m68k.org wrote: Explicitly truncate the second operand of do_div to 32 bits to guard against bogus code calling it with a 64bit divisor. Signed-off-by: Andreas Schwab sch...@linux-m68k.org I added [Thorsten] After upgrading

<    8   9   10   11   12   13   14   15   16   17   >