diff options
author | Mike Frysinger <vapier@gentoo.org> | 2008-10-11 21:51:20 -0400 |
---|---|---|
committer | Mike Frysinger <vapier@gentoo.org> | 2009-01-28 13:26:15 -0500 |
commit | 36ea8e9ad1107af12d244bba8c73e85b9f655e45 (patch) | |
tree | ea8234ea20bc09e657c0851405388d7c1362b456 /include/devices.h | |
parent | cf8f2efb5f39c5225da92391c14a07eecbeca881 (diff) | |
download | u-boot-imx-36ea8e9ad1107af12d244bba8c73e85b9f655e45.zip u-boot-imx-36ea8e9ad1107af12d244bba8c73e85b9f655e45.tar.gz u-boot-imx-36ea8e9ad1107af12d244bba8c73e85b9f655e45.tar.bz2 |
Blackfin: support console-over-JTAG
The Blackfin JTAG has the ability to pass data via a back-channel without
halting the processor. Utilize that channel to emulate a console.
Signed-off-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'include/devices.h')
-rw-r--r-- | include/devices.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/devices.h b/include/devices.h index 20ddfc4..84c4514 100644 --- a/include/devices.h +++ b/include/devices.h @@ -116,5 +116,8 @@ int drv_usbtty_init (void); #ifdef CONFIG_NETCONSOLE int drv_nc_init (void); #endif +#ifdef CONFIG_JTAG_CONSOLE +int drv_jtag_console_init (void); +#endif #endif /* _DEVICES_H_ */ |