[PATCH v4 9/9] ARM: davinci: Remoteproc driver support for OMAP-L138 DSP

2012-12-19 Thread Robert Tivy
Signed-off-by: Robert Tivy --- drivers/remoteproc/Kconfig | 20 ++ drivers/remoteproc/Makefile |1 + drivers/remoteproc/davinci_remoteproc.c | 303 +++ 3 files changed, 324 insertions(+) create mode 100644 drivers/remoteproc/davinci_rem

[PATCH v4 7/9] ARM: davinci: da850 board: Added .reserve function and rproc platform registration

2012-12-19 Thread Robert Tivy
Signed-off-by: Robert Tivy --- arch/arm/mach-davinci/board-da850-evm.c |8 arch/arm/mach-davinci/board-omapl138-hawk.c |8 2 files changed, 16 insertions(+) diff --git a/arch/arm/mach-davinci/board-da850-evm.c b/arch/arm/mach-davinci/board-da850-evm.c index b7cfb3e

[PATCH v4 6/9] ARM: davinci: Remoteproc platform device creation data/code

2012-12-19 Thread Robert Tivy
Contains CMA-based reservation of physical memory block. A new kernel command-line parameter has been added to allow boot-time specification of physical memory block. Signed-off-by: Robert Tivy --- Documentation/kernel-parameters.txt|7 ++ arch/arm/mach-davinci/devices-da8xx.c

[PATCH v4 8/9] ARM: davinci: da850: Added dsp clock definition, keyed to "davinci-rproc.0"

2012-12-19 Thread Robert Tivy
Signed-off-by: Robert Tivy --- arch/arm/mach-davinci/da850.c | 10 ++ 1 file changed, 10 insertions(+) diff --git a/arch/arm/mach-davinci/da850.c b/arch/arm/mach-davinci/da850.c index 31ff65a..afc814f 100644 --- a/arch/arm/mach-davinci/da850.c +++ b/arch/arm/mach-davinci/da850.c @@ -36

[PATCH v4 3/9] ARM: davinci: psc.c: change pr_warning() to pr_warn()

2012-12-19 Thread Robert Tivy
Signed-off-by: Robert Tivy --- Clean up files that will be otherwise modified in subsequent patch. Applies to v3.7-rc2 tag (commit 6f0c0580b70c89094b3422ba81118c7b959c7556) of Linus' mainline kernel at git.kernel.org. arch/arm/mach-davinci/psc.c |4 ++-- 1 file changed, 2 insertions(+), 2 d

[PATCH v4 4/9] ARM: davinci: da850: added pll0_sysclk1 for DSP usage

2012-12-19 Thread Robert Tivy
Signed-off-by: Robert Tivy --- arch/arm/mach-davinci/da850.c |8 1 file changed, 8 insertions(+) diff --git a/arch/arm/mach-davinci/da850.c b/arch/arm/mach-davinci/da850.c index b90c172..31ff65a 100644 --- a/arch/arm/mach-davinci/da850.c +++ b/arch/arm/mach-davinci/da850.c @@ -76,6

[PATCH v4 2/9] ARM: davinci: devices-da8xx.c: change pr_warning() to pr_warn()

2012-12-19 Thread Robert Tivy
Signed-off-by: Robert Tivy --- Clean up files that will be otherwise modified in subsequent patch. Applies to v3.7-rc2 tag (commit 6f0c0580b70c89094b3422ba81118c7b959c7556) of Linus' mainline kernel at git.kernel.org. arch/arm/mach-davinci/devices-da8xx.c |6 +++--- 1 file changed, 3 insert

[PATCH v4 1/9] ARM: davinci: da850 board: change pr_warning() to pr_warn()

2012-12-19 Thread Robert Tivy
Also, while modifying those pr_warning() calls I changed hardcoded function names to use '"%s:", __func__' instead, and converted acronym usage to upper case Signed-off-by: Robert Tivy --- Clean up files that will be otherwise modified in subsequent patch. Applies to v3.7-rc2 tag (commit 6f0c058

[PATCH v4 5/9] ARM: davinci: New reset functionality/API provided for Davinci DSP

2012-12-19 Thread Robert Tivy
Since there is no general "reset" support for SoC devices, and since the remoteproc driver needs explicit control of the DSP's reset line, a new Davinci-specific API is added. Signed-off-by: Robert Tivy --- arch/arm/mach-davinci/clock.c | 31 arch/arm/

[PATCH v4 0/9] ARM: davinci: remoteproc support

2012-12-19 Thread Robert Tivy
This patch series adds remoteproc support for OMAP-L138, along with needed supporting mach-davinci infrastructure. Some notes for reviewers... DOCUMENTATION maintainers: patch 6/9 in this series contains a change to kernel-parameters.txt that adds a description for a new kernel command-line param

RT-Preempt patched kernel - DaVinci SPI driver IRQ handler not getting called

2012-12-19 Thread Murali Karicheri
Hello, We have applied the RT-Preempt patch on top of the 3.6.6 Linux kernel and getting an issue with DaVinci SPI driver. During the probing of SPI NOR flash driver, the flash driver (slave) sends a command and the response is not received by the spi interrupt handler. The IRQ is delivered t

Re: [PATCH - v2] spi: davinci: add OF support for the spi controller

2012-12-19 Thread Murali Karicheri
On 12/19/2012 08:18 AM, Grant Likely wrote: On Sat, 15 Dec 2012 00:27:58 +, Grant Likely wrote: On Tue, 11 Dec 2012 16:20:39 -0500, Murali Karicheri wrote: This adds OF support to DaVinci SPI controller to configure platform data through device bindings. Also replaces clk_enable() with

Re: [PATCH - v2] spi: davinci: add OF support for the spi controller

2012-12-19 Thread Grant Likely
On Sat, 15 Dec 2012 00:27:58 +, Grant Likely wrote: > On Tue, 11 Dec 2012 16:20:39 -0500, Murali Karicheri > wrote: > > This adds OF support to DaVinci SPI controller to configure platform > > data through device bindings. Also replaces clk_enable() with > > of clk_prepare_enable() as well