22 Aug, 2011

1 commit


04 Mar, 2011

1 commit


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
     

04 Mar, 2009

1 commit


20 Feb, 2009

1 commit

  • The A0 revision of the mv78xx0 development board has four ethernet
    ports, with PHY IDs 8-11, whereas the Z0 version has two, with PHY
    addresses 8-9. This patch configures the third and fourth ethernet
    port to use the PHY addresses on the A0 board to enable use of those
    ports -- if we are running on a Z0 board, the ge10/11 setup code in
    common.c will force these back to PHYless mode.

    Signed-off-by: Lennert Buytenhek

    Lennert Buytenhek
     

20 Oct, 2008

1 commit

  • On the mv78xx0 development board, eth2 and eth3 do not have
    corresponding PHYs, but are internally connected, as a way of
    facilitating communication between the two CPU cores. Since there are
    no PHYs, we need to tell the network driver explicitly to force the
    link on eth2 and eth3 up, to 1000 Mb/s full duplex.

    Signed-off-by: Lennert Buytenhek
    Signed-off-by: Nicolas Pitre

    Lennert Buytenhek
     

05 Sep, 2008

1 commit

  • Currently, there are two different fields in the
    mv643xx_eth_platform_data struct that together describe the PHY
    address -- one field (phy_addr) has the address of the PHY, but if
    that address is zero, a second field (force_phy_addr) needs to be
    set to distinguish the actual address zero from a zero due to not
    having filled in the PHY address explicitly (which should mean
    'use the default PHY address').

    If we are a bit smarter about the encoding of the phy_addr field,
    we can avoid the need for a second field -- this patch does that.

    Signed-off-by: Lennert Buytenhek

    Lennert Buytenhek
     

07 Aug, 2008

1 commit


23 Jun, 2008

1 commit

  • The Marvell Discovery Duo (MV78xx0) is a family of ARM SoCs featuring
    (depending on the model) one or two Feroceon CPU cores with 512K of L2
    cache and VFP coprocessors running at (depending on the model) between
    800 MHz and 1.2 GHz, and features a DDR2 controller, two PCIe
    interfaces that can each run either in x4 or quad x1 mode, three USB
    2.0 interfaces, two 3Gb/s SATA II interfaces, a SPI interface, two
    TWSI interfaces, a crypto accelerator, IDMA/XOR engines, a SPI
    interface, four UARTs, and depending on the model, two or four gigabit
    ethernet interfaces.

    This patch adds basic support for the platform, and allows booting
    on the MV78x00 development board, with functional UARTs, SATA, PCIe,
    GigE and USB ports.

    Signed-off-by: Stanislav Samsonov
    Signed-off-by: Lennert Buytenhek

    Stanislav Samsonov