Re: [PATCH v7 01/11] OMAP: GPIO: prepare for platform driver

2010-11-25 Thread Olof Johansson
Hi, On Tue, Nov 23, 2010 at 08:26:43PM +0530, Varadarajan, Charulatha wrote: +static void omap_gpio_mod_init(struct gpio_bank *bank, int id) +{ + if (cpu_class_is_omap2()) { Why check class when you're checking for all possible variants anyway? + if (cpu_is_omap44xx()) { +

Re: [PATCH v2 1/4] drivers: hwspinlock: add generic framework

2010-11-25 Thread Olof Johansson
Hi, In addition to other comments from others, here are a few on the implementation. There's a fair amount of potentially spammy and redundant debug code left in the generic code. I've commented on some of them below, but the same comments would apply to other locations as well. On Tue, Nov

Re: [PATCH v2 1/4] drivers: hwspinlock: add generic framework

2010-11-26 Thread Olof Johansson
On Fri, Nov 26, 2010 at 12:18:49AM -0700, Grant Likely wrote: On Thu, Nov 25, 2010 at 9:59 PM, Olof Johansson o...@lixom.net wrote: On Tue, Nov 23, 2010 at 05:38:57PM +0200, Ohad Ben-Cohen wrote: +#define pr_fmt(fmt)    %s: fmt, __func__ Not used. pr_fmt() is a magic #define

Re: [PATCH 0/40] Complete set of clocksource/sched_clock patches

2010-12-21 Thread Olof Johansson
functions), and this also shows the proper ordering of these patches. Still looking for acks or tested-by's for these patches. Tegra (see comment to that specific patch for a needed fixup): Tested-by: Olof Johansson o...@lixom.net -- To unsubscribe from this list: send the line unsubscribe linux

Re: [PATCH v3 1/2] USB: Add empty functions in otg.h

2010-01-05 Thread Olof Johansson
. Don't you mean Acked-by? Anyway, also: Acked-by: Olof Johansson o...@lixom.net -Olof -- 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 2/2] ARM : OMAP : Remove #ifdef from board-omap3evm.c

2010-01-05 Thread Olof Johansson
...@nokia.com Cc: Greg Kroah-Hartman gre...@suse.de Cc: Olof Johansson o...@lixom.net Acked-by: Olof Johansson o...@lixom.net -- 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

Re: [RFC/PATCH 1/2] usb_otg: compile fix

2010-01-07 Thread Olof Johansson
On Thu, Jan 07, 2010 at 09:03:11PM -0400, Francisco Alecrim wrote: From: Francisco Alecrim francisco.alec...@openbossa.org include/linux/usb.h: In function 'usb_mark_last_busy': include/linux/usb.h:561: error: 'struct usb_device' has no member named 'last_busy' Option USB_OTG selects

[PATCH] omap: Enable GPMC clock in gpmc_init

2010-01-20 Thread Olof Johansson
Don't assume that gpmc_l3_clk is on, enable it before touching configuration registers. Signed-off-by: Olof Johansson o...@lixom.net diff --git a/arch/arm/mach-omap2/gpmc.c b/arch/arm/mach-omap2/gpmc.c index e86f5ca..dea72f3 100644 --- a/arch/arm/mach-omap2/gpmc.c +++ b/arch/arm/mach-omap2

Re: [PATCH] OMAP2/3: update default defconfig, towards smaller kernel

2010-02-01 Thread Olof Johansson
On Fri, Jan 29, 2010 at 04:26:56PM -0800, Kevin Hilman wrote: Update omap3_defconfig to work towards a minimal kernel by building most things as modules. Some drivers that cannot currently be built as modules and need to be fixed: Why? I introduced the omap3_defconfig with the intent of

Re: [PATCH] OMAP2/3: update default defconfig, towards smaller kernel

2010-02-01 Thread Olof Johansson
On Mon, Feb 01, 2010 at 12:20:30PM -0800, Kevin Hilman wrote: Olof Johansson o...@lixom.net writes: On Fri, Jan 29, 2010 at 04:26:56PM -0800, Kevin Hilman wrote: Update omap3_defconfig to work towards a minimal kernel by building most things as modules. Some drivers that cannot currently

Re: [PATCH v5] OMAP UART: Add omap-serial driver support.

2010-02-04 Thread Olof Johansson
Hi, Shortening the email a bit and only including the pieces that still have open questions: On Thu, Feb 04, 2010 at 08:39:10PM +0530, Govindraj.R wrote: +#define OMAP_SERIAL_NAME ? ? ttyO +#define OMAP_SERIAL_MAJOR ? ?204 +#define OMAP_SERIAL_MINOR ? ?64 Where did these numbers come

Re: [PATCH v5] OMAP UART: Add omap-serial driver support.

2010-02-04 Thread Olof Johansson
On Thu, Feb 04, 2010 at 09:15:23PM +0530, Govindraj.R wrote: Ah. Care to update the comment to mention that? I guess the case above is similar. Before accessing FCR we need to write 0x00 to LCR, I will correct it as, / Access to FCR requires writing Ox00 to LCR */ Sounds

Re: [PATCH v5] OMAP UART: Add omap-serial driver support.

2010-02-04 Thread Olof Johansson
On Thu, Feb 04, 2010 at 09:46:40AM -0800, Kevin Hilman wrote: Govindraj.R govindraj.r...@ti.com writes: [...] + * @baud: baudrate for which divisor needs to be calculated. + * + * We have written our own function to get the divisor so as to support + * 13x mode. + */

Re: [PATCH v6] OMAP UART: Add omap-serial driver support.

2010-02-24 Thread Olof Johansson
support for OMAP-HIGH SPEED UART Controller. It adds support for the following features: 1. It supports Interrupt mode and DMA mode of operation. 2. Supports Hardware flow control and software flow control. 3. Debug Console support on all UARTs. Cc: Tony Lindgren t...@atomide.com Cc: Olof

Re: [PATCH 2/4] USB: MUSB: Enable MUSB for OMAP4 in Kconfig

2010-02-25 Thread Olof Johansson
On Thu, Feb 25, 2010 at 10:48:34AM -0800, Tony Lindgren wrote: * Maulik Mankad x0082...@ti.com [100224 22:33]: This patch adds the OMAP4 Kconfig options for MUSB. Signed-off-by: Maulik Mankad x0082...@ti.com Cc: Felipe Balbi felipe.ba...@nokia.com Cc: Greg Kroah-Hartman gre...@suse.de

Re: [PATCH 2/4] USB: MUSB: Enable MUSB for OMAP4 in Kconfig

2010-02-26 Thread Olof Johansson
On Fri, Feb 26, 2010 at 02:10:31PM +0530, Maulik wrote: Adding more and more depends also doesn't scale well. It's time for someone to switch the test around, add a ARCH_HAS_MUSB, select it on the platforms that has it and make the config option depend on that, similar to how (some) platforms

Re: [PATCH 2/4] USB: MUSB: Enable MUSB for OMAP4 in Kconfig

2010-03-01 Thread Olof Johansson
On Mon, Mar 01, 2010 at 11:11:29AM +0530, Maulik wrote: Olof, We have such an option USB_MUSB_SOC that takes care of all platforms where MUSB is present. But the Inventra DMA case is typical. Not all architectures that have MUSB use Inventra DMA for e.g Davinci uses CPPI DMA. Yeah,

Re: [PATCHv3 0/3] OMAP UART: Adding support for omap-serial driver.

2009-11-23 Thread Olof Johansson
On Fri, Nov 20, 2009 at 03:21:26PM +0530, Govindraj wrote: I have not seen any comments on this patch series yet. Tony, Is there something I need to modify? Or it can be unstreamed now? Oh, and by the way, serial drivers are preferrably merged through Greg K-H (gre...@suse.de). So Cc him

Re: [PATCHv3 0/3] OMAP UART: Adding support for omap-serial driver.

2009-11-24 Thread Olof Johansson
On Tue, Nov 24, 2009 at 03:04:09PM +0530, G, Manjunath Kondaiah wrote: -Original Message- From: Olof Johansson [mailto:o...@lixom.net] Sent: Monday, November 23, 2009 10:36 PM To: Govindraj; g...@lixom.net Cc: Tony Lindgren; linux-omap@vger.kernel.org; Pandita, Vikram

Re: [PATCHv3 0/3] OMAP UART: Adding support for omap-serial driver.

2009-11-24 Thread Olof Johansson
G, Manjunath Kondaiah wrote: You should allow both of them to be enabled at the same time, so the same kernel can for example be booted on a ZOOM2 with debug board attached (8250 on GPMC), or on a beagle/overo board. Making them exclusive would be a step backwards. More so, selecting

Re: [PATCH 2/2] usb: ehci: Allow EHCI to be built on OMAP3

2009-11-25 Thread Olof Johansson
OMAP34XX has EHCI, so select USB_ARCH_HAS_EHCI. Signed-off-by: Olof Johansson o...@lixom.net --- On Sat, Nov 07, 2009 at 01:16:32AM +0530, Anand Gadiyar wrote: usb: ehci: Allow EHCI to be built on OMAP3 OMAP3 chips have a built-in EHCI controller. The recently introduced omap ehci-hcd

[PATCH] usb: ehci-omap: Update platform header file path

2009-11-25 Thread Olof Johansson
The OMAP usb header file has moved, update the driver so it will build. Signed-off-by: Olof Johansson o...@lixom.net --- Greg, any chance you can just ack this so Tony can merge it through his tree for .33? The header files changes in question are going in through that tree. Thanks, -Olof

Re: [PATCH] usb: ehci-omap: Update platform header file path

2009-11-25 Thread Olof Johansson
On Wed, Nov 25, 2009 at 02:35:56PM +0530, Gadiyar, Anand wrote: Olaf Johansson wrote: The OMAP usb header file has moved, update the driver so it will build. Signed-off-by: Olof Johansson o...@lixom.net --- Greg, any chance you can just ack this so Tony can merge it through

Re: [PATCH] usb: ehci-omap: Update platform header file path

2009-11-25 Thread Olof Johansson
On Wed, Nov 25, 2009 at 02:35:56PM +0530, Gadiyar, Anand wrote: Olof Johansson wrote: The OMAP usb header file has moved, update the driver so it will build. Signed-off-by: Olof Johansson o...@lixom.net --- Greg, any chance you can just ack this so Tony can merge it through

[PATCH] omap: dss2: Reintroduce Overo display support (DVI/HDMI)

2009-11-25 Thread Olof Johansson
Refreshed version of previous patch from Tomi, so keeping his S-o-b. Signed-off-by: Tomi Valkeinen tomi.valkei...@nokia.com Signed-off-by: Olof Johansson o...@lixom.net --- I'm not 100% sure how to wire up the power supplies. I'm still missing the one required for VENC to work. Tomi, I also

[PATCH] Add omap3_defconfig

2009-11-29 Thread Olof Johansson
Having one combined defconfig that is the superset of the individual defconfigs for OMAP3 platforms is useful for easily finding build errors. Not to mention convenient as a base if you want to boot several platforms with a single kernel image. Signed-off-by: Olof Johansson o...@lixom.net

Re: [PATCH] Add omap3_defconfig

2009-11-30 Thread Olof Johansson
On Mon, Nov 30, 2009 at 11:17:47AM +0530, Gadiyar, Anand wrote: Olof Johansson wrote: Having one combined defconfig that is the superset of the individual defconfigs for OMAP3 platforms is useful for easily finding build errors. Not to mention convenient as a base if you want to boot

[PATCH v2] arm: omap: Add omap3_defconfig

2009-11-30 Thread Olof Johansson
Having one combined defconfig that is the superset of the individual defconfigs for OMAP3 platforms is useful for easily finding build errors. Not to mention convenient as a base if you want to boot several platforms with a single kernel image. Signed-off-by: Olof Johansson o...@lixom.net

Re: [PATCH v2] arm: omap: Add omap3_defconfig

2009-11-30 Thread Olof Johansson
On Tue, Dec 01, 2009 at 09:29:42AM +0530, Pandita, Vikram wrote: -Original Message- From: linux-omap-ow...@vger.kernel.org [mailto:linux-omap-ow...@vger.kernel.org] On Behalf Of Olof snip +# CONFIG_OMAP_LL_DEBUG_UART1 is not set +# CONFIG_OMAP_LL_DEBUG_UART2 is not set

[PATCH v3] arm: omap: Add omap3_defconfig

2009-12-01 Thread Olof Johansson
Having one combined defconfig that is the superset of the individual defconfigs for OMAP3 platforms is useful for easily finding build errors. Not to mention convenient as a base if you want to boot several platforms with a single kernel image. Signed-off-by: Olof Johansson o...@lixom.net

Re: [PATCH v3] arm: omap: Add omap3_defconfig

2009-12-01 Thread Olof Johansson
On Tue, Dec 01, 2009 at 04:08:19PM -0800, Tony Lindgren wrote: Hi, * Olof Johansson o...@lixom.net [091201 12:06]: Having one combined defconfig that is the superset of the individual defconfigs for OMAP3 platforms is useful for easily finding build errors. Not to mention convenient

Re: Preventing OMAP3 serial driver to take control of all UARTs

2009-12-02 Thread Olof Johansson
On Wed, Dec 02, 2009 at 08:07:21AM -0700, Grant Likely wrote: Oh, and speaking of GPIOs, there is a binding for describing GPIO pin connections in the device tree: Documentation/powerpc/dts-bindings/gpio/gpio.txt That binding is more about documenting a bank of GPIO pins, while chips like

Re: [PATCH] OMAP3: SDRC: Comment out SDRC AC timing and MR changes in CORE DVFS SRAM code

2009-12-02 Thread Olof Johansson
On Wed, Dec 02, 2009 at 08:12:34AM +0200, Menon, Nishanth wrote: why not make this a #ifdef instead if we need it some other time, a #if 0 and it's intention might not be readable without doing a git annotate in a few months time.. Just remove the code. The old implementation is still there

Re: Preventing OMAP3 serial driver to take control of all UARTs

2009-12-02 Thread Olof Johansson
On Wed, Dec 02, 2009 at 09:04:49AM -0700, Grant Likely wrote: Ah, you're talking about pin muxing configuration, right? Yes, that GPIO binding deals with controllers, not pin mux. Pin mux is very much an SoC specific thing that isn't mapped easily to a generic binding. Yep. On the 5200,

[PATCH] usb: ehci-omap: Update platform header file path

2009-12-03 Thread Olof Johansson
The OMAP usb header file will move in the same merge window as this driver is getting introduced in, so update the driver now instead of making a merge-order-dependent patch later on through linux-omap. Signed-off-by: Olof Johansson o...@lixom.net Acked-by: Tony Lindgren t...@atomide.com

Re: [PATCH] omap3: zoom2/3: make MMC slot work again

2009-12-04 Thread Olof Johansson
On Wed, Nov 18, 2009 at 07:09:10PM +0530, Anand Gadiyar wrote: omap3: zoom2/3: make MMC slot work again Commit 12f8dfb56 accidentally broke MMC on zoom2/3. The .vmmc1 field of zoom_twldata was deleted. Restoring it allows the MMC slot to work again Hmm. This was posted 2 weeks ago and not

Re: [PATCH 1/2] OMAP3: Enable DSS2 for OMAP3EVM board

2009-12-08 Thread Olof Johansson
On Wed, Dec 09, 2009 at 12:19:22AM +0530, Hiremath, Vaibhav wrote: Wait until DSS2 patches have been merged. I don't want the extra complexity of board/panel patches, there's enough work with just the half-megabyte DSS patches =). [Hiremath, Vaibhav] Tomi and Tony, Now since DSS2 has

Re: [PATCH 1/2] OMAP3: Enable DSS2 for OMAP3EVM board

2009-12-08 Thread Olof Johansson
On Wed, Dec 09, 2009 at 01:36:57AM +0530, Hiremath, Vaibhav wrote: [Hiremath, Vaibhav] I understand, but if we put the patches on master for whatever period of time available, people can try and validate it. Some people are forward porting the patches (earlier versions submitted) or

Re: [PATCH] OMAP3: Fix omap3_defconfig build

2009-12-09 Thread Olof Johansson
Hi, {removing invalid lkml-like addressee} On Thu, Dec 10, 2009 at 11:19:52AM +0530, Anand Gadiyar wrote: Select sound codecs to allow this defconfig to build again You need to fix the config option dependencies/selects, updating the defconfig just papers over the real problem. Also, sync up

[PATCH] Fix build of OMAP sound drivers

2009-12-10 Thread Olof Johansson
that had references to the codec weren't enabled. Turns out the Makefile was using the wrong config option to enable them. Patch below. Reported-by: Anand Gadiyar gadi...@ti.com Signed-off-by: Olof Johansson o...@lixom.net diff --git a/sound/soc/omap/Makefile b/sound/soc/omap/Makefile index d49458a

Re: Flush the D-cache during copy_user_highpage breaks compile for v7 on -rc1

2009-12-18 Thread Olof Johansson
Hi, On Fri, Dec 18, 2009 at 08:18:52AM +, Russell King - ARM Linux wrote: On Thu, Dec 17, 2009 at 07:19:24PM -0800, Tony Lindgren wrote: Hi Catalin, You may have already run into this, but if not, looks like commit 115b22474eb1905da2f606a057da345583d3 breaks compile for v7:

Re: [PATCH v2 2/2] ARM : OMAP4 : MUSB : Add USB support to 4430 SDP board file

2009-12-30 Thread Olof Johansson
Hi, On Wed, Dec 30, 2009 at 07:56:38PM +0530, Maulik Mankad wrote: --- felipe_musb.orig/arch/arm/mach-omap2/board-4430sdp.c +++ felipe_musb/arch/arm/mach-omap2/board-4430sdp.c @@ -73,11 +75,21 @@ static void __init omap_4430sdp_init_irq omap_gpio_init(); } +static struct

Re: [PATCH v2 1/2] ARM : OMAP : Add empty functions in header file

2010-01-04 Thread Olof Johansson
On Mon, Jan 04, 2010 at 06:18:08PM +0530, Maulik wrote: not omap-specific. How about USB: instead ? [Maulik] Yes this can go through linux-usb. +#if defined(CONFIG_USB_NOP_XCEIV) /* sometimes transceivers are accessed only through e.g. ULPI */ extern void

Re: [PATCH 2/4] USB: MUSB: Enable MUSB for OMAP4 in Kconfig

2010-03-10 Thread Olof Johansson
On Wed, Mar 10, 2010 at 03:47:08PM +0530, Maulik wrote: Hmm. I must be missing something, but it looks odd to have both the USB_MUSB_HDRC and USB_MUSB_SOC high-level config options, especially since the depends are duplicated across them. In general, options like these tend to scale badly:

Re: optimized script [Was: ARM defconfig files]

2010-07-13 Thread Olof Johansson
On Tue, Jul 13, 2010 at 10:07:05AM +0200, Uwe Kleine-König wrote: Hello, On Tue, Jul 13, 2010 at 09:07:41AM +0200, Uwe Kleine-König wrote: Hi On Mon, Jul 12, 2010 at 01:50:47PM -0600, Grant Likely wrote: On Mon, Jul 12, 2010 at 1:34 PM, Linus Torvalds torva...@linux-foundation.org

Re: [RFC] Common mechanism to identify Si revision

2009-09-07 Thread Olof Johansson
Hi, On Mon, Sep 07, 2009 at 11:33:32AM +0530, Premi, Sanjeev wrote: What's the purpose of most of these checks in the first place? I can see two immediate needs: 1) To check for various errata and do appropriate workarounds [sp] I believe the only need would be to make easy check if

Re: [RFC] Common mechanism to identify Si revision

2009-09-07 Thread Olof Johansson
On Sep 7, 2009, at 8:02 AM, Premi, Sanjeev wrote: I think it is a great step in the right direction. My only concern is that the usage conventions are confusing: OMAP3_HAS_FEATURE(neon, NEON) [sp] This is only used to declare a function that would translate to: unsigned int

[PATCH] EHCI USB: Don't use generic shutdown function

2009-09-15 Thread Olof Johansson
The OMAP EHCI glue code has a layer of driver state struct between the platform_device and usb_hcd. So it can't use the generic usb_hcd_platform_shutdown. This fixes a panic at reboot time. Signed-off-by: Olof Johansson o...@lixom.net diff --git a/drivers/usb/host/ehci-omap.c b/drivers/usb

[PATCH] omap2: ehci: Make Overo compile again

2009-09-22 Thread Olof Johansson
Overo needs the same changes as the other boards do for the ehci changes. Signed-off-by: Olof Johansson o...@lixom.net diff --git a/arch/arm/mach-omap2/board-overo.c b/arch/arm/mach-omap2/board-overo.c index 17f2318..3994974 100644 --- a/arch/arm/mach-omap2/board-overo.c +++ b/arch/arm/mach

[PATCH] usb: ehci-omap: Fix build break

2009-09-22 Thread Olof Johansson
. Signed-off-by: Olof Johansson o...@lixom.net diff --git a/drivers/usb/host/ehci-omap.c b/drivers/usb/host/ehci-omap.c index f77a99d..301e7b6 100644 --- a/drivers/usb/host/ehci-omap.c +++ b/drivers/usb/host/ehci-omap.c @@ -235,7 +235,7 @@ static void omap_usb_utmi_init(struct ehci_hcd_omap *omap

[PATCH v2] omap2: ehci: Make Overo compile again

2009-09-22 Thread Olof Johansson
Overo needs the same changes as the other platforms do for the ehci changes. Also, roll in the corresponding change from Steve Sakoman fixing the port setup (removing the redundant GPIO setup and switching to port 2). Signed-off-by: Olof Johansson o...@lixom.net --- diff --git a/arch/arm/mach

Re: [PATCH 1/4] mmc: Add additional binding for mmc host controller

2011-11-04 Thread Olof Johansson
On Fri, Nov 04, 2011 at 05:20:38PM +0530, Rajendra Nayak wrote: Add mmc host controller capability binding to support 'MMC_CAP_POWER_OFF_CARD' powering off of the card after boot. This adds a new undocumented property (also, see comments on Thomas Abraham's patch for more comments on that

Re: [PATCH 2/4] mmc: omap: adapt the hsmmc driver to device tree

2011-11-04 Thread Olof Johansson
On Fri, Nov 04, 2011 at 05:20:39PM +0530, Rajendra Nayak wrote: Define dt bindings for the ti-omap-hsmmc, and adapt the driver to extract data (which was earlier passed as platform_data) from device tree node. Signed-off-by: Rajendra Nayak rna...@ti.com ---

Re: [PATCH v3 0/4] Device tree support for regulators

2011-11-04 Thread Olof Johansson
On Thu, Oct 27, 2011 at 2:08 AM, Mark Brown broo...@opensource.wolfsonmicro.com wrote: On Thu, Oct 27, 2011 at 01:26:21PM +0530, Rajendra Nayak wrote: v3 is based on the latest devicetree/next and is tested (with twl adaptaions, which will be posted seperately) on the OMAP4 panda and OMAP4

Re: [PATCH v4 1/4] regulator: helper routine to extract regulator_init_data

2011-11-04 Thread Olof Johansson
On Thu, Oct 27, 2011 at 06:54:24PM +0530, Rajendra Nayak wrote: The helper routine is meant to be used by the regulator drivers to extract the regulator_init_data structure from the data that is passed from device tree. 'consumer_supplies' which is part of regulator_init_data is not extracted

Re: [PATCH v3 2/4] regulator: adapt fixed regulator driver to dt

2011-11-04 Thread Olof Johansson
On Thu, Oct 27, 2011 at 01:26:23PM +0530, Rajendra Nayak wrote: The fixed regulator driver uses of_get_fixed_voltage_config() to extract fixed_voltage_config structure contents from device tree. Also add documenation for additional bindings for fixed regulators that can be passed through dt.

Re: [PATCH v3 2/4] regulator: adapt fixed regulator driver to dt

2011-11-04 Thread Olof Johansson
On Fri, Nov 04, 2011 at 09:01:52PM +, Mark Brown wrote: On Fri, Nov 04, 2011 at 01:34:22PM -0700, Olof Johansson wrote: Shouldn't a fixed regulator just be a subset of a fixed one? If so, should the binding be merged with that one? No, the fixed voltage regultor is a superset

Re: [PATCH v4 1/4] regulator: helper routine to extract regulator_init_data

2011-11-04 Thread Olof Johansson
On Fri, Nov 04, 2011 at 09:14:48PM +, Mark Brown wrote: On Fri, Nov 04, 2011 at 01:29:05PM -0700, Olof Johansson wrote: On Thu, Oct 27, 2011 at 06:54:24PM +0530, Rajendra Nayak wrote: @@ -0,0 +1,33 @@ +Voltage/Current Regulators There should be a mandatory compatible field here

Re: [PATCH 2/4] mmc: omap: adapt the hsmmc driver to device tree

2011-11-04 Thread Olof Johansson
On Fri, Nov 4, 2011 at 2:25 PM, Cousson, Benoit b-cous...@ti.com wrote: Hi Olof, On 11/4/2011 9:04 PM, Olof Johansson wrote: On Fri, Nov 04, 2011 at 05:20:39PM +0530, Rajendra Nayak wrote: Define dt bindings for the ti-omap-hsmmc, and adapt the driver to extract data (which was earlier

Re: [PATCH v4 1/4] regulator: helper routine to extract regulator_init_data

2011-11-04 Thread Olof Johansson
On Fri, Nov 4, 2011 at 2:29 PM, Mark Brown broo...@opensource.wolfsonmicro.com wrote: On Fri, Nov 04, 2011 at 02:22:16PM -0700, Olof Johansson wrote: On Fri, Nov 04, 2011 at 09:14:48PM +, Mark Brown wrote: The name will be fixed by the individual device bindings, this is specifying

Re: [PATCH v3 2/4] regulator: adapt fixed regulator driver to dt

2011-11-04 Thread Olof Johansson
On Fri, Nov 4, 2011 at 2:25 PM, Mark Brown broo...@opensource.wolfsonmicro.com wrote: On Fri, Nov 04, 2011 at 02:18:24PM -0700, Olof Johansson wrote: On Fri, Nov 04, 2011 at 09:01:52PM +, Mark Brown wrote: No, the fixed voltage regultor is a superset of a general regulator - it has

Re: [PATCH v3 2/4] regulator: adapt fixed regulator driver to dt

2011-11-04 Thread Olof Johansson
On Fri, Nov 4, 2011 at 2:57 PM, Mark Brown broo...@opensource.wolfsonmicro.com wrote: On Fri, Nov 04, 2011 at 02:47:05PM -0700, Olof Johansson wrote: On Fri, Nov 4, 2011 at 2:25 PM, Mark Brown I don't see how you can usefully do that, the task of plumbing a regulator into a board is largely

Re: [PATCH v4 1/4] regulator: helper routine to extract regulator_init_data

2011-11-04 Thread Olof Johansson
On Fri, Nov 4, 2011 at 2:46 PM, Mark Brown broo...@opensource.wolfsonmicro.com wrote: On Fri, Nov 04, 2011 at 02:34:35PM -0700, Olof Johansson wrote: On Fri, Nov 4, 2011 at 2:29 PM, Mark Brown I think it's useful to define how consumers are supposed to do this somewhere - it is actually

Re: [PATCH v4 1/4] regulator: helper routine to extract regulator_init_data

2011-11-04 Thread Olof Johansson
On Fri, Nov 4, 2011 at 3:35 PM, Mark Brown broo...@opensource.wolfsonmicro.com wrote: On Fri, Nov 04, 2011 at 03:16:12PM -0700, Olof Johansson wrote: On Fri, Nov 4, 2011 at 2:46 PM, Mark Brown Describing that in the device tree using regulator-specifiers shouldn't be too bad? The LDO

Re: [PATCH 1/1] ARM: add PROC_DEVICETREE support in Kconfig

2012-07-06 Thread Olof Johansson
On Fri, Jul 6, 2012 at 4:15 PM, Xiao Jiang jgq...@gmail.com wrote: 2012/7/6 Rob Herring robherri...@gmail.com On 07/06/2012 05:38 AM, jgq...@gmail.com wrote: From: Xiao Jiang jgq...@gmail.com Since more and more arm chips support device tree, it'd be better add PROC_DEVICETREE in

Re: [GIT PULL] OMAP4 coupled CPUidle support for v3.6

2012-07-26 Thread Olof Johansson
Kevin, On Thu, Jul 26, 2012 at 2:37 PM, Kevin Hilman khil...@ti.com wrote: Hi Arnd, Olof, I know it is late, but I'm really hoping this can still make it for v3.6, so consider this a [GIT PLEA]. ;) New features submitted halfway through the merge window? Yeah, that's late. I'll pull it in

Re: [GIT PULL] OMAP4 coupled CPUidle support for v3.6

2012-07-27 Thread Olof Johansson
On Thu, Jul 26, 2012 at 11:44 PM, Colin Cross ccr...@android.com wrote: On Thu, Jul 26, 2012 at 11:34 PM, Shilimkar, Santosh santosh.shilim...@ti.com wrote: On Fri, Jul 27, 2012 at 2:19 AM, Olof Johansson o...@lixom.net wrote: Kevin, On Thu, Jul 26, 2012 at 2:37 PM, Kevin Hilman khil

[PATCH] ARM: omap: add dtb targets

2012-08-23 Thread Olof Johansson
Makes it easier to just do 'make dtbs' for whatever the kernel was configured for, just like some other platforms. Signed-off-by: Olof Johansson o...@lixom.net --- arch/arm/mach-omap2/Makefile.boot | 6 ++ 1 file changed, 6 insertions(+) diff --git a/arch/arm/mach-omap2/Makefile.boot b

Re: [GIT PULL 2/7] omap device changes for v3.7 merge window

2012-09-16 Thread Olof Johansson
On Thu, Sep 13, 2012 at 07:18:43PM -0700, Tony Lindgren wrote: The following changes since commit 55d512e245bc7699a8800e23df1a24195dd08217: Linux 3.6-rc5 (2012-09-08 16:43:45 -0700) are available in the git repository at:

Re: [GIT PULL 3/7] omap gpmc cleanup for v3.7 merge window

2012-09-16 Thread Olof Johansson
On Thu, Sep 13, 2012 at 07:18:44PM -0700, Tony Lindgren wrote: The following changes since commit fea7a08acb13524b47711625eebea40a0ede69a0: Linux 3.6-rc3 (2012-08-22 13:29:06 -0700) are available in the git repository at:

Re: [GIT PULL 4/7] omap custom atag removal for v3.7 merge window

2012-09-16 Thread Olof Johansson
On Thu, Sep 13, 2012 at 07:18:44PM -0700, Tony Lindgren wrote: The following changes since commit 55d512e245bc7699a8800e23df1a24195dd08217: Linux 3.6-rc5 (2012-09-08 16:43:45 -0700) are available in the git repository at:

Re: [GIT PULL 5/7] omap sparse irq and local hardware.h cleanup for v3.7 merge window

2012-09-16 Thread Olof Johansson
On Thu, Sep 13, 2012 at 07:18:44PM -0700, Tony Lindgren wrote: The following changes since commit a1e01703bacbadd22eb4aaca0bbba59bcba7d3b3: Merge tags 'omap-devel-gpmc-fixed-for-v3.7' and 'cleanup-omap-tags-for-v3.7' into cleanup-sparseirq (2012-09-12 18:05:19 -0700) are available in

Re: [GIT PULL 6/7] omap makefile and sparse cleanup for v3.7 merge window

2012-09-16 Thread Olof Johansson
On Thu, Sep 13, 2012 at 07:34:12PM -0700, Tony Lindgren wrote: The following changes since commit 68cb700c59fae6cd539c9dc1e9f2584f671935a0: ARM: OMAP1: Move SoC specific headers from plat to mach for omap1 (2012-09-12 18:06:31 -0700) are available in the git repository at:

Re: [GIT PULL 7/7] am33xx hwmod data for v3.7 merge window

2012-09-16 Thread Olof Johansson
On Thu, Sep 13, 2012 at 07:18:45PM -0700, Tony Lindgren wrote: The following changes since commit 68cb700c59fae6cd539c9dc1e9f2584f671935a0: ARM: OMAP1: Move SoC specific headers from plat to mach for omap1 (2012-09-12 18:06:31 -0700) are available in the git repository at:

Re: [GIT PULL 1/7] omap non-critical fixes for v3.7 merge window

2012-09-16 Thread Olof Johansson
On Thu, Sep 13, 2012 at 07:34:04PM -0700, Tony Lindgren wrote: * Tony Lindgren t...@atomide.com [120913 19:20]: The following changes since commit 55d512e245bc7699a8800e23df1a24195dd08217: Linux 3.6-rc5 (2012-09-08 16:43:45 -0700) are available in the git repository at:

Re: [GIT PULL] omap fixes for linux next for v3.7 merge window

2012-09-17 Thread Olof Johansson
Hi, On Mon, Sep 17, 2012 at 7:28 PM, Tony Lindgren t...@atomide.com wrote: Hi Arnd Olof, Here is the fix for the twl-core compile on non-omap platforms and few other fixes. This will probably cause a minor merge conflicts with the led changes merged in the arm-soc next/drivers branch as

Re: [PATCH 1/1] drivers: bus: Move the OMAP interconnect driver to drivers/bus/

2012-09-19 Thread Olof Johansson
On Wed, Sep 19, 2012 at 7:58 AM, Arnd Bergmann a...@arndb.de wrote: On Monday 17 September 2012, Tony Lindgren wrote: * Santosh Shilimkar santosh.shilim...@ti.com [120914 02:21]: OMAP interconnect drivers are used for the interconnect error handling. Since they are bus driver, lets move it

Re: [GIT PULL] omap device tree changes for v3.7 merge window

2012-09-20 Thread Olof Johansson
On Mon, Sep 17, 2012 at 08:06:36PM -0700, Tony Lindgren wrote: The following changes since commit 68cb700c59fae6cd539c9dc1e9f2584f671935a0: ARM: OMAP1: Move SoC specific headers from plat to mach for omap1 (2012-09-12 18:06:31 -0700) are available in the git repository at:

Re: [PATCH 1/1] drivers: bus: Move the OMAP interconnect driver to drivers/bus/

2012-09-20 Thread Olof Johansson
On Wed, Sep 19, 2012 at 10:56 PM, Shilimkar, Santosh santosh.shilim...@ti.com wrote: On Thu, Sep 20, 2012 at 12:27 AM, Arnd Bergmann a...@arndb.de wrote: On Monday 17 September 2012, Tony Lindgren wrote: * Santosh Shilimkar santosh.shilim...@ti.com [120914 02:21]: OMAP interconnect drivers

Re: [GIT PULL] omap header cleanup to make headers local for v3.7 merge window

2012-09-20 Thread Olof Johansson
On Thu, Sep 20, 2012 at 04:09:36PM -0700, Tony Lindgren wrote: Hi Arnd Olof, Here's one more branch to take us a bit closer to getting the single zImage working on omaps. It would be nice to get merged into arm-soc/next/cleanup before the merge window if still possible. I've based it on

Re: [GIT PULL 1/3] omap clock late patches for v3.7 merge window

2012-09-29 Thread Olof Johansson
On Mon, Sep 24, 2012 at 02:25:51PM -0700, Tony Lindgren wrote: The following changes since commit 1e2ee2a60df5c3ab74dd1c9155fb01b5bc6f807d: Merge tag 'omap-devel-am33xx-for-v3.7' into test_v3.6-rc6_ocb3.7_cff3.7_odaf3.7 (2012-09-23 17:16:04 -0600) are available in the git repository at:

Re: [GIT PULL 3/3] omap arch timer late changes for v3.7 merge window

2012-09-29 Thread Olof Johansson
On Mon, Sep 24, 2012 at 02:25:52PM -0700, Tony Lindgren wrote: The following changes since commit 3fe05bd9980df7207a35b4841a94dc2875e86960: Merge tag 'v3.6-rc6' into devel-dt (2012-09-24 11:42:13 -0700) are available in the git repository at:

Re: [GIT PULL 2/3] omap platform and board related late patches for v3.7 merge window

2012-09-29 Thread Olof Johansson
On Mon, Sep 24, 2012 at 08:31:36PM -0700, Tony Lindgren wrote: * Tony Lindgren t...@atomide.com [120924 17:41]: * Tony Lindgren t...@atomide.com [120924 14:30]: The following changes since commit 0e70156de4c8465bfb8cb45cdc1bbc2fa474ce14: ARM: OMAP2+: Make omap4-keypad.h local

Re: [GIT PULL 1/5] omap fixes for v3.7-rc1

2012-10-09 Thread Olof Johansson
Hi, On Tue, Oct 9, 2012 at 11:46 AM, Tony Lindgren t...@atomide.com wrote: The following changes since commit 5e090ed7af10729a396a25df43d69a236e789736: Merge tag 'soc-late' of git://git.kernel.org/pub/scm/linux/kernel/git/arm/arm-soc (2012-10-07 20:55:16 +0900) are available in the

Re: [GIT PULL] omap fixes ready to go for v3.7-rc1

2012-10-17 Thread Olof Johansson
On Wed, Oct 17, 2012 at 3:02 PM, Tony Lindgren t...@atomide.com wrote: Hi Arnd Olof, Here are the fixes ready to pull, there's at least one more fix in works but it still requires minor changes. The two top commits are recent as Jon Hunter noticed an issue freeing resources in his fix and I

Re: [GIT PULL 1/3] omap plat header removal for v3.8 merge window, part2

2012-11-05 Thread Olof Johansson
On Fri, Oct 26, 2012 at 02:23:39PM -0700, Tony Lindgren wrote: The following changes since commit 3e9a6321f9895eac9a3d241d3126e44021e7102b: Merge tag 'omap-for-v3.8/cleanup-headers-signed' into omap-for-v3.8/cleanup-headers-serial-take2 (2012-10-24 13:25:44 -0700) are available in the

Re: [GIT PULL 2/3] omap plat header removal for v3.8 merge window, part3

2012-11-05 Thread Olof Johansson
On Fri, Oct 26, 2012 at 02:23:40PM -0700, Tony Lindgren wrote: The following changes since commit 3d82cbbb3aadb4f8a30e3f614e51be96574a0855: ARM: OMAP: Split plat/serial.h for omap1 and omap2+ (2012-10-24 13:34:31 -0700) are available in the git repository at:

Re: [GIT PULL 3/3] omap prcm cleanup for v3.8 merge window, part1

2012-11-05 Thread Olof Johansson
On Fri, Oct 26, 2012 at 02:23:40PM -0700, Tony Lindgren wrote: The following changes since commit a0212796b58061a9716178d261f318925c246643: Merge tag 'omap-cleanup-fixes-a-for-3.8' of git://git.kernel.org/pub/scm/linux/kernel/git/pjw/omap-pending into omap-for-v3.8/cleanup-headers

Re: [GIT PULL] omap fixes for v3.4-rc6

2012-05-09 Thread Olof Johansson
Hi, On Mon, May 7, 2012 at 3:36 PM, Tony Lindgren t...@atomide.com wrote: The following changes since commit 69964ea4c7b68c9399f7977aa5b9aa6539a6a98a: [..] Enrico Butera (1):      ARM: OMAP: igep0020: fix smsc911x dummy regulator id Hmm. Picking 40 without any kind of comment in the code

Re: [GIT PULL] omap fixes for v3.4-rc6, take2

2012-05-09 Thread Olof Johansson
On Wed, May 9, 2012 at 8:35 AM, Tony Lindgren t...@atomide.com wrote: Hi Olof, Here's this one updated to drop the non-regression patch and to use updated version of Enrico's patch. The other two patches are the same. Pulled, thanks! -Olof -- To unsubscribe from this list: send the line

Re: [GIT PULL 8/10] omap timer cleanup for v3.5 merge window

2012-05-11 Thread Olof Johansson
[+sfr] On Thu, May 10, 2012 at 1:24 PM, Tony Lindgren t...@atomide.com wrote: * Tony Lindgren t...@atomide.com [120510 11:55]: * Tony Lindgren t...@atomide.com [120510 11:49]: The following changes since commit bfd17879866b36e95c58721da070d9f2ac7f8901:   Merge tag

Re: [GIT PULL 1/10] omap non-critical fixes for v3.5 merge window

2012-05-11 Thread Olof Johansson
Tony, I've pulled all 10 requests. Many of them ended up going into the same next/ branch, but that's quite OK. Please double check my merge conflict resolutions. One nit is that at least one of the branches had a few varying patch subjects, so just a friendly reminder to sanitize them to ARM:

Re: [GIT PULL 1/10] omap non-critical fixes for v3.5 merge window

2012-05-11 Thread Olof Johansson
On Fri, May 11, 2012 at 1:33 AM, Paul Walmsley p...@pwsan.com wrote: Hello Olof, On Fri, 11 May 2012, Olof Johansson wrote: I did notice that omap2plus_defconfig has grown a new warning caused by ARM: OMAP2+: clean up some cppcheck warnings (oh, the irony!): arch/arm/plat-omap/usb.c

Re: [GIT PULL] few omap fixups for v3.5 merge window

2012-05-11 Thread Olof Johansson
On Fri, May 11, 2012 at 12:22 PM, Tony Lindgren t...@atomide.com wrote: Hi Arnd Olof, Here are the fixes needed for the regressions caused by omap-cleanup-sparse-for-v3.5. I suggest pulling this into arm-soc/omap/cleanup-sparse where the issues got introduced. Regards, Tony The

Re: [GIT PULL] omap fixes for v3.5-rc1

2012-06-08 Thread Olof Johansson
On Fri, Jun 8, 2012 at 12:32 AM, Tony Lindgren t...@atomide.com wrote: The following changes since commit f8f5701bdaf9134b1f90e5044a82c66324d2073f:  Linux 3.5-rc1 (2012-06-02 18:29:26 -0700) are available in the git repository at:  

Re: [GIT PULL] omap fixes for v3.5-rc3

2012-06-23 Thread Olof Johansson
On Thu, Jun 21, 2012 at 9:20 AM, Tony Lindgren t...@atomide.com wrote: The following changes since commit 485802a6c524e62b5924849dd727ddbb1497cc71:  Linux 3.5-rc3 (2012-06-16 17:25:17 -0700) are available in the git repository at:  

Re: [GIT PULL] ARM: OMAP2+: clock/hwmod/warning fixes for 3.5-rc

2012-06-23 Thread Olof Johansson
On Fri, Jun 22, 2012 at 1:30 AM, Tony Lindgren t...@atomide.com wrote: Olof, Can you please take the branch below directly from Paul for this -rc cycle? It would be good to get these in. If you don't want to take all of them this late because they're not all strictly oopses or regressions,

Re: Latest OMAP4 build errors

2012-03-07 Thread Olof Johansson
Hi, On Wed, Mar 7, 2012 at 9:10 AM, Tony Lindgren t...@atomide.com wrote: Hi, Arnd Olof, some urgent changes are needed, see below. * Russell King - ARM Linux li...@arm.linux.org.uk [120307 01:34]: On Tue, Mar 06, 2012 at 05:01:53PM +, Arnd Bergmann wrote: On Tuesday 06 March 2012,

Re: [GIT PULL] Urgent pre-emptive fixes for next merge window

2012-03-07 Thread Olof Johansson
On Wed, Mar 7, 2012 at 2:59 PM, Tony Lindgren t...@atomide.com wrote: The following changes since commit d82ba9954b6b2c4ac91ec6f6f42be8c5215d0619:  Peter Ujfalusi (1):        OMAP4: dma: Correct CPU version check for dma_common_ch_end are available in the git repository at:  

Re: [GIT PULL] fixing and cleaning up rpmsg/remoteproc for 3.4

2012-03-07 Thread Olof Johansson
On Tue, Mar 6, 2012 at 10:09 AM, Ohad Ben-Cohen o...@wizery.com wrote: Hi Arnd, Please pull: git://git.kernel.org/pub/scm/linux/kernel/git/ohad/remoteproc.git rpmsg-fixes-and-more-for-3.4 To get a few rpmsg/remoteproc fixes, cleanups and some generalization work for 3.4. Again, I should

  1   2   3   4   >