03 Feb, 2015

3 commits


02 Feb, 2015

16 commits


01 Feb, 2015

2 commits


31 Jan, 2015

11 commits

  • Add an explanation for how to set up git so that patman can find the alias
    file. Fix up the get_maintainers message too.

    Reported-by: Scott Wood
    Signed-off-by: Simon Glass

    Simon Glass
     
  • This brings in a additional small fix which was missed in a recent update
    to the README.

    Suggested-by: Masahiro Yamada
    Signed-off-by: Simon Glass
    Acked-by: Jagannadha Sutradharudu Teki

    Simon Glass
     
  • True commit lines start at column zero. Anything that is indented
    is part of the commit message instead. I noticed this by trying to
    run buildman with commit e3a4facdfc07179ebe017a07b8de6224a935a9f3
    as master, which contained a reference to a Linux commit inside
    the commit message. ProcessLine saw that as a genuite commit
    line, and thus buildman tried to build it, and died with an
    exception because that SHA is not present in the U-Boot tree.

    Signed-off-by: Scott Wood
    Acked-by: Simon Glass

    Scott Wood
     
  • When run with the --dry-run argument patman prints out information
    showing what it would do. This information currently doesn't line up
    with what patman/git send-email really do. Some basic examples:
    - If an email address is addressed via "Series-cc" and "Patch-cc" patman
    shows that email address would be CC-ed two times.
    - If an email address is addressed via "Series-to" and "Patch-cc" patman
    shows that email address would be sent TO and CC-ed.
    - If an email address is addressed from a combination of tag aliases,
    get_maintainer.pl output, "Series-cc", "Patch-cc", etc patman shows
    that the email address would be CC-ed multiple times.

    Patman currently does try to send duplicate emails like the --dry-run
    output shows, but "git send-email" intelligently removes duplicate
    addresses so this patch shouldn't change the non-dry-run functionality.

    Change patman's output and email addressing to line up with the
    "git send-email" logic. This trims down patman's dry-run output and
    prevents confusion about what patman will do when emails are actually
    sent.

    Signed-off-by: Peter Tyser
    Acked-by: Simon Glass
    Tested-by: Simon Glass

    Peter Tyser
     
  • It is painful to specify the full path to the device tree with the -d
    option. It is normally kept in the same directory as U-Boot, so provide
    an option to use this by default.

    Signed-off-by: Simon Glass

    Simon Glass
     
  • The other boards got updated to the standard binding. Update sandbox as
    well.

    Signed-off-by: Simon Glass

    Simon Glass
     
  • If for some reason DMA module fails to reset user oserves only this:
    --->---
    # dhcp
    Trying dwmac.e0018000
    FAIL
    --->---

    This message makes not much sense.
    With proposed change error message will be more helpful:
    --->---
    # dhcp
    Trying dwmac.e0018000
    DMA reset timeout
    FAIL
    --->---

    For example user may do power toggle to recover board functionality.

    Signed-off-by: Alexey Brodkin
    Cc: Chin Liang See
    Cc: Dinh Nguyen
    Cc: Albert Aribaud
    Cc: Tom Rini
    Cc: Wolfgang Denk
    Cc: Pavel Machek
    Cc: Joe Hershberger
    Cc: Ian Campbell
    Cc: Marek Vasut
    Reviewed-by: Tom Rini
    Acked-by: Pavel Machek
    Acked-by: Joe Hershberger
    Signed-off-by: Joe Hershberger

    Alexey Brodkin
     
  • This patch adds a phy driver for the Micrel KSZ8895 switch. As the SoC MAC
    is directly connected to the switch MAC the link to the switch is always up.

    But the KSZ8895 switch can be hardwired in three configuration modes :
    - not configurable with eventually an eeprom-stored configuration
    - configurable by the mdio/mdc connection (SMI protocol)
    - configurable by a SPI connection.

    In not configurable mode, the switch starts automatically, but in the
    other modes, it must be started programmatically, by writing 1 in
    configuration register 1.
    We only support the not configurable and mdio/mdc (aka SMI) modes here.

    Signed-off-by: Philippe De Muyter
    Cc: Christian Gmeiner
    Signed-off-by: Joe Hershberger

    Philippe De Muyter
     
  • Signed-off-by: Yoshinori Sato
    Signed-off-by: Joe Hershberger

    Yoshinori Sato
     
  • If the PHY is not recognized don't access phydev (NULL)
    and return 0 to signal failure.

    Signed-off-by: Claudiu Manoil
    Signed-off-by: Joe Hershberger

    Claudiu Manoil
     
  • Tom Rini
     

30 Jan, 2015

8 commits