params_setup.c 4.33 KB
Newer Older
1
/*
2
 * Copyright (c) 2016-2019, 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
 */

#include <assert.h>
8
#include <errno.h>
9
10
#include <string.h>

11
#include <lib/bl_aux_params/bl_aux_params.h>
12
13
14
15
#include <common/bl_common.h>
#include <common/debug.h>
#include <drivers/console.h>
#include <drivers/gpio.h>
16
#include <libfdt.h>
17
18
19
20
#include <lib/coreboot.h>
#include <lib/mmio.h>
#include <plat/common/platform.h>

21
22
23
#include <plat_params.h>
#include <plat_private.h>

24
25
26
static struct bl_aux_gpio_info rst_gpio;
static struct bl_aux_gpio_info poweroff_gpio;
static struct bl_aux_gpio_info suspend_gpio[10];
27
uint32_t suspend_gpio_cnt;
28
static struct bl_aux_rk_apio_info suspend_apio;
29
static uint32_t rk_uart_base = PLAT_RK_UART_BASE;
30
static uint32_t rk_uart_baudrate = PLAT_RK_UART_BAUDRATE;
31
32
33
34
35

uint32_t rockchip_get_uart_base(void)
{
	return rk_uart_base;
}
36

37
38
39
40
41
uint32_t rockchip_get_uart_baudrate(void)
{
	return rk_uart_baudrate;
}

42
#if COREBOOT
43
static int dt_process_fdt(u_register_t param_from_bl2)
44
45
46
47
{
	return -ENODEV;
}
#else
48
49
50
51
52
53
54
static uint8_t fdt_buffer[0x10000];

void *plat_get_fdt(void)
{
	return &fdt_buffer[0];
}

55
56
57
58
59
60
61
static void plat_rockchip_dt_process_fdt_uart(void *fdt)
{
	const char *path_name = "/chosen";
	const char *prop_name = "stdout-path";
	int node_offset;
	int stdout_path_len;
	const char *stdout_path;
62
63
	const char *separator;
	const char *baud_start;
64
65
66
	char serial_char;
	int serial_no;
	uint32_t uart_base;
67
	uint32_t baud;
68
69
70
71
72
73
74
75
76
77
78
79

	node_offset = fdt_path_offset(fdt, path_name);
	if (node_offset < 0)
		return;

	stdout_path = fdt_getprop(fdt, node_offset, prop_name,
				  &stdout_path_len);
	if (stdout_path == NULL)
		return;

	/*
	 * We expect something like:
80
	 *   "serial0:baudrate"
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
	 */
	if (strncmp("serial", stdout_path, 6) != 0)
		return;

	serial_char = stdout_path[6];
	serial_no = serial_char - '0';

	switch (serial_no) {
	case 0:
		uart_base = UART0_BASE;
		break;
	case 1:
		uart_base = UART1_BASE;
		break;
	case 2:
		uart_base = UART2_BASE;
		break;
#ifdef UART3_BASE
	case 3:
		uart_base = UART3_BASE;
		break;
#endif
#ifdef UART4_BASE
	case 4:
		uart_base = UART4_BASE;
		break;
107
108
109
110
111
#endif
#ifdef UART5_BASE
	case 5:
		uart_base = UART5_BASE;
		break;
112
113
114
115
116
117
#endif
	default:
		return;
	}

	rk_uart_base = uart_base;
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139

	separator = strchr(stdout_path, ':');
	if (!separator)
		return;

	baud = 0;
	baud_start = separator + 1;
	while (*baud_start != '\0') {
		/*
		 * uart binding is <baud>{<parity>{<bits>{...}}}
		 * So the baudrate either is the whole string, or
		 * we end in the parity characters.
		 */
		if (*baud_start == 'n' || *baud_start == 'o' ||
		    *baud_start == 'e')
			break;

		baud = baud * 10 + (*baud_start - '0');
		baud_start++;
	}

	rk_uart_baudrate = baud;
140
141
}

142
static int dt_process_fdt(u_register_t param_from_bl2)
143
144
145
146
{
	void *fdt = plat_get_fdt();
	int ret;

147
	ret = fdt_open_into((void *)param_from_bl2, fdt, 0x10000);
148
149
150
	if (ret < 0)
		return ret;

151
152
	plat_rockchip_dt_process_fdt_uart(fdt);

153
154
155
156
	return 0;
}
#endif

157
struct bl_aux_gpio_info *plat_get_rockchip_gpio_reset(void)
158
{
159
	return &rst_gpio;
160
161
}

162
struct bl_aux_gpio_info *plat_get_rockchip_gpio_poweroff(void)
163
{
164
	return &poweroff_gpio;
165
166
}

167
struct bl_aux_gpio_info *plat_get_rockchip_suspend_gpio(uint32_t *count)
168
169
170
171
172
173
{
	*count = suspend_gpio_cnt;

	return &suspend_gpio[0];
}

174
struct bl_aux_rk_apio_info *plat_get_rockchip_suspend_apio(void)
175
{
176
	return &suspend_apio;
177
178
}

179
static bool rk_aux_param_handler(struct bl_aux_param_header *param)
180
{
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
	/* Store platform parameters for later processing if needed. */
	switch (param->type) {
	case BL_AUX_PARAM_RK_RESET_GPIO:
		rst_gpio = ((struct bl_aux_param_gpio *)param)->gpio;
		return true;
	case BL_AUX_PARAM_RK_POWEROFF_GPIO:
		poweroff_gpio = ((struct bl_aux_param_gpio *)param)->gpio;
		return true;
	case BL_AUX_PARAM_RK_SUSPEND_GPIO:
		if (suspend_gpio_cnt >= ARRAY_SIZE(suspend_gpio)) {
			ERROR("Exceeded the supported suspend GPIO number.\n");
			return true;
		}
		suspend_gpio[suspend_gpio_cnt++] =
			((struct bl_aux_param_gpio *)param)->gpio;
		return true;
	case BL_AUX_PARAM_RK_SUSPEND_APIO:
		suspend_apio = ((struct bl_aux_param_rk_apio *)param)->apio;
		return true;
	}
201

202
203
204
205
206
	return false;
}

void params_early_setup(u_register_t plat_param_from_bl2)
{
207
208
209
210
211
212
213
	/*
	 * Test if this is a FDT passed as a platform-specific parameter
	 * block.
	 */
	if (!dt_process_fdt(plat_param_from_bl2))
		return;

214
	bl_aux_params_parse(plat_param_from_bl2, rk_aux_param_handler);
215
}