1. 28 5月, 2016 1 次提交
  2. 21 5月, 2016 1 次提交
  3. 02 4月, 2016 1 次提交
  4. 24 3月, 2016 1 次提交
    • M
      ARM: uniphier: support Debug UART · d5cf3297
      Masahiro Yamada 提交于
      For ARM32 architecture, CONFIG_DEBUG_LL is available for early
      low-level debugging (and actually UniPhier 32bit SoCs use it), but
      ARM64 architecture does not support it.  Instead, CONFIG_DEBUG_UART
      is available as an architecture-independent debug facility.
      
      This commit supports it on all the UniPhier SoCs (including the new
      ARMv8 SoCs), which is very useful for new SoC bringups.
      Signed-off-by: NMasahiro Yamada <yamada.masahiro@socionext.com>
      d5cf3297
  5. 26 2月, 2016 1 次提交
    • M
      serial: dcc: Move driver to DM · 966bfa73
      Michal Simek 提交于
      Enabling this driver requires some DT changes.
      Adding DCC to root or main bus:
      dcc: dcc {
      	compatible = "arm,dcc";
      	u-boot,dm-pre-reloc;
      };
      
      Extend alias list to link DCC:
      	serial0 = &uart0;
      	serial1 = &uart1;
      	serial2 = &dcc;
      
      Change stdout-path to point to dcc port.
      	stdout-path = "serial2:115200n8";
      
      Also add support for debug uart to help with early debug.
      Signed-off-by: NMichal Simek <michal.simek@xilinx.com>
      Reviewed-by: NSimon Glass <sjg@chromium.org>
      966bfa73
  6. 02 2月, 2016 1 次提交
  7. 27 1月, 2016 3 次提交
  8. 21 1月, 2016 1 次提交
  9. 20 1月, 2016 1 次提交
  10. 13 1月, 2016 1 次提交
  11. 07 12月, 2015 1 次提交
  12. 22 11月, 2015 4 次提交
  13. 21 11月, 2015 3 次提交
  14. 13 11月, 2015 1 次提交
  15. 04 11月, 2015 1 次提交
  16. 23 10月, 2015 2 次提交
  17. 21 10月, 2015 2 次提交
  18. 04 10月, 2015 1 次提交
  19. 03 9月, 2015 1 次提交
  20. 02 9月, 2015 1 次提交
  21. 13 8月, 2015 1 次提交
  22. 10 8月, 2015 1 次提交
    • H
      dm: serial: Add a REQUIRE_SERIAL_CONSOLE option for boards with no serial port · 8c458588
      Hans de Goede 提交于
      Currently the serial code assumes that there is always at least one serial
      port (and panics / crashes due to null pointer dereferences when there is
      none).
      
      This makes it impossible to use u-boot on boards where there is no (debug)
      serial port, because e.g. all uart pins are muxed to another function.
      
      This commit adds a CONFIG_REQUIRE_SERIAL_CONSOLE Kconfig option, which
      defaults to y (preserving existing behavior), which can be set to n on
      such boards to make them work.
      
      This commit only implements this for CONFIG_DM_SERIAL=y configs, as allowing
      running without a serial port for CONFIG_DM_SERIAL=n configs is non trivial,
      and is not necessary at this moment.
      Signed-off-by: NHans de Goede <hdegoede@redhat.com>
      Acked-by: NSimon Glass <sjg@chromium.org>
      8c458588
  23. 06 8月, 2015 1 次提交
  24. 05 8月, 2015 2 次提交
  25. 11 6月, 2015 1 次提交
  26. 31 5月, 2015 1 次提交
  27. 23 4月, 2015 1 次提交
  28. 19 2月, 2015 2 次提交
    • S
      serial: ns16550: Support debug UART · 21d00436
      Simon Glass 提交于
      Add debug UART functions to permit ns16550 to provide an early debug UART.
      Try to avoid using the stack so that this can be called from assembler before
      a stack is set up (at least on ARM and PowerPC).
      Signed-off-by: NSimon Glass <sjg@chromium.org>
      21d00436
    • 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
  29. 13 2月, 2015 1 次提交