mirror of
https://gitlab.freedesktop.org/mesa/drm.git
synced 2026-05-07 11:08:05 +02:00
start some of the OS dependencies
This commit is contained in:
parent
9a00b5e3fc
commit
96fc334b6f
8 changed files with 176 additions and 82 deletions
27
bsd-core/drm_os_freebsd.h
Normal file
27
bsd-core/drm_os_freebsd.h
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
#include <sys/param.h>
|
||||
#include <sys/queue.h>
|
||||
#include <sys/malloc.h>
|
||||
#include <sys/kernel.h>
|
||||
#include <sys/module.h>
|
||||
#include <sys/systm.h>
|
||||
#include <sys/conf.h>
|
||||
#include <sys/stat.h>
|
||||
#include <sys/proc.h>
|
||||
#include <sys/lock.h>
|
||||
#include <sys/fcntl.h>
|
||||
#include <sys/uio.h>
|
||||
#include <sys/filio.h>
|
||||
#include <sys/sysctl.h>
|
||||
#include <sys/select.h>
|
||||
#include <sys/bus.h>
|
||||
#if __FreeBSD_version >= 400005
|
||||
#include <sys/taskqueue.h>
|
||||
#endif
|
||||
|
||||
#if __FreeBSD_version >= 400006
|
||||
#define DRM_AGP
|
||||
#endif
|
||||
|
||||
#ifdef DRM_AGP
|
||||
#include <pci/agpvar.h>
|
||||
#endif
|
||||
27
bsd/drm_os_freebsd.h
Normal file
27
bsd/drm_os_freebsd.h
Normal file
|
|
@ -0,0 +1,27 @@
|
|||
#include <sys/param.h>
|
||||
#include <sys/queue.h>
|
||||
#include <sys/malloc.h>
|
||||
#include <sys/kernel.h>
|
||||
#include <sys/module.h>
|
||||
#include <sys/systm.h>
|
||||
#include <sys/conf.h>
|
||||
#include <sys/stat.h>
|
||||
#include <sys/proc.h>
|
||||
#include <sys/lock.h>
|
||||
#include <sys/fcntl.h>
|
||||
#include <sys/uio.h>
|
||||
#include <sys/filio.h>
|
||||
#include <sys/sysctl.h>
|
||||
#include <sys/select.h>
|
||||
#include <sys/bus.h>
|
||||
#if __FreeBSD_version >= 400005
|
||||
#include <sys/taskqueue.h>
|
||||
#endif
|
||||
|
||||
#if __FreeBSD_version >= 400006
|
||||
#define DRM_AGP
|
||||
#endif
|
||||
|
||||
#ifdef DRM_AGP
|
||||
#include <pci/agpvar.h>
|
||||
#endif
|
||||
|
|
@ -32,48 +32,17 @@
|
|||
#ifndef _DRM_P_H_
|
||||
#define _DRM_P_H_
|
||||
|
||||
#ifdef __KERNEL__
|
||||
#ifdef __alpha__
|
||||
/* add include of current.h so that "current" is defined
|
||||
* before static inline funcs in wait.h. Doing this so we
|
||||
* can build the DRM (part of PI DRI). 4/21/2000 S + B */
|
||||
#include <asm/current.h>
|
||||
#endif /* __alpha__ */
|
||||
#include <linux/config.h>
|
||||
#include <linux/module.h>
|
||||
#include <linux/kernel.h>
|
||||
#include <linux/miscdevice.h>
|
||||
#include <linux/fs.h>
|
||||
#include <linux/proc_fs.h>
|
||||
#include <linux/init.h>
|
||||
#include <linux/file.h>
|
||||
#include <linux/pci.h>
|
||||
#include <linux/wrapper.h>
|
||||
#include <linux/version.h>
|
||||
#include <linux/sched.h>
|
||||
#include <linux/smp_lock.h> /* For (un)lock_kernel */
|
||||
#include <linux/mm.h>
|
||||
#if defined(__alpha__) || defined(__powerpc__)
|
||||
#include <asm/pgtable.h> /* For pte_wrprotect */
|
||||
#if defined(_KERNEL) || defined(__KERNEL__)
|
||||
|
||||
/* There's undoubtably more of this file to into these OS dependent ones.
|
||||
#ifdef __linux__
|
||||
#include "drm_os_linux.h"
|
||||
#endif
|
||||
#include <asm/io.h>
|
||||
#include <asm/mman.h>
|
||||
#include <asm/uaccess.h>
|
||||
#ifdef CONFIG_MTRR
|
||||
#include <asm/mtrr.h>
|
||||
|
||||
#ifdef __FreeBSD__
|
||||
#include "drm_os_freebsd.h"
|
||||
#endif
|
||||
#if defined(CONFIG_AGP) || defined(CONFIG_AGP_MODULE)
|
||||
#include <linux/types.h>
|
||||
#include <linux/agp_backend.h>
|
||||
#endif
|
||||
#if LINUX_VERSION_CODE >= 0x020100 /* KERNEL_VERSION(2,1,0) */
|
||||
#include <linux/tqueue.h>
|
||||
#include <linux/poll.h>
|
||||
#endif
|
||||
#if LINUX_VERSION_CODE < 0x020400
|
||||
#include "compat-pre24.h"
|
||||
#endif
|
||||
#include <asm/pgalloc.h>
|
||||
|
||||
#include "drm.h"
|
||||
|
||||
/* DRM template customization defaults
|
||||
|
|
|
|||
41
linux-core/drm_os_linux.h
Normal file
41
linux-core/drm_os_linux.h
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
#ifdef __alpha__
|
||||
/* add include of current.h so that "current" is defined
|
||||
* before static inline funcs in wait.h. Doing this so we
|
||||
* can build the DRM (part of PI DRI). 4/21/2000 S + B */
|
||||
#include <asm/current.h>
|
||||
#endif /* __alpha__ */
|
||||
#include <linux/config.h>
|
||||
#include <linux/module.h>
|
||||
#include <linux/kernel.h>
|
||||
#include <linux/miscdevice.h>
|
||||
#include <linux/fs.h>
|
||||
#include <linux/proc_fs.h>
|
||||
#include <linux/init.h>
|
||||
#include <linux/file.h>
|
||||
#include <linux/pci.h>
|
||||
#include <linux/wrapper.h>
|
||||
#include <linux/version.h>
|
||||
#include <linux/sched.h>
|
||||
#include <linux/smp_lock.h> /* For (un)lock_kernel */
|
||||
#include <linux/mm.h>
|
||||
#if defined(__alpha__) || defined(__powerpc__)
|
||||
#include <asm/pgtable.h> /* For pte_wrprotect */
|
||||
#endif
|
||||
#include <asm/io.h>
|
||||
#include <asm/mman.h>
|
||||
#include <asm/uaccess.h>
|
||||
#ifdef CONFIG_MTRR
|
||||
#include <asm/mtrr.h>
|
||||
#endif
|
||||
#if defined(CONFIG_AGP) || defined(CONFIG_AGP_MODULE)
|
||||
#include <linux/types.h>
|
||||
#include <linux/agp_backend.h>
|
||||
#endif
|
||||
#if LINUX_VERSION_CODE >= 0x020100 /* KERNEL_VERSION(2,1,0) */
|
||||
#include <linux/tqueue.h>
|
||||
#include <linux/poll.h>
|
||||
#endif
|
||||
#if LINUX_VERSION_CODE < 0x020400
|
||||
#include "compat-pre24.h"
|
||||
#endif
|
||||
#include <asm/pgalloc.h>
|
||||
|
|
@ -30,9 +30,19 @@
|
|||
* Gareth Hughes <gareth@valinux.com>
|
||||
*/
|
||||
|
||||
#ifdef __linux__
|
||||
#include <linux/config.h>
|
||||
#endif
|
||||
|
||||
#ifdef __FreeBSD__
|
||||
#include <sys/types.h>
|
||||
#include <sys/bus.h>
|
||||
#include <pci/pcivar.h>
|
||||
#include <opt_drm_linux.h>
|
||||
#endif
|
||||
|
||||
#include "tdfx.h"
|
||||
#include "drmP.h"
|
||||
#include "drmP.h
|
||||
|
||||
#define DRIVER_AUTHOR "VA Linux Systems Inc."
|
||||
|
||||
|
|
|
|||
49
linux/drmP.h
49
linux/drmP.h
|
|
@ -32,48 +32,17 @@
|
|||
#ifndef _DRM_P_H_
|
||||
#define _DRM_P_H_
|
||||
|
||||
#ifdef __KERNEL__
|
||||
#ifdef __alpha__
|
||||
/* add include of current.h so that "current" is defined
|
||||
* before static inline funcs in wait.h. Doing this so we
|
||||
* can build the DRM (part of PI DRI). 4/21/2000 S + B */
|
||||
#include <asm/current.h>
|
||||
#endif /* __alpha__ */
|
||||
#include <linux/config.h>
|
||||
#include <linux/module.h>
|
||||
#include <linux/kernel.h>
|
||||
#include <linux/miscdevice.h>
|
||||
#include <linux/fs.h>
|
||||
#include <linux/proc_fs.h>
|
||||
#include <linux/init.h>
|
||||
#include <linux/file.h>
|
||||
#include <linux/pci.h>
|
||||
#include <linux/wrapper.h>
|
||||
#include <linux/version.h>
|
||||
#include <linux/sched.h>
|
||||
#include <linux/smp_lock.h> /* For (un)lock_kernel */
|
||||
#include <linux/mm.h>
|
||||
#if defined(__alpha__) || defined(__powerpc__)
|
||||
#include <asm/pgtable.h> /* For pte_wrprotect */
|
||||
#if defined(_KERNEL) || defined(__KERNEL__)
|
||||
|
||||
/* There's undoubtably more of this file to into these OS dependent ones.
|
||||
#ifdef __linux__
|
||||
#include "drm_os_linux.h"
|
||||
#endif
|
||||
#include <asm/io.h>
|
||||
#include <asm/mman.h>
|
||||
#include <asm/uaccess.h>
|
||||
#ifdef CONFIG_MTRR
|
||||
#include <asm/mtrr.h>
|
||||
|
||||
#ifdef __FreeBSD__
|
||||
#include "drm_os_freebsd.h"
|
||||
#endif
|
||||
#if defined(CONFIG_AGP) || defined(CONFIG_AGP_MODULE)
|
||||
#include <linux/types.h>
|
||||
#include <linux/agp_backend.h>
|
||||
#endif
|
||||
#if LINUX_VERSION_CODE >= 0x020100 /* KERNEL_VERSION(2,1,0) */
|
||||
#include <linux/tqueue.h>
|
||||
#include <linux/poll.h>
|
||||
#endif
|
||||
#if LINUX_VERSION_CODE < 0x020400
|
||||
#include "compat-pre24.h"
|
||||
#endif
|
||||
#include <asm/pgalloc.h>
|
||||
|
||||
#include "drm.h"
|
||||
|
||||
/* DRM template customization defaults
|
||||
|
|
|
|||
41
linux/drm_os_linux.h
Normal file
41
linux/drm_os_linux.h
Normal file
|
|
@ -0,0 +1,41 @@
|
|||
#ifdef __alpha__
|
||||
/* add include of current.h so that "current" is defined
|
||||
* before static inline funcs in wait.h. Doing this so we
|
||||
* can build the DRM (part of PI DRI). 4/21/2000 S + B */
|
||||
#include <asm/current.h>
|
||||
#endif /* __alpha__ */
|
||||
#include <linux/config.h>
|
||||
#include <linux/module.h>
|
||||
#include <linux/kernel.h>
|
||||
#include <linux/miscdevice.h>
|
||||
#include <linux/fs.h>
|
||||
#include <linux/proc_fs.h>
|
||||
#include <linux/init.h>
|
||||
#include <linux/file.h>
|
||||
#include <linux/pci.h>
|
||||
#include <linux/wrapper.h>
|
||||
#include <linux/version.h>
|
||||
#include <linux/sched.h>
|
||||
#include <linux/smp_lock.h> /* For (un)lock_kernel */
|
||||
#include <linux/mm.h>
|
||||
#if defined(__alpha__) || defined(__powerpc__)
|
||||
#include <asm/pgtable.h> /* For pte_wrprotect */
|
||||
#endif
|
||||
#include <asm/io.h>
|
||||
#include <asm/mman.h>
|
||||
#include <asm/uaccess.h>
|
||||
#ifdef CONFIG_MTRR
|
||||
#include <asm/mtrr.h>
|
||||
#endif
|
||||
#if defined(CONFIG_AGP) || defined(CONFIG_AGP_MODULE)
|
||||
#include <linux/types.h>
|
||||
#include <linux/agp_backend.h>
|
||||
#endif
|
||||
#if LINUX_VERSION_CODE >= 0x020100 /* KERNEL_VERSION(2,1,0) */
|
||||
#include <linux/tqueue.h>
|
||||
#include <linux/poll.h>
|
||||
#endif
|
||||
#if LINUX_VERSION_CODE < 0x020400
|
||||
#include "compat-pre24.h"
|
||||
#endif
|
||||
#include <asm/pgalloc.h>
|
||||
|
|
@ -30,9 +30,19 @@
|
|||
* Gareth Hughes <gareth@valinux.com>
|
||||
*/
|
||||
|
||||
#ifdef __linux__
|
||||
#include <linux/config.h>
|
||||
#endif
|
||||
|
||||
#ifdef __FreeBSD__
|
||||
#include <sys/types.h>
|
||||
#include <sys/bus.h>
|
||||
#include <pci/pcivar.h>
|
||||
#include <opt_drm_linux.h>
|
||||
#endif
|
||||
|
||||
#include "tdfx.h"
|
||||
#include "drmP.h"
|
||||
#include "drmP.h
|
||||
|
||||
#define DRIVER_AUTHOR "VA Linux Systems Inc."
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue