Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
wdenk | 3863585 | 2002-08-27 05:55:31 +0000 | [diff] [blame] | 2 | /* |
| 3 | * (C) Copyright 2000 |
| 4 | * Wolfgang Denk, DENX Software Engineering, wd@denx.de. |
wdenk | 3863585 | 2002-08-27 05:55:31 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | /* |
| 8 | * Boot support |
| 9 | */ |
| 10 | #include <common.h> |
| 11 | #include <command.h> |
Heinrich Schuchardt | d9d07d7 | 2023-04-01 12:20:34 +0200 | [diff] [blame] | 12 | #include <iomux.h> |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 13 | #include <stdio_dev.h> |
wdenk | 3863585 | 2002-08-27 05:55:31 +0000 | [diff] [blame] | 14 | |
wdenk | 3863585 | 2002-08-27 05:55:31 +0000 | [diff] [blame] | 15 | extern void _do_coninfo (void); |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 16 | static int do_coninfo(struct cmd_tbl *cmd, int flag, int argc, |
| 17 | char *const argv[]) |
wdenk | 3863585 | 2002-08-27 05:55:31 +0000 | [diff] [blame] | 18 | { |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 19 | int l; |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 20 | struct list_head *list = stdio_get_list(); |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 21 | struct list_head *pos; |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 22 | struct stdio_dev *dev; |
wdenk | 3863585 | 2002-08-27 05:55:31 +0000 | [diff] [blame] | 23 | |
| 24 | /* Scan for valid output and input devices */ |
| 25 | |
Heinrich Schuchardt | fe34e16 | 2023-01-28 01:11:56 +0100 | [diff] [blame] | 26 | puts("List of available devices\n"); |
wdenk | 3863585 | 2002-08-27 05:55:31 +0000 | [diff] [blame] | 27 | |
Jean-Christophe PLAGNIOL-VILLARD | c1de7a6 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 28 | list_for_each(pos, list) { |
Jean-Christophe PLAGNIOL-VILLARD | 52cb4d4 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 29 | dev = list_entry(pos, struct stdio_dev, list); |
wdenk | 3863585 | 2002-08-27 05:55:31 +0000 | [diff] [blame] | 30 | |
Heinrich Schuchardt | fe34e16 | 2023-01-28 01:11:56 +0100 | [diff] [blame] | 31 | printf("|-- %s (%s%s)\n", |
| 32 | dev->name, |
| 33 | (dev->flags & DEV_FLAGS_INPUT) ? "I" : "", |
| 34 | (dev->flags & DEV_FLAGS_OUTPUT) ? "O" : ""); |
wdenk | 3863585 | 2002-08-27 05:55:31 +0000 | [diff] [blame] | 35 | |
| 36 | for (l = 0; l < MAX_FILES; l++) { |
Heinrich Schuchardt | d9d07d7 | 2023-04-01 12:20:34 +0200 | [diff] [blame] | 37 | if (CONFIG_IS_ENABLED(CONSOLE_MUX)) { |
| 38 | if (iomux_match_device(console_devices[l], |
| 39 | cd_count[l], dev) >= 0) |
| 40 | printf("| |-- %s\n", stdio_names[l]); |
| 41 | } else { |
| 42 | if (stdio_devices[l] == dev) |
| 43 | printf("| |-- %s\n", stdio_names[l]); |
wdenk | 3863585 | 2002-08-27 05:55:31 +0000 | [diff] [blame] | 44 | } |
Heinrich Schuchardt | d9d07d7 | 2023-04-01 12:20:34 +0200 | [diff] [blame] | 45 | |
wdenk | 3863585 | 2002-08-27 05:55:31 +0000 | [diff] [blame] | 46 | } |
wdenk | 3863585 | 2002-08-27 05:55:31 +0000 | [diff] [blame] | 47 | } |
| 48 | return 0; |
| 49 | } |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 50 | |
| 51 | |
| 52 | /***************************************************/ |
| 53 | |
wdenk | 0d49839 | 2003-07-01 21:06:45 +0000 | [diff] [blame] | 54 | U_BOOT_CMD( |
| 55 | coninfo, 3, 1, do_coninfo, |
Peter Tyser | 2fb2604 | 2009-01-27 18:03:12 -0600 | [diff] [blame] | 56 | "print console devices and information", |
wdenk | 8bde7f7 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 57 | "" |
| 58 | ); |