radeon_drv.c 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  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 "drmP.h"
  31. #include "drm.h"
  32. #include "radeon_drm.h"
  33. #include "radeon_drv.h"
  34. #include "drm_pciids.h"
  35. int radeon_no_wb;
  36. MODULE_PARM_DESC(no_wb, "Disable AGP writeback for scratch registers\n");
  37. module_param_named(no_wb, radeon_no_wb, int, 0444);
  38. static int dri_library_name(struct drm_device *dev, char *buf)
  39. {
  40. drm_radeon_private_t *dev_priv = dev->dev_private;
  41. int family = dev_priv->flags & RADEON_FAMILY_MASK;
  42. return snprintf(buf, PAGE_SIZE, "%s\n",
  43. (family < CHIP_R200) ? "radeon" :
  44. ((family < CHIP_R300) ? "r200" :
  45. "r300"));
  46. }
  47. static struct pci_device_id pciidlist[] = {
  48. radeon_PCI_IDS
  49. };
  50. static struct drm_driver driver = {
  51. .driver_features =
  52. DRIVER_USE_AGP | DRIVER_USE_MTRR | DRIVER_PCI_DMA | DRIVER_SG |
  53. DRIVER_HAVE_IRQ | DRIVER_HAVE_DMA | DRIVER_IRQ_SHARED |
  54. DRIVER_IRQ_VBL,
  55. .dev_priv_size = sizeof(drm_radeon_buf_priv_t),
  56. .load = radeon_driver_load,
  57. .firstopen = radeon_driver_firstopen,
  58. .open = radeon_driver_open,
  59. .preclose = radeon_driver_preclose,
  60. .postclose = radeon_driver_postclose,
  61. .lastclose = radeon_driver_lastclose,
  62. .unload = radeon_driver_unload,
  63. .vblank_wait = radeon_driver_vblank_wait,
  64. .dri_library_name = dri_library_name,
  65. .irq_preinstall = radeon_driver_irq_preinstall,
  66. .irq_postinstall = radeon_driver_irq_postinstall,
  67. .irq_uninstall = radeon_driver_irq_uninstall,
  68. .irq_handler = radeon_driver_irq_handler,
  69. .reclaim_buffers = drm_core_reclaim_buffers,
  70. .get_map_ofs = drm_core_get_map_ofs,
  71. .get_reg_ofs = drm_core_get_reg_ofs,
  72. .ioctls = radeon_ioctls,
  73. .dma_ioctl = radeon_cp_buffers,
  74. .fops = {
  75. .owner = THIS_MODULE,
  76. .open = drm_open,
  77. .release = drm_release,
  78. .ioctl = drm_ioctl,
  79. .mmap = drm_mmap,
  80. .poll = drm_poll,
  81. .fasync = drm_fasync,
  82. #ifdef CONFIG_COMPAT
  83. .compat_ioctl = radeon_compat_ioctl,
  84. #endif
  85. },
  86. .pci_driver = {
  87. .name = DRIVER_NAME,
  88. .id_table = pciidlist,
  89. },
  90. .name = DRIVER_NAME,
  91. .desc = DRIVER_DESC,
  92. .date = DRIVER_DATE,
  93. .major = DRIVER_MAJOR,
  94. .minor = DRIVER_MINOR,
  95. .patchlevel = DRIVER_PATCHLEVEL,
  96. };
  97. static int __init radeon_init(void)
  98. {
  99. driver.num_ioctls = radeon_max_ioctl;
  100. return drm_init(&driver);
  101. }
  102. static void __exit radeon_exit(void)
  103. {
  104. drm_exit(&driver);
  105. }
  106. module_init(radeon_init);
  107. module_exit(radeon_exit);
  108. MODULE_AUTHOR(DRIVER_AUTHOR);
  109. MODULE_DESCRIPTION(DRIVER_DESC);
  110. MODULE_LICENSE("GPL and additional rights");