Skip to content

Commit

Permalink
drm/nouveau/disp/hda/gt215-: pass head to nvkm_ior.hda.eld()
Browse files Browse the repository at this point in the history
We're going to use the bound head to select HDA device entry.

Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
  • Loading branch information
Ben Skeggs committed May 22, 2020
1 parent 18d8cf9 commit 1404e56
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion drivers/gpu/drm/nouveau/nvkm/engine/disp/hdagf119.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#include "ior.h"

void
gf119_hda_eld(struct nvkm_ior *ior, u8 *data, u8 size)
gf119_hda_eld(struct nvkm_ior *ior, int head, u8 *data, u8 size)
{
struct nvkm_device *device = ior->disp->engine.subdev.device;
const u32 soff = 0x030 * ior->id;
Expand Down
2 changes: 1 addition & 1 deletion drivers/gpu/drm/nouveau/nvkm/engine/disp/hdagt215.c
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
#include "ior.h"

void
gt215_hda_eld(struct nvkm_ior *ior, u8 *data, u8 size)
gt215_hda_eld(struct nvkm_ior *ior, int head, u8 *data, u8 size)
{
struct nvkm_device *device = ior->disp->engine.subdev.device;
const u32 soff = ior->id * 0x800;
Expand Down
6 changes: 3 additions & 3 deletions drivers/gpu/drm/nouveau/nvkm/engine/disp/ior.h
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ struct nvkm_ior_func {

struct {
void (*hpd)(struct nvkm_ior *, int head, bool present);
void (*eld)(struct nvkm_ior *, u8 *data, u8 size);
void (*eld)(struct nvkm_ior *, int head, u8 *data, u8 size);
} hda;
};

Expand Down Expand Up @@ -158,10 +158,10 @@ void gv100_hdmi_ctrl(struct nvkm_ior *, int, bool, u8, u8, u8 *, u8 , u8 *, u8);
void gm200_hdmi_scdc(struct nvkm_ior *, int, u8);

void gt215_hda_hpd(struct nvkm_ior *, int, bool);
void gt215_hda_eld(struct nvkm_ior *, u8 *, u8);
void gt215_hda_eld(struct nvkm_ior *, int, u8 *, u8);

void gf119_hda_hpd(struct nvkm_ior *, int, bool);
void gf119_hda_eld(struct nvkm_ior *, u8 *, u8);
void gf119_hda_eld(struct nvkm_ior *, int, u8 *, u8);

#define IOR_MSG(i,l,f,a...) do { \
struct nvkm_ior *_ior = (i); \
Expand Down
2 changes: 1 addition & 1 deletion drivers/gpu/drm/nouveau/nvkm/engine/disp/rootnv50.c
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ nv50_disp_root_mthd_(struct nvkm_object *object, u32 mthd, void *data, u32 size)
if (outp->info.type == DCB_OUTPUT_DP)
ior->func->dp.audio(ior, hidx, true);
ior->func->hda.hpd(ior, hidx, true);
ior->func->hda.eld(ior, data, size);
ior->func->hda.eld(ior, hidx, data, size);
} else {
if (outp->info.type == DCB_OUTPUT_DP)
ior->func->dp.audio(ior, hidx, false);
Expand Down

0 comments on commit 1404e56

Please sign in to comment.