Deleted Added
full compact
radeon_device.c (298955) radeon_device.c (300050)
1/*
2 * Copyright 2008 Advanced Micro Devices, Inc.
3 * Copyright 2008 Red Hat Inc.
4 * Copyright 2009 Jerome Glisse.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation

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

22 * OTHER DEALINGS IN THE SOFTWARE.
23 *
24 * Authors: Dave Airlie
25 * Alex Deucher
26 * Jerome Glisse
27 */
28
29#include <sys/cdefs.h>
1/*
2 * Copyright 2008 Advanced Micro Devices, Inc.
3 * Copyright 2008 Red Hat Inc.
4 * Copyright 2009 Jerome Glisse.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation

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

22 * OTHER DEALINGS IN THE SOFTWARE.
23 *
24 * Authors: Dave Airlie
25 * Alex Deucher
26 * Jerome Glisse
27 */
28
29#include <sys/cdefs.h>
30__FBSDID("$FreeBSD: head/sys/dev/drm2/radeon/radeon_device.c 298955 2016-05-03 03:41:25Z pfg $");
30__FBSDID("$FreeBSD: head/sys/dev/drm2/radeon/radeon_device.c 300050 2016-05-17 12:52:31Z eadler $");
31
32#include <dev/drm2/drmP.h>
33#include <dev/drm2/drm_crtc_helper.h>
34#include <dev/drm2/radeon/radeon_drm.h>
35#include "radeon_reg.h"
36#include "radeon.h"
37#include "atom.h"
38

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

186 rdev->scratch.free[i] = true;
187 return;
188 }
189 }
190}
191
192/*
193 * radeon_wb_*()
31
32#include <dev/drm2/drmP.h>
33#include <dev/drm2/drm_crtc_helper.h>
34#include <dev/drm2/radeon/radeon_drm.h>
35#include "radeon_reg.h"
36#include "radeon.h"
37#include "atom.h"
38

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

186 rdev->scratch.free[i] = true;
187 return;
188 }
189 }
190}
191
192/*
193 * radeon_wb_*()
194 * Writeback is the the method by which the the GPU updates special pages
194 * Writeback is the method by which the GPU updates special pages
195 * in memory with the status of certain GPU events (fences, ring pointers,
196 * etc.).
197 */
198
199/**
200 * radeon_wb_disable - Disable Writeback
201 *
202 * @rdev: radeon_device pointer

--- 1367 unchanged lines hidden ---
195 * in memory with the status of certain GPU events (fences, ring pointers,
196 * etc.).
197 */
198
199/**
200 * radeon_wb_disable - Disable Writeback
201 *
202 * @rdev: radeon_device pointer

--- 1367 unchanged lines hidden ---