FreeBSD kernel AGP device code
agppriv.h
Go to the documentation of this file.
1/*-
2 * SPDX-License-Identifier: BSD-2-Clause-FreeBSD
3 *
4 * Copyright (c) 2000 Doug Rabson
5 * All rights reserved.
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
9 * are met:
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. Redistributions in binary form must reproduce the above copyright
13 * notice, this list of conditions and the following disclaimer in the
14 * documentation and/or other materials provided with the distribution.
15 *
16 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
17 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
18 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
19 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
20 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
21 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
22 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
23 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
24 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
25 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * SUCH DAMAGE.
27 *
28 * $FreeBSD$
29 */
30
31#ifndef _PCI_AGPPRIV_H_
32#define _PCI_AGPPRIV_H_
33
34/*
35 * This file *must not* be included by code outside the agp driver itself.
36 */
37
38#include <sys/agpio.h>
39#include <dev/agp/agpvar.h>
40
41#ifdef AGP_DEBUG
42#define AGP_DPF(fmt, ...) do { \
43 printf("agp: " fmt, ##__VA_ARGS__); \
44} while (0)
45#else
46#define AGP_DPF(fmt, ...) do {} while (0)
47#endif
48
49#include "agp_if.h"
50
51/*
52 * Data structure to describe an AGP memory allocation.
53 */
54TAILQ_HEAD(agp_memory_list, agp_memory);
55struct agp_memory {
56 TAILQ_ENTRY(agp_memory) am_link; /* wiring for the tailq */
57 int am_id; /* unique id for block */
58 vm_size_t am_size; /* number of bytes allocated */
59 int am_type; /* chipset specific type */
60 struct vm_object *am_obj; /* VM object owning pages */
61 vm_offset_t am_physical; /* bogus hack for i810 */
62 vm_offset_t am_offset; /* page offset if bound */
63 int am_is_bound; /* non-zero if bound */
64};
65
66/*
67 * All chipset drivers must have this at the start of their softc.
68 */
69struct agp_softc {
70 struct resource *as_aperture; /* location of aperture */
72 u_int32_t as_maxmem; /* allocation upper bound */
73 u_int32_t as_allocated; /* amount allocated */
75 struct agp_memory_list as_memory; /* list of allocated memory */
76 int as_nextid; /* next memory block id */
77 int as_isopen; /* user device is open */
78 struct cdev *as_devnode; /* from make_dev */
79 struct cdev *as_devalias;
80 struct mtx as_lock; /* lock for access to GATT */
81};
82
83struct agp_gatt {
84 u_int32_t ag_entries;
85 u_int32_t *ag_virtual;
86 vm_offset_t ag_physical;
87};
88
89u_int8_t agp_find_caps(device_t dev);
90struct agp_gatt *agp_alloc_gatt(device_t dev);
91void agp_set_aperture_resource(device_t dev, int rid);
92void agp_free_cdev(device_t dev);
93void agp_free_gatt(struct agp_gatt *gatt);
94void agp_free_res(device_t dev);
95int agp_generic_attach(device_t dev);
96int agp_generic_detach(device_t dev);
97u_int32_t agp_generic_get_aperture(device_t dev);
98int agp_generic_set_aperture(device_t dev,
99 u_int32_t aperture);
100int agp_generic_enable(device_t dev, u_int32_t mode);
101struct agp_memory *agp_generic_alloc_memory(device_t dev, int type,
102 vm_size_t size);
103int agp_generic_free_memory(device_t dev,
104 struct agp_memory *mem);
105int agp_generic_bind_memory(device_t dev,
106 struct agp_memory *mem,
107 vm_offset_t offset);
108int agp_generic_unbind_memory(device_t dev,
109 struct agp_memory *mem);
110
111#endif /* !_PCI_AGPPRIV_H_ */
vm_size_t size
Definition: agp_if.m:112
struct agp_memory * mem
Definition: agp_if.m:121
u_int32_t mode
Definition: agp_if.m:95
int type
Definition: agp_if.m:111
vm_offset_t offset
Definition: agp_if.m:69
u_int32_t aperture
Definition: agp_if.m:59
void agp_set_aperture_resource(device_t dev, int rid)
Definition: agp.c:198
int agp_generic_set_aperture(device_t dev, u_int32_t aperture)
Definition: agp.c:328
struct agp_memory * agp_generic_alloc_memory(device_t dev, int type, vm_size_t size)
Definition: agp.c:496
int agp_generic_bind_memory(device_t dev, struct agp_memory *mem, vm_offset_t offset)
Definition: agp.c:543
int agp_generic_unbind_memory(device_t dev, struct agp_memory *mem)
Definition: agp.c:649
TAILQ_HEAD(agp_memory_list, agp_memory)
int agp_generic_detach(device_t dev)
Definition: agp.c:303
int agp_generic_attach(device_t dev)
Definition: agp.c:206
int agp_generic_free_memory(device_t dev, struct agp_memory *mem)
Definition: agp.c:528
u_int8_t agp_find_caps(device_t dev)
Definition: agp.c:92
u_int32_t agp_generic_get_aperture(device_t dev)
Definition: agp.c:316
void agp_free_res(device_t dev)
Definition: agp.c:292
void agp_free_cdev(device_t dev)
Definition: agp.c:282
void agp_free_gatt(struct agp_gatt *gatt)
Definition: agp.c:171
struct agp_gatt * agp_alloc_gatt(device_t dev)
Definition: agp.c:135
int agp_generic_enable(device_t dev, u_int32_t mode)
Definition: agp.c:466
agp_acquire_state
Definition: agpvar.h:39
u_int32_t * ag_virtual
Definition: agppriv.h:85
vm_offset_t ag_physical
Definition: agppriv.h:86
u_int32_t ag_entries
Definition: agppriv.h:84
TAILQ_ENTRY(agp_memory) am_link
struct vm_object * am_obj
Definition: agppriv.h:60
int am_is_bound
Definition: agppriv.h:63
int am_id
Definition: agppriv.h:57
vm_size_t am_size
Definition: agppriv.h:58
vm_offset_t am_physical
Definition: agppriv.h:61
int am_type
Definition: agppriv.h:59
vm_offset_t am_offset
Definition: agppriv.h:62
int as_isopen
Definition: agppriv.h:77
u_int32_t as_allocated
Definition: agppriv.h:73
struct cdev * as_devalias
Definition: agppriv.h:79
int as_aperture_rid
Definition: agppriv.h:71
int as_nextid
Definition: agppriv.h:76
struct cdev * as_devnode
Definition: agppriv.h:78
struct mtx as_lock
Definition: agppriv.h:80
u_int32_t as_maxmem
Definition: agppriv.h:72
struct resource * as_aperture
Definition: agppriv.h:70
enum agp_acquire_state as_state
Definition: agppriv.h:74
struct agp_memory_list as_memory
Definition: agppriv.h:75