Home
last modified time | relevance | path

Searched refs:console_evt (Results 1 – 4 of 4) sorted by relevance

/rk3399_rockchip-uboot/arch/arm/mach-rockchip/
H A Dhotkey.c30 return gd->console_evt == CTRL_P; in is_hotkey()
32 return gd->console_evt == CTRL_I; in is_hotkey()
34 return gd->console_evt == CTRL_R; in is_hotkey()
36 return gd->console_evt == CTRL_M; in is_hotkey()
38 return gd->console_evt == CTRL_B; in is_hotkey()
41 return gd->console_evt == CTRL_D; in is_hotkey()
43 return gd->console_evt == CTRL_F; in is_hotkey()
56 if (gd->console_evt == CTRL_M) { in hotkey_run()
62 if (gd->console_evt == CTRL_P) in hotkey_run()
66 if (gd->console_evt == CTRL_I) in hotkey_run()
[all …]
H A Dspl.c172 if (gd->console_evt == 0x02) { in brom_download()
191 gd->console_evt = serial_getc();
194 gd->console_evt = debug_uart_getc();
196 if (gd->console_evt <= 0x1a) /* 'z' */
198 gd->console_evt + 'a' - 1);
418 if (gd->console_evt == 0x03) {
H A Dboard.c551 gd->console_evt = getc(); in board_debug_init()
552 if (gd->console_evt <= 0x1a) /* 'z' */ in board_debug_init()
553 printf("Hotkey: ctrl+%c\n", gd->console_evt + 'a' - 1); in board_debug_init()
/rk3399_rockchip-uboot/include/asm-generic/
H A Dglobal_data.h143 int console_evt; /* Console event, maybe some hotkey */ member