savage_drv.c 2.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889
  1. /* savage_drv.c -- Savage driver for Linux
  2. *
  3. * Copyright 2004 Felix Kuehling
  4. * All Rights Reserved.
  5. *
  6. * Permission is hereby granted, free of charge, to any person obtaining a
  7. * copy of this software and associated documentation files (the "Software"),
  8. * to deal in the Software without restriction, including without limitation
  9. * the rights to use, copy, modify, merge, publish, distribute, sub license,
  10. * and/or sell copies of the Software, and to permit persons to whom the
  11. * Software is furnished to do so, subject to the following conditions:
  12. *
  13. * The above copyright notice and this permission notice (including the
  14. * next paragraph) shall be included in all copies or substantial portions
  15. * of the Software.
  16. *
  17. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
  18. * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
  19. * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
  20. * NON-INFRINGEMENT. IN NO EVENT SHALL FELIX KUEHLING BE LIABLE FOR
  21. * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF
  22. * CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION
  23. * WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
  24. */
  25. #include <linux/module.h>
  26. #include "drmP.h"
  27. #include "savage_drm.h"
  28. #include "savage_drv.h"
  29. #include "drm_pciids.h"
  30. static struct pci_device_id pciidlist[] = {
  31. savage_PCI_IDS
  32. };
  33. static struct drm_driver driver = {
  34. .driver_features =
  35. DRIVER_USE_AGP | DRIVER_USE_MTRR | DRIVER_HAVE_DMA | DRIVER_PCI_DMA,
  36. .dev_priv_size = sizeof(drm_savage_buf_priv_t),
  37. .load = savage_driver_load,
  38. .firstopen = savage_driver_firstopen,
  39. .lastclose = savage_driver_lastclose,
  40. .unload = savage_driver_unload,
  41. .reclaim_buffers = savage_reclaim_buffers,
  42. .ioctls = savage_ioctls,
  43. .dma_ioctl = savage_bci_buffers,
  44. .fops = {
  45. .owner = THIS_MODULE,
  46. .open = drm_open,
  47. .release = drm_release,
  48. .unlocked_ioctl = drm_ioctl,
  49. .mmap = drm_mmap,
  50. .poll = drm_poll,
  51. .fasync = drm_fasync,
  52. .llseek = noop_llseek,
  53. },
  54. .name = DRIVER_NAME,
  55. .desc = DRIVER_DESC,
  56. .date = DRIVER_DATE,
  57. .major = DRIVER_MAJOR,
  58. .minor = DRIVER_MINOR,
  59. .patchlevel = DRIVER_PATCHLEVEL,
  60. };
  61. static struct pci_driver savage_pci_driver = {
  62. .name = DRIVER_NAME,
  63. .id_table = pciidlist,
  64. };
  65. static int __init savage_init(void)
  66. {
  67. driver.num_ioctls = savage_max_ioctl;
  68. return drm_pci_init(&driver, &savage_pci_driver);
  69. }
  70. static void __exit savage_exit(void)
  71. {
  72. drm_pci_exit(&driver, &savage_pci_driver);
  73. }
  74. module_init(savage_init);
  75. module_exit(savage_exit);
  76. MODULE_AUTHOR(DRIVER_AUTHOR);
  77. MODULE_DESCRIPTION(DRIVER_DESC);
  78. MODULE_LICENSE("GPL and additional rights");