Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
linux
Commits
fdb751ef
Commit
fdb751ef
authored
Aug 10, 2014
by
Ben Skeggs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
drm/nouveau: remove as much direct use of core headers as possible
Signed-off-by:
Ben Skeggs
<
bskeggs@redhat.com
>
parent
f45f55c4
Changes
23
Hide whitespace changes
Inline
Side-by-side
Showing
23 changed files
with
22 additions
and
59 deletions
+22
-59
drivers/gpu/drm/nouveau/dispnv04/disp.c
drivers/gpu/drm/nouveau/dispnv04/disp.c
+0
-5
drivers/gpu/drm/nouveau/dispnv04/tvnv17.c
drivers/gpu/drm/nouveau/dispnv04/tvnv17.c
+0
-4
drivers/gpu/drm/nouveau/nouveau_abi16.c
drivers/gpu/drm/nouveau/nouveau_abi16.c
+2
-5
drivers/gpu/drm/nouveau/nouveau_agp.c
drivers/gpu/drm/nouveau/nouveau_agp.c
+0
-2
drivers/gpu/drm/nouveau/nouveau_bo.c
drivers/gpu/drm/nouveau/nouveau_bo.c
+1
-1
drivers/gpu/drm/nouveau/nouveau_chan.c
drivers/gpu/drm/nouveau/nouveau_chan.c
+4
-3
drivers/gpu/drm/nouveau/nouveau_connector.h
drivers/gpu/drm/nouveau/nouveau_connector.h
+0
-4
drivers/gpu/drm/nouveau/nouveau_display.c
drivers/gpu/drm/nouveau/nouveau_display.c
+2
-1
drivers/gpu/drm/nouveau/nouveau_dma.c
drivers/gpu/drm/nouveau/nouveau_dma.c
+0
-2
drivers/gpu/drm/nouveau/nouveau_dp.c
drivers/gpu/drm/nouveau/nouveau_dp.c
+0
-2
drivers/gpu/drm/nouveau/nouveau_drm.c
drivers/gpu/drm/nouveau/nouveau_drm.c
+2
-0
drivers/gpu/drm/nouveau/nouveau_drm.h
drivers/gpu/drm/nouveau/nouveau_drm.h
+1
-4
drivers/gpu/drm/nouveau/nouveau_fbcon.c
drivers/gpu/drm/nouveau/nouveau_fbcon.c
+0
-3
drivers/gpu/drm/nouveau/nouveau_sysfs.c
drivers/gpu/drm/nouveau/nouveau_sysfs.c
+3
-3
drivers/gpu/drm/nouveau/nouveau_ttm.c
drivers/gpu/drm/nouveau/nouveau_ttm.c
+1
-0
drivers/gpu/drm/nouveau/nv04_fbcon.c
drivers/gpu/drm/nouveau/nv04_fbcon.c
+0
-2
drivers/gpu/drm/nouveau/nv10_fence.c
drivers/gpu/drm/nouveau/nv10_fence.c
+0
-3
drivers/gpu/drm/nouveau/nv10_fence.h
drivers/gpu/drm/nouveau/nv10_fence.h
+0
-1
drivers/gpu/drm/nouveau/nv17_fence.c
drivers/gpu/drm/nouveau/nv17_fence.c
+2
-2
drivers/gpu/drm/nouveau/nv50_display.c
drivers/gpu/drm/nouveau/nv50_display.c
+2
-2
drivers/gpu/drm/nouveau/nv50_fence.c
drivers/gpu/drm/nouveau/nv50_fence.c
+2
-2
drivers/gpu/drm/nouveau/nv84_fence.c
drivers/gpu/drm/nouveau/nv84_fence.c
+0
-4
drivers/gpu/drm/nouveau/nvc0_fence.c
drivers/gpu/drm/nouveau/nvc0_fence.c
+0
-4
No files found.
drivers/gpu/drm/nouveau/dispnv04/disp.c
View file @
fdb751ef
...
...
@@ -22,9 +22,6 @@
* Author: Ben Skeggs
*/
#include <core/object.h>
#include <core/class.h>
#include <drm/drmP.h>
#include <drm/drm_crtc_helper.h>
...
...
@@ -34,8 +31,6 @@
#include "nouveau_encoder.h"
#include "nouveau_connector.h"
#include <subdev/i2c.h>
int
nv04_display_early_init
(
struct
drm_device
*
dev
)
{
...
...
drivers/gpu/drm/nouveau/dispnv04/tvnv17.c
View file @
fdb751ef
...
...
@@ -34,10 +34,6 @@
#include "hw.h"
#include "tvnv17.h"
#include <core/device.h>
#include <subdev/bios/gpio.h>
MODULE_PARM_DESC
(
tv_norm
,
"Default TV norm.
\n
"
"
\t\t
Supported: PAL, PAL-M, PAL-N, PAL-Nc, NTSC-M, NTSC-J,
\n
"
"
\t\t\t
hd480i, hd480p, hd576i, hd576p, hd720p, hd1080i.
\n
"
...
...
drivers/gpu/drm/nouveau/nouveau_abi16.c
View file @
fdb751ef
...
...
@@ -21,11 +21,8 @@
*
*/
#include <core/object.h>
#include <core/client.h>
#include <core/device.h>
#include <core/class.h>
#include <core/mm.h>
#include <nvif/os.h>
#include <nvif/class.h>
#include "nouveau_drm.h"
#include "nouveau_dma.h"
...
...
drivers/gpu/drm/nouveau/nouveau_agp.c
View file @
fdb751ef
#include <linux/module.h>
#include <core/device.h>
#include "nouveau_drm.h"
#include "nouveau_agp.h"
#include "nouveau_reg.h"
...
...
drivers/gpu/drm/nouveau/nouveau_bo.c
View file @
fdb751ef
...
...
@@ -27,7 +27,7 @@
* Jeremy Kolb <jkolb@brandeis.edu>
*/
#include <
core/engine
.h>
#include <
linux/dma-mapping
.h>
#include <linux/swiotlb.h>
#include "nouveau_drm.h"
...
...
drivers/gpu/drm/nouveau/nouveau_chan.c
View file @
fdb751ef
...
...
@@ -22,10 +22,11 @@
* Authors: Ben Skeggs
*/
#include <core/object.h>
#include <nvif/os.h>
#include <nvif/class.h>
/*XXX*/
#include <core/client.h>
#include <core/device.h>
#include <core/class.h>
#include "nouveau_drm.h"
#include "nouveau_dma.h"
...
...
drivers/gpu/drm/nouveau/nouveau_connector.h
View file @
fdb751ef
...
...
@@ -31,10 +31,6 @@
#include <drm/drm_dp_helper.h>
#include "nouveau_crtc.h"
#include <core/event.h>
#include <subdev/bios.h>
struct
nouveau_i2c_port
;
enum
nouveau_underscan_type
{
...
...
drivers/gpu/drm/nouveau/nouveau_display.c
View file @
fdb751ef
...
...
@@ -27,6 +27,8 @@
#include <drm/drmP.h>
#include <drm/drm_crtc_helper.h>
#include <nvif/class.h>
#include "nouveau_fbcon.h"
#include "dispnv04/hw.h"
#include "nouveau_crtc.h"
...
...
@@ -37,7 +39,6 @@
#include "nouveau_fence.h"
#include <core/class.h>
#include <nvif/event.h>
static
int
...
...
drivers/gpu/drm/nouveau/nouveau_dma.c
View file @
fdb751ef
...
...
@@ -24,8 +24,6 @@
*
*/
#include <core/client.h>
#include "nouveau_drm.h"
#include "nouveau_dma.h"
...
...
drivers/gpu/drm/nouveau/nouveau_dp.c
View file @
fdb751ef
...
...
@@ -30,8 +30,6 @@
#include "nouveau_encoder.h"
#include "nouveau_crtc.h"
#include <core/class.h>
static
void
nouveau_dp_probe_oui
(
struct
drm_device
*
dev
,
struct
nouveau_i2c_port
*
auxch
,
u8
*
dpcd
)
...
...
drivers/gpu/drm/nouveau/nouveau_drm.c
View file @
fdb751ef
...
...
@@ -27,8 +27,10 @@
#include <linux/pci.h>
#include <linux/pm_runtime.h>
#include <linux/vga_switcheroo.h>
#include "drmP.h"
#include "drm_crtc_helper.h"
#include <core/device.h>
#include <core/gpuobj.h>
#include <core/class.h>
...
...
drivers/gpu/drm/nouveau/nouveau_drm.h
View file @
fdb751ef
...
...
@@ -25,13 +25,10 @@
* - fixes multiple bugs in flip completion events and timestamping
*/
#include <core/client.h>
#include <core/event.h>
#include <nvif/client.h>
#include <nvif/device.h>
#include <
subdev/vm
.h>
#include <
core/class
.h>
#include <drmP.h>
#include <drm/nouveau_drm.h>
...
...
drivers/gpu/drm/nouveau/nouveau_fbcon.c
View file @
fdb751ef
...
...
@@ -51,9 +51,6 @@
#include "nouveau_crtc.h"
#include <core/client.h>
#include <core/device.h>
MODULE_PARM_DESC
(
nofbaccel
,
"Disable fbcon acceleration"
);
static
int
nouveau_nofbaccel
=
0
;
module_param_named
(
nofbaccel
,
nouveau_nofbaccel
,
int
,
0400
);
...
...
drivers/gpu/drm/nouveau/nouveau_sysfs.c
View file @
fdb751ef
...
...
@@ -22,10 +22,10 @@
* Authors: Ben Skeggs <bskeggs@redhat.com>
*/
#include "nouveau_sysfs.h"
#include <nvif/os.h>
#include <nvif/class.h>
#include <core/object.h>
#include <core/class.h>
#include "nouveau_sysfs.h"
static
inline
struct
drm_device
*
drm_device
(
struct
device
*
d
)
...
...
drivers/gpu/drm/nouveau/nouveau_ttm.c
View file @
fdb751ef
...
...
@@ -203,6 +203,7 @@ const struct ttm_mem_type_manager_func nouveau_gart_manager = {
nouveau_gart_manager_debug
};
/*XXX*/
#include <core/subdev/vm/nv04.h>
static
int
nv04_gart_manager_init
(
struct
ttm_mem_type_manager
*
man
,
unsigned
long
psize
)
...
...
drivers/gpu/drm/nouveau/nv04_fbcon.c
View file @
fdb751ef
...
...
@@ -22,8 +22,6 @@
* DEALINGS IN THE SOFTWARE.
*/
#include <core/object.h>
#include "nouveau_drm.h"
#include "nouveau_dma.h"
#include "nouveau_fbcon.h"
...
...
drivers/gpu/drm/nouveau/nv10_fence.c
View file @
fdb751ef
...
...
@@ -22,9 +22,6 @@
* Authors: Ben Skeggs <bskeggs@redhat.com>
*/
#include <core/object.h>
#include <core/class.h>
#include "nouveau_drm.h"
#include "nouveau_dma.h"
#include "nv10_fence.h"
...
...
drivers/gpu/drm/nouveau/nv10_fence.h
View file @
fdb751ef
#ifndef __NV10_FENCE_H_
#define __NV10_FENCE_H_
#include <core/os.h>
#include "nouveau_fence.h"
#include "nouveau_bo.h"
...
...
drivers/gpu/drm/nouveau/nv17_fence.c
View file @
fdb751ef
...
...
@@ -22,8 +22,8 @@
* Authors: Ben Skeggs <bskeggs@redhat.com>
*/
#include <
core/object
.h>
#include <
core
/class.h>
#include <
nvif/os
.h>
#include <
nvif
/class.h>
#include "nouveau_drm.h"
#include "nouveau_dma.h"
...
...
drivers/gpu/drm/nouveau/nv50_display.c
View file @
fdb751ef
...
...
@@ -28,6 +28,8 @@
#include <drm/drm_crtc_helper.h>
#include <drm/drm_dp_helper.h>
#include <nvif/class.h>
#include "nouveau_drm.h"
#include "nouveau_dma.h"
#include "nouveau_gem.h"
...
...
@@ -37,8 +39,6 @@
#include "nouveau_fence.h"
#include "nv50_display.h"
#include <core/class.h>
#define EVO_DMA_NR 9
#define EVO_MASTER (0x00)
...
...
drivers/gpu/drm/nouveau/nv50_fence.c
View file @
fdb751ef
...
...
@@ -22,8 +22,8 @@
* Authors: Ben Skeggs <bskeggs@redhat.com>
*/
#include <
core/object
.h>
#include <
core
/class.h>
#include <
nvif/os
.h>
#include <
nvif
/class.h>
#include "nouveau_drm.h"
#include "nouveau_dma.h"
...
...
drivers/gpu/drm/nouveau/nv84_fence.c
View file @
fdb751ef
...
...
@@ -22,10 +22,6 @@
* Authors: Ben Skeggs
*/
#include <core/object.h>
#include <core/client.h>
#include <core/class.h>
#include "nouveau_drm.h"
#include "nouveau_dma.h"
#include "nouveau_fence.h"
...
...
drivers/gpu/drm/nouveau/nvc0_fence.c
View file @
fdb751ef
...
...
@@ -22,10 +22,6 @@
* Authors: Ben Skeggs
*/
#include <core/object.h>
#include <core/client.h>
#include <core/class.h>
#include "nouveau_drm.h"
#include "nouveau_dma.h"
#include "nouveau_fence.h"
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment