Searched refs:cons (Results 1 – 6 of 6) sorted by relevance
| /rk3399_rockchip-uboot/common/ |
| H A D | lcd_console.c | 17 static struct console_t cons; variable 21 cons.curr_col = col; in lcd_set_col() 26 cons.curr_row = row; in lcd_set_row() 31 cons.curr_col = min_t(short, col, cons.cols - 1); in lcd_position_cursor() 32 cons.curr_row = min_t(short, row, cons.rows - 1); in lcd_position_cursor() 37 return cons.rows; in lcd_get_screen_rows() 42 return cons.cols; in lcd_get_screen_columns() 93 if (--cons.curr_col < 0) { in console_back() 94 cons.curr_col = cons.cols - 1; in console_back() 95 if (--cons.curr_row < 0) in console_back() [all …]
|
| /rk3399_rockchip-uboot/test/py/tests/ |
| H A D | test_vboot.py | 53 util.run_and_log(cons, 'dtc %s %s%s -O dtb ' 70 cons.restart_uboot() 71 with cons.log.section('Verified boot %s %s' % (sha_algo, test_type)): 72 output = cons.run_command_list( 88 util.run_and_log(cons, [mkimage, '-D', dtc_args, '-f', 101 cons.log.action('%s: Sign images' % sha_algo) 102 util.run_and_log(cons, [mkimage, '-F', '-k', tmpdir, '-K', dtb, 122 cons.log.action('%s: Test FIT with signed images' % sha_algo) 133 cons.log.action('%s: Test FIT with signed configuration' % sha_algo) 141 cons.log.action('%s: Check signed config on the host' % sha_algo) [all …]
|
| H A D | test_fit.py | 124 return os.path.join(cons.config.build_dir, leaf) 157 util.run_and_log(cons, ['dtc', src, '-O', 'dtb', '-o', dtb]) 187 util.run_and_log(cons, [mkimage, '-f', its, fit]) 361 cons.config.dtb = control_dtb 362 cons.restart_uboot() 363 with cons.log.section('Kernel load'): 364 output = cons.run_command_list(cmd.splitlines()) 384 with cons.log.section('Kernel + FDT load'): 387 cons.restart_uboot() 388 output = cons.run_command_list(cmd.splitlines()) [all …]
|
| H A D | test_ofplatdata.py | 12 cons = u_boot_console 13 output = cons.get_spawn_output().replace('\r', '')
|
| H A D | test_log.py | 44 with cons.log.section('basic'): 91 cons = u_boot_console
|
| /rk3399_rockchip-uboot/drivers/video/ |
| H A D | video-uclass.c | 207 struct udevice *cons; in video_post_probe() local 250 ret = device_bind_driver(dev, drv_name, str, &cons); in video_post_probe() 256 ret = device_probe(cons); in video_post_probe()
|