OpenGrok
Home
Sort by:
relevance
|
last modified time
|
path
Full Search
in project(s):
src
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:agp_softc
(Results
1 - 14
of
14
) sorted by relevancy
/src/sys/dev/pci/
agpvar.h
101
struct
agp_softc
;
104
u_int32_t (*get_aperture)(struct
agp_softc
*);
105
int (*set_aperture)(struct
agp_softc
*, u_int32_t);
106
int (*bind_page)(struct
agp_softc
*, off_t, bus_addr_t);
107
int (*unbind_page)(struct
agp_softc
*, off_t);
108
void (*flush_tlb)(struct
agp_softc
*);
109
int (*enable)(struct
agp_softc
*, u_int32_t mode);
110
struct agp_memory *(*alloc_memory)(struct
agp_softc
*, int, vsize_t);
111
int (*free_memory)(struct
agp_softc
*, struct agp_memory *);
112
int (*bind_memory)(struct
agp_softc
*, struct agp_memory *, off_t)
130
struct
agp_softc
{
struct
[
all
...]
agp_sis.c
55
static u_int32_t agp_sis_get_aperture(struct
agp_softc
*);
56
static int agp_sis_set_aperture(struct
agp_softc
*, u_int32_t);
57
static int agp_sis_bind_page(struct
agp_softc
*, off_t, bus_addr_t);
58
static int agp_sis_unbind_page(struct
agp_softc
*, off_t);
59
static void agp_sis_flush_tlb(struct
agp_softc
*);
77
struct
agp_softc
*sc = device_private(self);
128
agp_sis_detach(struct
agp_softc
*sc)
152
agp_sis_get_aperture(struct
agp_softc
*sc)
164
agp_sis_set_aperture(struct
agp_softc
*sc, u_int32_t aperture)
189
agp_sis_bind_page(struct
agp_softc
*sc, off_t offset, bus_addr_t physical
[
all
...]
agp_amd64.c
57
static uint32_t agp_amd64_get_aperture(struct
agp_softc
*);
58
static int agp_amd64_set_aperture(struct
agp_softc
*, uint32_t);
59
static int agp_amd64_bind_page(struct
agp_softc
*, off_t, bus_addr_t);
60
static int agp_amd64_unbind_page(struct
agp_softc
*, off_t);
61
static void agp_amd64_flush_tlb(struct
agp_softc
*);
63
static void agp_amd64_apbase_fixup(struct
agp_softc
*);
65
static void agp_amd64_uli_init(struct
agp_softc
*);
66
static int agp_amd64_uli_set_aperture(struct
agp_softc
*, uint32_t);
69
static void agp_amd64_nvidia_init(struct
agp_softc
*);
70
static int agp_amd64_nvidia_set_aperture(struct
agp_softc
*, uint32_t)
[
all
...]
agp_ali.c
55
static u_int32_t agp_ali_get_aperture(struct
agp_softc
*);
56
static int agp_ali_set_aperture(struct
agp_softc
*sc, u_int32_t);
57
static int agp_ali_bind_page(struct
agp_softc
*, off_t, bus_addr_t);
58
static int agp_ali_unbind_page(struct
agp_softc
*, off_t);
59
static void agp_ali_flush_tlb(struct
agp_softc
*);
78
struct
agp_softc
*sc = device_private(self);
131
agp_ali_detach(struct
agp_softc
*sc)
176
agp_ali_get_aperture(struct
agp_softc
*sc)
191
agp_ali_set_aperture(struct
agp_softc
*sc, u_int32_t aperture)
213
agp_ali_bind_page(struct
agp_softc
*sc, off_t offset, bus_addr_t physical
[
all
...]
agp_intel.c
66
static u_int32_t agp_intel_get_aperture(struct
agp_softc
*);
67
static int agp_intel_set_aperture(struct
agp_softc
*, u_int32_t);
68
static int agp_intel_bind_page(struct
agp_softc
*, off_t, bus_addr_t);
69
static int agp_intel_unbind_page(struct
agp_softc
*, off_t);
70
static void agp_intel_flush_tlb(struct
agp_softc
*);
71
static int agp_intel_init(struct
agp_softc
*);
110
struct
agp_softc
*sc = device_private(self);
192
agp_intel_init(struct
agp_softc
*sc)
274
agp_intel_detach(struct
agp_softc
*sc)
298
agp_intel_get_aperture(struct
agp_softc
*sc
[
all
...]
agp_apple.c
55
static u_int32_t agp_apple_get_aperture(struct
agp_softc
*);
56
static int agp_apple_set_aperture(struct
agp_softc
*, u_int32_t);
57
static int agp_apple_bind_page(struct
agp_softc
*, off_t, bus_addr_t);
58
static int agp_apple_unbind_page(struct
agp_softc
*, off_t);
59
static void agp_apple_flush_tlb(struct
agp_softc
*);
83
struct
agp_softc
*sc = device_private(self);
132
agp_apple_get_aperture(struct
agp_softc
*sc)
148
agp_apple_set_aperture(struct
agp_softc
*sc, u_int32_t aperture)
162
agp_apple_bind_page(struct
agp_softc
*sc, off_t offset, bus_addr_t physical)
174
agp_apple_unbind_page(struct
agp_softc
*sc, off_t offset
[
all
...]
agp_amd.c
74
static u_int32_t agp_amd_get_aperture(struct
agp_softc
*);
75
static int agp_amd_set_aperture(struct
agp_softc
*, u_int32_t);
76
static int agp_amd_bind_page(struct
agp_softc
*, off_t, bus_addr_t);
77
static int agp_amd_unbind_page(struct
agp_softc
*, off_t);
78
static void agp_amd_flush_tlb(struct
agp_softc
*);
96
agp_amd_alloc_gatt(struct
agp_softc
*sc)
143
agp_amd_free_gatt(struct
agp_softc
*sc, struct agp_amd_gatt *gatt)
169
struct
agp_softc
*sc = device_private(self);
233
agp_amd_detach(struct
agp_softc
*sc)
262
agp_amd_get_aperture(struct
agp_softc
*sc
[
all
...]
agp.c
97
static int agp_info_user(struct
agp_softc
*, agp_info *);
98
static int agp_setup_user(struct
agp_softc
*, agp_setup *);
99
static int agp_allocate_user(struct
agp_softc
*, agp_allocate *);
100
static int agp_deallocate_user(struct
agp_softc
*, int);
101
static int agp_bind_user(struct
agp_softc
*, agp_bind *);
102
static int agp_unbind_user(struct
agp_softc
*, agp_unbind *);
103
static int agp_generic_enable_v2(struct
agp_softc
*,
105
static int agp_generic_enable_v3(struct
agp_softc
*,
333
struct
agp_softc
*sc = device_private(self);
382
CFATTACH_DECL_NEW(agp, sizeof(struct
agp_softc
),
[
all
...]
agp_via.c
51
static u_int32_t agp_via_get_aperture(struct
agp_softc
*);
52
static int agp_via_set_aperture(struct
agp_softc
*, u_int32_t);
53
static int agp_via_bind_page(struct
agp_softc
*, off_t, bus_addr_t);
54
static int agp_via_unbind_page(struct
agp_softc
*, off_t);
55
static void agp_via_flush_tlb(struct
agp_softc
*);
89
struct
agp_softc
*sc = device_private(self);
163
agp_via_detach(struct
agp_softc
*sc)
182
agp_via_get_aperture(struct
agp_softc
*sc)
232
agp_via_set_aperture(struct
agp_softc
*sc, u_int32_t aperture)
304
agp_via_bind_page(struct
agp_softc
*sc, off_t offset, bus_addr_t physical
[
all
...]
agp_i810.c
65
struct
agp_softc
*agp_i810_sc = NULL;
86
static u_int32_t agp_i810_get_aperture(struct
agp_softc
*);
87
static int agp_i810_set_aperture(struct
agp_softc
*, u_int32_t);
88
static int agp_i810_bind_page(struct
agp_softc
*, off_t, bus_addr_t);
89
static int agp_i810_unbind_page(struct
agp_softc
*, off_t);
90
static void agp_i810_flush_tlb(struct
agp_softc
*);
91
static int agp_i810_enable(struct
agp_softc
*, u_int32_t mode);
92
static struct agp_memory *agp_i810_alloc_memory(struct
agp_softc
*, int,
94
static int agp_i810_free_memory(struct
agp_softc
*, struct agp_memory *);
95
static int agp_i810_bind_memory(struct
agp_softc
*, struct agp_memory *
[
all
...]
agp_i810var.h
65
extern struct
agp_softc
*agp_i810_sc;
/src/sys/external/bsd/drm2/include/drm/
drm_agp_netbsd.h
59
struct
agp_softc
abd_sc; /* XXX Abstraction violation! */
80
return container_of((struct
agp_softc
*)agp_find_device(0),
/src/sys/external/bsd/drm2/ttm/
ttm_agp_backend.c
50
struct
agp_softc
*agp;
102
struct
agp_softc
*const sc = ttm_agp->agp;
138
struct
agp_softc
*const sc = ttm_agp->agp;
/src/sys/external/bsd/drm2/i915drm/
intel_gtt_subr.c
404
struct
agp_softc
*sc;
446
struct
agp_softc
*const sc = agp_i810_sc;
483
struct
agp_softc
*const sc = agp_i810_sc;
493
struct
agp_softc
*sc = agp_i810_sc;
Completed in 18 milliseconds
Indexes created Mon Oct 13 08:09:50 GMT 2025