Skip to content
Snippets Groups Projects
  1. Jan 25, 2016
  2. Nov 19, 2015
  3. Apr 20, 2015
    • Tim James's avatar
      mii: add read-modify-write option to mii command · a095f047
      Tim James authored
      
      When accessing PHY registers it is often desirable to only update
      selected bits, so it is necessary to first read the current value
      before writing back an modified value with the relevant bits
      updated.
      
      To simplify this and to allow such operations to be incorporated
      into simple shell scripts propose adding a 'modify' option to the
      existing mii command, which takes a mask indicating the bits to
      be updated in addition to a data value containing the new bits,
      ie, <updated> = (<data> & <mask>) | (<current> & ~<mask>).
      
      Signed-off-by: default avatarTim <tim.james@macltd.com>
      Cc: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
      Cc: Joe Hershberger <joe.hershberger@gmail.com>
      Cc: Jeroen Hofstee <jeroen@myspectrum.nl>
      Cc: Tom Rini <trini@konsulko.com>
      Cc: Tim <tim.james@macltd.com>
      a095f047
  4. Jul 18, 2014
  5. Nov 22, 2013
  6. Jul 24, 2013
  7. Mar 06, 2012
  8. Jan 09, 2011
  9. Nov 28, 2010
  10. Aug 09, 2010
  11. Jul 24, 2010
  12. Jul 04, 2010
    • Wolfgang Denk's avatar
      Make sure that argv[] argument pointers are not modified. · 54841ab5
      Wolfgang Denk authored
      
      The hush shell dynamically allocates (and re-allocates) memory for the
      argument strings in the "char *argv[]" argument vector passed to
      commands.  Any code that modifies these pointers will cause serious
      corruption of the malloc data structures and crash U-Boot, so make
      sure the compiler can check that no such modifications are being done
      by changing the code into "char * const argv[]".
      
      This modification is the result of debugging a strange crash caused
      after adding a new command, which used the following argument
      processing code which has been working perfectly fine in all Unix
      systems since version 6 - but not so in U-Boot:
      
      int main (int argc, char **argv)
      {
      	while (--argc > 0 && **++argv == '-') {
      /* ====> */	while (*++*argv) {
      			switch (**argv) {
      			case 'd':
      				debug++;
      				break;
      			...
      			default:
      				usage ();
      			}
      		}
      	}
      	...
      }
      
      The line marked "====>" will corrupt the malloc data structures and
      usually cause U-Boot to crash when the next command gets executed by
      the shell.  With the modification, the compiler will prevent this with
      an
      	error: increment of read-only location '*argv'
      
      N.B.: The code above can be trivially rewritten like this:
      
      	while (--argc > 0 && **++argv == '-') {
      		char *arg = *argv;
      		while (*++arg) {
      			switch (*arg) {
      			...
      
      Signed-off-by: default avatarWolfgang Denk <wd@denx.de>
      Acked-by: default avatarMike Frysinger <vapier@gentoo.org>
      54841ab5
  13. Jun 12, 2009
    • Wolfgang Denk's avatar
      General help message cleanup · a89c33db
      Wolfgang Denk authored
      
      Many of the help messages were not really helpful; for example, many
      commands that take no arguments would not print a correct synopsis
      line, but "No additional help available." which is not exactly wrong,
      but not helpful either.
      
      Commit ``Make "usage" messages more helpful.'' changed this
      partially. But it also became clear that lots of "Usage" and "Help"
      messages (fields "usage" and "help" in struct cmd_tbl_s respective)
      were actually redundant.
      
      This patch cleans this up - for example:
      
      Before:
      	=> help dtt
      	dtt - Digital Thermometer and Thermostat
      
      	Usage:
      	dtt         - Read temperature from digital thermometer and thermostat.
      
      After:
      	=> help dtt
      	dtt - Read temperature from Digital Thermometer and Thermostat
      
      	Usage:
      	dtt
      
      Signed-off-by: default avatarWolfgang Denk <wd@denx.de>
      a89c33db
  14. Jan 28, 2009
  15. Apr 14, 2008
  16. Mar 30, 2008
  17. Jan 09, 2008
  18. Nov 21, 2007
  19. Nov 06, 2007
  20. Jul 10, 2007
  21. Jul 08, 2007
  22. Jul 03, 2007
  23. Jun 18, 2007
    • TsiChung Liew's avatar
      Added M5329AFEE and M5329BFEE Platforms · 8e585f02
      TsiChung Liew authored
      
      Added board/freescale/m5329evb, cpu/mcf532x, drivers/net,
      drivers/serial,  immap_5329.h, m5329.h, mcfrtc.h,
      include/configs/M5329EVB.h, lib_m68k/interrupts.c, and
      rtc/mcfrtc.c
      
      Modified CREDITS, MAKEFILE, Makefile, README, common/cmd_bdinfo.c,
      common/cmd_mii.c, include/asm-m68k/byteorder.h, include/asm-m68k/fec.h,
      include/asm-m68k/io.h, include/asm-m68k/mcftimer.h,
      include/asm-m68k/mcfuart.h, include/asm-m68k/ptrace.h,
      include/asm-m68k/u-boot.h, lib_m68k/Makefile, lib_m68k/board.c,
      lib_m68k/time.c, net/eth.c and rtc/Makefile
      
      Signed-off-by: default avatarTsiChung Liew <Tsi-Chung.Liew@freescale.com>
      8e585f02
  24. Aug 07, 2006
  25. Jul 21, 2006
  26. Oct 28, 2005
  27. Oct 11, 2005
  28. Sep 24, 2005
  29. Aug 05, 2005
  30. Apr 25, 2004
    • Wolfgang Denk's avatar
      * Patch by John Kerl, 19 Apr 2004: · b9711de1
      Wolfgang Denk authored
        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
  31. Apr 23, 2004
    • Wolfgang Denk's avatar
      * Modify KUP4X board configuration to use SL811 driver for USB memory · 5cf91d6b
      Wolfgang Denk authored
        sticks (including FAT / VFAT filesystem support)
      
      * Add SL811 Host Controller Interface driver for USB
      
      * Add CFG_I2C_EEPROM_ADDR_OVERFLOW desription to README
      
      * Patch by Pantelis Antoniou, 19 Apr 2004:
        Allow to use shell style syntax (i. e. ${var} ) with standard parser.
        Minor patches for Intracom boards.
      
      * Patch by Christian Pell, 19 Apr 2004:
        cleanup support for CF/IDE on PCMCIA for PXA25X
      5cf91d6b
  32. Apr 18, 2004
    • Wolfgang Denk's avatar
      * Temporarily disabled John Kerl's extended MII command code because · e35745bb
      Wolfgang Denk authored
        "miivals.h" is missing
      
      * Patches by Mark Jonas, 13 Apr 2004:
        - Remove CS0 chip select timing setting from cpu/mpc5xxx/start.S
        - Add sync instructions to IceCube SDRAM init code
        - Move SDRAM chip constants into seperate include files
        - Unify DDR and SDR initialization code
        - Unify all IceCube (Lite5xxx) target names
      e35745bb
    • Wolfgang Denk's avatar
      * Patch by John Kerl, 16 Apr 2004: · 2471111d
      Wolfgang Denk authored
        Enable ranges in mii command, e.g. mii read 0-1f 0 or
        mii read 4-7 18-1a.  Also add mii dump subcommand for
        pretty-printing standard regs 0-5.
      
      * Patch by  Stephen Williams, 16 April 2004:
        fix typo in JSE.h; update MAINTAINERS
      2471111d
  33. Mar 23, 2004
    • Wolfgang Denk's avatar
      * Patches by Thomas Viehweger, 16 Mar 2004: · 4b9206ed
      Wolfgang Denk authored
        - show PCI clock frequency on MPC8260 systems
        - add FCC_PSMR_RMII flag for HiP7 processors
        - in do_jffs2_fsload(), take load address from load_addr if not set
          explicit, update load_addr otherwise
        - replaced printf by putc/puts when no formatting is needed
          (smaller code size, faster execution)
      4b9206ed
  34. Mar 14, 2004
    • Wolfgang Denk's avatar
      * Patches by Travis Sawyer, 12 Mar 2004: · 855a496f
      Wolfgang Denk authored
        - 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
  35. Feb 26, 2004
    • Wolfgang Denk's avatar
      * Patch by Markus Pietrek, 24 Feb 2004: · 80885a9d
      Wolfgang Denk authored
        NS9750 DevBoard added
      
      * Patch by Pierre AUBERT, 24 Feb 2004
        add USB support for MPC5200
      
      * Patch by Steven Scholz, 24 Feb 2004:
        - fix MII commands to use values from last command
      
      * Patch by Torsten Demke, 24 Feb 2004:
        Add support for the eXalion platform (SPSW-8240, F-30, F-300)
      80885a9d
Loading