2018-12-01 17:47:20 +08:00
|
|
|
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
/*
|
|
|
|
* (C) Copyright 2018
|
|
|
|
* DENX Software Engineering, Anatolij Gustschin <agust@denx.de>
|
|
|
|
*
|
|
|
|
* cls - clear screen command
|
|
|
|
*/
|
|
|
|
#include <common.h>
|
|
|
|
#include <command.h>
|
|
|
|
#include <dm.h>
|
2023-03-11 04:47:21 +08:00
|
|
|
#include <video_console.h>
|
2018-12-01 17:47:20 +08:00
|
|
|
|
2022-02-12 01:11:05 +08:00
|
|
|
#define CSI "\x1b["
|
|
|
|
|
2020-05-11 01:40:03 +08:00
|
|
|
static int do_video_clear(struct cmd_tbl *cmdtp, int flag, int argc,
|
2018-12-01 17:47:20 +08:00
|
|
|
char *const argv[])
|
|
|
|
{
|
2022-02-12 01:11:05 +08:00
|
|
|
__maybe_unused struct udevice *dev;
|
2018-12-01 17:47:20 +08:00
|
|
|
|
2023-03-11 04:47:23 +08:00
|
|
|
/*
|
|
|
|
* Send clear screen and home
|
|
|
|
*
|
|
|
|
* FIXME(Heinrich Schuchardt <xypron.glpk@gmx.de>): This should go
|
|
|
|
* through an API and only be written to serial terminals, not video
|
|
|
|
* displays
|
|
|
|
*/
|
2022-02-12 01:11:05 +08:00
|
|
|
printf(CSI "2J" CSI "1;1H");
|
2023-03-11 04:47:21 +08:00
|
|
|
if (IS_ENABLED(CONFIG_VIDEO_ANSI))
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
if (IS_ENABLED(CONFIG_VIDEO)) {
|
|
|
|
if (uclass_first_device_err(UCLASS_VIDEO_CONSOLE, &dev))
|
2022-07-14 14:53:46 +08:00
|
|
|
return CMD_RET_FAILURE;
|
2023-03-11 04:47:21 +08:00
|
|
|
if (vidconsole_clear_and_reset(dev))
|
2022-07-14 14:53:46 +08:00
|
|
|
return CMD_RET_FAILURE;
|
|
|
|
}
|
2023-03-11 04:47:21 +08:00
|
|
|
|
2018-12-01 17:47:20 +08:00
|
|
|
return CMD_RET_SUCCESS;
|
|
|
|
}
|
|
|
|
|
|
|
|
U_BOOT_CMD(cls, 1, 1, do_video_clear, "clear screen", "");
|