blob: fa4eb9462d89f4dd11cc0559dfb288cdf99a7aae [file] [log] [blame]
Achin Gupta4f6ad662013-10-25 09:08:21 +01001/*
Yann Gautier0d5ca3d2022-12-09 14:30:55 +01002 * Copyright (c) 2013-2023, ARM Limited and Contributors. All rights reserved.
Achin Gupta4f6ad662013-10-25 09:08:21 +01003 *
dp-armfa3cf0b2017-05-03 09:38:09 +01004 * SPDX-License-Identifier: BSD-3-Clause
Achin Gupta4f6ad662013-10-25 09:08:21 +01005 */
6
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +00007#ifndef CONSOLE_H
8#define CONSOLE_H
Achin Gupta4f6ad662013-10-25 09:08:21 +01009
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000010#include <lib/utils_def.h>
Juan Castillo7f1f0622014-09-09 09:49:23 +010011
Julius Werner94f89072017-07-31 18:15:11 -070012#define CONSOLE_T_NEXT (U(0) * REGSZ)
13#define CONSOLE_T_FLAGS (U(1) * REGSZ)
14#define CONSOLE_T_PUTC (U(2) * REGSZ)
Sandrine Bailleuxf57e2032023-10-11 08:38:00 +020015#if ENABLE_CONSOLE_GETC
Julius Werner94f89072017-07-31 18:15:11 -070016#define CONSOLE_T_GETC (U(3) * REGSZ)
17#define CONSOLE_T_FLUSH (U(4) * REGSZ)
Andre Przywarac88f6562020-01-25 00:54:38 +000018#define CONSOLE_T_BASE (U(5) * REGSZ)
19#define CONSOLE_T_DRVDATA (U(6) * REGSZ)
Sandrine Bailleuxf57e2032023-10-11 08:38:00 +020020#else
21#define CONSOLE_T_FLUSH (U(3) * REGSZ)
22#define CONSOLE_T_BASE (U(4) * REGSZ)
23#define CONSOLE_T_DRVDATA (U(5) * REGSZ)
24#endif
Julius Werner94f89072017-07-31 18:15:11 -070025
Antonio Nino Diaz23ede6a2018-06-19 09:29:36 +010026#define CONSOLE_FLAG_BOOT (U(1) << 0)
27#define CONSOLE_FLAG_RUNTIME (U(1) << 1)
28#define CONSOLE_FLAG_CRASH (U(1) << 2)
Julius Werner94f89072017-07-31 18:15:11 -070029/* Bits 3 to 7 reserved for additional scopes in future expansion. */
30#define CONSOLE_FLAG_SCOPE_MASK ((U(1) << 8) - 1)
Masahiro Yamada269a8ad2019-07-23 12:32:58 +090031/* Bits 8 to 31 for non-scope use. */
32#define CONSOLE_FLAG_TRANSLATE_CRLF (U(1) << 8)
Julius Werner94f89072017-07-31 18:15:11 -070033
34/* Returned by getc callbacks when receive FIFO is empty. */
35#define ERROR_NO_PENDING_CHAR (-1)
36/* Returned by console_xxx() if no registered console implements xxx. */
37#define ERROR_NO_VALID_CONSOLE (-128)
38
Julius Werner53456fc2019-07-09 13:49:11 -070039#ifndef __ASSEMBLER__
Julius Werner94f89072017-07-31 18:15:11 -070040
Antonio Nino Diaz4b32e622018-08-16 16:52:57 +010041#include <stdint.h>
Julius Werner94f89072017-07-31 18:15:11 -070042
43typedef struct console {
44 struct console *next;
Daniel Boulby99e4a482018-05-16 16:04:35 +010045 /*
46 * Only the low 32 bits are used. The type is u_register_t to align the
47 * fields of the struct to 64 bits in AArch64 and 32 bits in AArch32
48 */
Julius Werner94f89072017-07-31 18:15:11 -070049 u_register_t flags;
Daniel Boulby9516df22018-06-07 14:15:15 +010050 int (*const putc)(int character, struct console *console);
Sandrine Bailleuxf57e2032023-10-11 08:38:00 +020051#if ENABLE_CONSOLE_GETC
Daniel Boulby9516df22018-06-07 14:15:15 +010052 int (*const getc)(struct console *console);
Sandrine Bailleuxf57e2032023-10-11 08:38:00 +020053#endif
Jimmy Brisson39f9eee2020-08-05 13:44:05 -050054 void (*const flush)(struct console *console);
Andre Przywarac88f6562020-01-25 00:54:38 +000055 uintptr_t base;
Julius Werner94f89072017-07-31 18:15:11 -070056 /* Additional private driver data may follow here. */
57} console_t;
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000058
Yann Gautier0d5ca3d2022-12-09 14:30:55 +010059extern console_t *console_list;
60
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000061/* offset macro assertions for console_t */
62#include <drivers/console_assertions.h>
Julius Werner94f89072017-07-31 18:15:11 -070063
64/*
Ambroise Vincentb237bca2019-02-13 15:58:00 +000065 * Add a console_t instance to the console list. This should only be called by
66 * console drivers after they have initialized all fields in the console
67 * structure. Platforms seeking to register a new console need to call the
68 * respective console__register() function instead.
Julius Werner94f89072017-07-31 18:15:11 -070069 */
Ambroise Vincentb237bca2019-02-13 15:58:00 +000070int console_register(console_t *console);
Julius Werner514ae842018-12-03 17:01:30 -080071/* Remove a single console_t instance from the console list. Return a pointer to
72 * the console that was removed if it was found, or NULL if not. */
73console_t *console_unregister(console_t *console);
Antonio Nino Diaz4f31ad52018-04-30 20:14:07 +010074/* Returns 1 if this console is already registered, 0 if not */
75int console_is_registered(console_t *console);
76/*
77 * Set scope mask of a console that determines in what states it is active.
78 * By default they are registered with (CONSOLE_FLAG_BOOT|CONSOLE_FLAG_CRASH).
79 */
Julius Werner94f89072017-07-31 18:15:11 -070080void console_set_scope(console_t *console, unsigned int scope);
81
82/* Switch to a new global console state (CONSOLE_FLAG_BOOT/RUNTIME/CRASH). */
83void console_switch_state(unsigned int new_state);
84/* Output a character on all consoles registered for the current state. */
Achin Gupta4f6ad662013-10-25 09:08:21 +010085int console_putc(int c);
Sandrine Bailleuxf57e2032023-10-11 08:38:00 +020086#if ENABLE_CONSOLE_GETC
Julius Werner94f89072017-07-31 18:15:11 -070087/* Read a character (blocking) from any console registered for current state. */
Achin Gupta4f6ad662013-10-25 09:08:21 +010088int console_getc(void);
Sandrine Bailleuxf57e2032023-10-11 08:38:00 +020089#endif
Julius Werner94f89072017-07-31 18:15:11 -070090/* Flush all consoles registered for the current state. */
Jimmy Brisson39f9eee2020-08-05 13:44:05 -050091void console_flush(void);
Achin Gupta4f6ad662013-10-25 09:08:21 +010092
Julius Werner53456fc2019-07-09 13:49:11 -070093#endif /* __ASSEMBLER__ */
Julius Werner94f89072017-07-31 18:15:11 -070094
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +000095#endif /* CONSOLE_H */