console.h 2.73 KB
Newer Older
1
/*
2
 * Copyright (c) 2013-2018, ARM Limited and Contributors. All rights reserved.
3
 *
dp-arm's avatar
dp-arm committed
4
 * SPDX-License-Identifier: BSD-3-Clause
5
6
7
8
9
 */

#ifndef __CONSOLE_H__
#define __CONSOLE_H__

10
#include <utils_def.h>
11

12
13
14
15
16
17
18
#define CONSOLE_T_NEXT			(U(0) * REGSZ)
#define CONSOLE_T_FLAGS			(U(1) * REGSZ)
#define CONSOLE_T_PUTC			(U(2) * REGSZ)
#define CONSOLE_T_GETC			(U(3) * REGSZ)
#define CONSOLE_T_FLUSH			(U(4) * REGSZ)
#define CONSOLE_T_DRVDATA		(U(5) * REGSZ)

19
20
21
#define CONSOLE_FLAG_BOOT		BIT(0)
#define CONSOLE_FLAG_RUNTIME		BIT(1)
#define CONSOLE_FLAG_CRASH		BIT(2)
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
/* Bits 3 to 7 reserved for additional scopes in future expansion. */
#define CONSOLE_FLAG_SCOPE_MASK		((U(1) << 8) - 1)
/* Bits 8 to 31 reserved for non-scope use in future expansion. */

/* Returned by getc callbacks when receive FIFO is empty. */
#define ERROR_NO_PENDING_CHAR		(-1)
/* Returned by console_xxx() if no registered console implements xxx. */
#define ERROR_NO_VALID_CONSOLE		(-128)

#ifndef __ASSEMBLY__

#include <types.h>

typedef struct console {
	struct console *next;
	u_register_t flags;
	int (*putc)(int character, struct console *console);
	int (*getc)(struct console *console);
	int (*flush)(struct console *console);
	/* Additional private driver data may follow here. */
} console_t;
#include <console_assertions.h>	/* offset macro assertions for console_t */

/*
 * NOTE: There is no publicly accessible console_register() function. Consoles
 * are registered by directly calling the register function of a specific
 * implementation, e.g. console_16550_register() from <uart_16550.h>. Consoles
 * registered that way can be unregistered/reconfigured with below functions.
 */
/* Remove a single console_t instance from the console list. */
int console_unregister(console_t *console);
53
54
55
56
57
58
/* Returns 1 if this console is already registered, 0 if not */
int console_is_registered(console_t *console);
/*
 * Set scope mask of a console that determines in what states it is active.
 * By default they are registered with (CONSOLE_FLAG_BOOT|CONSOLE_FLAG_CRASH).
 */
59
60
61
62
63
void console_set_scope(console_t *console, unsigned int scope);

/* Switch to a new global console state (CONSOLE_FLAG_BOOT/RUNTIME/CRASH). */
void console_switch_state(unsigned int new_state);
/* Output a character on all consoles registered for the current state. */
64
int console_putc(int c);
65
/* Read a character (blocking) from any console registered for current state. */
66
int console_getc(void);
67
/* Flush all consoles registered for the current state. */
68
int console_flush(void);
69

70
#if !MULTI_CONSOLE_API
71
/* REMOVED on AArch64 -- use console_<driver>_register() instead! */
72
int console_init(uintptr_t base_addr,
73
74
		 unsigned int uart_clk, unsigned int baud_rate);
void console_uninit(void);
75
76
77
78
#endif

#endif /* __ASSEMBLY__ */

79
80
#endif /* __CONSOLE_H__ */