mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-17 10:04:26 +00:00
Merge changes from topic "dcc-console" into integration
* changes: fix(dcc): enable DCC also for crash console build(changelog): add new scope for DCC
This commit is contained in:
commit
159ebbfe80
2 changed files with 5 additions and 1 deletions
|
@ -609,6 +609,9 @@ subsections:
|
||||||
- plat/xilinx
|
- plat/xilinx
|
||||||
|
|
||||||
subsections:
|
subsections:
|
||||||
|
- title: DCC (Debug Communication Channel)
|
||||||
|
scope: dcc
|
||||||
|
|
||||||
- title: Versal
|
- title: Versal
|
||||||
scope: versal
|
scope: versal
|
||||||
|
|
||||||
|
|
|
@ -137,7 +137,8 @@ static void dcc_console_flush(struct console *console)
|
||||||
static struct dcc_console dcc_console = {
|
static struct dcc_console dcc_console = {
|
||||||
.console = {
|
.console = {
|
||||||
.flags = CONSOLE_FLAG_BOOT |
|
.flags = CONSOLE_FLAG_BOOT |
|
||||||
CONSOLE_FLAG_RUNTIME,
|
CONSOLE_FLAG_RUNTIME |
|
||||||
|
CONSOLE_FLAG_CRASH,
|
||||||
.putc = dcc_console_putc,
|
.putc = dcc_console_putc,
|
||||||
#if ENABLE_CONSOLE_GETC
|
#if ENABLE_CONSOLE_GETC
|
||||||
.getc = dcc_console_getc,
|
.getc = dcc_console_getc,
|
||||||
|
|
Loading…
Add table
Reference in a new issue