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
a2ac09a0
Commit
a2ac09a0
authored
5 years ago
by
Ben Skeggs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
drm/nouveau/core: allow detected chipset to be overridden
Signed-off-by:
Ben Skeggs
<
bskeggs@redhat.com
>
parent
a0b694d0
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
24 additions
and
3 deletions
+24
-3
drivers/gpu/drm/nouveau/nouveau_drm.c
drivers/gpu/drm/nouveau/nouveau_drm.c
+2
-1
drivers/gpu/drm/nouveau/nvkm/engine/device/base.c
drivers/gpu/drm/nouveau/nvkm/engine/device/base.c
+22
-2
No files found.
drivers/gpu/drm/nouveau/nouveau_drm.c
View file @
a2ac09a0
...
...
@@ -631,7 +631,8 @@ static int nouveau_drm_probe(struct pci_dev *pdev,
/* We need to check that the chipset is supported before booting
* fbdev off the hardware, as there's no way to put it back.
*/
ret
=
nvkm_device_pci_new
(
pdev
,
NULL
,
"error"
,
true
,
false
,
0
,
&
device
);
ret
=
nvkm_device_pci_new
(
pdev
,
nouveau_config
,
"error"
,
true
,
false
,
0
,
&
device
);
if
(
ret
)
return
ret
;
...
...
This diff is collapsed.
Click to expand it.
drivers/gpu/drm/nouveau/nvkm/engine/device/base.c
View file @
a2ac09a0
...
...
@@ -2824,8 +2824,8 @@ nvkm_device_ctor(const struct nvkm_device_func *func,
u64
mmio_base
,
mmio_size
;
u32
boot0
,
strap
;
void
__iomem
*
map
;
int
ret
=
-
EEXIST
;
int
i
;
int
ret
=
-
EEXIST
,
i
;
unsigned
chipset
;
mutex_lock
(
&
nv_devices_mutex
);
if
(
nvkm_device_find_locked
(
handle
))
...
...
@@ -2870,6 +2870,26 @@ nvkm_device_ctor(const struct nvkm_device_func *func,
strap
=
ioread32_native
(
map
+
0x101000
);
iounmap
(
map
);
/* chipset can be overridden for devel/testing purposes */
chipset
=
nvkm_longopt
(
device
->
cfgopt
,
"NvChipset"
,
0
);
if
(
chipset
)
{
u32
override_boot0
;
if
(
chipset
>=
0x10
)
{
override_boot0
=
((
chipset
&
0x1ff
)
<<
20
);
override_boot0
|=
0x000000a1
;
}
else
{
if
(
chipset
!=
0x04
)
override_boot0
=
0x20104000
;
else
override_boot0
=
0x20004000
;
}
nvdev_warn
(
device
,
"CHIPSET OVERRIDE: %08x -> %08x
\n
"
,
boot0
,
override_boot0
);
boot0
=
override_boot0
;
}
/* determine chipset and derive architecture from it */
if
((
boot0
&
0x1f000000
)
>
0
)
{
device
->
chipset
=
(
boot0
&
0x1ff00000
)
>>
20
;
...
...
This diff is collapsed.
Click to expand it.
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