mirror of
https://gitlab.com/sortix/sortix.git
synced 2023-02-13 20:55:38 -05:00
164 lines
3.4 KiB
C
164 lines
3.4 KiB
C
/*******************************************************************************
|
|
|
|
Copyright(C) Jonas 'Sortie' Termansen 2012.
|
|
|
|
This file is part of Sortix.
|
|
|
|
Sortix is free software: you can redistribute it and/or modify it under the
|
|
terms of the GNU General Public License as published by the Free Software
|
|
Foundation, either version 3 of the License, or (at your option) any later
|
|
version.
|
|
|
|
Sortix is distributed in the hope that it will be useful, but WITHOUT ANY
|
|
WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
|
|
FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
|
|
details.
|
|
|
|
You should have received a copy of the GNU General Public License along with
|
|
Sortix. If not, see <http://www.gnu.org/licenses/>.
|
|
|
|
sortix/display.h
|
|
Display message declarations.
|
|
|
|
*******************************************************************************/
|
|
|
|
#ifndef SORTIX_INCLUDE_DISPLAY_H
|
|
#define SORTIX_INCLUDE_DISPLAY_H
|
|
|
|
#include <sys/cdefs.h>
|
|
|
|
#include <stddef.h>
|
|
#include <stdint.h>
|
|
|
|
__BEGIN_DECLS
|
|
|
|
struct dispmsg_string
|
|
{
|
|
size_t byte_size; // Including the terminating NUL-byte.
|
|
char* str;
|
|
};
|
|
|
|
struct dispmsg_crtc_mode
|
|
{
|
|
uint64_t driver_index;
|
|
uint64_t magic;
|
|
uint32_t control;
|
|
uint32_t fb_format;
|
|
uint32_t view_xres;
|
|
uint32_t view_yres;
|
|
uint64_t fb_location;
|
|
uint64_t pitch;
|
|
uint32_t surf_off_x;
|
|
uint32_t surf_off_y;
|
|
uint32_t start_x;
|
|
uint32_t start_y;
|
|
uint32_t end_x;
|
|
uint32_t end_y;
|
|
uint32_t desktop_height;
|
|
};
|
|
|
|
struct dispmsg_header
|
|
{
|
|
uint64_t msgid; // in
|
|
};
|
|
|
|
#define DISPMSG_ENUMERATE_DEVICES 0x00
|
|
struct dispmsg_enumerate_devices
|
|
{
|
|
uint64_t msgid; // in
|
|
size_t devices_length; // in, out
|
|
uint64_t* devices; // in, *out
|
|
};
|
|
|
|
#define DISPMSG_GET_DRIVER_COUNT 0x01
|
|
struct dispmsg_get_driver_count
|
|
{
|
|
uint64_t msgid; // in
|
|
uint64_t device; // in
|
|
uint64_t driver_count; // out
|
|
};
|
|
|
|
#define DISPMSG_GET_DRIVER_NAME 0x02
|
|
struct dispmsg_get_driver_name
|
|
{
|
|
uint64_t msgid; // in
|
|
uint64_t device; // in
|
|
uint64_t driver_index; // in
|
|
struct dispmsg_string name; // out
|
|
};
|
|
|
|
#define DISPMSG_GET_DRIVER 0x03
|
|
struct dispmsg_get_driver
|
|
{
|
|
uint64_t msgid; // in
|
|
uint64_t device; // in
|
|
uint64_t driver_index; // out
|
|
};
|
|
|
|
#define DISPMSG_SET_DRIVER 0x04
|
|
struct dispmsg_set_driver
|
|
{
|
|
uint64_t msgid; // in
|
|
uint64_t device; // in
|
|
uint64_t driver_index; // in
|
|
};
|
|
|
|
#define DISPMSG_SET_CRTC_MODE 0x05
|
|
struct dispmsg_set_crtc_mode
|
|
{
|
|
uint64_t msgid; // in
|
|
uint64_t device; // in
|
|
uint64_t connector; // in
|
|
struct dispmsg_crtc_mode mode; // in
|
|
};
|
|
|
|
#define DISPMSG_GET_CRTC_MODE 0x06
|
|
struct dispmsg_get_crtc_mode
|
|
{
|
|
uint64_t msgid; // in
|
|
uint64_t device; // in
|
|
uint64_t connector; // in
|
|
struct dispmsg_crtc_mode mode; // out
|
|
};
|
|
|
|
#define DISPMSG_GET_CRTC_MODES 0x07
|
|
struct dispmsg_get_crtc_modes
|
|
{
|
|
uint64_t msgid; // in
|
|
uint64_t device; // in
|
|
uint64_t connector; // in
|
|
size_t modes_length; // in, out
|
|
struct dispmsg_crtc_mode* modes; // in, *out
|
|
};
|
|
|
|
#define DISPMSG_GET_MEMORY_SIZE 0x08
|
|
struct dispmsg_get_memory_size
|
|
{
|
|
uint64_t msgid; // in
|
|
uint64_t device; // in
|
|
uint64_t memory_size; // out
|
|
};
|
|
|
|
#define DISPMSG_WRITE_MEMORY 0x09
|
|
struct dispmsg_write_memory
|
|
{
|
|
uint64_t msgid; // in
|
|
uint64_t device; // in
|
|
uint64_t offset; // in
|
|
size_t size; // in
|
|
uint8_t* src; // in, *in
|
|
};
|
|
|
|
#define DISPMSG_READ_MEMORY 0x0A
|
|
struct dispmsg_read_memory
|
|
{
|
|
uint64_t msgid; // in
|
|
uint64_t device; // in
|
|
uint64_t offset; // in
|
|
size_t size; // in
|
|
uint8_t* dst; // in, *out
|
|
};
|
|
|
|
__END_DECLS
|
|
|
|
#endif
|