29 Mar, 2011

2 commits


14 Jan, 2011

1 commit


09 Oct, 2008

1 commit


07 Aug, 2008

3 commits


27 Jul, 2008

1 commit

  • IRQT_* and __IRQT_* were obsoleted long ago by patch [3692/1].
    Remove them completely. Sed script for the reference:

    s/__IRQT_RISEDGE/IRQ_TYPE_EDGE_RISING/g
    s/__IRQT_FALEDGE/IRQ_TYPE_EDGE_FALLING/g
    s/__IRQT_LOWLVL/IRQ_TYPE_LEVEL_LOW/g
    s/__IRQT_HIGHLVL/IRQ_TYPE_LEVEL_HIGH/g
    s/IRQT_RISING/IRQ_TYPE_EDGE_RISING/g
    s/IRQT_FALLING/IRQ_TYPE_EDGE_FALLING/g
    s/IRQT_BOTHEDGE/IRQ_TYPE_EDGE_BOTH/g
    s/IRQT_LOW/IRQ_TYPE_LEVEL_LOW/g
    s/IRQT_HIGH/IRQ_TYPE_LEVEL_HIGH/g
    s/IRQT_PROBE/IRQ_TYPE_PROBE/g
    s/IRQT_NOEDGE/IRQ_TYPE_NONE/g

    Signed-off-by: Dmitry Baryshkov
    Signed-off-by: Russell King

    Dmitry Baryshkov
     

26 Jan, 2008

1 commit


21 May, 2007

1 commit


09 May, 2007

1 commit


30 Nov, 2006

1 commit


07 Oct, 2006

1 commit


03 Jul, 2006

1 commit


02 Jul, 2006

1 commit


01 Jul, 2006

1 commit


22 Jun, 2006

2 commits


03 Jun, 2006

1 commit

  • Patch from Lennert Buytenhek

    On the ixp23xx, the microengine thread interrupt sources are numbered
    56..119, but their mask/status bits are located in bit positions 64..127
    in the various registers in the interrupt controller (bit positions
    56..63 are unused.)

    We don't deal with this, so currently, when asked to enable IRQ 64, we
    will enable IRQ 56 instead.

    The only interrupts >= 64 are the thread interrupt sources, and there
    are no in-tree users of those yet, so this is fortunately not a big
    problem, but this needs fixing anyway.

    Signed-off-by: Lennert Buytenhek
    Signed-off-by: Russell King

    Lennert Buytenhek
     

29 Mar, 2006

1 commit

  • Patch from Lennert Buytenhek

    This patch adds support for the Intel ixp23xx series of CPUs. The
    ixp23xx is an XSC3 based CPU with 512K of L2 cache, a 64bit 66MHz PCI
    interface, two DDR RAM interfaces, QDR RAM interfaces, two gigabit
    MACs, two 10/100 MACs, expansion bus, four microengines, a Media and
    Switch Fabric unit almost identical to the one on the ixp2400, two
    xscale (8250ish) UARTs and a bunch of other stuff.

    This patch adds the core ixp23xx support code, and support for the
    ADI Engineering Roadrunner, Intel IXDP2351, and IP Fabrics Double
    Espresso platforms.

    Signed-off-by: Deepak Saxena
    Signed-off-by: Lennert Buytenhek
    Signed-off-by: Russell King

    Lennert Buytenhek