[PATCH v2 0/4] cbus/retu drivers

2012-10-31 Thread Aaro Koskinen
functionality to retu-mfd - added power button key driver - some cleanups Aaro Koskinen (4): i2c: introduce i2c-cbus driver mfd: introduce retu-mfd driver watchdog: introduce retu_wdt driver input: misc: introduce retu-pwrbutton arch/arm/mach-omap2/board-n8x0.c| 42

[PATCH v2 4/4] input: misc: introduce retu-pwrbutton

2012-10-31 Thread Aaro Koskinen
Add Retu power button driver. Cc: linux-in...@vger.kernel.org Acked-by: Felipe Balbi ba...@ti.com Signed-off-by: Aaro Koskinen aaro.koski...@iki.fi --- drivers/input/misc/Kconfig | 10 +++ drivers/input/misc/Makefile |1 + drivers/input/misc/retu-pwrbutton.c | 118

[PATCH v2 1/4] i2c: introduce i2c-cbus driver

2012-10-31 Thread Aaro Koskinen
-by: Aaro Koskinen aaro.koski...@iki.fi --- arch/arm/mach-omap2/board-n8x0.c | 42 ++ drivers/i2c/busses/Kconfig | 10 ++ drivers/i2c/busses/Makefile |1 + drivers/i2c/busses/i2c-cbus.c| 300 ++ include/linux/i2c-cbus.h | 27

[PATCH v2 2/4] mfd: introduce retu-mfd driver

2012-10-31 Thread Aaro Koskinen
-by: Felipe Balbi ba...@ti.com Acked-by: Tony Lindgren t...@atomide.com Signed-off-by: Aaro Koskinen aaro.koski...@iki.fi --- drivers/mfd/Kconfig |9 ++ drivers/mfd/Makefile |1 + drivers/mfd/retu-mfd.c | 264 ++ include/linux/mfd/retu.h

[PATCH v2 3/4] watchdog: introduce retu_wdt driver

2012-10-31 Thread Aaro Koskinen
Introduce Retu watchdog driver. Cc: linux-watch...@vger.kernel.org Acked-by: Felipe Balbi ba...@ti.com Acked-by: Tony Lindgren t...@atomide.com Signed-off-by: Aaro Koskinen aaro.koski...@iki.fi --- drivers/watchdog/Kconfig| 12 +++ drivers/watchdog/Makefile |1 + drivers/watchdog

[PATCH v3 0/4] cbus/retu drivers

2012-11-01 Thread Aaro Koskinen
-cbus GPIO pins - merged n8x0 board file changes into i2c-cbus patch - corrected typo in Kconfig for MFD_RETU - added power off functionality to retu-mfd - added IRQ functionality to retu-mfd - added power button key driver - some cleanups Aaro

[PATCH v3 2/4] mfd: introduce retu-mfd driver

2012-11-01 Thread Aaro Koskinen
-by: Felipe Balbi ba...@ti.com Acked-by: Tony Lindgren t...@atomide.com Signed-off-by: Aaro Koskinen aaro.koski...@iki.fi --- drivers/mfd/Kconfig |9 ++ drivers/mfd/Makefile |1 + drivers/mfd/retu-mfd.c | 264 ++ include/linux/mfd/retu.h

[PATCH v3 1/4] i2c: introduce i2c-cbus driver

2012-11-01 Thread Aaro Koskinen
-by: Aaro Koskinen aaro.koski...@iki.fi --- arch/arm/mach-omap2/board-n8x0.c | 42 + drivers/i2c/busses/Kconfig | 10 + drivers/i2c/busses/Makefile|1 + drivers/i2c/busses/i2c-cbus.c | 300 include/linux/platform_data

[PATCH v3 4/4] input: misc: introduce retu-pwrbutton

2012-11-01 Thread Aaro Koskinen
Add Retu power button driver. Cc: linux-in...@vger.kernel.org Acked-by: Felipe Balbi ba...@ti.com Signed-off-by: Aaro Koskinen aaro.koski...@iki.fi --- drivers/input/misc/Kconfig | 10 drivers/input/misc/Makefile |1 + drivers/input/misc/retu-pwrbutton.c | 102

[PATCH v3 3/4] watchdog: introduce retu_wdt driver

2012-11-01 Thread Aaro Koskinen
Introduce Retu watchdog driver. Cc: linux-watch...@vger.kernel.org Acked-by: Felipe Balbi ba...@ti.com Acked-by: Tony Lindgren t...@atomide.com Signed-off-by: Aaro Koskinen aaro.koski...@iki.fi --- drivers/watchdog/Kconfig| 12 +++ drivers/watchdog/Makefile |1 + drivers/watchdog

[PATCH v3 2/6] watchdog: omap_wdt: convert kzalloc() to devm_kzalloc()

2012-10-10 Thread Aaro Koskinen
Use devm_kzalloc() to simplify the code. Signed-off-by: Aaro Koskinen aaro.koski...@iki.fi --- drivers/watchdog/omap_wdt.c | 23 ++- 1 files changed, 6 insertions(+), 17 deletions(-) diff --git a/drivers/watchdog/omap_wdt.c b/drivers/watchdog/omap_wdt.c index d28ad5e

[PATCH v3 0/6] watchdog: omap_wdt: convert to new watchdog core

2012-10-10 Thread Aaro Koskinen
for reporting this. v1 (https://lkml.org/lkml/2012/9/4/217): The initial version. Aaro Koskinen (6): watchdog: omap_wdt: convert to new watchdog core watchdog: omap_wdt: convert kzalloc() to devm_kzalloc() watchdog: omap_wdt: convert request_mem_region() to devm_request_mem_region

[PATCH v3 4/6] watchdog: omap_wdt: convert ioremap() to devm_ioremap()

2012-10-10 Thread Aaro Koskinen
Use devm_ioremap() to simplify the code. Signed-off-by: Aaro Koskinen aaro.koski...@iki.fi --- drivers/watchdog/omap_wdt.c | 14 +++--- 1 files changed, 3 insertions(+), 11 deletions(-) diff --git a/drivers/watchdog/omap_wdt.c b/drivers/watchdog/omap_wdt.c index 45019b0..7e8d3e0

[PATCH v3 5/6] watchdog: omap_wdt: delete redundant platform_set_drvdata() calls

2012-10-10 Thread Aaro Koskinen
It's not needed to manually reset the driver data. Signed-off-by: Aaro Koskinen aaro.koski...@iki.fi --- drivers/watchdog/omap_wdt.c |2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/drivers/watchdog/omap_wdt.c b/drivers/watchdog/omap_wdt.c index 7e8d3e0..af1e72e 100644

[PATCH v3 3/6] watchdog: omap_wdt: convert request_mem_region() to devm_request_mem_region()

2012-10-10 Thread Aaro Koskinen
Use devm_request_mem_region() to simplify the code. Signed-off-by: Aaro Koskinen aaro.koski...@iki.fi --- drivers/watchdog/omap_wdt.c | 13 - 1 files changed, 4 insertions(+), 9 deletions(-) diff --git a/drivers/watchdog/omap_wdt.c b/drivers/watchdog/omap_wdt.c index d6722db

[PATCH v3 6/6] watchdog: omap_wdt: eliminate goto

2012-10-10 Thread Aaro Koskinen
Eliminate a goto to simplify the code. Signed-off-by: Aaro Koskinen aaro.koski...@iki.fi --- drivers/watchdog/omap_wdt.c | 11 --- 1 files changed, 4 insertions(+), 7 deletions(-) diff --git a/drivers/watchdog/omap_wdt.c b/drivers/watchdog/omap_wdt.c index af1e72e..bee43a9 100644

[PATCH v3 1/6] watchdog: omap_wdt: convert to new watchdog core

2012-10-10 Thread Aaro Koskinen
. Signed-off-by: Aaro Koskinen aaro.koski...@iki.fi Tested-by: Jarkko Nikula jarkko.nik...@jollamobile.com Tested-by: Lokesh Vutla lokeshvu...@ti.com --- drivers/watchdog/Kconfig|1 + drivers/watchdog/omap_wdt.c | 274 ++- 2 files changed, 118

[RESEND PATCH v3 3/6] watchdog: omap_wdt: convert request_mem_region() to devm_request_mem_region()

2012-10-25 Thread Aaro Koskinen
Use devm_request_mem_region() to simplify the code. Signed-off-by: Aaro Koskinen aaro.koski...@iki.fi --- drivers/watchdog/omap_wdt.c | 13 - 1 files changed, 4 insertions(+), 9 deletions(-) diff --git a/drivers/watchdog/omap_wdt.c b/drivers/watchdog/omap_wdt.c index d6722db

[RESEND PATCH v3 6/6] watchdog: omap_wdt: eliminate goto

2012-10-25 Thread Aaro Koskinen
Eliminate a goto to simplify the code. Signed-off-by: Aaro Koskinen aaro.koski...@iki.fi --- drivers/watchdog/omap_wdt.c | 11 --- 1 files changed, 4 insertions(+), 7 deletions(-) diff --git a/drivers/watchdog/omap_wdt.c b/drivers/watchdog/omap_wdt.c index af1e72e..bee43a9 100644

[RESEND PATCH v3 0/6] watchdog: omap_wdt: convert to new watchdog core

2012-10-25 Thread Aaro Koskinen
to Jarkko Nikula jarkko.nik...@bitmer.com for reporting this. v1 (https://lkml.org/lkml/2012/9/4/217): The initial version. Aaro Koskinen (6): watchdog: omap_wdt: convert to new watchdog core watchdog: omap_wdt: convert kzalloc() to devm_kzalloc() watchdog: omap_wdt: convert

[RESEND PATCH v3 1/6] watchdog: omap_wdt: convert to new watchdog core

2012-10-25 Thread Aaro Koskinen
. Signed-off-by: Aaro Koskinen aaro.koski...@iki.fi Tested-by: Jarkko Nikula jarkko.nik...@jollamobile.com Tested-by: Lokesh Vutla lokeshvu...@ti.com --- drivers/watchdog/Kconfig|1 + drivers/watchdog/omap_wdt.c | 274 ++- 2 files changed, 118

[RESEND PATCH v3 5/6] watchdog: omap_wdt: delete redundant platform_set_drvdata() calls

2012-10-25 Thread Aaro Koskinen
It's not needed to manually reset the driver data. Signed-off-by: Aaro Koskinen aaro.koski...@iki.fi --- drivers/watchdog/omap_wdt.c |2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/drivers/watchdog/omap_wdt.c b/drivers/watchdog/omap_wdt.c index 7e8d3e0..af1e72e 100644

[RESEND PATCH v3 4/6] watchdog: omap_wdt: convert ioremap() to devm_ioremap()

2012-10-25 Thread Aaro Koskinen
Use devm_ioremap() to simplify the code. Signed-off-by: Aaro Koskinen aaro.koski...@iki.fi --- drivers/watchdog/omap_wdt.c | 14 +++--- 1 files changed, 3 insertions(+), 11 deletions(-) diff --git a/drivers/watchdog/omap_wdt.c b/drivers/watchdog/omap_wdt.c index 45019b0..7e8d3e0

[RESEND PATCH v3 2/6] watchdog: omap_wdt: convert kzalloc() to devm_kzalloc()

2012-10-25 Thread Aaro Koskinen
Use devm_kzalloc() to simplify the code. Signed-off-by: Aaro Koskinen aaro.koski...@iki.fi --- drivers/watchdog/omap_wdt.c | 23 ++- 1 files changed, 6 insertions(+), 17 deletions(-) diff --git a/drivers/watchdog/omap_wdt.c b/drivers/watchdog/omap_wdt.c index d28ad5e

[RESEND PATCH v3 3/6] watchdog: omap_wdt: convert request_mem_region() to devm_request_mem_region()

2012-11-12 Thread Aaro Koskinen
Use devm_request_mem_region() to simplify the code. Signed-off-by: Aaro Koskinen aaro.koski...@iki.fi Cc: Wim Van Sebroeck w...@iguana.be --- drivers/watchdog/omap_wdt.c | 13 - 1 files changed, 4 insertions(+), 9 deletions(-) diff --git a/drivers/watchdog/omap_wdt.c b/drivers

[RESEND PATCH v3 1/6] watchdog: omap_wdt: convert to new watchdog core

2012-11-12 Thread Aaro Koskinen
. Signed-off-by: Aaro Koskinen aaro.koski...@iki.fi Tested-by: Jarkko Nikula jarkko.nik...@jollamobile.com Tested-by: Lokesh Vutla lokeshvu...@ti.com Cc: Wim Van Sebroeck w...@iguana.be --- drivers/watchdog/Kconfig|1 + drivers/watchdog/omap_wdt.c | 274

[RESEND PATCH v3 5/6] watchdog: omap_wdt: delete redundant platform_set_drvdata() calls

2012-11-12 Thread Aaro Koskinen
It's not needed to manually reset the driver data. Signed-off-by: Aaro Koskinen aaro.koski...@iki.fi Cc: Wim Van Sebroeck w...@iguana.be --- drivers/watchdog/omap_wdt.c |2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/drivers/watchdog/omap_wdt.c b/drivers/watchdog

[RESEND PATCH v3 2/6] watchdog: omap_wdt: convert kzalloc() to devm_kzalloc()

2012-11-12 Thread Aaro Koskinen
Use devm_kzalloc() to simplify the code. Signed-off-by: Aaro Koskinen aaro.koski...@iki.fi Cc: Wim Van Sebroeck w...@iguana.be --- drivers/watchdog/omap_wdt.c | 23 ++- 1 files changed, 6 insertions(+), 17 deletions(-) diff --git a/drivers/watchdog/omap_wdt.c b/drivers

[RESEND PATCH v3 0/6] watchdog: omap_wdt: convert to new watchdog core

2012-11-12 Thread Aaro Koskinen
this. v1 (https://lkml.org/lkml/2012/9/4/217): The initial version. Aaro Koskinen (6): watchdog: omap_wdt: convert to new watchdog core watchdog: omap_wdt: convert kzalloc() to devm_kzalloc() watchdog: omap_wdt: convert request_mem_region() to devm_request_mem_region

[RESEND PATCH v3 4/6] watchdog: omap_wdt: convert ioremap() to devm_ioremap()

2012-11-12 Thread Aaro Koskinen
Use devm_ioremap() to simplify the code. Signed-off-by: Aaro Koskinen aaro.koski...@iki.fi Cc: Wim Van Sebroeck w...@iguana.be --- drivers/watchdog/omap_wdt.c | 14 +++--- 1 files changed, 3 insertions(+), 11 deletions(-) diff --git a/drivers/watchdog/omap_wdt.c b/drivers/watchdog

[RESEND PATCH v3 6/6] watchdog: omap_wdt: eliminate goto

2012-11-12 Thread Aaro Koskinen
Eliminate a goto to simplify the code. Signed-off-by: Aaro Koskinen aaro.koski...@iki.fi Cc: Wim Van Sebroeck w...@iguana.be --- drivers/watchdog/omap_wdt.c | 11 --- 1 files changed, 4 insertions(+), 7 deletions(-) diff --git a/drivers/watchdog/omap_wdt.c b/drivers/watchdog

[RESEND PATCH v3 2/4] mfd: introduce retu-mfd driver

2012-11-12 Thread Aaro Koskinen
-by: Felipe Balbi ba...@ti.com Acked-by: Tony Lindgren t...@atomide.com Signed-off-by: Aaro Koskinen aaro.koski...@iki.fi --- drivers/mfd/Kconfig |9 ++ drivers/mfd/Makefile |1 + drivers/mfd/retu-mfd.c | 264 ++ include/linux/mfd/retu.h

[RESEND PATCH v3 0/4] cbus/retu drivers

2012-11-12 Thread Aaro Koskinen
-cbus GPIO pins - merged n8x0 board file changes into i2c-cbus patch - corrected typo in Kconfig for MFD_RETU - added power off functionality to retu-mfd - added IRQ functionality to retu-mfd - added power button key driver - some cleanups Aaro

[RESEND PATCH v3 3/4] watchdog: introduce retu_wdt driver

2012-11-12 Thread Aaro Koskinen
Introduce Retu watchdog driver. Cc: linux-watch...@vger.kernel.org Acked-by: Felipe Balbi ba...@ti.com Acked-by: Tony Lindgren t...@atomide.com Signed-off-by: Aaro Koskinen aaro.koski...@iki.fi Cc: Wim Van Sebroeck w...@iguana.be --- drivers/watchdog/Kconfig| 12 +++ drivers/watchdog

[RESEND PATCH v3 4/4] input: misc: introduce retu-pwrbutton

2012-11-12 Thread Aaro Koskinen
Add Retu power button driver. Cc: linux-in...@vger.kernel.org Acked-by: Felipe Balbi ba...@ti.com Signed-off-by: Aaro Koskinen aaro.koski...@iki.fi Cc: Dmitry Torokhov dmitry.torok...@gmail.com --- drivers/input/misc/Kconfig | 10 drivers/input/misc/Makefile |1

[RESEND PATCH v3 1/4] i2c: introduce i2c-cbus driver

2012-11-12 Thread Aaro Koskinen
-by: Aaro Koskinen aaro.koski...@iki.fi Cc: Wolfram Sang w.s...@pengutronix.de --- arch/arm/mach-omap2/board-n8x0.c | 42 + drivers/i2c/busses/Kconfig | 10 + drivers/i2c/busses/Makefile|1 + drivers/i2c/busses/i2c-cbus.c | 300

[PATCH] ARM: kexec: fix segment memory addresses check

2012-10-16 Thread Aaro Koskinen
Commit c564df4db85aac8d1d65a56176a0a25f46138064 (ARM: 7540/1: kexec: Check segment memory addresses) added a safety check with accidentally reversed condition, and broke kexec functionality on ARM. Fix this. Signed-off-by: Aaro Koskinen aaro.koski...@iki.fi --- arch/arm/kernel/machine_kexec.c

Re: [PATCH] OMAP3 ROM Random Number Generator support

2013-04-01 Thread Aaro Koskinen
Hi, On Sun, Mar 31, 2013 at 03:05:42PM +0300, Ивайло Димитров wrote: Yep, the code looks almost identical, I guess with some tweaks all SMC code from that patch could be removed and instead used the one from SMC PPA API. What I don't get, is why one needs to disable/enable fiqs/irqs: [..]

Re: [PATCH] drm/nouveau: fix NULL ptr dereference from nv50_disp_intr()

2013-03-24 Thread Aaro Koskinen
This fixes regression caused by 1d7c71a3e2f7 (drm/nouveau/disp: port vblank handling to event interface), This patch fixes the boot crashes also on my G5 iMac (http://marc.info/?l=linux-kernelm=136285469916031w=2). Tested-by: Aaro Koskinen aaro.koski...@iki.fi A. -- To unsubscribe from

Re: Driver lis3lv02d_i2c not working on Nokia RX-51

2013-03-26 Thread Aaro Koskinen
that commit or adding fake regulator to board code... I think the following should work: ... From: Aaro Koskinen aaro.koski...@iki.fi Date: Tue, 26 Mar 2013 21:34:22 +0200 Subject: [PATCH] OMAP: RX-51: add missing regulator supply definitions for lis3lv02d Add missing regulator definitions

Re: [PATCH] ARM: OMAP: drop select MACH_NOKIA_RM696

2013-03-08 Thread Aaro Koskinen
On Fri, Mar 08, 2013 at 11:29:56AM +0100, Paul Bolle wrote: When support was added for Nokia N9 (RM-696), with commit 63fc5f3bb3d0ca9ab4767a801b518aa6335f87ad (ARM: OMAP: add minimal support for Nokia RM-696), a select statement for MACH_NOKIA_RM696 was added to the tree. But there's no

linux 3.9-rc1: nouveau crash on PPC

2013-03-09 Thread Aaro Koskinen
Hi, There's nouveau crash during boot with 3.9-rc1 on iMac G5 (nVidia GeForce FX 5200 Ultra). This happens also with current mainline kernel HEAD (0aefda3e8188ad71168bd32152d41b3d72f04087). git bisect tells the first bad commit is 1d7c71a3e2f77336df536855b0efd2dc5bdeb41b (drm/nouveau/disp: port

Re: linux 3.9-rc1: nouveau crash on PPC

2013-03-13 Thread Aaro Koskinen
Hi, On Sat, Mar 09, 2013 at 08:44:31PM +0200, Aaro Koskinen wrote: There's nouveau crash during boot with 3.9-rc1 on iMac G5 (nVidia GeForce FX 5200 Ultra). This happens also with current mainline kernel HEAD (0aefda3e8188ad71168bd32152d41b3d72f04087). git bisect tells the first bad commit

[PATCH RESEND] MIPS: loongson: fix random early boot hang

2013-03-04 Thread Aaro Koskinen
: 8023810c __do_softirq+0xe4/0x258 [ 28.14] Not tainted [ 28.14] ra: 802380f8 __do_softirq+0xd0/0x258 [ 28.14] Status: 140044e3KX SX UX KERNEL EXL IE [ 28.14] Cause : 10008400 [ 28.14] PrId : 6303 (ICT Loongson-2) Signed-off-by: Aaro

macintosh/windfarm: possible circular locking dependency detected

2013-02-08 Thread Aaro Koskinen
Hi, On iMac G5 (the first model, windfarm_pm81 reports model 3), enabling LOCKDEP results in the following warnings when overtemp condition is encountered. The kernel is 3.8-rc6+ / 6bacaa9. [ 7060.058340] windfarm: Clamping CPU frequency to minimum ! [ 7060.229688] [ 7060.229756]

[PATCH] MIPS: early_printk: drop __init annotations

2013-02-11 Thread Aaro Koskinen
could find with grep... Signed-off-by: Aaro Koskinen aaro.koski...@iki.fi --- arch/mips/bcm63xx/early_printk.c |4 ++-- arch/mips/kernel/early_printk.c |5 ++--- arch/mips/loongson1/common/prom.c |2 +- arch/mips/sgi-ip27/ip27-console.c |2 +- arch/mips/txx9/generic/setup.c

Re: [PATCH 01/10] staging/xgifb: Simplify XGI_GetRatePtrCRT2

2013-02-04 Thread Aaro Koskinen
unused variables I think both of these series are good. I boot tested them with Z9/XG21, and at least fb console seems to work fine. I also checked compilation for warnings with GCC+sparse and could not see any. So: Tested-by: Aaro Koskinen aaro.koski...@iki.fi for all of the patches. Thanks

Re: [PATCH] arm: omap: RX-51: ARM errata 430973 workaround

2013-03-01 Thread Aaro Koskinen
On Fri, Mar 01, 2013 at 12:09:12PM +0200, Ивайло Димитров wrote: Unfortunately it is necessary, on RX-51 PPA/NOLO leaves IBE bit unset. You sure? I think you need to explain this more - the commit message in the original patch is empty/missing... A. -- To unsubscribe from this list: send the

Re: [PATCH] mips: Move __virt_addr_valid() to a place for MIPS 64

2013-01-26 Thread Aaro Koskinen
Hi, On Fri, Jan 25, 2013 at 01:13:15PM -0500, Steven Rostedt wrote: Commit d3ce88431892 MIPS: Fix modpost error in modules attepting to use virt_addr_valid() moved __virt_addr_valid() from a macro in a header file to a function in ioremap.c. But ioremap.c is only compiled for MIPS 32, and not

Re: [PATCH] mips: Move __virt_addr_valid() to a place for MIPS 64

2013-01-26 Thread Aaro Koskinen
Hi, On Sat, Jan 26, 2013 at 04:01:44PM -0500, Steven Rostedt wrote: On Sat, 2013-01-26 at 22:15 +0200, Aaro Koskinen wrote: On Fri, Jan 25, 2013 at 01:13:15PM -0500, Steven Rostedt wrote: Commit d3ce88431892 MIPS: Fix modpost error in modules attepting to use virt_addr_valid() moved

Re: [PATCH v5] watchdog: introduce retu_wdt driver

2013-01-28 Thread Aaro Koskinen
Hi, On Thu, Dec 27, 2012 at 10:58:29PM +0200, Aaro Koskinen wrote: Introduce Retu watchdog driver. Wim, any comments about this driver? Do you think it could be queued for 3.9? Thanks, A. Cc: linux-watch...@vger.kernel.org Acked-by: Felipe Balbi ba...@ti.com Acked-by: Tony Lindgren t

[PATCH] MIPS: fix 64-bit kernel build

2013-01-21 Thread Aaro Koskinen
to `__virt_addr_valid' Fix by providing __virt_addr_valid also when CONFIG_32BIT is not set. Signed-off-by: Aaro Koskinen aaro.koski...@iki.fi --- arch/mips/mm/Makefile |6 +++--- arch/mips/mm/ioremap.c |4 2 files changed, 7 insertions(+), 3 deletions(-) diff --git a/arch/mips/mm/Makefile b/arch

Re: [PATCH 02/11] ARM: samsung: fix assembly syntax for new gas

2013-02-16 Thread Aaro Koskinen
Hi, On Thu, Feb 14, 2013 at 02:49:18PM +0100, Arnd Bergmann wrote: Recent assembler versions complain about extraneous whitespace inside [] brackets. This fixes all of these instances for the samsung platforms. We should backport this to all kernels that might need to be built with new

Re: [PATCH] ADP1653 board code for Nokia RX-51

2013-02-17 Thread Aaro Koskinen
Hi, On Sun, Feb 17, 2013 at 04:16:49PM +0100, Pali Rohár wrote: I'm sending ADP1653 flash torch board code for Nokia RX-51. Kernel driver ADP1653 is already in upstream kernel. Board code was extracted from this big camera meego patch:

[PATCH] MIPS: loongson: fix random early boot hang

2013-02-18 Thread Aaro Koskinen
: 8023810c __do_softirq+0xe4/0x258 [ 28.14] Not tainted [ 28.14] ra: 802380f8 __do_softirq+0xd0/0x258 [ 28.14] Status: 140044e3KX SX UX KERNEL EXL IE [ 28.14] Cause : 10008400 [ 28.14] PrId : 6303 (ICT Loongson-2) Signed-off-by: Aaro

Re: bug: keep_bootcon and early printk together can lead to (invisible) kernel panic

2013-02-21 Thread Aaro Koskinen
On Thu, Feb 21, 2013 at 03:37:17PM +0100, Patrik, Kluba wrote: I had a silent lockup on one of our embedded system under development. It was not easy to track it down, so here's what I discovered, in case somebody runs into similar trouble. Using 'keep_bootcon' command line parameter, and

Re: [PATCH] watchdog: omap_wdt: convert to new watchdog core

2012-09-07 Thread Aaro Koskinen
On Fri, Sep 07, 2012 at 04:31:07PM +0300, Jarkko Nikula wrote: On Tue, Sep 04, 2012 at 05:41:24PM +0300, Aaro Koskinen wrote: Convert omap_wdt to new watchdog core. On OMAP boards, there are usually multiple watchdogs. Since the new watchdog core supports multiple watchdogs, all watchdog

[PATCH v2] watchdog: omap_wdt: convert to new watchdog core

2012-09-08 Thread Aaro Koskinen
. Signed-off-by: Aaro Koskinen aaro.koski...@iki.fi --- v2: Fix a bug in the first version of the patch: __omap_wdt_disable() in probe was mistakenly moved outside PM runtime calls. This caused a crash as device was probably accessed with some clocks off. Thanks to Jarkko Nikula jarkko.nik

Re: [PATCH 1/4] i2c: introduce i2c-cbus driver

2012-09-19 Thread Aaro Koskinen
On Fri, Sep 14, 2012 at 12:08:06PM +0200, Wolfram Sang wrote: On Mon, Sep 03, 2012 at 11:23:22PM +0300, Aaro Koskinen wrote: Add i2c driver to enable access to devices behind CBUS on Nokia Internet Tablets. The patch also adds CBUS I2C configuration for N8x0 which is one of the users

Re: [PATCH 2/4] mfd: introduce retu-mfd driver

2012-09-19 Thread Aaro Koskinen
Hi, On Wed, Sep 19, 2012 at 06:02:30PM +0200, Samuel Ortiz wrote: On Mon, Sep 03, 2012 at 11:23:23PM +0300, Aaro Koskinen wrote: Retu is a multi-function device found on Nokia Internet Tablets implementing at least watchdog, RTC, headset detection and power button functionality

Re: [PATCH 1/4] i2c: introduce i2c-cbus driver

2012-09-13 Thread Aaro Koskinen
On Thu, Sep 13, 2012 at 12:53:09PM +0200, Wolfram Sang wrote: On Mon, Sep 03, 2012 at 11:23:22PM +0300, Aaro Koskinen wrote: Add i2c driver to enable access to devices behind CBUS on Nokia Internet Tablets. The patch also adds CBUS I2C configuration for N8x0 which is one of the users

[PATCH 1/4] i2c: introduce i2c-cbus driver

2012-09-03 Thread Aaro Koskinen
-by: Aaro Koskinen aaro.koski...@iki.fi --- arch/arm/mach-omap2/board-n8x0.c | 42 + drivers/i2c/busses/Kconfig | 10 + drivers/i2c/busses/Makefile |1 + drivers/i2c/busses/i2c-cbus.c| 369 ++ include/linux/i2c-cbus.h | 27

[PATCH 4/4] input: misc: introduce retu-pwrbutton

2012-09-03 Thread Aaro Koskinen
Add Retu power button driver. Cc: linux-in...@vger.kernel.org Signed-off-by: Aaro Koskinen aaro.koski...@iki.fi --- drivers/input/misc/Kconfig | 10 +++ drivers/input/misc/Makefile |1 + drivers/input/misc/retu-pwrbutton.c | 127 +++ 3

[PATCH 2/4] mfd: introduce retu-mfd driver

2012-09-03 Thread Aaro Koskinen
-by: Tony Lindgren t...@atomide.com Signed-off-by: Aaro Koskinen aaro.koski...@iki.fi --- drivers/mfd/Kconfig |8 + drivers/mfd/Makefile |1 + drivers/mfd/retu-mfd.c | 347 ++ include/linux/mfd/retu.h | 22 +++ 4 files changed, 378

[PATCH 0/4] cbus/retu drivers to mainline

2012-09-03 Thread Aaro Koskinen
- corrected typo in Kconfig for MFD_RETU - added power off functionality to retu-mfd - added IRQ functionality to retu-mfd - added power button key driver - some cleanups Aaro Koskinen (4): i2c: introduce i2c-cbus driver mfd: introduce retu-mfd driver

[PATCH 3/4] watchdog: introduce retu_wdt driver

2012-09-03 Thread Aaro Koskinen
Introduce Retu watchdog driver. Cc: linux-watch...@vger.kernel.org Acked-by: Tony Lindgren t...@atomide.com Signed-off-by: Aaro Koskinen aaro.koski...@iki.fi --- drivers/watchdog/Kconfig| 12 +++ drivers/watchdog/Makefile |1 + drivers/watchdog/retu_wdt.c | 188

Re: [PATCH 1/4] i2c: introduce i2c-cbus driver

2012-09-04 Thread Aaro Koskinen
On Tue, Sep 04, 2012 at 12:05:07PM +0300, Felipe Balbi wrote: + * CBUS I2C driver for Nokia Internet Tablets. [...] this version misses the entire IRQ handling we already had on linux-omap tree, so it's quite a regression. There's no interrupts used in plain CBUS protocol/communication I

[PATCH] watchdog: omap_wdt: convert to new watchdog core

2012-09-04 Thread Aaro Koskinen
. Signed-off-by: Aaro Koskinen aaro.koski...@iki.fi --- drivers/watchdog/Kconfig|1 + drivers/watchdog/omap_wdt.c | 268 ++- 2 files changed, 115 insertions(+), 154 deletions(-) diff --git a/drivers/watchdog/Kconfig b/drivers/watchdog/Kconfig index

[PATCH] regulator: twl-regulator: fix up VINTANA1/VINTANA2

2012-08-14 Thread Aaro Koskinen
normal standby [0.286865] VINTANA2: 2750 mV normal standby [0.288208] VINTDIG: 1500 mV normal standby [0.289978] VSDI_CSI: 1800 mV normal standby ... Signed-off-by: Aaro Koskinen aaro.koski...@iki.fi --- drivers/regulator/twl-regulator.c |4 ++-- 1

Re: [PATCH v2 11/31] arm64: IRQ handling

2012-08-14 Thread Aaro Koskinen
Hi, On Tue, Aug 14, 2012 at 06:52:12PM +0100, Catalin Marinas wrote: +void handle_IRQ(unsigned int irq, struct pt_regs *regs) +{ + struct pt_regs *old_regs = set_irq_regs(regs); + + irq_enter(); + + /* + * Some hardware gives randomly wrong interrupts. Rather + *

Re: [PATCH v3] printk: add option to print cpu id

2012-08-03 Thread Aaro Koskinen
Hi, On Fri, Aug 03, 2012 at 11:25:37AM -0700, Pandita, Vikram wrote: And really: Wasting 1/3 of the 80 character line is too much. You _WASTE_ 4 chars only if you are interested in this info by enabling: CONFIG_PRINTK_CPUID I guess you waste 4 + 3 chars? You could optimize the length by

[PATCH] ARM: dma-mapping: fix incorrect freeing of atomic allocations

2012-08-05 Thread Aaro Koskinen
]--- The patch fixes this. Signed-off-by: Aaro Koskinen aaro.koski...@iki.fi --- arch/arm/mm/dma-mapping.c |4 ++-- 1 files changed, 2 insertions(+), 2 deletions(-) diff --git a/arch/arm/mm/dma-mapping.c b/arch/arm/mm/dma-mapping.c index c2cdf65..2cc77b7 100644 --- a/arch/arm/mm/dma-mapping.c +++ b

[PATCH] ARM: dma-mapping: fix atomic allocation alignment

2012-08-05 Thread Aaro Koskinen
The alignment mask is calculated incorrectly. Fixing the calculation makes strange hangs/lockups disappear during the boot with Amstrad E3 and 3.6-rc1 kernel. Signed-off-by: Aaro Koskinen aaro.koski...@iki.fi --- arch/arm/mm/dma-mapping.c |6 +++--- 1 files changed, 3 insertions(+), 3

[PATCH] spi: tsc2005: delete soon-obsolete e-mail address

2012-08-17 Thread Aaro Koskinen
Delete soon-obsolete e-mail address. Signed-off-by: Aaro Koskinen aaro.koski...@nokia.com --- include/linux/spi/tsc2005.h |2 -- 1 files changed, 0 insertions(+), 2 deletions(-) diff --git a/include/linux/spi/tsc2005.h b/include/linux/spi/tsc2005.h index d9b0c84..8f721e4 100644

[PATCH] powerpc: dma-iommu: fix IOMMU window check

2012-08-18 Thread Aaro Koskinen
-pci-bridge 0001:01:01.0: Warning: IOMMU window too big for device mask b43-pci-bridge 0001:01:01.0: mask: 0x3fff, table end: 0x8000 b43-phy0 ERROR: The machine/kernel does not support the required 30-bit DMA mask Signed-off-by: Aaro Koskinen aaro.koski...@iki.fi --- arch/powerpc/kernel

Re: [PATCH] Documentation: talk about Cc: sta...@vger.kernel.org

2012-07-06 Thread Aaro Koskinen
Hi, On Fri, Jul 06, 2012 at 05:38:50PM -0400, Theodore Ts'o wrote: I couldn't remember whether the canonical marking is sta...@kernel.org or sta...@vger.kernel.org, so I went looking, and discovered that it wasn't mentioned in the kernel sources. You can find mention of it in Greg K-H's

Re: [PATCH 03/19 v2] Staging: xgifb: Remove LCDA detection in xgifb_probe().

2012-07-09 Thread Aaro Koskinen
Hi, On Mon, Jul 09, 2012 at 11:39:47AM -0700, Greg KH wrote: On Fri, Jul 06, 2012 at 12:40:38PM +0200, Miguel Gómez wrote: The piece of code that checks for LCDA in xgifb_probe() just checks for some register values but doesn't really do anything in response to them (the actions that

3.8-rc1 build failure with MIPS/SPARSEMEM

2012-12-22 Thread Aaro Koskinen
Hi, It looks like commit 816422ad76474fed8052b6f7b905a054d082e59a (asm-generic, mm: pgtable: consolidate zero page helpers) broke MIPS/SPARSEMEM build in 3.8-rc1: CHK include/generated/uapi/linux/version.h CHK include/generated/utsrelease.h Checking missing-syscalls for N32 CC

Re: 3.8-rc1 build failure with MIPS/SPARSEMEM

2012-12-22 Thread Aaro Koskinen
Hi, On Sat, Dec 22, 2012 at 03:10:23PM +0200, Kirill A. Shutemov wrote: On Sat, Dec 22, 2012 at 02:27:57PM +0200, Aaro Koskinen wrote: It looks like commit 816422ad76474fed8052b6f7b905a054d082e59a (asm-generic, mm: pgtable: consolidate zero page helpers) broke MIPS/SPARSEMEM build in 3.8

Re: 3.8-rc1 build failure with MIPS/SPARSEMEM

2012-12-27 Thread Aaro Koskinen
A. Shutemov kir...@shutemov.name Thanks, this works. Tested-by: Aaro Koskinen aaro.koski...@iki.fi A. -- 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 at http://vger.kernel.org/majordomo-info.html

Re: [PATCH v3 0/3] ARM: dts: omap: add dt data for MUSB

2012-12-27 Thread Aaro Koskinen
Hi, On Thu, Sep 20, 2012 at 05:21:15AM +0200, Benoit Cousson wrote: On 09/19/2012 11:32 AM, Kishon Vijay Abraham I wrote: This patch series adds dt data to get MUSB working in omap4 and omap3 Changes from v2: * Changes the subject of all the patches to include ARM: dts: * Added reg

[PATCH v5] watchdog: introduce retu_wdt driver

2012-12-27 Thread Aaro Koskinen
Introduce Retu watchdog driver. Cc: linux-watch...@vger.kernel.org Acked-by: Felipe Balbi ba...@ti.com Acked-by: Tony Lindgren t...@atomide.com Signed-off-by: Aaro Koskinen aaro.koski...@iki.fi Cc: Wim Van Sebroeck w...@iguana.be --- v5: Deleted __dev* annotations. Fixed

[RESEND PATCH] drm/nouveau: fix init with agpgart-uninorth

2012-12-30 Thread Aaro Koskinen
channel, -12 Reviewed-by: Michel Dänzer mic...@daenzer.net Signed-off-by: Aaro Koskinen aaro.koski...@iki.fi --- drivers/gpu/drm/nouveau/nouveau_bo.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/nouveau/nouveau_bo.c b/drivers/gpu/drm/nouveau/nouveau_bo.c index

Re: [RESEND PATCH v3 1/6] watchdog: omap_wdt: convert to new watchdog core

2012-12-13 Thread Aaro Koskinen
Hi, On Fri, Dec 14, 2012 at 02:23:36AM +0100, Sebastian Reichel wrote: On Mon, Nov 12, 2012 at 02:47:03PM -0800, Tony Lindgren wrote: * Aaro Koskinen aaro.koski...@iki.fi [121112 10:49]: Convert omap_wdt to new watchdog core. On OMAP boards, there are usually multiple watchdogs. Since

[PATCH] drm/nouveau: fix init with agpgart-uninorth

2012-11-16 Thread Aaro Koskinen
channel, -12 Signed-off-by: Aaro Koskinen aaro.koski...@iki.fi --- drivers/gpu/drm/nouveau/nouveau_bo.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/gpu/drm/nouveau/nouveau_bo.c b/drivers/gpu/drm/nouveau/nouveau_bo.c index 35ac57f..5f0e7ef 100644 --- a/drivers/gpu/drm

[PATCH v4 2/4] mfd: introduce retu-mfd driver

2012-11-18 Thread Aaro Koskinen
...@linux.intel.com Acked-by: Felipe Balbi ba...@ti.com Acked-by: Tony Lindgren t...@atomide.com Signed-off-by: Aaro Koskinen aaro.koski...@iki.fi --- drivers/mfd/Kconfig |9 ++ drivers/mfd/Makefile |1 + drivers/mfd/retu-mfd.c | 264 ++ include/linux

[PATCH v4 0/4] cbus/retu drivers

2012-11-18 Thread Aaro Koskinen
into i2c-cbus patch - corrected typo in Kconfig for MFD_RETU - added power off functionality to retu-mfd - added IRQ functionality to retu-mfd - added power button key driver - some cleanups Aaro Koskinen (4): i2c: introduce i2c-cbus-gpio driver mfd: introduce

[PATCH v4 4/4] input: misc: introduce retu-pwrbutton

2012-11-18 Thread Aaro Koskinen
Add Retu power button driver. Cc: linux-in...@vger.kernel.org Acked-by: Felipe Balbi ba...@ti.com Signed-off-by: Aaro Koskinen aaro.koski...@iki.fi Cc: Dmitry Torokhov dmitry.torok...@gmail.com --- drivers/input/misc/Kconfig | 10 drivers/input/misc/Makefile |1

[PATCH v4 3/4] watchdog: introduce retu_wdt driver

2012-11-18 Thread Aaro Koskinen
Introduce Retu watchdog driver. Cc: linux-watch...@vger.kernel.org Acked-by: Felipe Balbi ba...@ti.com Acked-by: Tony Lindgren t...@atomide.com Signed-off-by: Aaro Koskinen aaro.koski...@iki.fi Cc: Wim Van Sebroeck w...@iguana.be --- drivers/watchdog/Kconfig| 12 +++ drivers/watchdog

[PATCH v4 1/4] i2c: introduce i2c-cbus-gpio driver

2012-11-18 Thread Aaro Koskinen
-by: Aaro Koskinen aaro.koski...@iki.fi Cc: Wolfram Sang w.s...@pengutronix.de --- .../devicetree/bindings/i2c/i2c-cbus-gpio.txt | 27 ++ arch/arm/mach-omap2/board-n8x0.c | 42 +++ drivers/i2c/busses/Kconfig | 10 + drivers/i2c/busses/Makefile

3.8-rc3: yet another MIPS build failure

2013-01-10 Thread Aaro Koskinen
Hi, Commit d3ce88431892b703b04769566338a89eda6b0477 (MIPS: Fix modpost error in modules attepting to use virt_addr_valid()) broke the 64-bit MIPS build: LD init/built-in.o kernel/built-in.o: In function `memory_bm_free': snapshot.c:(.text+0x3c76c): undefined reference to

Re: [PATCH] Staging:xgifb:Fixed a warning of Space before semicolon

2013-08-04 Thread Aaro Koskinen
On Mon, Aug 05, 2013 at 12:11:02AM +0530, Kumar Gaurav wrote: Fixed issue by removing Space before semicolon Signed-off-by: Kumar Gaurav kumargauravgup...@gmail.com --- drivers/staging/xgifb/vb_setmode.h |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git

[PATCH v2] cpufreq: loongson2: fix broken cpufreq

2013-08-05 Thread Aaro Koskinen
initialization. Tested on Lemote FuLoong mini-PC. Signed-off-by: Aaro Koskinen aaro.koski...@iki.fi Acked-by: Viresh Kumar viresh.ku...@linaro.org Cc: sta...@vger.kernel.org --- Changes since the first version (http://marc.info/?l=linux-kernelm=137357177225034w=2): - Changed

2.6.34.x longterm stable status

2013-08-05 Thread Aaro Koskinen
Hi, There hasn't been 2.6.34.x stable tree releases for a while. Also, in some mails you have mentioned EOLing this tree (e.g. http://marc.info/?l=linux-docm=137393133817894w=2). I have two questions concerning this: - Will there be any more releases, or is it assumed that all users have already

Re: v3.11-rc1 USB regressions

2013-07-24 Thread Aaro Koskinen
Hi, On Wed, Jul 24, 2013 at 09:04:28PM +0200, Daniel Mack wrote: On 24.07.2013 20:51, Aaro Koskinen wrote: When I revert fe4cb0912f8e737f8e4b8b38b9e692f8062f5423 and 8b125df5b24cfb0ec7fa1971e343cc0badc1827d, it works like before (3.10): I'm now running -rc2 with above fixes and reverts

Re: [PATCH] Change request_irq() to use struct net_device *dev-name

2013-07-25 Thread Aaro Koskinen
Hi, On Thu, Jul 25, 2013 at 10:33:24PM +0400, Sergei Shtylyov wrote: It's also called managed device API. In fact, I've never heard it named devres API. Never read the documentation. :-) $ head -1 Documentation/driver-model/devres.txt Devres - Managed Device Resource A. -- To unsubscribe

Re: [PATCH 076/133] ARM: update FIQ support for relocation of vectors

2013-08-18 Thread Aaro Koskinen
On Fri, Aug 16, 2013 at 03:33:38PM -0700, Kamal Mostafa wrote: 3.8.13.7 -stable review patch. If anyone has any objections, please let me know. -- From: Russell King rmk+ker...@arm.linux.org.uk commit e39e3f3ebfef03450cf7bfa7a974a8c61f7980c8 upstream. FIQ should no

[PATCH] MIPS: loongson2: cpufreq: fix broken cpufreq

2013-07-11 Thread Aaro Koskinen
initialization. Tested on Lemote FuLoong mini-PC. Signed-off-by: Aaro Koskinen aaro.koski...@iki.fi Cc: sta...@vger.kernel.org --- drivers/cpufreq/loongson2_cpufreq.c | 11 ++- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/drivers/cpufreq/loongson2_cpufreq.c b/drivers/cpufreq

Re: [PATCH v2] N900: add device tree

2013-07-14 Thread Aaro Koskinen
Hi, On Sat, Jul 13, 2013 at 02:17:09PM +0200, Pavel Machek wrote: This adds device tree with neccessary support to boot with functional video (on both emulator and real N900 device). Signed-off-by: Pavel Machek pa...@ucw.cz You can also add: Signed-off-by: Aaro Koskinen aaro.koski

v3.11-rc1 USB regressions

2013-07-15 Thread Aaro Koskinen
Hi, I think USB tree introduced regressions in v3.11-rc1, at least for some OMAP devices using legacy boot. I have only bisected these; I have no idea what the real fixes are but the following reverts make Nokia OMAP2+ boards again usable for kernel development work (they need working USB

  1   2   3   4   5   6   7   8   9   10   >