Re: [PATCH] ARM: hw_breakpoint: Enable debug powerdown only if system supports 'has_ossr'

2013-03-18 Thread Santosh Shilimkar
On Friday 15 March 2013 10:30 AM, Will Deacon wrote: On Thu, Mar 14, 2013 at 01:08:00PM +0530, Santosh Shilimkar wrote: Will, Hi guys, I'm out of the office at the moment and have really terrible connectivity, so I can't do too much until next week. However, I don't think adding the

Re: [PATCH 2/2] ARM: OMAP2+: clocks: Pass static parent pointers to common clock core

2013-03-18 Thread Rajendra Nayak
On Friday 15 March 2013 09:50 PM, Tony Lindgren wrote: * Rajendra Nayak rna...@ti.com [130315 05:31]: On Thursday 14 March 2013 10:36 PM, Tony Lindgren wrote: * Rajendra Nayak rna...@ti.com [130314 05:44]: OMAP clock inits happen quite early, even before the slab is available. As part of the

[PATCH] mmc: omap_hsmmc: Prevent potential NULL dereference

2013-03-18 Thread Axel Lin
of_get_hsmmc_pdata() may return NULL, thus ensure pdata is not NULL before dereference it. Signed-off-by: Axel Lin axel@ingics.com --- drivers/mmc/host/omap_hsmmc.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/mmc/host/omap_hsmmc.c

[GIT PULL v2] ARM: omap2: twl-common update

2013-03-18 Thread Peter Ujfalusi
Hi Tony, I have rebased the branch on 3.9-rc3 tag. Is it still possible to send this for 3.9? Regards, Péter --- The following changes since commit a937536b868b8369b98967929045f1df54234323: Linux 3.9-rc3 (2013-03-17 15:59:32 -0700) are available in the git repository at:

Re: [PATCH V2 0/8] ARM: dts: Various OMAP2+ device-tree updates

2013-03-18 Thread Benoit Cousson
Hi Anil, On 03/17/2013 10:35 AM, Anil Kumar wrote: Hi Benoit, On Fri, Mar 15, 2013 at 8:00 PM, Benoit Cousson b-cous...@ti.com wrote: Hi Jon, On 03/15/2013 02:57 PM, Jon Hunter wrote: Various OMAP device-tree updates for PMU, DMA, GPIO, GPMC and boards. The DMA, PMU and OMAP3430 SDP

[PATCH 0/2] omap serial fix.

2013-03-18 Thread Sourav Poddar
The first patch is a rearrangement of a macro OMAP_MAX_HSUART_PORTS to a header file so that it can be used in other file. The second patch fixes the wakeup from uart issue while using no_console_suspend in the bootargs. These patches are developed on 3.8 custom kernel containing omap5

[PATCH 1/2] driver: serial-omap: move max uart count into generic header file.

2013-03-18 Thread Sourav Poddar
OMAP_MAX_HSUART_PORTS is moved to omap_serial header file. Cc: Santosh Shilimkar santosh.shilim...@ti.com Cc: Felipe Balbi ba...@ti.com Cc: Rajendra nayak rna...@ti.com Signed-off-by: Sourav Poddar sourav.pod...@ti.com --- drivers/tty/serial/omap-serial.c |2 --

[PATCH 2/2] arm: mach-omap2: prevent UART console idle on suspend while using no_console_suspend

2013-03-18 Thread Sourav Poddar
With dt boot on omap5, uart wakeup after suspend is non functional while using no_console_suspend in the bootargs. With no_console_suspend used, od-flags should be ORed with OMAP_DEVICE_NO_IDLE_ON_SUSPEND, thereby not allowing the console to idle in the suspend path. For non-dt case, this was

Re: [PATCH v2 06/23] ARM: OMAP3: 3430SDP: Adapt to ehci-omap changes

2013-03-18 Thread Roger Quadros
On 03/15/2013 06:12 PM, Tony Lindgren wrote: Hi, I think you can get rid of quite a bit more of the repeated data for most boards, see below. * Roger Quadros rog...@ti.com [130315 08:21]: Add 2 platform devices for 'nop-usb-xceiv'. These will be used as PHYs for HS USB ports 1 and 2 so

[PATCH v3 4/4] ARM: OMAP3: Beagle: Adapt to ehci-omap changes

2013-03-18 Thread Roger Quadros
Use usbhs_init_phys() to register the PHY's VCC and RESET regulators and the NOP PHY device. Signed-off-by: Roger Quadros rog...@ti.com --- arch/arm/mach-omap2/board-omap3beagle.c | 32 +- 1 files changed, 22 insertions(+), 10 deletions(-) diff --git

[PATCH v3 2/4] ARM: OMAP2+: omap-usb-host: Add usbhs_init_phys()

2013-03-18 Thread Roger Quadros
This helper allows board support code to add the PHY's VCC and RESET regulators which are GPIO controlled as well as the NOP PHY device. Signed-off-by: Roger Quadros rog...@ti.com --- arch/arm/mach-omap2/usb-host.c | 177 +++- arch/arm/mach-omap2/usb.h |

[PATCH v3 0/4] ARM: OMAP2+: Adapt to ehci-omap changes for 3.10

2013-03-18 Thread Roger Quadros
Hi Tony, I've revised the patches based on your comments. For now I've just adapted Panda and Beagleboard. If this looks OK then I can adapt the other boards as well. cheers, -roger Roger Quadros (4): usb: phy: nop: Add some parameters to platform data ARM: OMAP2+: omap-usb-host: Add

[PATCH v3 3/4] ARM: OMAP2+: omap4panda: Adapt to ehci-omap changes

2013-03-18 Thread Roger Quadros
Use usbhs_init_phys() to register the PHY's VCC and RESET regulators and the NOP PHY device. Get rid of managing the PHY clock as it will be done by the PHY driver. For that to work we create a clock alias that links the PHY clock name to the PHY device name. Signed-off-by: Roger Quadros

[PATCH v3 1/4] usb: phy: nop: Add some parameters to platform data

2013-03-18 Thread Roger Quadros
Add clk_rate parameter to platform data. If supplied, the NOP phy driver will program the clock to that rate during probe. Also add 2 flags, needs_vcc and needs_reset. If the flag is set and the regulator couldn't be found then the driver will bail out with -EPROBE_DEFER. Signed-off-by: Roger

Re: [PATCH 0/2] omap serial fix.

2013-03-18 Thread Sourav Poddar
Hi, On Monday 18 March 2013 04:24 PM, Sourav Poddar wrote: The first patch is a rearrangement of a macro OMAP_MAX_HSUART_PORTS to a header file so that it can be used in other file. The second patch fixes the wakeup from uart issue while using no_console_suspend in the bootargs. These patches

[PATCH/Resend 2/2] arm: mach-omap2: prevent UART console idle on suspend while using no_console_suspend

2013-03-18 Thread Sourav Poddar
With dt boot, uart wakeup after suspend is non functional on omap4/5 while using no_console_suspend in the bootargs. With no_console_suspend used, od-flags should be ORed with OMAP_DEVICE_NO_IDLE_ON_SUSPEND, thereby not allowing the console to idle in the suspend path. For non-dt case, this was

Re: [PATCH V3 10/18] ARM: OMAP2+: Add function to read GPMC settings from device-tree

2013-03-18 Thread Jon Hunter
On 03/17/2013 12:24 AM, Ezequiel Garcia wrote: Hi Jon, I have some tiny nitpicks... On Fri, Mar 15, 2013 at 10:21:08AM -0500, Jon Hunter wrote: Adds a function to read the various GPMC chip-select settings from device-tree and store them in the gpmc_settings structure. Update the GPMC

Re: [PATCH V3 02/18] ARM: OMAP2+: Add variable to store number of GPMC waitpins

2013-03-18 Thread Jon Hunter
On 03/16/2013 03:59 PM, Ezequiel Garcia wrote: Hi Jon, On Fri, Mar 15, 2013 at 10:21:00AM -0500, Jon Hunter wrote: The GPMC has wait-pin signals that can be assigned to a chip-select to monitor the ready signal of an external device. Add a variable to indicate the total number of

Re: commit 6797b4f causes boot hangs with nfsroot

2013-03-18 Thread Jon Hunter
On 03/17/2013 08:57 PM, Paul Walmsley wrote: Hi Jon, On Sat, 16 Mar 2013, Paul Walmsley wrote: Looks like commit 6797b4fe0e554ce71f47038fd929c9ca929a9f3c (ARM: OMAP2+: Prevent potential crash if GPMC probe fails) causes hangs on boot. I suspect it may only occur when the root

Re: [PATCH V3 12/18] ARM: OMAP2+: Add additional GPMC timing parameters

2013-03-18 Thread Rob Herring
On 03/15/2013 10:21 AM, Jon Hunter wrote: Some of the GPMC timings parameters are currently missing from the GPMC device-tree binding. Add these parameters to the binding documentation as well as code to read them. The existing code in gpmc_read_timings_dt() is checking the value of

Re: [PATCH V3 12/18] ARM: OMAP2+: Add additional GPMC timing parameters

2013-03-18 Thread Jon Hunter
On 03/18/2013 09:07 AM, Rob Herring wrote: On 03/15/2013 10:21 AM, Jon Hunter wrote: Some of the GPMC timings parameters are currently missing from the GPMC device-tree binding. Add these parameters to the binding documentation as well as code to read them. The existing code in

Re: [PATCH 00/50] staging: omap-thermal: several code refactoring

2013-03-18 Thread Eduardo Valentin
Greg, Dan, On 16-03-2013 12:16, Greg KH wrote: On Sat, Mar 16, 2013 at 08:46:03AM -0400, Eduardo Valentin wrote: Hello Dan, On 16-03-2013 05:05, Dan Carpenter wrote: I've reviewed this set. I hate to make people redo whole patchset sets, and I hate re-reviewing code. Obviously, I don't

[PATCH 0/8] staging: [omap,ti-soc]-thermal: fixes and renaming

2013-03-18 Thread Eduardo Valentin
Hi Greg, I am sending extra patches on omap-thermal driver, under staging. There are couple of fixes based on Dan Carpenter's review on the last patch set I sent. On top of these, there are some changes on the naming convention for this driver. This rename is based on previous review cycles that

[PATCH 1/8] staging: omap-thermal: fix return value

2013-03-18 Thread Eduardo Valentin
Return the proper error value in _omap_bandgap_read_threshold. Cc: Dan Carpenter dan.carpen...@oracle.com Signed-off-by: Eduardo Valentin eduardo.valen...@ti.com diff --git a/drivers/staging/omap-thermal/omap-bandgap.c b/drivers/staging/omap-thermal/omap-bandgap.c index 33bfe3b..cb7aa35 100644

[PATCH 2/8] staging: omap-thermal: use spin_lock_irqsave inside IRQ handler

2013-03-18 Thread Eduardo Valentin
Even if the IRQ is not firing because it is ONE_SHOT and disable at INTC level, the IRQ handler must use spin_lock_irqsave. It is necessary to disable IRQs from the current CPU while it is holding a spin_lock which is need. Cc: Dan Carpenter dan.carpen...@oracle.com Signed-off-by: Eduardo

[PATCH 3/8] staging: omap-thermal: rename bg_ptr to bgp

2013-03-18 Thread Eduardo Valentin
Use a shorter name to bandgap pointer. Cc: Benoit b-cous...@ti.com Signed-off-by: Eduardo Valentin eduardo.valen...@ti.com diff --git a/drivers/staging/omap-thermal/omap-bandgap.c b/drivers/staging/omap-thermal/omap-bandgap.c index a4ac06c..89361fe 100644 ---

[PATCH 5/8] staging: ti-soc-thermal: make unexported functions local

2013-03-18 Thread Eduardo Valentin
Move _ti_bandgap_write_threshold and _ti_bandgap_read_threshold to static area, as they are local functions. Signed-off-by: Eduardo Valentin eduardo.valen...@ti.com diff --git a/drivers/staging/ti-soc-thermal/ti-bandgap.c b/drivers/staging/ti-soc-thermal/ti-bandgap.c index 6a0b1ac..c850e13

[PATCH 6/8] staging: ti-soc-thermal: split writable data from readonly data

2013-03-18 Thread Eduardo Valentin
This patch changes the data structures of this driver so that readonly data can reside only in the conf pointer. Now each register has a struct to hold its configuration info, to be used base on chip version for instance, and a struct of values to be written, like register shadow and priv data.

[PATCH 7/8] stating: ti-soc-thermal: use sizeof(*pointer) while allocating

2013-03-18 Thread Eduardo Valentin
Follow Documentation/CodingStyle and use sizeof(*pointer) instead of sizeof(struct type). Signed-off-by: Eduardo Valentin eduardo.valen...@ti.com diff --git a/drivers/staging/ti-soc-thermal/ti-bandgap.c b/drivers/staging/ti-soc-thermal/ti-bandgap.c index b74e847..4382c0c 100644 ---

[PATCH 8/8] staging: ti-soc-thermal: fix several kernel-doc warnings and error

2013-03-18 Thread Eduardo Valentin
This patch updates the documentation to remove all warnings and errors reported by scripts/kernel-doc. Most are missing arguments due to wrong format. Cc: Nishanth Menon n...@ti.com Signed-off-by: Eduardo Valentin eduardo.valen...@ti.com diff --git a/drivers/staging/ti-soc-thermal/ti-bandgap.c

Re: [PATCH] ARM: hw_breakpoint: Enable debug powerdown only if system supports 'has_ossr'

2013-03-18 Thread Will Deacon
Hi Santosh, On Mon, Mar 18, 2013 at 06:51:30AM +, Santosh Shilimkar wrote: On Friday 15 March 2013 10:30 AM, Will Deacon wrote: Furthermore, I was under the impression that hw_breakpoint did actually work on panda, which implies that a cold boot *does* manage to reset the registers

Re: [PATCH V4] ARM: dts: add minimal DT support for DevKit8000.

2013-03-18 Thread Benoit Cousson
Hi Anil, On 03/17/2013 06:23 AM, Anil Kumar wrote: Hi Benoit, On Thu, Mar 7, 2013 at 12:21 PM, Benoit Cousson b-cous...@ti.com wrote: Hi, On 03/06/2013 06:53 PM, Tony Lindgren wrote: * Anil Kumar anilk...@gmail.com [130305 18:40]: Hi Tony, From: linux-arm-kernel

OMAP baseline test results for v3.9-rc3

2013-03-18 Thread Paul Walmsley
Here are some basic OMAP test results for Linux v3.9-rc3. Logs and other details at: http://www.pwsan.com/omap/testlogs/test_v3.9-rc3/20130314094808/ Test summary Build: FAIL ( 3/16): am33xx_only, omap1_defconfig_5912osk_only,

Re: [PATCH] ARM: hw_breakpoint: Enable debug powerdown only if system supports 'has_ossr'

2013-03-18 Thread Santosh Shilimkar
On Monday 18 March 2013 08:37 PM, Will Deacon wrote: Hi Santosh, On Mon, Mar 18, 2013 at 06:51:30AM +, Santosh Shilimkar wrote: On Friday 15 March 2013 10:30 AM, Will Deacon wrote: Furthermore, I was under the impression that hw_breakpoint did actually work on panda, which implies that

Re: [PATCH V3 12/18] ARM: OMAP2+: Add additional GPMC timing parameters

2013-03-18 Thread Jon Hunter
On 03/18/2013 09:32 AM, Jon Hunter wrote: On 03/18/2013 09:07 AM, Rob Herring wrote: On 03/15/2013 10:21 AM, Jon Hunter wrote: Some of the GPMC timings parameters are currently missing from the GPMC device-tree binding. Add these parameters to the binding documentation as well as code to

Re: OMAP baseline test results for v3.9-rc3

2013-03-18 Thread Anca Emanuel
You are not planning any resources to solve this ? You are listing this for a number of months now. It is time to solve them. On Mon, Mar 18, 2013 at 5:38 PM, Paul Walmsley p...@pwsan.com wrote: Here are some basic OMAP test results for Linux v3.9-rc3. Logs and other details at:

Re: OMAP baseline test results for v3.9-rc3

2013-03-18 Thread Paul Walmsley
On Mon, 18 Mar 2013, Anca Emanuel wrote: You are not planning any resources to solve this ? You are listing this for a number of months now. It is time to solve them. Absolutely, thanks for volunteering! Patches welcome. - Paul -- To unsubscribe from this list: send the line unsubscribe

Re: [RFC] Kbuild support for ARM FIT images

2013-03-18 Thread Pavel Machek
On Fri 2013-02-22 08:00:44, Olof Johansson wrote: On Wed, Feb 20, 2013 at 07:37:10PM -0600, Joel A Fernandes wrote: Any comments on this approach? Is it better to merge mkfitsrc.sh with mkuboot.sh? I know this was discussed quite extensively yesterday, but here is my take on it: Given

Re: [PATCH 2/2] ARM: OMAP2+: clocks: Pass static parent pointers to common clock core

2013-03-18 Thread Tony Lindgren
* Rajendra Nayak rna...@ti.com [130318 01:25]: On Friday 15 March 2013 09:50 PM, Tony Lindgren wrote: * Rajendra Nayak rna...@ti.com [130315 05:31]: On Thursday 14 March 2013 10:36 PM, Tony Lindgren wrote: * Rajendra Nayak rna...@ti.com [130314 05:44]: OMAP clock inits happen quite early,

Re: [PATCH 1/8] staging: omap-thermal: fix return value

2013-03-18 Thread Dan Carpenter
Thanks. Acked-by: Dan Carpenter dan.carpen...@orcle.com regards, dan carpenter -- To unsubscribe from this list: send the line unsubscribe linux-omap in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html

Re: [PATCH v3 0/4] ARM: OMAP2+: Adapt to ehci-omap changes for 3.10

2013-03-18 Thread Tony Lindgren
* Roger Quadros rog...@ti.com [130318 05:55]: Hi Tony, I've revised the patches based on your comments. For now I've just adapted Panda and Beagleboard. If this looks OK then I can adapt the other boards as well. Thanks yes looks good to me now. Regards, Tony -- To unsubscribe from this

Re: [RFC] Kbuild support for ARM FIT images

2013-03-18 Thread Russell King - ARM Linux
On Mon, Mar 18, 2013 at 05:36:53PM +0100, Pavel Machek wrote: On Fri 2013-02-22 08:00:44, Olof Johansson wrote: On Wed, Feb 20, 2013 at 07:37:10PM -0600, Joel A Fernandes wrote: Any comments on this approach? Is it better to merge mkfitsrc.sh with mkuboot.sh? I know this was

Re: [PATCH] ARM: hw_breakpoint: Enable debug powerdown only if system supports 'has_ossr'

2013-03-18 Thread Will Deacon
On Mon, Mar 18, 2013 at 03:46:28PM +, Santosh Shilimkar wrote: On Monday 18 March 2013 08:37 PM, Will Deacon wrote: That really sucks :( Does this affect all OMAP-based boards? All OMAP4 based boards.. Brilliant. Is there any way that the secure code can be fixed in future products?

Re: OMAP baseline test results for v3.9-rc3

2013-03-18 Thread Paul Walmsley
On Mon, 18 Mar 2013, Paul Walmsley wrote: On Mon, 18 Mar 2013, Anca Emanuel wrote: You are not planning any resources to solve this ? You are listing this for a number of months now. It is time to solve them. Absolutely, thanks for volunteering! Patches welcome. Also, if you are a TI

Re: [PATCH 1/8] staging: omap-thermal: fix return value

2013-03-18 Thread Eduardo Valentin
Dan, On 18-03-2013 12:39, Dan Carpenter wrote: Thanks. Acked-by: Dan Carpenter dan.carpen...@orcle.com regards, dan carpenter Thanks for taking the time to check this code. Eduardo -- To unsubscribe from this list: send the line unsubscribe linux-omap in the body of a message to

Re: [RFC] Kbuild support for ARM FIT images

2013-03-18 Thread Pavel Machek
On Mon 2013-03-18 16:44:26, Russell King - ARM Linux wrote: On Mon, Mar 18, 2013 at 05:36:53PM +0100, Pavel Machek wrote: On Fri 2013-02-22 08:00:44, Olof Johansson wrote: On Wed, Feb 20, 2013 at 07:37:10PM -0600, Joel A Fernandes wrote: Any comments on this approach? Is it better to

Re: [RFC] Kbuild support for ARM FIT images

2013-03-18 Thread Russell King - ARM Linux
On Mon, Mar 18, 2013 at 06:49:32PM +0100, Pavel Machek wrote: What I wanted to say is that kernel build traditionaly produced something useful, something bootloader can actually boot. Currently, make uImage produces u-boot image. Please keep that capability. Unfortunately, there is a

Re: [RFC] Kbuild support for ARM FIT images

2013-03-18 Thread Pavel Machek
On Mon 2013-03-18 17:57:46, Russell King - ARM Linux wrote: On Mon, Mar 18, 2013 at 06:49:32PM +0100, Pavel Machek wrote: What I wanted to say is that kernel build traditionaly produced something useful, something bootloader can actually boot. Currently, make uImage produces u-boot image.

Re: [U-Boot] [RFC] Kbuild support for ARM FIT images

2013-03-18 Thread Stephen Warren
On 03/18/2013 12:04 PM, Pavel Machek wrote: On Mon 2013-03-18 17:57:46, Russell King - ARM Linux wrote: On Mon, Mar 18, 2013 at 06:49:32PM +0100, Pavel Machek wrote: What I wanted to say is that kernel build traditionaly produced something useful, something bootloader can actually boot.

Re: [U-Boot] [RFC] Kbuild support for ARM FIT images

2013-03-18 Thread Tom Rini
On Mon, Mar 18, 2013 at 05:36:53PM +0100, Pavel Machek wrote: On Fri 2013-02-22 08:00:44, Olof Johansson wrote: On Wed, Feb 20, 2013 at 07:37:10PM -0600, Joel A Fernandes wrote: Any comments on this approach? Is it better to merge mkfitsrc.sh with mkuboot.sh? I know this was

Re: [PATCH 1/2] driver: serial-omap: move max uart count into generic header file.

2013-03-18 Thread Kevin Hilman
Sourav Poddar sourav.pod...@ti.com writes: OMAP_MAX_HSUART_PORTS is moved to omap_serial header file. Why? You started to explain it in the cover letter, but a full description belongs here for the permanent git history. Kevin Cc: Santosh Shilimkar santosh.shilim...@ti.com Cc: Felipe

Re: [PATCH 2/8] staging: omap-thermal: use spin_lock_irqsave inside IRQ handler

2013-03-18 Thread Dan Carpenter
On Mon, Mar 18, 2013 at 10:59:10AM -0400, Eduardo Valentin wrote: Even if the IRQ is not firing because it is ONE_SHOT and disable at INTC level, the IRQ handler must use spin_lock_irqsave. It is necessary to disable IRQs from the current CPU while it is holding a spin_lock which is need.

Re: [PATCH 4/8] staging: rename omap-thermal driver to ti-soc-thermal

2013-03-18 Thread Dan Carpenter
On Mon, Mar 18, 2013 at 10:59:12AM -0400, Eduardo Valentin wrote: Because this driver will support also OMAP derivatives, this patch does a big rename inside this driver, so it better fits its usage. It would be better to do a minimal move patch which just renames the files and updated the

Re: [PATCH 2/8] staging: omap-thermal: use spin_lock_irqsave inside IRQ handler

2013-03-18 Thread Eduardo Valentin
On 18-03-2013 15:16, Dan Carpenter wrote: On Mon, Mar 18, 2013 at 10:59:10AM -0400, Eduardo Valentin wrote: Even if the IRQ is not firing because it is ONE_SHOT and disable at INTC level, the IRQ handler must use spin_lock_irqsave. It is necessary to disable IRQs from the current CPU while it

Re: [RFC] Kbuild support for ARM FIT images

2013-03-18 Thread Wolfgang Denk
Dear Russell, In message 20130318175746.gj30...@n2100.arm.linux.org.uk you wrote: Unfortunately, there is a fundamental problem with uImage. It encodes the load address, and that is utterly incompatible with the goal of having a kernel image which boots on multiple platforms. I'm not sure

Re: [U-Boot] [RFC] Kbuild support for ARM FIT images

2013-03-18 Thread Wolfgang Denk
Dear Stephen, In message 51475997.2060...@wwwdotorg.org you wrote: Raw zImage /is/ the useful format that should be adopted. This one size fits all approch does fit everywhere. There are a number of users (including _big_ commercial ones, with _large_ numebrs of systems in the field) that

Re: [PATCH 2/8] staging: omap-thermal: use spin_lock_irqsave inside IRQ handler

2013-03-18 Thread Dan Carpenter
On Mon, Mar 18, 2013 at 03:38:38PM -0400, Eduardo Valentin wrote: On 18-03-2013 15:16, Dan Carpenter wrote: On Mon, Mar 18, 2013 at 10:59:10AM -0400, Eduardo Valentin wrote: Even if the IRQ is not firing because it is ONE_SHOT and disable at INTC level, the IRQ handler must use

Re: [PATCH 6/8] SERIAL: OMAP: Remove the slave idle handling from the driver

2013-03-18 Thread Greg Kroah-Hartman
On Thu, Mar 14, 2013 at 03:07:01PM +0530, Santosh Shilimkar wrote: (Looping Greg KH.) Greg, On Wednesday 20 February 2013 09:14 PM, Santosh Shilimkar wrote: On Wednesday 20 February 2013 08:54 PM, Kevin Hilman wrote: Santosh Shilimkar santosh.shilim...@ti.com writes: UART IP slave

Re: [PATCH 2/2] ARM: OMAP2+: clocks: Pass static parent pointers to common clock core

2013-03-18 Thread Mike Turquette
Quoting Tony Lindgren (2013-03-18 09:37:58) * Rajendra Nayak rna...@ti.com [130318 01:25]: On Friday 15 March 2013 09:50 PM, Tony Lindgren wrote: * Rajendra Nayak rna...@ti.com [130315 05:31]: On Thursday 14 March 2013 10:36 PM, Tony Lindgren wrote: * Rajendra Nayak rna...@ti.com

Re: [PATCH 2/2] ARM: OMAP2+: clocks: Pass static parent pointers to common clock core

2013-03-18 Thread Rajendra Nayak
On Tuesday 19 March 2013 06:53 AM, Mike Turquette wrote: Quoting Tony Lindgren (2013-03-18 09:37:58) * Rajendra Nayak rna...@ti.com [130318 01:25]: On Friday 15 March 2013 09:50 PM, Tony Lindgren wrote: * Rajendra Nayak rna...@ti.com [130315 05:31]: On Thursday 14 March 2013 10:36 PM, Tony

Re: OMAP baseline test results for v3.9-rc2

2013-03-18 Thread Paul Walmsley
Hi, restating these to reflect some bugfixes in the test log parsing scripts. On Thu, 14 Mar 2013, Paul Walmsley wrote: vmlinux object size (delta in bytes from test_v3.9-rc1 (6dbe51c251a327e012439c4772097a13df43c5b8)): text data bsstotal kernel +13528 +640

Re: OMAP baseline test results for v3.9-rc1

2013-03-18 Thread Paul Walmsley
Hi, here's the restated delta from v3.8 - v3.9-rc1, after some script bug fixes. On Tue, 12 Mar 2013, Paul Walmsley wrote: vmlinux object size (delta in bytes from test_v3.8 (19f949f52599ba7c3f67a5897ac6be14bfcb1200)): text data bsstotal kernel +195310 +37968+1364