Deleted Added
full compact
i915_drv.h (197951) i915_drv.h (203287)
1/* i915_drv.h -- Private header for the I915 driver -*- linux-c -*-
2 */
3/*
4 *
5 * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
6 * All Rights Reserved.
7 *
8 * Permission is hereby granted, free of charge, to any person obtaining a

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

23 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
24 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
25 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
26 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 *
28 */
29
30#include <sys/cdefs.h>
1/* i915_drv.h -- Private header for the I915 driver -*- linux-c -*-
2 */
3/*
4 *
5 * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
6 * All Rights Reserved.
7 *
8 * Permission is hereby granted, free of charge, to any person obtaining a

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

23 * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
24 * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
25 * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
26 * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27 *
28 */
29
30#include <sys/cdefs.h>
31__FBSDID("$FreeBSD: head/sys/dev/drm/i915_drv.h 197951 2009-10-11 01:54:00Z rnoland $");
31__FBSDID("$FreeBSD: head/sys/dev/drm/i915_drv.h 203287 2010-01-31 14:25:29Z rnoland $");
32
33#ifndef _I915_DRV_H_
34#define _I915_DRV_H_
35
32
33#ifndef _I915_DRV_H_
34#define _I915_DRV_H_
35
36#include "dev/drm/drm_mm.h"
36#include "dev/drm/i915_reg.h"
37
38/* General customization:
39 */
40
41#define DRIVER_AUTHOR "Tungsten Graphics, Inc."
42
43#define DRIVER_NAME "i915"

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

231 u8 saveSR[8];
232 u8 saveGR[25];
233 u8 saveAR_INDEX;
234 u8 saveAR[21];
235 u8 saveDACMASK;
236 u8 saveCR[37];
237
238 struct {
37#include "dev/drm/i915_reg.h"
38
39/* General customization:
40 */
41
42#define DRIVER_AUTHOR "Tungsten Graphics, Inc."
43
44#define DRIVER_NAME "i915"

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

232 u8 saveSR[8];
233 u8 saveGR[25];
234 u8 saveAR_INDEX;
235 u8 saveAR[21];
236 u8 saveDACMASK;
237 u8 saveCR[37];
238
239 struct {
239#ifdef __linux__
240 struct drm_mm gtt_space;
240 struct drm_mm gtt_space;
241#endif
241
242 /**
243 * List of objects currently involved in rendering from the
244 * ringbuffer.
245 *
246 * A reference is held on the buffer while on this list.
247 */
248 struct list_head active_list;
249

--- 425 unchanged lines hidden ---
242 /**
243 * List of objects currently involved in rendering from the
244 * ringbuffer.
245 *
246 * A reference is held on the buffer while on this list.
247 */
248 struct list_head active_list;
249

--- 425 unchanged lines hidden ---