radeon_drv.c 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130
  1. /**
  2. * \file radeon_drv.c
  3. * ATI Radeon driver
  4. *
  5. * \author Gareth Hughes <gareth@valinux.com>
  6. */
  7. /*
  8. * Copyright 2000 VA Linux Systems, Inc., Sunnyvale, California.
  9. * All Rights Reserved.
  10. *
  11. * Permission is hereby granted, free of charge, to any person obtaining a
  12. * copy of this software and associated documentation files (the "Software"),
  13. * to deal in the Software without restriction, including without limitation
  14. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  15. * and/or sell copies of the Software, and to permit persons to whom the
  16. * Software is furnished to do so, subject to the following conditions:
  17. *
  18. * The above copyright notice and this permission notice (including the next
  19. * paragraph) shall be included in all copies or substantial portions of the
  20. * Software.
  21. *
  22. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  23. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  24. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  25. * VA LINUX SYSTEMS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
  26. * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  27. * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
  28. * OTHER DEALINGS IN THE SOFTWARE.
  29. */
  30. #include <linux/config.h>
  31. #include "drmP.h"
  32. #include "drm.h"
  33. #include "radeon_drm.h"
  34. #include "radeon_drv.h"
  35. #include "drm_pciids.h"
  36. static int postinit( struct drm_device *dev, unsigned long flags )
  37. {
  38. DRM_INFO( "Initialized %s %d.%d.%d %s on minor %d: %s\n",
  39. DRIVER_NAME,
  40. DRIVER_MAJOR,
  41. DRIVER_MINOR,
  42. DRIVER_PATCHLEVEL,
  43. DRIVER_DATE,
  44. dev->primary.minor,
  45. pci_pretty_name(dev->pdev)
  46. );
  47. return 0;
  48. }
  49. static int version( drm_version_t *version )
  50. {
  51. int len;
  52. version->version_major = DRIVER_MAJOR;
  53. version->version_minor = DRIVER_MINOR;
  54. version->version_patchlevel = DRIVER_PATCHLEVEL;
  55. DRM_COPY( version->name, DRIVER_NAME );
  56. DRM_COPY( version->date, DRIVER_DATE );
  57. DRM_COPY( version->desc, DRIVER_DESC );
  58. return 0;
  59. }
  60. static struct pci_device_id pciidlist[] = {
  61. radeon_PCI_IDS
  62. };
  63. extern drm_ioctl_desc_t radeon_ioctls[];
  64. extern int radeon_max_ioctl;
  65. static struct drm_driver driver = {
  66. .driver_features = DRIVER_USE_AGP | DRIVER_USE_MTRR | DRIVER_PCI_DMA | DRIVER_SG | DRIVER_HAVE_IRQ | DRIVER_HAVE_DMA | DRIVER_IRQ_SHARED | DRIVER_IRQ_VBL,
  67. .dev_priv_size = sizeof(drm_radeon_buf_priv_t),
  68. .preinit = radeon_driver_preinit,
  69. .postcleanup = radeon_driver_postcleanup,
  70. .prerelease = radeon_driver_prerelease,
  71. .pretakedown = radeon_driver_pretakedown,
  72. .open_helper = radeon_driver_open_helper,
  73. .vblank_wait = radeon_driver_vblank_wait,
  74. .irq_preinstall = radeon_driver_irq_preinstall,
  75. .irq_postinstall = radeon_driver_irq_postinstall,
  76. .irq_uninstall = radeon_driver_irq_uninstall,
  77. .irq_handler = radeon_driver_irq_handler,
  78. .free_filp_priv = radeon_driver_free_filp_priv,
  79. .reclaim_buffers = drm_core_reclaim_buffers,
  80. .get_map_ofs = drm_core_get_map_ofs,
  81. .get_reg_ofs = drm_core_get_reg_ofs,
  82. .postinit = postinit,
  83. .version = version,
  84. .ioctls = radeon_ioctls,
  85. .dma_ioctl = radeon_cp_buffers,
  86. .fops = {
  87. .owner = THIS_MODULE,
  88. .open = drm_open,
  89. .release = drm_release,
  90. .ioctl = drm_ioctl,
  91. .mmap = drm_mmap,
  92. .poll = drm_poll,
  93. .fasync = drm_fasync,
  94. #ifdef CONFIG_COMPAT
  95. .compat_ioctl = radeon_compat_ioctl,
  96. #endif
  97. },
  98. .pci_driver = {
  99. .name = DRIVER_NAME,
  100. .id_table = pciidlist,
  101. }
  102. };
  103. static int __init radeon_init(void)
  104. {
  105. driver.num_ioctls = radeon_max_ioctl;
  106. return drm_init(&driver);
  107. }
  108. static void __exit radeon_exit(void)
  109. {
  110. drm_exit(&driver);
  111. }
  112. module_init(radeon_init);
  113. module_exit(radeon_exit);
  114. MODULE_AUTHOR( DRIVER_AUTHOR );
  115. MODULE_DESCRIPTION( DRIVER_DESC );
  116. MODULE_LICENSE("GPL and additional rights");