2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2008-11-06 14:04:23 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2008
|
|
|
|
* Gary Jennejohn, DENX Software Engineering GmbH, garyj@denx.de.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef _IO_MUX_H
|
|
|
|
#define _IO_MUX_H
|
|
|
|
|
2009-05-16 10:14:54 +00:00
|
|
|
#include <stdio_dev.h>
|
2008-11-06 14:04:23 +00:00
|
|
|
|
|
|
|
/*
|
|
|
|
* Stuff required to support console multiplexing.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Pointers to devices used for each file type. Defined in console.c
|
|
|
|
* but storage is allocated in iomux.c.
|
|
|
|
*/
|
2009-05-16 10:14:54 +00:00
|
|
|
extern struct stdio_dev **console_devices[MAX_FILES];
|
2008-11-06 14:04:23 +00:00
|
|
|
/*
|
|
|
|
* The count of devices assigned to each FILE. Defined in console.c
|
|
|
|
* and populated in iomux.c.
|
|
|
|
*/
|
|
|
|
extern int cd_count[MAX_FILES];
|
|
|
|
|
2021-02-11 15:09:42 +00:00
|
|
|
#define for_each_console_dev(i, file, dev) \
|
|
|
|
for (i = 0, dev = console_devices[file][i]; \
|
|
|
|
i < cd_count[file]; \
|
|
|
|
i++, dev = console_devices[file][i])
|
|
|
|
|
2021-02-11 15:09:41 +00:00
|
|
|
int iomux_match_device(struct stdio_dev **, const int, struct stdio_dev *);
|
2008-11-06 14:04:23 +00:00
|
|
|
int iomux_doenv(const int, const char *);
|
2021-02-11 15:09:43 +00:00
|
|
|
int iomux_replace_device(const int, const char *, const char *);
|
2008-11-06 14:04:23 +00:00
|
|
|
void iomux_printdevs(const int);
|
|
|
|
|
|
|
|
#endif /* _IO_MUX_H */
|