mirror of
https://github.com/AsahiLinux/m1n1
synced 2024-12-23 03:53:05 +00:00
cc4a5d312d
This replaces the earlier earlycon with a single shared console buffer for all output devices. Signed-off-by: Hector Martin <marcan@marcan.st>
39 lines
919 B
C
39 lines
919 B
C
/* SPDX-License-Identifier: MIT */
|
|
|
|
#ifndef IODEV_H
|
|
#define IODEV_H
|
|
|
|
#include "types.h"
|
|
#include "utils.h"
|
|
|
|
typedef enum _iodev_id_t { IODEV_UART, IODEV_FB, IODEV_MAX } iodev_id_t;
|
|
|
|
typedef enum _iodev_usage_t {
|
|
USAGE_CONSOLE = BIT(0),
|
|
USAGE_UARTPROXY = BIT(1),
|
|
} iodev_usage_t;
|
|
|
|
struct iodev_ops {
|
|
bool (*can_read)(void *opaque);
|
|
bool (*can_write)(void *opaque);
|
|
ssize_t (*read)(void *opaque, void *buf, size_t length);
|
|
ssize_t (*write)(void *opaque, const void *buf, size_t length);
|
|
};
|
|
|
|
struct iodev {
|
|
const struct iodev_ops *ops;
|
|
|
|
iodev_usage_t usage;
|
|
void *opaque;
|
|
};
|
|
|
|
extern struct iodev *iodevs[IODEV_MAX];
|
|
|
|
bool iodev_can_read(iodev_id_t id);
|
|
bool iodev_can_write(iodev_id_t id);
|
|
ssize_t iodev_read(iodev_id_t id, void *buf, size_t length);
|
|
ssize_t iodev_write(iodev_id_t id, const void *buf, size_t length);
|
|
|
|
void iodev_console_write(const void *buf, size_t length);
|
|
|
|
#endif
|