mirror of
https://github.com/AsahiLinux/m1n1
synced 2025-04-04 14:46:03 +00:00
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>
23 lines
473 B
C
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
|