Tom Rini | 10e4779 | 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 | */ |
wdenk | 3863585 | 2002-08-27 05:55:31 +0000 | [diff] [blame] | 10 | #include <command.h> |
Heinrich Schuchardt | 67edf46 | 2023-04-01 12:20:34 +0200 | [diff] [blame] | 11 | #include <iomux.h> |
Jean-Christophe PLAGNIOL-VILLARD | 2a7a031 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 12 | #include <stdio_dev.h> |
wdenk | 3863585 | 2002-08-27 05:55:31 +0000 | [diff] [blame] | 13 | |
wdenk | 3863585 | 2002-08-27 05:55:31 +0000 | [diff] [blame] | 14 | extern void _do_coninfo (void); |
Simon Glass | ed38aef | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 15 | static int do_coninfo(struct cmd_tbl *cmd, int flag, int argc, |
| 16 | char *const argv[]) |
wdenk | 3863585 | 2002-08-27 05:55:31 +0000 | [diff] [blame] | 17 | { |
Jean-Christophe PLAGNIOL-VILLARD | 8a4a784 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 18 | int l; |
Jean-Christophe PLAGNIOL-VILLARD | 2a7a031 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 19 | struct list_head *list = stdio_get_list(); |
Jean-Christophe PLAGNIOL-VILLARD | 8a4a784 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 20 | struct list_head *pos; |
Jean-Christophe PLAGNIOL-VILLARD | 2a7a031 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 21 | struct stdio_dev *dev; |
wdenk | 3863585 | 2002-08-27 05:55:31 +0000 | [diff] [blame] | 22 | |
| 23 | /* Scan for valid output and input devices */ |
| 24 | |
Heinrich Schuchardt | 855d4ad | 2023-01-28 01:11:56 +0100 | [diff] [blame] | 25 | puts("List of available devices\n"); |
wdenk | 3863585 | 2002-08-27 05:55:31 +0000 | [diff] [blame] | 26 | |
Jean-Christophe PLAGNIOL-VILLARD | 8a4a784 | 2008-08-31 04:24:55 +0200 | [diff] [blame] | 27 | list_for_each(pos, list) { |
Jean-Christophe PLAGNIOL-VILLARD | 2a7a031 | 2009-05-16 12:14:54 +0200 | [diff] [blame] | 28 | dev = list_entry(pos, struct stdio_dev, list); |
wdenk | 3863585 | 2002-08-27 05:55:31 +0000 | [diff] [blame] | 29 | |
Heinrich Schuchardt | 855d4ad | 2023-01-28 01:11:56 +0100 | [diff] [blame] | 30 | printf("|-- %s (%s%s)\n", |
| 31 | dev->name, |
| 32 | (dev->flags & DEV_FLAGS_INPUT) ? "I" : "", |
| 33 | (dev->flags & DEV_FLAGS_OUTPUT) ? "O" : ""); |
wdenk | 3863585 | 2002-08-27 05:55:31 +0000 | [diff] [blame] | 34 | |
| 35 | for (l = 0; l < MAX_FILES; l++) { |
Heinrich Schuchardt | 67edf46 | 2023-04-01 12:20:34 +0200 | [diff] [blame] | 36 | if (CONFIG_IS_ENABLED(CONSOLE_MUX)) { |
| 37 | if (iomux_match_device(console_devices[l], |
| 38 | cd_count[l], dev) >= 0) |
| 39 | printf("| |-- %s\n", stdio_names[l]); |
| 40 | } else { |
| 41 | if (stdio_devices[l] == dev) |
| 42 | printf("| |-- %s\n", stdio_names[l]); |
wdenk | 3863585 | 2002-08-27 05:55:31 +0000 | [diff] [blame] | 43 | } |
Heinrich Schuchardt | 67edf46 | 2023-04-01 12:20:34 +0200 | [diff] [blame] | 44 | |
wdenk | 3863585 | 2002-08-27 05:55:31 +0000 | [diff] [blame] | 45 | } |
wdenk | 3863585 | 2002-08-27 05:55:31 +0000 | [diff] [blame] | 46 | } |
| 47 | return 0; |
| 48 | } |
wdenk | 57b2d80 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 49 | |
wdenk | 57b2d80 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 50 | /***************************************************/ |
| 51 | |
wdenk | f287a24 | 2003-07-01 21:06:45 +0000 | [diff] [blame] | 52 | U_BOOT_CMD( |
| 53 | coninfo, 3, 1, do_coninfo, |
Peter Tyser | dfb72b8 | 2009-01-27 18:03:12 -0600 | [diff] [blame] | 54 | "print console devices and information", |
wdenk | 57b2d80 | 2003-06-27 21:31:46 +0000 | [diff] [blame] | 55 | "" |
| 56 | ); |