Skip to content

Commit

Permalink
drm/nouveau/gr: use NVIDIA-provided external firmwares
Browse files Browse the repository at this point in the history
NVIDIA will officially start providing GR firmwares through
linux-firmware for GPUs that require it. Change the GR firmware lookup
function to use these files.

Signed-off-by: Alexandre Courbot <[email protected]>
Signed-off-by: Ben Skeggs <[email protected]>
  • Loading branch information
Gnurou authored and Ben Skeggs committed Aug 28, 2015
1 parent 13cffad commit 8539b37
Showing 1 changed file with 19 additions and 12 deletions.
31 changes: 19 additions & 12 deletions drivers/gpu/drm/nouveau/nvkm/engine/gr/gf100.c
Original file line number Diff line number Diff line change
Expand Up @@ -1550,18 +1550,25 @@ gf100_gr_ctor_fw(struct gf100_gr_priv *priv, const char *fwname,
{
struct nvkm_device *device = nv_device(priv);
const struct firmware *fw;
char f[32];
char f[64];
char cname[16];
int ret;
int i;

/* Convert device name to lowercase */
strncpy(cname, device->cname, sizeof(cname));
cname[sizeof(cname) - 1] = '\0';
i = strlen(cname);
while (i) {
--i;
cname[i] = tolower(cname[i]);
}

snprintf(f, sizeof(f), "nouveau/nv%02x_%s", device->chipset, fwname);
snprintf(f, sizeof(f), "nvidia/%s/%s.bin", cname, fwname);
ret = request_firmware(&fw, f, nv_device_base(device));
if (ret) {
snprintf(f, sizeof(f), "nouveau/%s", fwname);
ret = request_firmware(&fw, f, nv_device_base(device));
if (ret) {
nv_error(priv, "failed to load %s\n", fwname);
return ret;
}
nv_error(priv, "failed to load %s\n", fwname);
return ret;
}

fuc->size = fw->size;
Expand Down Expand Up @@ -1615,10 +1622,10 @@ gf100_gr_ctor(struct nvkm_object *parent, struct nvkm_object *engine,

if (use_ext_fw) {
nv_info(priv, "using external firmware\n");
if (gf100_gr_ctor_fw(priv, "fuc409c", &priv->fuc409c) ||
gf100_gr_ctor_fw(priv, "fuc409d", &priv->fuc409d) ||
gf100_gr_ctor_fw(priv, "fuc41ac", &priv->fuc41ac) ||
gf100_gr_ctor_fw(priv, "fuc41ad", &priv->fuc41ad))
if (gf100_gr_ctor_fw(priv, "fecs_inst", &priv->fuc409c) ||
gf100_gr_ctor_fw(priv, "fecs_data", &priv->fuc409d) ||
gf100_gr_ctor_fw(priv, "gpccs_inst", &priv->fuc41ac) ||
gf100_gr_ctor_fw(priv, "gpccs_data", &priv->fuc41ad))
return -ENODEV;
priv->firmware = true;
}
Expand Down

0 comments on commit 8539b37

Please sign in to comment.