~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/include/linux/agp_backend.h

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

Diff markup

Differences between /include/linux/agp_backend.h (Version linux-6.11-rc3) and /include/linux/agp_backend.h (Version linux-6.3.13)


  1 /*                                                  1 /*
  2  * AGPGART backend specific includes. Not for       2  * AGPGART backend specific includes. Not for userspace consumption.
  3  *                                                  3  *
  4  * Copyright (C) 2004 Silicon Graphics, Inc.        4  * Copyright (C) 2004 Silicon Graphics, Inc.
  5  * Copyright (C) 2002-2003 Dave Jones               5  * Copyright (C) 2002-2003 Dave Jones
  6  * Copyright (C) 1999 Jeff Hartmann                 6  * Copyright (C) 1999 Jeff Hartmann
  7  * Copyright (C) 1999 Precision Insight, Inc.       7  * Copyright (C) 1999 Precision Insight, Inc.
  8  * Copyright (C) 1999 Xi Graphics, Inc.             8  * Copyright (C) 1999 Xi Graphics, Inc.
  9  *                                                  9  *
 10  * Permission is hereby granted, free of charg     10  * Permission is hereby granted, free of charge, to any person obtaining a
 11  * copy of this software and associated docume     11  * copy of this software and associated documentation files (the "Software"),
 12  * to deal in the Software without restriction     12  * to deal in the Software without restriction, including without limitation
 13  * the rights to use, copy, modify, merge, pub     13  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 14  * and/or sell copies of the Software, and to      14  * and/or sell copies of the Software, and to permit persons to whom the
 15  * Software is furnished to do so, subject to      15  * Software is furnished to do so, subject to the following conditions:
 16  *                                                 16  *
 17  * The above copyright notice and this permiss     17  * The above copyright notice and this permission notice shall be included
 18  * in all copies or substantial portions of th     18  * in all copies or substantial portions of the Software.
 19  *                                                 19  *
 20  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT W     20  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
 21  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO TH     21  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 22  * FITNESS FOR A PARTICULAR PURPOSE AND NONINF     22  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 23  * JEFF HARTMANN, OR ANY OTHER CONTRIBUTORS BE     23  * JEFF HARTMANN, OR ANY OTHER CONTRIBUTORS BE LIABLE FOR ANY CLAIM, 
 24  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN A     24  * DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR 
 25  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNE     25  * OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE 
 26  * OR THE USE OR OTHER DEALINGS IN THE SOFTWAR     26  * OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
 27  *                                                 27  *
 28  */                                                28  */
 29                                                    29 
 30 #ifndef _AGP_BACKEND_H                             30 #ifndef _AGP_BACKEND_H
 31 #define _AGP_BACKEND_H 1                           31 #define _AGP_BACKEND_H 1
 32                                                    32 
 33 #include <linux/list.h>                            33 #include <linux/list.h>
 34                                                    34 
 35 enum chipset_type {                                35 enum chipset_type {
 36         NOT_SUPPORTED,                             36         NOT_SUPPORTED,
 37         SUPPORTED,                                 37         SUPPORTED,
 38 };                                                 38 };
 39                                                    39 
 40 struct agp_version {                               40 struct agp_version {
 41         u16 major;                                 41         u16 major;
 42         u16 minor;                                 42         u16 minor;
 43 };                                                 43 };
 44                                                    44 
 45 struct agp_kern_info {                             45 struct agp_kern_info {
 46         struct agp_version version;                46         struct agp_version version;
 47         struct pci_dev *device;                    47         struct pci_dev *device;
 48         enum chipset_type chipset;                 48         enum chipset_type chipset;
 49         unsigned long mode;                        49         unsigned long mode;
 50         unsigned long aper_base;                   50         unsigned long aper_base;
 51         size_t aper_size;                          51         size_t aper_size;
 52         int max_memory;         /* In pages */     52         int max_memory;         /* In pages */
 53         int current_memory;                        53         int current_memory;
 54         bool cant_use_aperture;                    54         bool cant_use_aperture;
 55         unsigned long page_mask;                   55         unsigned long page_mask;
 56         const struct vm_operations_struct *vm_     56         const struct vm_operations_struct *vm_ops;
 57 };                                                 57 };
 58                                                    58 
 59 /*                                                 59 /*
 60  * The agp_memory structure has information ab     60  * The agp_memory structure has information about the block of agp memory
 61  * allocated.  A caller may manipulate the nex     61  * allocated.  A caller may manipulate the next and prev pointers to link
 62  * each allocated item into a list.  These poi     62  * each allocated item into a list.  These pointers are ignored by the backend.
 63  * Everything else should never be written to,     63  * Everything else should never be written to, but the caller may read any of
 64  * the items to determine the status of this b     64  * the items to determine the status of this block of agp memory.
 65  */                                                65  */
 66                                                    66 
 67 struct agp_bridge_data;                            67 struct agp_bridge_data;
 68                                                    68 
 69 struct agp_memory {                                69 struct agp_memory {
 70         struct agp_memory *next;                   70         struct agp_memory *next;
 71         struct agp_memory *prev;                   71         struct agp_memory *prev;
 72         struct agp_bridge_data *bridge;            72         struct agp_bridge_data *bridge;
 73         struct page **pages;                       73         struct page **pages;
 74         size_t page_count;                         74         size_t page_count;
 75         int key;                                   75         int key;
 76         int num_scratch_pages;                     76         int num_scratch_pages;
 77         off_t pg_start;                            77         off_t pg_start;
 78         u32 type;                                  78         u32 type;
 79         u32 physical;                              79         u32 physical;
 80         bool is_bound;                             80         bool is_bound;
 81         bool is_flushed;                           81         bool is_flushed;
 82         /* list of agp_memory mapped to the ap     82         /* list of agp_memory mapped to the aperture */
 83         struct list_head mapped_list;              83         struct list_head mapped_list;
 84         /* DMA-mapped addresses */                 84         /* DMA-mapped addresses */
 85         struct scatterlist *sg_list;               85         struct scatterlist *sg_list;
 86         int num_sg;                                86         int num_sg;
 87 };                                                 87 };
 88                                                    88 
 89 #define AGP_NORMAL_MEMORY 0                        89 #define AGP_NORMAL_MEMORY 0
 90                                                    90 
 91 #define AGP_USER_TYPES (1 << 16)                   91 #define AGP_USER_TYPES (1 << 16)
 92 #define AGP_USER_MEMORY (AGP_USER_TYPES)           92 #define AGP_USER_MEMORY (AGP_USER_TYPES)
 93 #define AGP_USER_CACHED_MEMORY (AGP_USER_TYPES     93 #define AGP_USER_CACHED_MEMORY (AGP_USER_TYPES + 1)
 94                                                    94 
 95 extern struct agp_bridge_data *agp_bridge;         95 extern struct agp_bridge_data *agp_bridge;
 96 extern struct list_head agp_bridges;               96 extern struct list_head agp_bridges;
 97                                                    97 
 98 extern struct agp_bridge_data *(*agp_find_brid     98 extern struct agp_bridge_data *(*agp_find_bridge)(struct pci_dev *);
 99                                                    99 
100 extern void agp_free_memory(struct agp_memory     100 extern void agp_free_memory(struct agp_memory *);
101 extern struct agp_memory *agp_allocate_memory(    101 extern struct agp_memory *agp_allocate_memory(struct agp_bridge_data *, size_t, u32);
102 extern int agp_copy_info(struct agp_bridge_dat    102 extern int agp_copy_info(struct agp_bridge_data *, struct agp_kern_info *);
103 extern int agp_bind_memory(struct agp_memory *    103 extern int agp_bind_memory(struct agp_memory *, off_t);
104 extern int agp_unbind_memory(struct agp_memory    104 extern int agp_unbind_memory(struct agp_memory *);
105 extern void agp_enable(struct agp_bridge_data     105 extern void agp_enable(struct agp_bridge_data *, u32);
106 extern struct agp_bridge_data *agp_backend_acq    106 extern struct agp_bridge_data *agp_backend_acquire(struct pci_dev *);
107 extern void agp_backend_release(struct agp_bri    107 extern void agp_backend_release(struct agp_bridge_data *);
108                                                   108 
109 #endif                          /* _AGP_BACKEN    109 #endif                          /* _AGP_BACKEND_H */
110                                                   110 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php