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
nexedi
linux
Commits
1fe487d7
Commit
1fe487d7
authored
Dec 09, 2016
by
Ben Skeggs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
drm/nouveau/core: recognise GP106 chipset
Signed-off-by:
Ben Skeggs
<
bskeggs@redhat.com
>
parent
10dcab3e
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
30 additions
and
0 deletions
+30
-0
drivers/gpu/drm/nouveau/nvkm/engine/device/base.c
drivers/gpu/drm/nouveau/nvkm/engine/device/base.c
+30
-0
No files found.
drivers/gpu/drm/nouveau/nvkm/engine/device/base.c
View file @
1fe487d7
...
...
@@ -2241,6 +2241,35 @@ nv134_chipset = {
.
fifo
=
gp100_fifo_new
,
};
static
const
struct
nvkm_device_chip
nv136_chipset
=
{
.
name
=
"GP106"
,
.
bar
=
gf100_bar_new
,
.
bios
=
nvkm_bios_new
,
.
bus
=
gf100_bus_new
,
.
devinit
=
gm200_devinit_new
,
.
fb
=
gp102_fb_new
,
.
fuse
=
gm107_fuse_new
,
.
gpio
=
gk104_gpio_new
,
.
i2c
=
gm200_i2c_new
,
.
ibus
=
gm200_ibus_new
,
.
imem
=
nv50_instmem_new
,
.
ltc
=
gp100_ltc_new
,
.
mc
=
gp100_mc_new
,
.
mmu
=
gf100_mmu_new
,
.
pci
=
gp100_pci_new
,
.
pmu
=
gp102_pmu_new
,
.
timer
=
gk20a_timer_new
,
.
top
=
gk104_top_new
,
.
ce
[
0
]
=
gp102_ce_new
,
.
ce
[
1
]
=
gp102_ce_new
,
.
ce
[
2
]
=
gp102_ce_new
,
.
ce
[
3
]
=
gp102_ce_new
,
.
disp
=
gp102_disp_new
,
.
dma
=
gf119_dma_new
,
.
fifo
=
gp100_fifo_new
,
};
static
int
nvkm_device_event_ctor
(
struct
nvkm_object
*
object
,
void
*
data
,
u32
size
,
struct
nvkm_notify
*
notify
)
...
...
@@ -2677,6 +2706,7 @@ nvkm_device_ctor(const struct nvkm_device_func *func,
case
0x130
:
device
->
chip
=
&
nv130_chipset
;
break
;
case
0x132
:
device
->
chip
=
&
nv132_chipset
;
break
;
case
0x134
:
device
->
chip
=
&
nv134_chipset
;
break
;
case
0x136
:
device
->
chip
=
&
nv136_chipset
;
break
;
default:
nvdev_error
(
device
,
"unknown chipset (%08x)
\n
"
,
boot0
);
goto
done
;
...
...
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