1. 19 1月, 2016 1 次提交
    • T
      vsprintf.c: Always enable CONFIG_SYS_VSNPRINTF · 947c626d
      Tom Rini 提交于
      Enabling this function always removes some class of string saftey issues.
      The size change here in general is about 400 bytes and this seems a reasonable
      trade-off.
      
      Cc: Peng Fan <peng.fan@nxp.com>
      Cc: Peter Robinson <pbrobinson@gmail.com>
      Cc: Fabio Estevam <fabio.estevam@freescale.com>
      Cc: Adrian Alonso <aalonso@freescale.com>
      Cc: Stefano Babic <sbabic@denx.de>
      Cc: Hans de Goede <hdegoede@redhat.com>
      Signed-off-by: NTom Rini <trini@konsulko.com>
      947c626d
  2. 01 12月, 2015 1 次提交
  3. 25 11月, 2015 2 次提交
  4. 22 11月, 2015 1 次提交
  5. 19 11月, 2015 1 次提交
  6. 31 10月, 2015 1 次提交
  7. 21 10月, 2015 1 次提交
  8. 28 9月, 2015 1 次提交
  9. 14 8月, 2015 3 次提交
  10. 06 8月, 2015 1 次提交
    • S
      x86: Enable debug UART for Minnowmax · bbbe55f6
      Simon Glass 提交于
      Enable the debug UART and emit a single 'a' early in the init sequence to
      show that it is working.
      
      Unfortunately the debug UART implementation needs a stack to work. I cannot
      seem to remove this limitation as the absolute 'jmp %eax' instruction goes
      off into the weeds.
      
      So this means that the character output cannot be any earlier than
      car_init_ret, where memory is available for a stack.
      Signed-off-by: NSimon Glass <sjg@chromium.org>
      Reviewed-by: NLukasz Majewski <l.majewski@samsung.com>
      bbbe55f6
  11. 29 7月, 2015 1 次提交
  12. 15 7月, 2015 3 次提交
  13. 26 6月, 2015 2 次提交
  14. 04 6月, 2015 1 次提交
  15. 01 6月, 2015 1 次提交
  16. 13 5月, 2015 1 次提交
  17. 01 5月, 2015 1 次提交
  18. 30 4月, 2015 3 次提交
  19. 19 2月, 2015 1 次提交
    • S
      serial: Support an early UART for debugging · 2f964aa7
      Simon Glass 提交于
      This came up in a discussion on the mailing list here:
      
      https://patchwork.ozlabs.org/patch/384613/
      
      My concerns at the time were:
      - it doesn't need to be written in assembler
      - it doesn't need to be ARM-specific
      
      This patch provides a possible alternative. It works by allowing any serial
      driver to export one init function and provide a putc() function. These
      can be used to output debug data before the real serial driver is available.
      
      This implementation does not depend on driver model, and it is possible for
      it to operate without a stack on some architectures (e.g. PowerPC, ARM). It
      provides the same features as the ARM-specific debug.S but with more UART
      and architecture support.
      Signed-off-by: NSimon Glass <sjg@chromium.org>
      2f964aa7
  20. 07 2月, 2015 1 次提交
    • S
      x86: Add support for Intel Minnowboard Max · 3a1a18ff
      Simon Glass 提交于
      This is a relatively low-cost x86 board in a small form factor. The main
      peripherals are uSD, USB, HDMI, Ethernet and SATA. It uses an Atom 3800
      series CPU. So far only the dual core 2GB variant is supported.
      
      This uses the existing FSP support. Binary blobs are required to make this
      board work. The microcode update is included as a patch (all 3000 lines of
      it).
      
      Change-Id: I0088c47fe87cf08ae635b343d32c332269062156
      Signed-off-by: NSimon Glass <sjg@chromium.org>
      Reviewed-by: NBin Meng <bmeng.cn@gmail.com>
      3a1a18ff