提交 de048192 编写于 作者: B Ben Skeggs

drm/nouveau/flcn: fetch PRI address from TOP if not provided by constructor

Shortcut to avoid each subdev having to do this itself.
Signed-off-by: NBen Skeggs <bskeggs@redhat.com>
上级 5a4b98cd
......@@ -22,6 +22,7 @@
#include "priv.h"
#include <subdev/mc.h>
#include <subdev/top.h>
void
nvkm_falcon_load_imem(struct nvkm_falcon *falcon, void *data, u32 start,
......@@ -141,6 +142,12 @@ nvkm_falcon_oneinit(struct nvkm_falcon *falcon)
u32 debug_reg;
u32 reg;
if (!falcon->addr) {
falcon->addr = nvkm_top_addr(subdev->device, subdev->index);
if (WARN_ON(!falcon->addr))
return -ENODEV;
}
reg = nvkm_falcon_rd32(falcon, 0x12c);
falcon->version = reg & 0xf;
falcon->secret = (reg >> 4) & 0x3;
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册