2023-04-07 03:31:46 +00:00
|
|
|
#ifndef GSR_KMS_SHARED_H
|
|
|
|
#define GSR_KMS_SHARED_H
|
|
|
|
|
|
|
|
#include <stdint.h>
|
2023-05-12 01:49:29 +00:00
|
|
|
#include <stdbool.h>
|
|
|
|
|
|
|
|
#define GSR_KMS_MAX_PLANES 32
|
2023-04-07 03:31:46 +00:00
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
KMS_REQUEST_TYPE_GET_KMS
|
|
|
|
} gsr_kms_request_type;
|
|
|
|
|
|
|
|
typedef enum {
|
|
|
|
KMS_RESULT_OK,
|
|
|
|
KMS_RESULT_INVALID_REQUEST,
|
2023-04-10 00:25:43 +00:00
|
|
|
KMS_RESULT_FAILED_TO_GET_PLANE,
|
2023-04-07 03:31:46 +00:00
|
|
|
KMS_RESULT_FAILED_TO_SEND
|
|
|
|
} gsr_kms_result;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
int type; /* gsr_kms_request_type */
|
|
|
|
} gsr_kms_request;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
int fd;
|
|
|
|
uint32_t width;
|
|
|
|
uint32_t height;
|
|
|
|
uint32_t pitch;
|
|
|
|
uint32_t offset;
|
|
|
|
uint32_t pixel_format;
|
|
|
|
uint64_t modifier;
|
2023-05-12 01:49:29 +00:00
|
|
|
uint32_t connector_id; /* 0 if unknown */
|
|
|
|
bool is_combined_plane;
|
2023-04-07 03:31:46 +00:00
|
|
|
} gsr_kms_response_fd;
|
|
|
|
|
|
|
|
typedef struct {
|
|
|
|
int result; /* gsr_kms_result */
|
2023-05-12 01:49:29 +00:00
|
|
|
char err_msg[128];
|
|
|
|
gsr_kms_response_fd fds[GSR_KMS_MAX_PLANES];
|
|
|
|
int num_fds;
|
2023-04-07 03:31:46 +00:00
|
|
|
} gsr_kms_response;
|
|
|
|
|
|
|
|
#endif /* #define GSR_KMS_SHARED_H */
|