mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-08-05 16:54:27 +00:00
drm/nvc0: fix init without firmware present
Signed-off-by: Ben Skeggs <bskeggs@redhat.com>
This commit is contained in:
parent
47a44d27ca
commit
eeb9cc015f
1 changed files with 3 additions and 5 deletions
|
@ -584,7 +584,7 @@ nvc0_graph_init_ctxctl(struct drm_device *dev)
|
|||
r000260 = nv_mask(dev, 0x000260, 0x00000001, 0x00000000);
|
||||
ret = nvc0_fuc_load_fw(dev, 0x409000, "fuc409c", "fuc409d");
|
||||
if (ret == 0)
|
||||
nvc0_fuc_load_fw(dev, 0x41a000, "fuc41ac", "fuc41ad");
|
||||
ret = nvc0_fuc_load_fw(dev, 0x41a000, "fuc41ac", "fuc41ad");
|
||||
nv_wr32(dev, 0x000260, r000260);
|
||||
|
||||
if (ret)
|
||||
|
@ -686,10 +686,8 @@ nvc0_graph_init(struct drm_device *dev)
|
|||
nv_wr32(dev, 0x400054, 0x34ce3464);
|
||||
|
||||
ret = nvc0_graph_init_ctxctl(dev);
|
||||
if (ret)
|
||||
return ret;
|
||||
|
||||
dev_priv->engine.graph.accel_blocked = false;
|
||||
if (ret == 0)
|
||||
dev_priv->engine.graph.accel_blocked = false;
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue