Deleted Added
full compact
agppriv.h (171433) agppriv.h (173203)
1/*-
2 * Copyright (c) 2000 Doug Rabson
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 9 unchanged lines hidden (view full) ---

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
1/*-
2 * Copyright (c) 2000 Doug Rabson
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 * 1. Redistributions of source code must retain the above copyright

--- 9 unchanged lines hidden (view full) ---

18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
24 * SUCH DAMAGE.
25 *
26 * $FreeBSD: head/sys/dev/agp/agppriv.h 171433 2007-07-13 16:28:12Z anholt $
26 * $FreeBSD: head/sys/dev/agp/agppriv.h 173203 2007-10-30 22:09:16Z jhb $
27 */
28
29#ifndef _PCI_AGPPRIV_H_
30#define _PCI_AGPPRIV_H_
31
32/*
33 * This file *must not* be included by code outside the agp driver itself.
34 */

--- 50 unchanged lines hidden (view full) ---

85 u_int32_t *ag_virtual;
86 vm_offset_t ag_physical;
87};
88
89void agp_flush_cache(void);
90u_int8_t agp_find_caps(device_t dev);
91struct agp_gatt *agp_alloc_gatt(device_t dev);
92void agp_set_aperture_resource(device_t dev, int rid);
27 */
28
29#ifndef _PCI_AGPPRIV_H_
30#define _PCI_AGPPRIV_H_
31
32/*
33 * This file *must not* be included by code outside the agp driver itself.
34 */

--- 50 unchanged lines hidden (view full) ---

85 u_int32_t *ag_virtual;
86 vm_offset_t ag_physical;
87};
88
89void agp_flush_cache(void);
90u_int8_t agp_find_caps(device_t dev);
91struct agp_gatt *agp_alloc_gatt(device_t dev);
92void agp_set_aperture_resource(device_t dev, int rid);
93void agp_free_cdev(device_t dev);
93void agp_free_gatt(struct agp_gatt *gatt);
94void agp_free_gatt(struct agp_gatt *gatt);
95void agp_free_res(device_t dev);
94int agp_generic_attach(device_t dev);
95int agp_generic_detach(device_t dev);
96int agp_generic_get_aperture(device_t dev);
97int agp_generic_set_aperture(device_t dev,
98 u_int32_t aperture);
99int agp_generic_enable(device_t dev, u_int32_t mode);
100struct agp_memory *agp_generic_alloc_memory(device_t dev, int type,
101 vm_size_t size);
102int agp_generic_free_memory(device_t dev,
103 struct agp_memory *mem);
104int agp_generic_bind_memory(device_t dev,
105 struct agp_memory *mem,
106 vm_offset_t offset);
107int agp_generic_unbind_memory(device_t dev,
108 struct agp_memory *mem);
109
110#endif /* !_PCI_AGPPRIV_H_ */
96int agp_generic_attach(device_t dev);
97int agp_generic_detach(device_t dev);
98int agp_generic_get_aperture(device_t dev);
99int agp_generic_set_aperture(device_t dev,
100 u_int32_t aperture);
101int agp_generic_enable(device_t dev, u_int32_t mode);
102struct agp_memory *agp_generic_alloc_memory(device_t dev, int type,
103 vm_size_t size);
104int agp_generic_free_memory(device_t dev,
105 struct agp_memory *mem);
106int agp_generic_bind_memory(device_t dev,
107 struct agp_memory *mem,
108 vm_offset_t offset);
109int agp_generic_unbind_memory(device_t dev,
110 struct agp_memory *mem);
111
112#endif /* !_PCI_AGPPRIV_H_ */