blob: 620a961cdefbaa3f188b9761c49b01ac0357b712 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
wdenk38635852002-08-27 05:55:31 +00002/*
3 * (C) Copyright 2000
4 * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
wdenk38635852002-08-27 05:55:31 +00005 */
6
7/*
8 * Boot support
9 */
10#include <common.h>
11#include <command.h>
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +020012#include <stdio_dev.h>
wdenk38635852002-08-27 05:55:31 +000013
wdenk38635852002-08-27 05:55:31 +000014extern void _do_coninfo (void);
Simon Glass09140112020-05-10 11:40:03 -060015static int do_coninfo(struct cmd_tbl *cmd, int flag, int argc,
16 char *const argv[])
wdenk38635852002-08-27 05:55:31 +000017{
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +020018 int l;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +020019 struct list_head *list = stdio_get_list();
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +020020 struct list_head *pos;
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +020021 struct stdio_dev *dev;
wdenk38635852002-08-27 05:55:31 +000022
23 /* Scan for valid output and input devices */
24
Heinrich Schuchardtfe34e162023-01-28 01:11:56 +010025 puts("List of available devices\n");
wdenk38635852002-08-27 05:55:31 +000026
Jean-Christophe PLAGNIOL-VILLARDc1de7a62008-08-31 04:24:55 +020027 list_for_each(pos, list) {
Jean-Christophe PLAGNIOL-VILLARD52cb4d42009-05-16 12:14:54 +020028 dev = list_entry(pos, struct stdio_dev, list);
wdenk38635852002-08-27 05:55:31 +000029
Heinrich Schuchardtfe34e162023-01-28 01:11:56 +010030 printf("|-- %s (%s%s)\n",
31 dev->name,
32 (dev->flags & DEV_FLAGS_INPUT) ? "I" : "",
33 (dev->flags & DEV_FLAGS_OUTPUT) ? "O" : "");
wdenk38635852002-08-27 05:55:31 +000034
35 for (l = 0; l < MAX_FILES; l++) {
36 if (stdio_devices[l] == dev) {
Heinrich Schuchardtfe34e162023-01-28 01:11:56 +010037 printf("| |-- %s\n", stdio_names[l]);
wdenk38635852002-08-27 05:55:31 +000038 }
39 }
wdenk38635852002-08-27 05:55:31 +000040 }
41 return 0;
42}
wdenk8bde7f72003-06-27 21:31:46 +000043
44
45/***************************************************/
46
wdenk0d498392003-07-01 21:06:45 +000047U_BOOT_CMD(
48 coninfo, 3, 1, do_coninfo,
Peter Tyser2fb26042009-01-27 18:03:12 -060049 "print console devices and information",
wdenk8bde7f72003-06-27 21:31:46 +000050 ""
51);