summaryrefslogtreecommitdiff
path: root/spm/scmi/sp_debug.c
blob: 9c91c5603fff02d4496113c7ea90402bdff1deb7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
/*
 * Copyright (c) 2020-2022, Arm Limited. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

#include <drivers/arm/pl011.h>
#include <drivers/console.h>
#include <ffa_helpers.h>
#include <ffa_svc.h>
#include <sp_debug.h>
#include <spm_helpers.h>

static int (*putc_impl)(int);

static int putc_hypcall(int c)
{
	hvc_args args = {
		.fid = FFA_CONSOLE_LOG_SMC32,
		.arg1 = 1,
		.arg2 = c
	};

	(void)tftf_hvc(&args);
	return c;
}
static int putc_ffacall(int c)
{
	struct ffa_value args = {
		.fid = FFA_CONSOLE_LOG_SMC32,
		.arg1 = 1,
		.arg2 = c
	};

	ffa_service_call(&args);

	return c;
}

static int putc_uart(int c)
{
	console_pl011_putc(c);

	return c;
}

void set_putc_impl(enum stdout_route route)
{
	switch (route) {

	case FFA_HVC_CALL_AS_STDOUT:
		putc_impl = putc_hypcall;
		return;
	case FFA_SVC_SMC_CALL_AS_STDOUT:
		putc_impl = putc_ffacall;
		return;
	case PL011_AS_STDOUT:
	default:
		break;
	}

	putc_impl = putc_uart;
}

int console_putc(int c)
{
	if (!putc_impl) {
		return -1;
	}

	return putc_impl(c);
}