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
5999933f
Commit
5999933f
authored
Aug 03, 2012
by
Ben Skeggs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
drm/nouveau: add Kconfig options for debug control
Signed-off-by:
Ben Skeggs
<
bskeggs@redhat.com
>
parent
77145f1c
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
29 additions
and
9 deletions
+29
-9
drivers/gpu/drm/nouveau/Kconfig
drivers/gpu/drm/nouveau/Kconfig
+28
-8
drivers/gpu/drm/nouveau/Makefile
drivers/gpu/drm/nouveau/Makefile
+1
-1
No files found.
drivers/gpu/drm/nouveau/Kconfig
View file @
5999933f
...
@@ -17,6 +17,34 @@ config DRM_NOUVEAU
...
@@ -17,6 +17,34 @@ config DRM_NOUVEAU
help
help
Choose this option for open-source nVidia support.
Choose this option for open-source nVidia support.
config NOUVEAU_DEBUG
int "Maximum debug level"
depends on DRM_NOUVEAU
range 0 7
default 5
help
Selects the maximum debug level to compile support for.
0 - fatal
1 - error
2 - warning
3 - info
4 - debug
5 - trace (recommended)
6 - paranoia
7 - spam
The paranoia and spam levels will add a lot of extra checks which
may potentially slow down driver operation.
config NOUVEAU_DEBUG_DEFAULT
int "Default debug level"
depends on DRM_NOUVEAU
range 0 7
default 3
help
Selects the default debug level
config DRM_NOUVEAU_BACKLIGHT
config DRM_NOUVEAU_BACKLIGHT
bool "Support for backlight control"
bool "Support for backlight control"
depends on DRM_NOUVEAU
depends on DRM_NOUVEAU
...
@@ -25,14 +53,6 @@ config DRM_NOUVEAU_BACKLIGHT
...
@@ -25,14 +53,6 @@ config DRM_NOUVEAU_BACKLIGHT
Say Y here if you want to control the backlight of your display
Say Y here if you want to control the backlight of your display
(e.g. a laptop panel).
(e.g. a laptop panel).
config DRM_NOUVEAU_DEBUG
bool "Build in Nouveau's debugfs support"
depends on DRM_NOUVEAU && DEBUG_FS
default y
help
Say Y here if you want Nouveau to output debugging information
via debugfs.
menu "I2C encoder or helper chips"
menu "I2C encoder or helper chips"
depends on DRM && DRM_KMS_HELPER && I2C
depends on DRM && DRM_KMS_HELPER && I2C
...
...
drivers/gpu/drm/nouveau/Makefile
View file @
5999933f
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
# Makefile for the drm device driver. This driver provides support for the
# Makefile for the drm device driver. This driver provides support for the
# Direct Rendering Infrastructure (DRI) in XFree86 4.1.0 and higher.
# Direct Rendering Infrastructure (DRI) in XFree86 4.1.0 and higher.
ccflags-y
:=
-Iinclude
/drm
-DCONFIG_NOUVEAU_DEBUG
=
7
-DCONFIG_NOUVEAU_DEBUG_DEFAULT
=
3
ccflags-y
:=
-Iinclude
/drm
ccflags-y
+=
-I
$(src)
/core/include
ccflags-y
+=
-I
$(src)
/core/include
ccflags-y
+=
-I
$(src)
/core
ccflags-y
+=
-I
$(src)
/core
ccflags-y
+=
-I
$(src)
ccflags-y
+=
-I
$(src)
...
...
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