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
0435d7c6
Commit
0435d7c6
authored
May 06, 2020
by
Ben Skeggs
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
drm/nouveau/disp/hda/gv100-: NV_PDISP_SF_AUDIO_CNTRL0 register moved
Signed-off-by:
Ben Skeggs
<
bskeggs@redhat.com
>
parent
7ec60c04
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
35 additions
and
2 deletions
+35
-2
drivers/gpu/drm/nouveau/nvkm/engine/disp/Kbuild
drivers/gpu/drm/nouveau/nvkm/engine/disp/Kbuild
+1
-0
drivers/gpu/drm/nouveau/nvkm/engine/disp/hdagv100.c
drivers/gpu/drm/nouveau/nvkm/engine/disp/hdagv100.c
+30
-0
drivers/gpu/drm/nouveau/nvkm/engine/disp/ior.h
drivers/gpu/drm/nouveau/nvkm/engine/disp/ior.h
+2
-0
drivers/gpu/drm/nouveau/nvkm/engine/disp/sorgv100.c
drivers/gpu/drm/nouveau/nvkm/engine/disp/sorgv100.c
+1
-1
drivers/gpu/drm/nouveau/nvkm/engine/disp/sortu102.c
drivers/gpu/drm/nouveau/nvkm/engine/disp/sortu102.c
+1
-1
No files found.
drivers/gpu/drm/nouveau/nvkm/engine/disp/Kbuild
View file @
0435d7c6
...
...
@@ -47,6 +47,7 @@ nvkm-y += nvkm/engine/disp/dp.o
nvkm-y += nvkm/engine/disp/hdagt215.o
nvkm-y += nvkm/engine/disp/hdagf119.o
nvkm-y += nvkm/engine/disp/hdagv100.o
nvkm-y += nvkm/engine/disp/hdmi.o
nvkm-y += nvkm/engine/disp/hdmig84.o
...
...
drivers/gpu/drm/nouveau/nvkm/engine/disp/hdagv100.c
0 → 100644
View file @
0435d7c6
/*
* Copyright 2020 Red Hat Inc.
*
* Permission is hereby granted, free of charge, to any person obtaining a
* copy of this software and associated documentation files (the "Software"),
* to deal in the Software without restriction, including without limitation
* the rights to use, copy, modify, merge, publish, distribute, sublicense,
* and/or sell copies of the Software, and to permit persons to whom the
* Software is furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
* THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
* OTHER DEALINGS IN THE SOFTWARE.
*/
#include "ior.h"
void
gv100_hda_device_entry
(
struct
nvkm_ior
*
ior
,
int
head
)
{
struct
nvkm_device
*
device
=
ior
->
disp
->
engine
.
subdev
.
device
;
const
u32
hoff
=
0x800
*
head
;
nvkm_mask
(
device
,
0x616528
+
hoff
,
0x00000070
,
head
<<
4
);
}
drivers/gpu/drm/nouveau/nvkm/engine/disp/ior.h
View file @
0435d7c6
...
...
@@ -165,6 +165,8 @@ void gf119_hda_hpd(struct nvkm_ior *, int, bool);
void
gf119_hda_eld
(
struct
nvkm_ior
*
,
int
,
u8
*
,
u8
);
void
gf119_hda_device_entry
(
struct
nvkm_ior
*
,
int
);
void
gv100_hda_device_entry
(
struct
nvkm_ior
*
,
int
);
#define IOR_MSG(i,l,f,a...) do { \
struct nvkm_ior *_ior = (i); \
nvkm_##l(&_ior->disp->engine.subdev, "%s: "f"\n", _ior->name, ##a); \
...
...
drivers/gpu/drm/nouveau/nvkm/engine/disp/sorgv100.c
View file @
0435d7c6
...
...
@@ -103,7 +103,7 @@ gv100_sor = {
.
hda
=
{
.
hpd
=
gf119_hda_hpd
,
.
eld
=
gf119_hda_eld
,
.
device_entry
=
g
f119
_hda_device_entry
,
.
device_entry
=
g
v100
_hda_device_entry
,
},
};
...
...
drivers/gpu/drm/nouveau/nvkm/engine/disp/sortu102.c
View file @
0435d7c6
...
...
@@ -88,7 +88,7 @@ tu102_sor = {
.
hda
=
{
.
hpd
=
gf119_hda_hpd
,
.
eld
=
gf119_hda_eld
,
.
device_entry
=
g
f119
_hda_device_entry
,
.
device_entry
=
g
v100
_hda_device_entry
,
},
};
...
...
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