Lines Matching refs:boot_hd_console
28 static console_holder boot_hd_console; variable
249 boot_hd_console.base = (uintptr_t)UART_BASE; in setup_console()
250 boot_hd_console.baud_rate = (uint32_t)UART_BAUDRATE; in setup_console()
251 boot_hd_console.clk = get_uart_clk(); in setup_console()
252 boot_hd_console.console_scope = CONSOLE_FLAG_BOOT | CONSOLE_FLAG_CRASH; in setup_console()
253 boot_hd_console.console_type = UART_TYPE; in setup_console()
262 boot_hd_console.base = dt_uart_info.base; in setup_console()
263 boot_hd_console.baud_rate = dt_uart_info.baud_rate; in setup_console()
264 boot_hd_console.console_type = dt_uart_info.console_type; in setup_console()
272 register_console(&boot_hd_console, &boot_console); in setup_console()
289 if ((rt_hd_console.console_type == boot_hd_console.console_type) && in setup_console()
290 (rt_hd_console.base == boot_hd_console.base)) { in setup_console()