Changes to make AGP optional for in-kernel builds
authorRik Faith <faith@alephnull.com>
Fri, 21 Jul 2000 14:20:57 +0000 (14:20 +0000)
committerRik Faith <faith@alephnull.com>
Fri, 21 Jul 2000 14:20:57 +0000 (14:20 +0000)
linux-core/drmP.h
linux-core/r128_drv.c
linux-core/tdfx_drv.c
linux/Makefile.linux
linux/drmP.h
linux/gamma_drv.c
linux/memory.c
linux/r128_bufs.c
linux/r128_drv.c
linux/tdfx_drv.c

index d8791bf..ce55c15 100644 (file)
 #ifdef CONFIG_MTRR
 #include <asm/mtrr.h>
 #endif
-#if defined(CONFIG_AGP) || defined(CONFIG_AGP_MODULE)
-#define DRM_AGP
-#endif
-#ifdef DRM_AGP
+#ifdef CONFIG_DRM_AGP
 #include <linux/types.h>
 #include <linux/agp_backend.h>
 #endif
@@ -410,7 +407,7 @@ typedef struct drm_device_dma {
        wait_queue_head_t waiting;      /* Processes waiting on free bufs  */
 } drm_device_dma_t;
 
-#ifdef DRM_AGP
+#ifdef CONFIG_DRM_AGP
 typedef struct drm_agp_mem {
        unsigned long      handle;
        agp_memory         *memory;
@@ -524,7 +521,7 @@ typedef struct drm_device {
        wait_queue_head_t buf_readers;  /* Processes waiting to read       */
        wait_queue_head_t buf_writers;  /* Processes waiting to ctx switch */
        
-#ifdef DRM_AGP
+#ifdef CONFIG_DRM_AGP
        drm_agp_head_t    *agp;
 #endif
        unsigned long     *ctx_bitmap;
@@ -601,7 +598,7 @@ extern void      drm_free_pages(unsigned long address, int order,
 extern void         *drm_ioremap(unsigned long offset, unsigned long size);
 extern void         drm_ioremapfree(void *pt, unsigned long size);
 
-#ifdef DRM_AGP
+#ifdef CONFIG_DRM_AGP
 extern agp_memory    *drm_alloc_agp(int pages, u32 type);
 extern int           drm_free_agp(agp_memory *handle, int pages);
 extern int           drm_bind_agp(agp_memory *handle, unsigned int start);
@@ -725,7 +722,7 @@ extern void      drm_ctxbitmap_cleanup(drm_device_t *dev);
 extern int          drm_ctxbitmap_next(drm_device_t *dev);
 extern void         drm_ctxbitmap_free(drm_device_t *dev, int ctx_handle);
 
-#ifdef DRM_AGP
+#ifdef CONFIG_DRM_AGP
                                /* AGP/GART support (agpsupport.c) */
 extern drm_agp_head_t *drm_agp_init(void);
 extern void           drm_agp_uninit(void);
index e78d023..18df1d8 100644 (file)
@@ -99,7 +99,7 @@ static drm_ioctl_desc_t             r128_ioctls[] = {
        [DRM_IOCTL_NR(DRM_IOCTL_UNLOCK)]      = { r128_unlock,     1, 0 },
        [DRM_IOCTL_NR(DRM_IOCTL_FINISH)]      = { drm_finish,      1, 0 },
 
-#ifdef DRM_AGP
+#ifdef CONFIG_DRM_AGP
        [DRM_IOCTL_NR(DRM_IOCTL_AGP_ACQUIRE)] = { drm_agp_acquire, 1, 1 },
        [DRM_IOCTL_NR(DRM_IOCTL_AGP_RELEASE)] = { drm_agp_release, 1, 1 },
        [DRM_IOCTL_NR(DRM_IOCTL_AGP_ENABLE)]  = { drm_agp_enable,  1, 1 },
@@ -244,7 +244,7 @@ static int r128_takedown(drm_device_t *dev)
                dev->magiclist[i].head = dev->magiclist[i].tail = NULL;
        }
 
-#ifdef DRM_AGP
+#ifdef CONFIG_DRM_AGP
                                /* Clear AGP information */
        if (dev->agp) {
                drm_agp_mem_t *entry;
@@ -356,7 +356,7 @@ int r128_init(void)
        drm_mem_init();
        drm_proc_init(dev);
 
-#ifdef DRM_AGP
+#ifdef CONFIG_DRM_AGP
        dev->agp    = drm_agp_init();
        if (dev->agp == NULL) {
                DRM_ERROR("Cannot initialize agpgart module.\n");
@@ -409,7 +409,7 @@ void r128_cleanup(void)
        }
        drm_ctxbitmap_cleanup(dev);
        r128_takedown(dev);
-#ifdef DRM_AGP
+#ifdef CONFIG_DRM_AGP
        if (dev->agp) {
                drm_agp_uninit();
                drm_free(dev->agp, sizeof(*dev->agp), DRM_MEM_AGPLISTS);
index 97bd418..47039cd 100644 (file)
@@ -94,7 +94,7 @@ static drm_ioctl_desc_t             tdfx_ioctls[] = {
        [DRM_IOCTL_NR(DRM_IOCTL_LOCK)]       = { tdfx_lock,       1, 0 },
        [DRM_IOCTL_NR(DRM_IOCTL_UNLOCK)]     = { tdfx_unlock,     1, 0 },
        [DRM_IOCTL_NR(DRM_IOCTL_FINISH)]     = { drm_finish,      1, 0 },
-#ifdef DRM_AGP
+#ifdef CONFIG_DRM_AGP
        [DRM_IOCTL_NR(DRM_IOCTL_AGP_ACQUIRE)]   = {drm_agp_acquire, 1, 1},
        [DRM_IOCTL_NR(DRM_IOCTL_AGP_RELEASE)]   = {drm_agp_release, 1, 1},
        [DRM_IOCTL_NR(DRM_IOCTL_AGP_ENABLE)]    = {drm_agp_enable,  1, 1},
@@ -230,7 +230,7 @@ static int tdfx_takedown(drm_device_t *dev)
                }
                dev->magiclist[i].head = dev->magiclist[i].tail = NULL;
        }
-#ifdef DRM_AGP
+#ifdef CONFIG_DRM_AGP
                                /* Clear AGP information */
        if (dev->agp) {
                drm_agp_mem_t *temp;
@@ -330,7 +330,7 @@ int tdfx_init(void)
 
        drm_mem_init();
        drm_proc_init(dev);
-#ifdef DRM_AGP
+#ifdef CONFIG_DRM_AGP
        dev->agp    = drm_agp_init();
 #endif
        if((retcode = drm_ctxbitmap_init(dev))) {
@@ -368,7 +368,7 @@ void tdfx_cleanup(void)
        }
        drm_ctxbitmap_cleanup(dev);
        tdfx_takedown(dev);
-#ifdef DRM_AGP
+#ifdef CONFIG_DRM_AGP
        if (dev->agp) {
                drm_agp_uninit();
                drm_free(dev->agp, sizeof(*dev->agp), DRM_MEM_AGPLISTS);
index 35aee3f..2fcb0ee 100644 (file)
@@ -128,7 +128,7 @@ AGP := $(shell gcc -E -nostdinc -I$(TREE) picker.c 2>/dev/null \
 endif
 
 ifeq ($(AGP),1)
-MODCFLAGS += -DDRM_AGP
+MODCFLAGS += -DCONFIG_DRM_AGP
 DRMOBJS += agpsupport.o
 MODS += mga.o i810.o
 
index d8791bf..ce55c15 100644 (file)
 #ifdef CONFIG_MTRR
 #include <asm/mtrr.h>
 #endif
-#if defined(CONFIG_AGP) || defined(CONFIG_AGP_MODULE)
-#define DRM_AGP
-#endif
-#ifdef DRM_AGP
+#ifdef CONFIG_DRM_AGP
 #include <linux/types.h>
 #include <linux/agp_backend.h>
 #endif
@@ -410,7 +407,7 @@ typedef struct drm_device_dma {
        wait_queue_head_t waiting;      /* Processes waiting on free bufs  */
 } drm_device_dma_t;
 
-#ifdef DRM_AGP
+#ifdef CONFIG_DRM_AGP
 typedef struct drm_agp_mem {
        unsigned long      handle;
        agp_memory         *memory;
@@ -524,7 +521,7 @@ typedef struct drm_device {
        wait_queue_head_t buf_readers;  /* Processes waiting to read       */
        wait_queue_head_t buf_writers;  /* Processes waiting to ctx switch */
        
-#ifdef DRM_AGP
+#ifdef CONFIG_DRM_AGP
        drm_agp_head_t    *agp;
 #endif
        unsigned long     *ctx_bitmap;
@@ -601,7 +598,7 @@ extern void      drm_free_pages(unsigned long address, int order,
 extern void         *drm_ioremap(unsigned long offset, unsigned long size);
 extern void         drm_ioremapfree(void *pt, unsigned long size);
 
-#ifdef DRM_AGP
+#ifdef CONFIG_DRM_AGP
 extern agp_memory    *drm_alloc_agp(int pages, u32 type);
 extern int           drm_free_agp(agp_memory *handle, int pages);
 extern int           drm_bind_agp(agp_memory *handle, unsigned int start);
@@ -725,7 +722,7 @@ extern void      drm_ctxbitmap_cleanup(drm_device_t *dev);
 extern int          drm_ctxbitmap_next(drm_device_t *dev);
 extern void         drm_ctxbitmap_free(drm_device_t *dev, int ctx_handle);
 
-#ifdef DRM_AGP
+#ifdef CONFIG_DRM_AGP
                                /* AGP/GART support (agpsupport.c) */
 extern drm_agp_head_t *drm_agp_init(void);
 extern void           drm_agp_uninit(void);
index 7290bc2..2450d3a 100644 (file)
@@ -277,10 +277,8 @@ static int gamma_takedown(drm_device_t *dev)
                                               DRM_MEM_SAREA);
                                break;
                        case _DRM_AGP:
-#ifdef DRM_AGP
                                /* Do nothing here, because this is all
                                    handled in the AGP/GART driver. */
-#endif
                                break;
                        }
                        drm_free(map, sizeof(*map), DRM_MEM_MAPS);
index 4d623ef..d03e214 100644 (file)
@@ -197,7 +197,7 @@ void drm_free(void *pt, size_t size, int area)
        int free_count;
        
        if (!pt) DRM_MEM_ERROR(area, "Attempt to free NULL pointer\n");
-       else     kfree(pt, size);
+       else     kfree(pt);
        spin_lock(&drm_mem_lock);
        drm_mem_stats[area].bytes_freed += size;
        free_count  = ++drm_mem_stats[area].free_count;
@@ -330,7 +330,7 @@ void drm_ioremapfree(void *pt, unsigned long size)
        }
 }
 
-#ifdef DRM_AGP
+#ifdef CONFIG_DRM_AGP
 agp_memory *drm_alloc_agp(int pages, u32 type)
 {
        agp_memory *handle;
index e8ff4df..7256147 100644 (file)
@@ -36,7 +36,7 @@
 #include "linux/un.h"
 
 
-#ifdef DRM_AGP
+#ifdef CONFIG_DRM_AGP
 int r128_addbufs_agp(struct inode *inode, struct file *filp, unsigned int cmd,
                     unsigned long arg)
 {
@@ -199,7 +199,7 @@ int r128_addbufs(struct inode *inode, struct file *filp, unsigned int cmd,
                           sizeof(request),
                           -EFAULT);
 
-#ifdef DRM_AGP
+#ifdef CONFIG_DRM_AGP
        if (request.flags & _DRM_AGP_BUFFER)
                return r128_addbufs_agp(inode, filp, cmd, arg);
        else
index e78d023..18df1d8 100644 (file)
@@ -99,7 +99,7 @@ static drm_ioctl_desc_t             r128_ioctls[] = {
        [DRM_IOCTL_NR(DRM_IOCTL_UNLOCK)]      = { r128_unlock,     1, 0 },
        [DRM_IOCTL_NR(DRM_IOCTL_FINISH)]      = { drm_finish,      1, 0 },
 
-#ifdef DRM_AGP
+#ifdef CONFIG_DRM_AGP
        [DRM_IOCTL_NR(DRM_IOCTL_AGP_ACQUIRE)] = { drm_agp_acquire, 1, 1 },
        [DRM_IOCTL_NR(DRM_IOCTL_AGP_RELEASE)] = { drm_agp_release, 1, 1 },
        [DRM_IOCTL_NR(DRM_IOCTL_AGP_ENABLE)]  = { drm_agp_enable,  1, 1 },
@@ -244,7 +244,7 @@ static int r128_takedown(drm_device_t *dev)
                dev->magiclist[i].head = dev->magiclist[i].tail = NULL;
        }
 
-#ifdef DRM_AGP
+#ifdef CONFIG_DRM_AGP
                                /* Clear AGP information */
        if (dev->agp) {
                drm_agp_mem_t *entry;
@@ -356,7 +356,7 @@ int r128_init(void)
        drm_mem_init();
        drm_proc_init(dev);
 
-#ifdef DRM_AGP
+#ifdef CONFIG_DRM_AGP
        dev->agp    = drm_agp_init();
        if (dev->agp == NULL) {
                DRM_ERROR("Cannot initialize agpgart module.\n");
@@ -409,7 +409,7 @@ void r128_cleanup(void)
        }
        drm_ctxbitmap_cleanup(dev);
        r128_takedown(dev);
-#ifdef DRM_AGP
+#ifdef CONFIG_DRM_AGP
        if (dev->agp) {
                drm_agp_uninit();
                drm_free(dev->agp, sizeof(*dev->agp), DRM_MEM_AGPLISTS);
index 97bd418..47039cd 100644 (file)
@@ -94,7 +94,7 @@ static drm_ioctl_desc_t             tdfx_ioctls[] = {
        [DRM_IOCTL_NR(DRM_IOCTL_LOCK)]       = { tdfx_lock,       1, 0 },
        [DRM_IOCTL_NR(DRM_IOCTL_UNLOCK)]     = { tdfx_unlock,     1, 0 },
        [DRM_IOCTL_NR(DRM_IOCTL_FINISH)]     = { drm_finish,      1, 0 },
-#ifdef DRM_AGP
+#ifdef CONFIG_DRM_AGP
        [DRM_IOCTL_NR(DRM_IOCTL_AGP_ACQUIRE)]   = {drm_agp_acquire, 1, 1},
        [DRM_IOCTL_NR(DRM_IOCTL_AGP_RELEASE)]   = {drm_agp_release, 1, 1},
        [DRM_IOCTL_NR(DRM_IOCTL_AGP_ENABLE)]    = {drm_agp_enable,  1, 1},
@@ -230,7 +230,7 @@ static int tdfx_takedown(drm_device_t *dev)
                }
                dev->magiclist[i].head = dev->magiclist[i].tail = NULL;
        }
-#ifdef DRM_AGP
+#ifdef CONFIG_DRM_AGP
                                /* Clear AGP information */
        if (dev->agp) {
                drm_agp_mem_t *temp;
@@ -330,7 +330,7 @@ int tdfx_init(void)
 
        drm_mem_init();
        drm_proc_init(dev);
-#ifdef DRM_AGP
+#ifdef CONFIG_DRM_AGP
        dev->agp    = drm_agp_init();
 #endif
        if((retcode = drm_ctxbitmap_init(dev))) {
@@ -368,7 +368,7 @@ void tdfx_cleanup(void)
        }
        drm_ctxbitmap_cleanup(dev);
        tdfx_takedown(dev);
-#ifdef DRM_AGP
+#ifdef CONFIG_DRM_AGP
        if (dev->agp) {
                drm_agp_uninit();
                drm_free(dev->agp, sizeof(*dev->agp), DRM_MEM_AGPLISTS);