1. 20 9月, 2013 1 次提交
    • W
      SPDX: fix IBM-pibs license identifier · 1b387ef5
      Wolfgang Denk 提交于
      The SPDX License List version 1.19 now contains an official entry for
      the IBM-pibs license.  However, instead of our suggestion "ibm-pibs",
      the SPDX License List uses "IBM-pibs", with the following rationale:
      "The reason being that all other SPDX License List short identifiers
      tend towards using capital letters unless spelling a word.  I'd prefer
      to be consistent to this end".
      
      Change the license IDs to use the official name.
      Signed-off-by: NWolfgang Denk <wd@denx.de>
      1b387ef5
  2. 20 8月, 2013 1 次提交
    • W
      SPDX-License-Identifier: convert PIBS licensed files · 46263f2d
      Wolfgang Denk 提交于
      This commit adapts the files that were derived from PIBS (PowerPC
      Initialization and Boot Software) codeto using SPDX License
      Identifiers.
      
      So far, SPDX has not assigned an official License ID for the PIBS
      license yet, so this should be considered preliminary.
      
      Note that the following files contained incorrect license information:
      
      	arch/powerpc/cpu/ppc4xx/4xx_uart.c
      	arch/powerpc/cpu/ppc4xx/start.S
      	arch/powerpc/include/asm/ppc440.h
      
      These files included, in addition to the GPL-2.0 / ibm-pibs dual
      license as inherited from PIBS, a GPL-2.0+ license header which was
      obviously incorrect.  This has been removed.
      Signed-off-by: NWolfgang Denk <wd@denx.de>
      Cc: Stefan Roese <sr@denx.de>
      Signed-off-by: NWolfgang Denk <wd@denx.de>
      
      Conflicts:
      	Licenses/README
      Acked-by: NStefan Roese <sr@denx.de>
      46263f2d
  3. 19 3月, 2012 1 次提交
    • M
      net/miiphy/serial: drop duplicate "NAMESIZE" define · f6add132
      Mike Frysinger 提交于
      A few subsystems are using the same define "NAMESIZE".  This has been
      working so far because they define it to the same number.  However, I
      want to change the size of eth_device's NAMESIZE, so rather than tweak
      the define names, simply drop references to it.  Almost no one does,
      and the handful that do can easily be changed to a sizeof().
      Signed-off-by: NMike Frysinger <vapier@gentoo.org>
      f6add132
  4. 07 12月, 2011 2 次提交
  5. 21 4月, 2011 2 次提交
    • A
      Create PHY Lib for U-Boot · 5f184715
      Andy Fleming 提交于
      Extends the mii_dev structure to participate in a full-blown MDIO and
      PHY driver scheme.  The mii_dev structure and miiphy calls are modified
      in such a way to allow the original mii command and miiphy
      infrastructure to work as before, but also to support a new set of APIs
      which allow (among other things) sharing of PHY driver code and 10G support
      
      The mii command will continue to support normal PHY management functions
      (Clause 22 of 802.3), but will not be changed to support 10G
      (Clause 45).
      
      The basic design is similar to PHY Lib from Linux, but simplified for
      U-Boot's network and driver infrastructure.
      
      We now have MDIO drivers and PHY drivers
      
      An MDIO driver provides:
      read
      write
      reset
      
      A PHY driver provides:
      (optionally): probe
      config - initial setup, starting of auto-negotiation
      startup - waiting for AN, and reading link state
      shutdown - any cleanup needed
      
      The ethernet drivers interact with the PHY Lib using these functions:
      phy_connect()
      phy_config()
      phy_startup()
      phy_shutdown()
      
      Each PHY driver can be configured separately, or all at once using
      config_phylib_all_drivers.h (added in the patch which adds the drivers)
      
      We also provide generic drivers for Clause 22 (10/100/1000), and
      Clause 45 (10G) PHYs.
      
      We also implement phy_reset(), and call it in phy_connect(). Because
      phy_reset() is essentially the same as miiphy_reset, but:
      a) must support 10G PHYs, and
      b) should use the phylib primitives,
      
      we implement miiphy_reset, using phy_reset(), but only when
      CONFIG_PHYLIB is set. Otherwise, we just use the old version. In this
      way, we save on compile size, even if we don't manage to save code size.
      
      Pulled ethtool.h and mdio.h from:
      git://git.kernel.org/pub/scm/linux/kernel/git/davem/net-next-2.6
      782d640afd15af7a1faf01cfe566ca4ac511319d
      With many, many deletions so as to enable compilation under u-boot
      Signed-off-by: NAndy Fleming <afleming@freescale.com>
      Signed-off-by: NKumar Gala <galak@kernel.crashing.org>
      Acked-by: NDetlev Zundel <dzu@denx.de>
      5f184715
    • A
      miiphy: Fix some formatting issues · 16a53238
      Andy Fleming 提交于
      Mostly putting a space between function name and "(", and
      doing return (foo)
      Signed-off-by: NAndy Fleming <afleming@freescale.com>
      Acked-by: NDetlev Zundel <dzu@denx.de>
      16a53238
  6. 10 1月, 2011 1 次提交
  7. 10 8月, 2010 1 次提交
  8. 11 10月, 2009 1 次提交
    • L
      Rewrite the miiphybb (Bit-banged MII bus driver) in order to support an... · 4ba31ab3
      Luigi 'Comio' Mantellini 提交于
      Rewrite the miiphybb (Bit-banged MII bus driver) in order to support an arbitrary number of mii buses.
      
      This feature is useful when your board uses different mii buses for different
      phys and all (or a part) of these buses are implemented via bit-banging mode.
      
      The driver requires that the following macros should be defined into the board
      configuration file:
      
      CONFIG_BITBANGMII       - Enable the miiphybb driver
      CONFIG_BITBANGMII_MULTI - Enable the multi bus support
      
      If the CONFIG_BITBANGMII_MULTI is not defined, the board's config file needs
      to define at least the following macros:
      
      MII_INIT      - Generic code to enable the MII bus (optional)
      MDIO_DECLARE  - Declaration needed to access to the MDIO pin (optional)
      MDIO_ACTIVE   - Activate the MDIO pin as out pin
      MDIO_TRISTATE - Activate the MDIO pin as input/tristate pin
      MDIO_READ     - Read the MDIO pin
      MDIO(v)       - Write v on the MDIO pin
      MDC_DECLARE   - Declaration needed to access to the MDC pin (optional)
      MDC(v)        - Write v on the MDC pin
      
      The previous macros make the driver compatible with the previous version
      (that didn't support the multi-bus).
      
      When the CONFIG_BITBANGMII_MULTI is also defined, the board code needs to fill
      the bb_miiphy_buses[] array with a record for each required bus and declare
      the bb_miiphy_buses_num variable with the number of mii buses.
      The record (struct bb_miiphy_bus) has the following fields/callbacks (see
      miiphy.h for details):
      
      char name[]            - The symbolic name that must be equal to the MII bus
                               registered name
      int (*init)()          - Initialization function called at startup time (just
                               before the Ethernet initialization)
      int (*mdio_active)()   - Activate the MDIO pin as output
      int (*mdio_tristate)() - Activate the MDIO pin as input/tristate pin
      int (*set_mdio)()      - Write the MDIO pin
      int (*get_mdio)()      - Read the MDIO pin
      int (*set_mdc)()       - Write the MDC pin
      int (*delay)()         - Delay function
      void *priv             - Private data used by board specific code
      
      The board code will look like:
      
      struct bb_miiphy_bus bb_miiphy_buses[] = {
       { .name = miibus#1, .init = b1_init, .mdio_active = b1_mdio_active, ... },
       { .name = miibus#2, .init = b2_init, .mdio_active = b2_mdio_active, ... },
       ...
      int bb_miiphy_buses_num = sizeof(bb_miiphy_buses) /
                                sizeof(bb_miiphy_buses[0]);
      Signed-off-by: NLuigi 'Comio' Mantellini <luigi.mantellini@idf-hit.com>
      Signed-off-by: NBen Warren <biggerbadderben@gmail.com>
      4ba31ab3
  9. 10 8月, 2009 1 次提交
    • J
      Dual-license IBM code contributions · 31773496
      Josh Boyer 提交于
      It was brought to our attention that U-Boot contains code derived from the
      IBM OpenBIOS source code originally provided with some of the older PowerPC
      4xx development boards.  As a result, the original license of this code has
      been carried in the various files for a number of years in the U-Boot project.
      
      IBM is dual-licensing the IBM code contributions already present in U-Boot
      under either the terms of the GNU General Public License version 2, or the
      original code license already present.
      Signed-off-by: NJosh Boyer <jwboyer@linux.vnet.ibm.com>
      31773496
  10. 19 10月, 2008 1 次提交
  11. 06 11月, 2007 2 次提交
  12. 01 12月, 2005 1 次提交
  13. 29 10月, 2005 1 次提交
  14. 25 4月, 2004 1 次提交
    • W
      * Patch by John Kerl, 19 Apr 2004: · b9711de1
      wdenk 提交于
        Use U-boot's miiphy.h for PHY register names, rather than
        introducing a new header file.
      
      * Update pci_ids.h from linux-2.4.26
      
      * Patch by Masami Komiya, 19 Apr 2004:
        Fix problem cause by VLAN function on little endian architecture
        without VLAN environment
      b9711de1
  15. 15 3月, 2004 1 次提交
    • W
      * Patches by Travis Sawyer, 12 Mar 2004: · 855a496f
      wdenk 提交于
        - Fix Gigabit Ethernet support for 440GX
        - Add Gigabit Ethernet Support to MII PHY utilities
      
      * Patch by Brad Kemp, 12 Mar 2004:
        Fixes for drivers/cfi_flash.c:
        - Better support for x8/x16 implementations
        - Added failure for AMD chips attempting to use CFG_FLASH_USE_BUFFER_WRITE
        - Added defines for AMD command and address constants
      
      * Patch by Leon Kukovec, 12 Mar 2004:
        Fix get_dentfromdir() to correctly handle deleted dentries
      
      * Patch by George G. Davis, 11 Mar 2004:
        Remove hard coded network settings in TI OMAP1610 H2
        default board config
      
      * Patch by George G. Davis, 11 Mar 2004:
        add support for ADS GraphicsClient+ board.
      855a496f
  16. 09 10月, 2003 1 次提交
    • W
      * Patch by Sangmoon Kim, 23 Sep 2003: · fc3e2165
      wdenk 提交于
        fix pll_pci_to_mem_multiplier table for MPC8245
      
      * Patch by Anders Larsen, 22 Sep 2003:
        enable timed autoboot on PXA
      
      * Patch by David Mller, 22 Sep 2003:
      
        - add $(CFLAGS) to "-print-libgcc-filename" so compiler driver
          returns correct libgcc file path
        - "latency" reduction of busy-loop waiting to improve "U-Boot" boot
          time on s3c24x0 systems
      
      * Patch by Jon Diekema, 19 Sep 2003:
        - Add CFG_FAULT_ECHO_LINK_DOWN option to echo the inverted Ethernet
          link state to the fault LED.
        - In NetLoop, make the Fault LED reflect the link status.  The link
          status gets updated on entry, and on timeouts.
      fc3e2165
  17. 18 9月, 2003 1 次提交
  18. 28 6月, 2003 1 次提交
    • W
      * Code cleanup: · 8bde7f77
      wdenk 提交于
        - remove trailing white space, trailing empty lines, C++ comments, etc.
        - split cmd_boot.c (separate cmd_bdinfo.c and cmd_load.c)
      
      * Patches by Kenneth Johansson, 25 Jun 2003:
        - major rework of command structure
          (work done mostly by Michal Cendrowski and Joakim Kristiansen)
      8bde7f77
  19. 09 10月, 2001 1 次提交