| ofs | hex dump | ascii |
|---|
| 0000 | 00 00 04 69 00 00 09 79 00 00 00 00 00 00 02 61 00 00 00 00 00 00 0b 68 04 00 01 61 01 00 00 00 | ...i...y.......a.......h...a.... |
| 0020 | 01 00 00 00 01 00 00 00 01 00 00 00 01 00 00 00 04 00 01 78 20 7e 00 00 00 00 00 00 00 00 00 00 | ...................x.~.......... |
| 0040 | 00 00 00 00 20 7e 00 00 03 00 01 79 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 04 00 05 79 | .....~.....y...................y |
| 0060 | ff 05 08 2c 00 00 00 00 c0 4a 58 09 00 00 00 00 00 00 00 00 05 00 00 78 60 7d 00 00 00 00 00 00 | ...,.....JX............x`}...... |
| 0080 | 21 7d 00 00 80 7d 00 00 e0 7d 00 00 c0 7f 00 00 01 3f 00 60 40 20 21 05 62 00 00 18 00 00 01 60 | !}...}...}.......?.`@.!.b......` |
| 00a0 | 24 00 00 00 02 00 00 79 00 00 00 00 2b 01 2b 01 00 00 00 00 03 00 08 78 0c 00 00 00 00 00 00 00 | $......y....+.+........x........ |
| 00c0 | 00 00 00 00 00 00 00 00 01 00 09 78 00 00 40 04 00 00 13 11 00 01 02 60 01 00 00 00 04 18 00 7b | ...........x..@........`.......{ |
| 00e0 | 04 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 04 00 01 78 40 7b 00 00 00 00 00 00 | .......................x@{...... |
| 0100 | 00 00 00 00 00 00 00 00 40 7b 00 00 05 00 00 78 a0 7a 00 00 41 7a 00 00 61 7a 00 00 c0 7a 00 00 | ........@{.....x.z..Az..az...z.. |
| 0120 | 00 7b 00 00 c0 7c 00 00 01 3f 00 60 40 20 21 05 62 00 00 18 03 00 08 78 0c 00 00 00 00 00 00 00 | .{...|...?.`@.!.b......x........ |
| 0140 | 00 00 00 00 00 00 00 00 00 01 02 60 82 00 00 00 04 20 00 7b 52 00 00 00 00 00 00 00 01 00 00 00 | ...........`.......{R........... |
| 0160 | 00 00 00 00 00 00 00 00 05 00 00 78 a0 7a 00 00 21 7a 00 00 61 7a 00 00 c0 7a 00 00 00 7b 00 00 | ...........x.z..!z..az...z...{.. |
| 0180 | c0 7c 00 00 01 3f 00 60 40 20 21 05 62 00 00 18 00 01 02 60 82 00 00 00 04 1c 00 7b 50 00 00 00 | .|...?.`@.!.b......`.......{P... | </* nv_drv.c -- nv driver -*- linux-c -*-
* Created: Thu Oct 7 10:38:32 1999 by faith@precisioninsight.com
*
* Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
* Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
* Copyright 2005 Lars Knoll <lars@trolltech.com>
* All Rights Reserved.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice (including the next
* paragraph) shall be included in all copies or substantial portions of the
* Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE AUTHORS AND/OR THEIR SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
* DEALINGS IN THE SOFTWARE.
*
* Authors:
* Rickard E. (Rik) Faith <faith@valinux.com>
* Daryll Strauss <daryll@valinux.com>
* Gareth Hughes <gareth@valinux.com>
* Lars Knoll <lars@trolltech.com>
*/
#include "drmP.h"
#include "nv_drv.h"
#include "drm_pciids.h"
static struct pci_device_id pciidlist[] = {
nv_PCI_IDS
};
static int probe(struct pci_dev *pdev, const struct pci_device_id *ent);
static struct drm_driver driver = {
.driver_features = DRIVER_USE_MTRR | DRIVER_USE_AGP,
.reclaim_buffers = drm_core_reclaim_buffers,
.get_map_ofs = drm_core_get_map_ofs,
.get_reg_ofs = drm_core_get_reg_ofs,
.fops = {
.owner = THIS_MODULE,
.open = drm_open,
.release = drm_release,
.ioctl = drm_ioctl,
.mmap = drm_mmap,
.poll = drm_poll,
.fasync = drm_fasync,
},
.pci_driver = {
.name = DRIVER_NAME,
.id_table = pciidlist,
.probe = probe,
.remove = __devexit_p(drm_cleanup_pci),
},
.name = DRIVER_NAME,
.desc = DRIVER_DESC,
.date = DRIVER_DATE,
.major = DRIVER_MAJOR,
.minor = DRIVER_MINOR,
.patchlevel = DRIVER_PATCHLEVEL,
};
static int probe(struct pci_dev *pdev, const struct pci_device_id *ent)
{
return drm_get_dev(pdev, ent, &driver);
}
static int __init nv_init(void)
{
return drm_init(&driver, pciidlist);
}
static v 00 c0 7c 00 00 01 3f 00 60 40 20 21 05 62 00 00 18 00 01 02 60 02 05 00 00 04 1c 00 7b `v...|...?.`@.!.b......`.......{ |
| 0600 | 28 00 00 00 2a 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 05 00 00 78 20 76 00 00 81 75 00 00 | (...*..................x.v...u.. |
| 0620 | e1 75 00 00 40 76 00 00 60 76 00 00 c0 7c 00 00 01 3f 00 60 40 20 21 05 62 00 00 18 00 01 02 60 | .u..@v..`v...|...?.`@.!.b......` |
| 0640 | c2 05 00 00 04 20 00 7b 2a 00 00 00 52 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 05 00 00 78 | .......{*...R..................x |
| 0660 | 20 76 00 00 61 75 00 00 e1 75 00 00 40 76 00 00 60 76 00 00 c0 7c 00 00 00 00 00 00 00 00 00 00 | .v..au...u..@v..`v...|.......... |
| 0680 | 01 3f 00 60 40 20 21 05 62 00 00 18 00 01 02 60 c2 05 00 00 04 1c 00 7b 28 00 00 00 7c 00 00 00 | .?.`@.!.b......`.......{(...|... |
| 06a0 | 01 00 00 00 00 00 00 00 00 00 00 00 05 00 00 78 20 76 00 00 41 75 00 00 e1 75 00 00 40 76 00 00 | ...............x.v..Au...u..@v.. |
| 06c0 | 60 76 00 00 c0 7c 00 00 01 3f 00 60 40 20 21 05 62 00 00 18 00 01 02 60 c2 05 00 00 05 00 00 78 | `v...|...?.`@.!.b......`.......x |
| 06e0 | 20 75 00 00 41 75 00 00 e1 75 00 00 40 76 00 00 60 76 00 00 c0 7c 00 00 00 00 00 00 00 00 00 00 | .u..Au...u..@v..`v...|.......... |
| 0700 | 01 3f 00 60 40 20 21 05 62 00 00 18 03 00 08 78 18 00 00 00 b8 3b 00 00 00 00 00 00 00 00 00 00 | .?.`@.!.b......x.....;.......... |
| 0720 | 03 00 09 78 00 00 40 04 00 00 13 11 0c 00 40 04 04 00 13 11 00 01 02 60 82 06 00 00 04 20 00 7b | ...x..@.......@........`.......{ |
| 0740 | 52 00 00 00 00 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 05 00 00 78 20 75 00 00 00 00 00 00 | R......................x.u...... |
| 0760 | 81 74 00 00 c0 74 00 00 e0 74 00 00 c0 7c 00 00 01 3f 00 60 40 20 21 05 62 00 00 18 00 01 02 60 | .t...t...t...|...?.`@.!.b......` |
| 0780 | 82 06 00 00 04 14 00 7b 16 00 00 00 52 00 00 00 01 00 00 00 00 00 00 00 00 00 00 00 00 00 00 05 | .......{....R................... |