m1n1/src/display.h
Janne Grunau 5006e083c7 display: Use dcpext0 for HDMI out on t8112/t6020/t6021
dcpext0 behaves like dcp on M1* devices and can sleep after display
init. This has the advantage of not breaking macOS when starting with an
initialized display.
dcpext* are according to Apple's tech specs slightly more powerful than
dcp. They are advertised as 6K at 60Hz while dcp seems to be limited to
5K at 60Hz.

Signed-off-by: Janne Grunau <j@jannau.net>
2023-11-27 13:33:08 +09:00

23 lines
473 B
C

/* SPDX-License-Identifier: MIT */
#ifndef DISPLAY_H
#define DISPLAY_H
#include "dcp.h"
#include "types.h"
typedef enum _dcp_shutdown_mode {
DCP_QUIESCED = 0,
DCP_SLEEP_IF_EXTERNAL = 1,
DCP_SLEEP = 2,
} dcp_shutdown_mode;
extern bool display_is_external;
int display_init(void);
int display_start_dcp(void);
int display_configure(const char *config);
void display_shutdown(dcp_shutdown_mode mode);
const display_config_t *display_get_config(void);
#endif