Skip to content
Snippets Groups Projects
  1. Jan 05, 2017
  2. Sep 23, 2016
  3. Sep 20, 2016
  4. Jun 04, 2016
  5. Apr 01, 2016
  6. Jan 25, 2016
  7. Jan 19, 2016
  8. Jan 08, 2016
  9. Nov 12, 2015
    • Dirk Eibach's avatar
      mpc83xx: Add strider board · a3f9d6c7
      Dirk Eibach authored
      
      The gdsys strider board is based on a Freescale MPC8308 SOC.
      It boots from NOR-Flash, kernel and rootfs are stored on
      SD-Card.
      
      On board peripherals include:
      - 1x 10/100 Mbit/s Ethernet (optional)
      - Lattice ECP3 FPGA connected via eLBC
      
      Signed-off-by: default avatarDirk Eibach <dirk.eibach@gdsys.cc>
      [trini: Drop setting CONFIG_SYS_GENERIC_BOARD, this is always true now]
      Signed-off-by: default avatarTom Rini <trini@konsulko.com>
      a3f9d6c7
  10. Nov 10, 2015
  11. Nov 05, 2015
  12. May 12, 2015
  13. May 04, 2015
  14. Apr 18, 2015
  15. Jan 23, 2015
  16. Nov 19, 2014
  17. Nov 14, 2014
  18. Oct 27, 2014
    • Masahiro Yamada's avatar
      kconfig: add CONFIG_SUPPORT_SPL · 02627356
      Masahiro Yamada authored
      
      CONFIG_SPL should not be enabled for boards that do not have SPL.
      CONFIG_SUPPORT_SPL introduced by this commit should be "select"ed
      by boards with SPL support and CONFIG_SPL should depend on it.
      
      Signed-off-by: default avatarMasahiro Yamada <yamada.m@jp.panasonic.com>
      Acked-by: default avatarSimon Glass <sjg@chromium.org>
      02627356
    • Marek Vasut's avatar
      ppc: Zap Hymod board · 5038d7f1
      Marek Vasut authored
      
      Remove this board as this is the only one last user of eeprom_probe(),
      which is pretty non-standard stuff.
      
      This patch also removes all the PHP, SQL and CSS stuff from U-Boot,
      which probably makes U-Boot a bit less IoT ;-)
      
      Signed-off-by: default avatarMarek Vasut <marex@denx.de>
      Cc: Masahiro Yamada <yamada.m@jp.panasonic.com>
      Cc: Tom Rini <trini@ti.com>
      Cc: Wolfgang Denk <wd@denx.de>
      Cc: Simon Glass <sjg@chromium.org>
      Cc: Heiko Schocher <hs@denx.de>
      5038d7f1
  19. Oct 10, 2014
  20. Sep 13, 2014
  21. Jul 30, 2014
  22. Jul 22, 2014
  23. Apr 24, 2014
  24. Jan 24, 2014
  25. Jan 21, 2014
  26. Dec 13, 2013
  27. Dec 04, 2013
    • York Sun's avatar
      powerpc/mpc8349: Use generic mpc85xx DDR driver · 1df99080
      York Sun authored
      
      MPC8349 has been using mpc85xx DDR driver through a symbolic link to
      mpc85xx_ddr_gen2.c. After consolidating the drivers to a single set
      under driver/ddr/fsl/, the link is replaced by referring driver
      directly. We now can simply enable the macro and use the driver.
      Other mpc83xx SoCs still use their own driver.
      
      Signed-off-by: default avatarYork Sun <yorksun@freescale.com>
      1df99080
  28. Nov 25, 2013
  29. Nov 17, 2013
  30. Oct 31, 2013
    • Masahiro Yamada's avatar
      powerpc: convert makefiles to Kbuild style · 06c14117
      Masahiro Yamada authored
      
      Note:
      arch/powerpc/cpu/mpc8260/Makefile is originally like follows:
      
          ---<snip>---
          START   = start.o kgdb.o
          COBJS   = traps.o serial_smc.o serial_scc.o cpu.o cpu_init.o speed.o \
          ---<snip>---
          COBJS-$(CONFIG_ETHER_ON_SCC) = ether_scc.o
          ---<snip>---
          $(LIB): $(OBJS)
                  $(call cmd_link_o_target, $(OBJS) $(obj)kgdb.o)
      
      The link rule `$(call cmd_link_o_target, $(OBJS) $(obj)kgdb.o)'
      is weird.
      kbdg.o is not included in $(OBJS) but linked into $(LIB)
      and $(LIB) is not dependent on kgdb.o.
      (Broken dependency tracking)
      
      So,
          START   = start.o kgdb.o
      shoud have been
          START   = start.o
          SOBJS   = kgdb.o
      
      That is why this commit adds kgdb.o to obj-y, not to extra-y.
      
      Signed-off-by: default avatarMasahiro Yamada <yamada.m@jp.panasonic.com>
      Cc: Wolfgang Denk <wd@denx.de>
      Cc: Stefan Roese <sr@denx.de>
      06c14117
  31. Oct 24, 2013
  32. Oct 14, 2013
  33. Aug 09, 2013
Loading