e6c59cd5c0
This update brings few features: o Support for the setmaster/dropmaster ioctls. For instance, they are used to run multiple X servers simultaneously. o Support for minor devices. The only user-visible change is a new entry in /dev/dri but it is useless at the moment. This is a first step to support render nodes [1]. The main benefit is to greatly reduce the diff with Linux (at the expense of an unreadable commit diff). Hopefully, next upgrades will be easier. No updates were made to the drivers, beside adapting them to API changes. [1] https://en.wikipedia.org/wiki/Direct_Rendering_Manager#Render_nodes Tested by: Many people MFC after: 1 month Relnotes: yes
14 lines
397 B
C
14 lines
397 B
C
|
|
#include <sys/cdefs.h>
|
|
__FBSDID("$FreeBSD$");
|
|
|
|
#ifndef __RADEON_IRQ_KMS_H__
|
|
#define __RADEON_IRQ_KMS_H__
|
|
|
|
irqreturn_t radeon_driver_irq_handler_kms(DRM_IRQ_ARGS);
|
|
void radeon_driver_irq_preinstall_kms(struct drm_device *dev);
|
|
int radeon_driver_irq_postinstall_kms(struct drm_device *dev);
|
|
void radeon_driver_irq_uninstall_kms(struct drm_device *dev);
|
|
|
|
#endif /* !defined(__RADEON_IRQ_KMS_H__) */
|