VirtualBox

source: vbox/trunk/src/VBox/Additions/x11/x11include/xorg-server-1.16.0/xf86platformBus.h@ 99743

Last change on this file since 99743 was 52145, checked in by vboxsync, 10 years ago

Additions/x11/x11include: add header files for X.Org Server 1.16.

  • Property svn:eol-style set to native
File size: 2.8 KB
Line 
1/*
2 * Copyright © 2012 Red Hat.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20 * DEALINGS IN THE SOFTWARE.
21 *
22 * Author: Dave Airlie <[email protected]>
23 */
24#ifndef XF86_PLATFORM_BUS_H
25#define XF86_PLATFORM_BUS_H
26
27#include "hotplug.h"
28
29struct xf86_platform_device {
30 struct OdevAttributes *attribs;
31 /* for PCI devices */
32 struct pci_device *pdev;
33 int flags;
34};
35
36/* xf86_platform_device flags */
37#define XF86_PDEV_UNOWNED 0x01
38#define XF86_PDEV_SERVER_FD 0x02
39#define XF86_PDEV_PAUSED 0x04
40
41#ifdef XSERVER_PLATFORM_BUS
42int xf86platformProbe(void);
43int xf86platformProbeDev(DriverPtr drvp);
44
45extern int xf86_num_platform_devices;
46extern struct xf86_platform_device *xf86_platform_devices;
47
48extern char *
49xf86_get_platform_attrib(int index, int attrib_id);
50extern int
51xf86_get_platform_int_attrib(int index, int attrib_id, int def);
52extern int
53xf86_add_platform_device(struct OdevAttributes *attribs, Bool unowned);
54extern int
55xf86_remove_platform_device(int dev_index);
56extern Bool
57xf86_get_platform_device_unowned(int index);
58/* Note starting with xserver 1.16 these 2 functions never fail */
59extern Bool
60xf86_add_platform_device_attrib(int index, int attrib_id, char *attrib_str);
61extern Bool
62xf86_add_platform_device_int_attrib(int index, int attrib_id, int attrib_value);
63
64extern int
65xf86platformAddDevice(int index);
66extern void
67xf86platformRemoveDevice(int index);
68
69extern _X_EXPORT char *
70xf86_get_platform_device_attrib(struct xf86_platform_device *device, int attrib_id);
71extern _X_EXPORT int
72xf86_get_platform_device_int_attrib(struct xf86_platform_device *device, int attrib_id, int def);
73extern _X_EXPORT Bool
74xf86PlatformDeviceCheckBusID(struct xf86_platform_device *device, const char *busid);
75
76extern _X_EXPORT int
77xf86PlatformMatchDriver(char *matches[], int nmatches);
78
79extern void xf86platformVTProbe(void);
80#endif
81
82#endif
Note: See TracBrowser for help on using the repository browser.

© 2024 Oracle Support Privacy / Do Not Sell My Info Terms of Use Trademark Policy Automated Access Etiquette