radeon_drv.c 3.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126
  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");
  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 | DRIVER_IRQ_VBL2,
  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. .vblank_wait2 = radeon_driver_vblank_wait2,
  65. .dri_library_name = dri_library_name,
  66. .irq_preinstall = radeon_driver_irq_preinstall,
  67. .irq_postinstall = radeon_driver_irq_postinstall,
  68. .irq_uninstall = radeon_driver_irq_uninstall,
  69. .irq_handler = radeon_driver_irq_handler,
  70. .reclaim_buffers = drm_core_reclaim_buffers,
  71. .get_map_ofs = drm_core_get_map_ofs,
  72. .get_reg_ofs = drm_core_get_reg_ofs,
  73. .ioctls = radeon_ioctls,
  74. .dma_ioctl = radeon_cp_buffers,
  75. .fops = {
  76. .owner = THIS_MODULE,
  77. .open = drm_open,
  78. .release = drm_release,
  79. .ioctl = drm_ioctl,
  80. .mmap = drm_mmap,
  81. .poll = drm_poll,
  82. .fasync = drm_fasync,
  83. #ifdef CONFIG_COMPAT
  84. .compat_ioctl = radeon_compat_ioctl,
  85. #endif
  86. },
  87. .pci_driver = {
  88. .name = DRIVER_NAME,
  89. .id_table = pciidlist,
  90. },
  91. .name = DRIVER_NAME,
  92. .desc = DRIVER_DESC,
  93. .date = DRIVER_DATE,
  94. .major = DRIVER_MAJOR,
  95. .minor = DRIVER_MINOR,
  96. .patchlevel = DRIVER_PATCHLEVEL,
  97. };
  98. static int __init radeon_init(void)
  99. {
  100. driver.num_ioctls = radeon_max_ioctl;
  101. return drm_init(&driver);
  102. }
  103. static void __exit radeon_exit(void)
  104. {
  105. drm_exit(&driver);
  106. }
  107. module_init(radeon_init);
  108. module_exit(radeon_exit);
  109. MODULE_AUTHOR(DRIVER_AUTHOR);
  110. MODULE_DESCRIPTION(DRIVER_DESC);
  111. MODULE_LICENSE("GPL and additional rights");