savage_drv.c 3.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  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/config.h>
  26. #include "drmP.h"
  27. #include "savage_drm.h"
  28. #include "savage_drv.h"
  29. #include "drm_pciids.h"
  30. static int postinit(struct drm_device *dev, unsigned long flags)
  31. {
  32. DRM_INFO("Initialized %s %d.%d.%d %s on minor %d: %s\n",
  33. DRIVER_NAME,
  34. DRIVER_MAJOR,
  35. DRIVER_MINOR,
  36. DRIVER_PATCHLEVEL,
  37. DRIVER_DATE, dev->primary.minor, pci_pretty_name(dev->pdev)
  38. );
  39. return 0;
  40. }
  41. static int version(drm_version_t * version)
  42. {
  43. int len;
  44. version->version_major = DRIVER_MAJOR;
  45. version->version_minor = DRIVER_MINOR;
  46. version->version_patchlevel = DRIVER_PATCHLEVEL;
  47. DRM_COPY(version->name, DRIVER_NAME);
  48. DRM_COPY(version->date, DRIVER_DATE);
  49. DRM_COPY(version->desc, DRIVER_DESC);
  50. return 0;
  51. }
  52. static struct pci_device_id pciidlist[] = {
  53. savage_PCI_IDS
  54. };
  55. extern drm_ioctl_desc_t savage_ioctls[];
  56. extern int savage_max_ioctl;
  57. static struct drm_driver driver = {
  58. .driver_features =
  59. DRIVER_USE_AGP | DRIVER_USE_MTRR | DRIVER_HAVE_DMA | DRIVER_PCI_DMA,
  60. .dev_priv_size = sizeof(drm_savage_buf_priv_t),
  61. .preinit = savage_preinit,
  62. .postinit = postinit,
  63. .postcleanup = savage_postcleanup,
  64. .reclaim_buffers = savage_reclaim_buffers,
  65. .get_map_ofs = drm_core_get_map_ofs,
  66. .get_reg_ofs = drm_core_get_reg_ofs,
  67. .version = version,
  68. .ioctls = savage_ioctls,
  69. .dma_ioctl = savage_bci_buffers,
  70. .fops = {
  71. .owner = THIS_MODULE,
  72. .open = drm_open,
  73. .release = drm_release,
  74. .ioctl = drm_ioctl,
  75. .mmap = drm_mmap,
  76. .poll = drm_poll,
  77. .fasync = drm_fasync,
  78. }
  79. ,
  80. .pci_driver = {
  81. .name = DRIVER_NAME,
  82. .id_table = pciidlist,
  83. }
  84. };
  85. static int __init savage_init(void)
  86. {
  87. driver.num_ioctls = savage_max_ioctl;
  88. return drm_init(&driver);
  89. }
  90. static void __exit savage_exit(void)
  91. {
  92. drm_exit(&driver);
  93. }
  94. module_init(savage_init);
  95. module_exit(savage_exit);
  96. MODULE_AUTHOR(DRIVER_AUTHOR);
  97. MODULE_DESCRIPTION(DRIVER_DESC);
  98. MODULE_LICENSE("GPL and additional rights");