20 Oct, 2010

1 commit

  • Since we're now using addruart to establish the debug mapping, we can
    remove the io_pg_offst and phys_io members of struct machine_desc.

    The various declarations were removed using the following script:

    grep -rl MACHINE_START arch/arm | xargs \
    sed -i '/MACHINE_START/,/MACHINE_END/ { /\.\(phys_io\|io_pg_offst\)/d }'

    [ Initial patch was from Jeremy Kerr, example script from Russell King ]

    Signed-off-by: Nicolas Pitre
    Acked-by: Eric Miao

    Nicolas Pitre
     

05 Dec, 2009

1 commit


28 Oct, 2008

1 commit

  • This converts pretty much everything to print_mac. There were
    a few things that had conflicts which I have just dropped for
    now, no harm done.

    I've built an allyesconfig with this and looked at the files
    that weren't built very carefully, but it's a huge patch.

    Signed-off-by: Johannes Berg
    Signed-off-by: David S. Miller

    Johannes Berg
     

06 Sep, 2008

1 commit


30 Apr, 2008

1 commit

  • Based on earlier work by Jon Smirl and Jochen Friedrich.

    Update most new-style i2c drivers to use standard module aliasing
    instead of the old driver_name/type driver matching scheme. I've
    left the video drivers apart (except for SoC camera drivers) as
    they're a bit more diffcult to deal with, they'll have their own
    patch later.

    Signed-off-by: Jean Delvare
    Cc: Jon Smirl
    Cc: Jochen Friedrich

    Jean Delvare
     

07 Feb, 2008

1 commit


04 Feb, 2008

4 commits


28 Jan, 2008

1 commit

  • Migrate all ixp4xx devices to the bitbanging I2C bus driver utilizing
    the arch-neutral GPIO API (linux/i2c-gpio.h).

    Tested by the nslu2-linux and openwrt projects in public firmware releases.

    Signed-off-by: Michael-Luke Jones
    Acked-by: Rod Whitby
    Signed-off-by: Jean Delvare

    Michael-Luke Jones
     

26 May, 2007

2 commits


29 Sep, 2006

1 commit


23 Jun, 2006

1 commit

  • Patch from Rod Whitby

    This patch implements NEW_LEDS support for the Linksys NSLU2. The
    NSLU2 has four LED indicators, which are the only form of output for
    an unmodified device - there is no keyboard or display on an NSLU2.
    For an NSLU2 which has been modified to bring out the serial port
    console, it is important to register that device first separately, to
    enable debugging of other device support.

    Signed-off-by: John Bowler
    Signed-off-by: Rod Whitby
    Signed-off-by: Deepak Saxena
    Signed-off-by: Russell King

    Rod Whitby
     

23 Feb, 2006

1 commit


17 Feb, 2006

1 commit

  • Patch from Martin Michlmayr

    ARM patch 3226/1 (IXP4xx runtime expansion bus window size configuration)
    forgot to update mach-ixp4xx/nslu2-setup.c which leads to the following
    compilation error. Update NSLU2 flash support following patch 3226/1.

    CC arch/arm/mach-ixp4xx/nslu2-setup.o
    arch/arm/mach-ixp4xx/nslu2-setup.c:30: error: ‘NSLU2_FLASH_BASE’ undeclared here (not in a function)
    arch/arm/mach-ixp4xx/nslu2-setup.c:31: error: ‘NSLU2_FLASH_SIZE’ undeclared here (not in a function)
    make[1]: *** [arch/arm/mach-ixp4xx/nslu2-setup.o] Error 1
    make: *** [arch/arm/mach-ixp4xx] Error 2

    Signed-off-by: Martin Michlmayr

    ---

    nslu2-setup.c | 6 ++++--
    1 file changed, 4 insertions(+), 2 deletions(-)
    Signed-off-by: Russell King

    Martin Michlmayr
     

14 Jan, 2006

1 commit


10 Nov, 2005

1 commit

  • Patch from Alessandro Zummo

    This patch adds support for the LinkSys NSLU2 running with
    both big and little-endian kernels. The LinkSys NSLU2 is
    a cost engineered ARM, XScale 420 based system similar to
    the the Intel IXDP425 evaluation board. It uses the
    IXP4XX ARCH.

    While this patch applies independently of other patches
    the resultant kernel requires further patches to successfully
    use onboard devices, including the onboard flash. Since these
    patches are independent of this one they will be submitted
    separately.

    A defconfig is not included here because not all of
    the required drivers are actually in the kernel.
    We intend to provide one as soon as the patches
    will be incorporated in mainstream.

    This patch is the combined work of nslu2-linux.org

    Signed-off-by: John Bowler
    Signed-off-by: Alessandro Zummo
    Signed-off-by: Deepak Saxena
    Signed-off-by: Lennert Buytenhek
    Signed-off-by: Russell King

    Alessandro Zummo