]> git.ipfire.org Git - people/ms/u-boot.git/commit - drivers/serial/Kconfig
serial: Support an early UART for debugging
authorSimon Glass <sjg@chromium.org>
Tue, 27 Jan 2015 01:27:07 +0000 (18:27 -0700)
committerSimon Glass <sjg@chromium.org>
Thu, 19 Feb 2015 13:20:25 +0000 (06:20 -0700)
commit2f964aa7b1bf7de50587a1864cf60d187ebefb2c
tree327538419b445e03d57685b0cce6f518577c42a6
parentba25779384671c533a778e53d59fe3f317bfefa8
serial: Support an early UART for debugging

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: Simon Glass <sjg@chromium.org>
configs/minnowmax_defconfig
drivers/serial/Kconfig
include/debug_uart.h [new file with mode: 0644]