Imported Upstream version 1.15.1
[deb_xorg-server.git] / hw / xfree86 / common / xf86platformBus.h
CommitLineData
a09e091a
JB
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 <airlied@redhat.com>
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};
34
35#ifdef XSERVER_PLATFORM_BUS
36int xf86platformProbe(void);
37int xf86platformProbeDev(DriverPtr drvp);
38
39extern int xf86_num_platform_devices;
40
41extern char *
42xf86_get_platform_attrib(int index, int attrib_id);
43extern int
44xf86_add_platform_device(struct OdevAttributes *attribs);
45extern int
46xf86_remove_platform_device(int dev_index);
47extern Bool
48xf86_add_platform_device_attrib(int index, int attrib_id, char *attrib_str);
49extern Bool
50xf86_get_platform_device_unowned(int index);
51
52extern int
53xf86platformAddDevice(int index);
54extern void
55xf86platformRemoveDevice(int index);
56
57extern _X_EXPORT char *
58xf86_get_platform_device_attrib(struct xf86_platform_device *device, int attrib_id);
59extern _X_EXPORT Bool
60xf86PlatformDeviceCheckBusID(struct xf86_platform_device *device, const char *busid);
61
62extern _X_EXPORT int
63xf86PlatformMatchDriver(char *matches[], int nmatches);
64
65extern void xf86platformVTProbe(void);
66#endif
67
68#endif