08 Aug, 2011

1 commit


11 Dec, 2010

1 commit


21 Oct, 2009

1 commit

  • Move the remaining headers under plat-omap/include/mach
    to plat-omap/include/plat. Also search and replace the
    files using these headers to include using the right path.

    This was done with:

    #!/bin/bash
    mach_dir_old="arch/arm/plat-omap/include/mach"
    plat_dir_new="arch/arm/plat-omap/include/plat"
    headers=$(cd $mach_dir_old && ls *.h)
    omap_dirs="arch/arm/*omap*/ \
    drivers/video/omap \
    sound/soc/omap"
    other_files="drivers/leds/leds-ams-delta.c \
    drivers/mfd/menelaus.c \
    drivers/mfd/twl4030-core.c \
    drivers/mtd/nand/ams-delta.c"

    for header in $headers; do
    old="#include

    Tony Lindgren
     

11 Dec, 2008

2 commits

  • Switch to gpio_request/free calls

    Signed-off-by: Jarkko Nikula
    Signed-off-by: Tony Lindgren

    Jarkko Nikula
     
  • More conversion to the standard GPIO interfaces: stop using
    omap_set_gpio_direction() entirely, and switch over to the
    gpio_direction_output() call.

    Note that because gpio_direction_output() includes the initial
    value, this change isn't quite transparent.

    - For the call sites which defined an initial value either
    before or after setting the direction, that value was used.

    When that value was previously assigned afterwards, this
    could eliminate a brief output glitch ... and possibly
    change behavior. In a few cases (LCDs) several values
    were assigned together ... those were re-arranged to match
    the explicit sequence provided.

    - Some call sites didn't define such a value; so I chose an
    initial "off/reset" value that seemed to default to "off".

    In short, files touched by this patch might notice some small
    changes in startup behavior (with trivial fixes).

    Signed-off-by: David Brownell
    Signed-off-by: Tony Lindgren

    David Brownell
     

07 Aug, 2008

1 commit


10 Nov, 2005

1 commit

  • Patch from Tony Lindgren

    This patch syncs the mainline kernel with linux-omap tree.
    The highlights of the patch are:

    - Omap1 serial pport and framebuffer init updates by Imre Deak

    - Add support for omap310 processor and Palm Tungsten E PDA
    by Laurent Gonzales, Romain Goyet, et al. Omap310 and
    omap1510 processors are now handled as omap15xx.

    - Omap1 specific changes to shared omap clock framework
    by Tony Lindgren

    - Omap1 specific changes to shared omap pin mux framework
    by Tony Lindgren

    - Other misc fixes, such as update memory timings for smc91x,
    omap1 specific device initialization etc.

    Signed-off-by: Tony Lindgren
    Signed-off-by: Russell King

    Tony Lindgren
     

09 Sep, 2005

1 commit

  • Patch from Tony Lindgren

    This patch syncs the mainline kernel with linux-omap tree.
    The highlights of the patch are:
    - Convert more drivers to register resources in board-*.c to take
    advantage of the driver model by David Brownell and Ladislav Michl
    - Use set_irq_type() for GPIO interrupts instead of
    omap_set_gpio_edge_ctrl() by David Brownell
    - Add minimal support for handling optional add-on boards, such as
    OSK Mistral board with LCD and keypad, by David Brownell
    - Minimal support for loading functions to SRAM by Tony Lindgren
    - Wake up from serial port by muxing RX lines temporarily into GPIO
    interrupts by Tony Lindgren
    - 32KHz sched_clock by Tony Lindgren and Juha Yrjola

    Signed-off-by: Tony Lindgren
    Signed-off-by: Russell King

    Tony Lindgren
     

11 Jul, 2005

1 commit