65fea56f17cd614bc8908264df980a62e1931468vboxsync/*
65fea56f17cd614bc8908264df980a62e1931468vboxsync * Copyright © 2006-2007 Daniel Stone
65fea56f17cd614bc8908264df980a62e1931468vboxsync *
65fea56f17cd614bc8908264df980a62e1931468vboxsync * Permission is hereby granted, free of charge, to any person obtaining a
65fea56f17cd614bc8908264df980a62e1931468vboxsync * copy of this software and associated documentation files (the "Software"),
65fea56f17cd614bc8908264df980a62e1931468vboxsync * to deal in the Software without restriction, including without limitation
65fea56f17cd614bc8908264df980a62e1931468vboxsync * the rights to use, copy, modify, merge, publish, distribute, sublicense,
65fea56f17cd614bc8908264df980a62e1931468vboxsync * and/or sell copies of the Software, and to permit persons to whom the
65fea56f17cd614bc8908264df980a62e1931468vboxsync * Software is furnished to do so, subject to the following conditions:
65fea56f17cd614bc8908264df980a62e1931468vboxsync *
65fea56f17cd614bc8908264df980a62e1931468vboxsync * The above copyright notice and this permission notice (including the next
65fea56f17cd614bc8908264df980a62e1931468vboxsync * paragraph) shall be included in all copies or substantial portions of the
65fea56f17cd614bc8908264df980a62e1931468vboxsync * Software.
65fea56f17cd614bc8908264df980a62e1931468vboxsync *
65fea56f17cd614bc8908264df980a62e1931468vboxsync * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
65fea56f17cd614bc8908264df980a62e1931468vboxsync * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
65fea56f17cd614bc8908264df980a62e1931468vboxsync * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
65fea56f17cd614bc8908264df980a62e1931468vboxsync * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
65fea56f17cd614bc8908264df980a62e1931468vboxsync * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
65fea56f17cd614bc8908264df980a62e1931468vboxsync * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
65fea56f17cd614bc8908264df980a62e1931468vboxsync * DEALINGS IN THE SOFTWARE.
65fea56f17cd614bc8908264df980a62e1931468vboxsync *
65fea56f17cd614bc8908264df980a62e1931468vboxsync * Author: Daniel Stone <daniel@fooishbar.org>
65fea56f17cd614bc8908264df980a62e1931468vboxsync */
65fea56f17cd614bc8908264df980a62e1931468vboxsync
65fea56f17cd614bc8908264df980a62e1931468vboxsync#ifndef HOTPLUG_H
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define HOTPLUG_H
65fea56f17cd614bc8908264df980a62e1931468vboxsync
65fea56f17cd614bc8908264df980a62e1931468vboxsync#include "list.h"
65fea56f17cd614bc8908264df980a62e1931468vboxsync
65fea56f17cd614bc8908264df980a62e1931468vboxsyncextern _X_EXPORT void config_pre_init(void);
65fea56f17cd614bc8908264df980a62e1931468vboxsyncextern _X_EXPORT void config_init(void);
65fea56f17cd614bc8908264df980a62e1931468vboxsyncextern _X_EXPORT void config_fini(void);
65fea56f17cd614bc8908264df980a62e1931468vboxsync
65fea56f17cd614bc8908264df980a62e1931468vboxsyncstruct OdevAttribute {
65fea56f17cd614bc8908264df980a62e1931468vboxsync struct xorg_list member;
65fea56f17cd614bc8908264df980a62e1931468vboxsync int attrib_id;
65fea56f17cd614bc8908264df980a62e1931468vboxsync char *attrib_name;
65fea56f17cd614bc8908264df980a62e1931468vboxsync};
65fea56f17cd614bc8908264df980a62e1931468vboxsync
65fea56f17cd614bc8908264df980a62e1931468vboxsyncstruct OdevAttributes {
65fea56f17cd614bc8908264df980a62e1931468vboxsync struct xorg_list list;
65fea56f17cd614bc8908264df980a62e1931468vboxsync Bool unowned;
65fea56f17cd614bc8908264df980a62e1931468vboxsync};
65fea56f17cd614bc8908264df980a62e1931468vboxsync
65fea56f17cd614bc8908264df980a62e1931468vboxsyncstruct OdevAttributes *
65fea56f17cd614bc8908264df980a62e1931468vboxsyncconfig_odev_allocate_attribute_list(void);
65fea56f17cd614bc8908264df980a62e1931468vboxsync
65fea56f17cd614bc8908264df980a62e1931468vboxsyncvoid
65fea56f17cd614bc8908264df980a62e1931468vboxsyncconfig_odev_free_attribute_list(struct OdevAttributes *attribs);
65fea56f17cd614bc8908264df980a62e1931468vboxsync
65fea56f17cd614bc8908264df980a62e1931468vboxsyncBool
65fea56f17cd614bc8908264df980a62e1931468vboxsyncconfig_odev_add_attribute(struct OdevAttributes *attribs, int attrib,
65fea56f17cd614bc8908264df980a62e1931468vboxsync const char *attrib_name);
65fea56f17cd614bc8908264df980a62e1931468vboxsync
65fea56f17cd614bc8908264df980a62e1931468vboxsyncvoid
65fea56f17cd614bc8908264df980a62e1931468vboxsyncconfig_odev_free_attributes(struct OdevAttributes *attribs);
65fea56f17cd614bc8908264df980a62e1931468vboxsync
65fea56f17cd614bc8908264df980a62e1931468vboxsync/* path to kernel device node - Linux e.g. /dev/dri/card0 */
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define ODEV_ATTRIB_PATH 1
65fea56f17cd614bc8908264df980a62e1931468vboxsync/* system device path - Linux e.g. /sys/devices/pci0000:00/0000:00:01.0/0000:01:00.0/drm/card1 */
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define ODEV_ATTRIB_SYSPATH 2
65fea56f17cd614bc8908264df980a62e1931468vboxsync/* DRI-style bus id */
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define ODEV_ATTRIB_BUSID 3
65fea56f17cd614bc8908264df980a62e1931468vboxsync
65fea56f17cd614bc8908264df980a62e1931468vboxsynctypedef void (*config_odev_probe_proc_ptr)(struct OdevAttributes *attribs);
65fea56f17cd614bc8908264df980a62e1931468vboxsyncvoid config_odev_probe(config_odev_probe_proc_ptr probe_callback);
65fea56f17cd614bc8908264df980a62e1931468vboxsync
65fea56f17cd614bc8908264df980a62e1931468vboxsync#ifdef CONFIG_UDEV_KMS
65fea56f17cd614bc8908264df980a62e1931468vboxsyncvoid NewGPUDeviceRequest(struct OdevAttributes *attribs);
65fea56f17cd614bc8908264df980a62e1931468vboxsyncvoid DeleteGPUDeviceRequest(struct OdevAttributes *attribs);
65fea56f17cd614bc8908264df980a62e1931468vboxsync#endif
65fea56f17cd614bc8908264df980a62e1931468vboxsync
65fea56f17cd614bc8908264df980a62e1931468vboxsync#define ServerIsNotSeat0() (SeatId && strcmp(SeatId, "seat0"))
65fea56f17cd614bc8908264df980a62e1931468vboxsync#endif /* HOTPLUG_H */