Re: [PATCH V5 2/4] DRIVERS: IRQCHIP: CROSSBAR: Add support for Crossbar IP

2014-01-16 Thread Sricharan R
Hi Thomas, On Tuesday 03 December 2013 03:57 PM, Sricharan R wrote: > Some socs have a large number of interrupts requests to service > the needs of its many peripherals and subsystems. All of the > interrupt lines from the subsystems are not needed at the same > time, so they have to be muxed to

Re: [PATCH 4/5] arm: omap3: twl: use the new lookup method with usb phy

2014-01-16 Thread Heikki Krogerus
On Wed, Jan 15, 2014 at 07:41:55PM +0530, Kishon Vijay Abraham I wrote: > The point I'm trying to make is that we won't 'always' know the device names > in > advance. In which cases do we not know the device names, and please note, cases where we would need to use the lookup? The normal cases we

[PATCH v2] ARM: dts: tps65910 backup battery regulator

2014-01-16 Thread Markus Pargmann
This patch adds a devicetree node for the backup battery regulator. Signed-off-by: Markus Pargmann --- Hi, Mark Brown applied [1] the other part of the series which adds 'vbb' as regulator-compatible. I forgot to add you in Cc. Regards, Markus [1] http://thread.gmane.org/gmane.linux.ports.arm

Re: Multiple CCR definitions (was: Re: mmc: omap_hsmmc: use the generic config for omap2plus devices)

2014-01-16 Thread Nishanth Menon
+linux-omap as well. On Thu, Jan 16, 2014 at 7:07 AM, Geert Uytterhoeven wrote: > On Tue, Sep 10, 2013 at 11:05 PM, Linux Kernel Mailing List > wrote: >> mmc: omap_hsmmc: use the generic config for omap2plus devices >> >> OMAP's hs_mmc driver is used for MMC controller operation on many

Compensation funds from Common Wealth

2014-01-16 Thread Common Wealth Bank
Your Fund worth of (US$10.5 Million) was Converted into ATM-Card from Common Wealth Organization which You Can make Withdraw of US$5,600.00 in Any ATM Cash Point Machine Worldwide.Your ATM Card Have Been Programmed By Us The issuing Bank (Common Wealth Bnak) And Your Personal Identification N

Re: [PATCHv13 00/40] ARM: TI SoC clock DT conversion

2014-01-16 Thread Nishanth Menon
On 01/16/2014 03:39 PM, Mike Turquette wrote: > Quoting Tony Lindgren (2014-01-15 11:35:48) >> * Mike Turquette [140115 11:25]: >>> Quoting Tony Lindgren (2014-01-15 09:13:23) * Mike Turquette [140114 19:52]: >> >> These 40 patches apply very cleanly on top of clk-next with 2 >>

General-Purpose "hacker" device tree add-on

2014-01-16 Thread Charles Steinkuehler
I am working with the BeagleBone and it's AM335x CPU and would like to have a way to control most of the available I/O from user-space. I am considering making a general-purpose device tree overlay (which could be simply added to the DT if the BeagleBone specific overlay manager is not present).

Re: [PATCHv2 0/5] wl1251 device tree support

2014-01-16 Thread Sebastian Reichel
On Mon, Jan 06, 2014 at 11:57:09PM +0100, Sebastian Reichel wrote: > Hi John, > > > The following patchset adds device tree support to > > the spi variant of the wl1251 driver. > > > > Luciano Coelho (1): > > wl1251: split wl251 platform data to a separate structure > > > > Sebastian Reichel (4

Re: [PATCH v5 0/2] DMM DT adaptation

2014-01-16 Thread Archit Taneja
Hi Mark, On Friday 03 January 2014 06:04 PM, Archit Taneja wrote: Hullo, On Tuesday 17 December 2013 03:32 PM, Archit Taneja wrote: The DMM/Tiler block can used by omapdrm to allocate frame buffers. With the removal of address and irq data from the omap4 hwmods, the probe of DMM driver fails a

[PATCH 1/2] ARM: OMAP2+: fix rate prints

2014-01-16 Thread Tomi Valkeinen
Printing with unsigned long rates with %ld gives wrong result if the rate is high enough. Fix this by using %lu. Signed-off-by: Tomi Valkeinen --- arch/arm/mach-omap2/clkt_dpll.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/arm/mach-omap2/clkt_dpll.c b/arch/arm/

[PATCH 0/2] ARM: OMAP2+: Fix dpll rounding

2014-01-16 Thread Tomi Valkeinen
Hi, We had a problem with beaglebone black's HDMI output, where setting some clock rates to the display PLL failed oddly. The main issue was that the dpll code doesn't actually try to round the given rate, it only finds exact matches. That is what these patches fix (well, the second patch). Howev

[PATCH 2/2] ARM: OMAP2+: fix dpll round_rate() to actually round

2014-01-16 Thread Tomi Valkeinen
omap2_dpll_round_rate() doesn't actually round the given rate, even if the name and the description so hints. Instead it only tries to find an exact rate match, or if that fails, return ~0 as an error. What this basically means is that the user of the clock needs to know what rates the dpll can su