1 | /** @file $Id: vboxvideo_drm.h 44528 2013-02-04 14:27:54Z vboxsync $
|
---|
2 | *
|
---|
3 | * VirtualBox Additions Linux kernel driver, DRM support
|
---|
4 | */
|
---|
5 |
|
---|
6 | /*
|
---|
7 | * Copyright (C) 2006-2010 Oracle Corporation
|
---|
8 | *
|
---|
9 | * This file is part of VirtualBox Open Source Edition (OSE), as
|
---|
10 | * available from http://www.virtualbox.org. This file is free software;
|
---|
11 | * you can redistribute it and/or modify it under the terms of the GNU
|
---|
12 | * General Public License (GPL) as published by the Free Software
|
---|
13 | * Foundation, in version 2 as it comes in the "COPYING" file of the
|
---|
14 | * VirtualBox OSE distribution. VirtualBox OSE is distributed in the
|
---|
15 | * hope that it will be useful, but WITHOUT ANY WARRANTY of any kind.
|
---|
16 | * --------------------------------------------------------------------
|
---|
17 | *
|
---|
18 | * This code is based on:
|
---|
19 | *
|
---|
20 | * tdfx.h -- 3dfx DRM template customization -*- linux-c -*-
|
---|
21 | * Created: Wed Feb 14 12:32:32 2001 by [email protected]
|
---|
22 | *
|
---|
23 | * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
|
---|
24 | * All Rights Reserved.
|
---|
25 | *
|
---|
26 | * Permission is hereby granted, free of charge, to any person obtaining a
|
---|
27 | * copy of this software and associated documentation files (the "Software"),
|
---|
28 | * to deal in the Software without restriction, including without limitation
|
---|
29 | * the rights to use, copy, modify, merge, publish, distribute, sublicense,
|
---|
30 | * and/or sell copies of the Software, and to permit persons to whom the
|
---|
31 | * Software is furnished to do so, subject to the following conditions:
|
---|
32 | *
|
---|
33 | * The above copyright notice and this permission notice (including the next
|
---|
34 | * paragraph) shall be included in all copies or substantial portions of the
|
---|
35 | * Software.
|
---|
36 | *
|
---|
37 | * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
---|
38 | * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
---|
39 | * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
|
---|
40 | * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
|
---|
41 | * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
|
---|
42 | * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
|
---|
43 | * OTHER DEALINGS IN THE SOFTWARE.
|
---|
44 | *
|
---|
45 | * Authors:
|
---|
46 | * Gareth Hughes <[email protected]>
|
---|
47 | */
|
---|
48 |
|
---|
49 | #ifndef __VBOXVIDEO_H__
|
---|
50 | #define __VBOXVIDEO_H__
|
---|
51 |
|
---|
52 | /* General customization:
|
---|
53 | */
|
---|
54 |
|
---|
55 | #include "product-generated.h"
|
---|
56 |
|
---|
57 | #define DRIVER_AUTHOR VBOX_VENDOR
|
---|
58 |
|
---|
59 | #define DRIVER_NAME "vboxvideo"
|
---|
60 | #define DRIVER_DESC VBOX_PRODUCT " Graphics Card"
|
---|
61 | #define DRIVER_DATE "20090303"
|
---|
62 |
|
---|
63 | #define DRIVER_MAJOR 1
|
---|
64 | #define DRIVER_MINOR 0
|
---|
65 | #define DRIVER_PATCHLEVEL 0
|
---|
66 |
|
---|
67 | #define vboxvideo_PCI_IDS \
|
---|
68 | {0x80ee, 0xbeef, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0}, \
|
---|
69 | {0, 0, 0}
|
---|
70 |
|
---|
71 | #endif
|
---|