Commit bd8369ec authored by Ben Skeggs's avatar Ben Skeggs

drm/nouveau/msenc: rename from venc (no binary change)

Switch to NVIDIA's name for the device.

The namespace of NVKM is being changed to nvkm_ instead of nouveau_,
which will be used for the DRM part of the driver.  This is being
done in order to make it very clear as to what part of the driver a
given symbol belongs to, and as a minor step towards splitting the
DRM driver out to be able to stand on its own (for virt).

Because there's already a large amount of churn here anyway, this is
as good a time as any to also switch to NVIDIA's device and chipset
naming to ease collaboration with them.

A comparison of objdump disassemblies proves no code changes.
Signed-off-by: default avatarBen Skeggs <bskeggs@redhat.com>
parent 8700287b
...@@ -132,7 +132,7 @@ struct nv_device_v0 { ...@@ -132,7 +132,7 @@ struct nv_device_v0 {
#define NV_DEVICE_V0_DISABLE_CE0 0x0000008000000000ULL #define NV_DEVICE_V0_DISABLE_CE0 0x0000008000000000ULL
#define NV_DEVICE_V0_DISABLE_CE1 0x0000010000000000ULL #define NV_DEVICE_V0_DISABLE_CE1 0x0000010000000000ULL
#define NV_DEVICE_V0_DISABLE_VIC 0x0000020000000000ULL #define NV_DEVICE_V0_DISABLE_VIC 0x0000020000000000ULL
#define NV_DEVICE_V0_DISABLE_VENC 0x0000040000000000ULL #define NV_DEVICE_V0_DISABLE_MSENC 0x0000040000000000ULL
#define NV_DEVICE_V0_DISABLE_CE2 0x0000080000000000ULL #define NV_DEVICE_V0_DISABLE_CE2 0x0000080000000000ULL
#define NV_DEVICE_V0_DISABLE_MSVLD 0x0000100000000000ULL #define NV_DEVICE_V0_DISABLE_MSVLD 0x0000100000000000ULL
#define NV_DEVICE_V0_DISABLE_SEC 0x0000200000000000ULL #define NV_DEVICE_V0_DISABLE_SEC 0x0000200000000000ULL
......
...@@ -56,7 +56,7 @@ enum nv_subdev_type { ...@@ -56,7 +56,7 @@ enum nv_subdev_type {
NVDEV_ENGINE_CE1, NVDEV_ENGINE_CE1,
NVDEV_ENGINE_CE2, NVDEV_ENGINE_CE2,
NVDEV_ENGINE_VIC, NVDEV_ENGINE_VIC,
NVDEV_ENGINE_VENC, NVDEV_ENGINE_MSENC,
NVDEV_ENGINE_DISP, NVDEV_ENGINE_DISP,
NVDEV_ENGINE_PM, NVDEV_ENGINE_PM,
NVDEV_ENGINE_MSVLD, NVDEV_ENGINE_MSVLD,
......
...@@ -239,7 +239,7 @@ static const u64 disable_map[] = { ...@@ -239,7 +239,7 @@ static const u64 disable_map[] = {
[NVDEV_ENGINE_CE1] = NV_DEVICE_V0_DISABLE_CE1, [NVDEV_ENGINE_CE1] = NV_DEVICE_V0_DISABLE_CE1,
[NVDEV_ENGINE_CE2] = NV_DEVICE_V0_DISABLE_CE2, [NVDEV_ENGINE_CE2] = NV_DEVICE_V0_DISABLE_CE2,
[NVDEV_ENGINE_VIC] = NV_DEVICE_V0_DISABLE_VIC, [NVDEV_ENGINE_VIC] = NV_DEVICE_V0_DISABLE_VIC,
[NVDEV_ENGINE_VENC] = NV_DEVICE_V0_DISABLE_VENC, [NVDEV_ENGINE_MSENC] = NV_DEVICE_V0_DISABLE_MSENC,
[NVDEV_ENGINE_DISP] = NV_DEVICE_V0_DISABLE_DISP, [NVDEV_ENGINE_DISP] = NV_DEVICE_V0_DISABLE_DISP,
[NVDEV_ENGINE_MSVLD] = NV_DEVICE_V0_DISABLE_MSVLD, [NVDEV_ENGINE_MSVLD] = NV_DEVICE_V0_DISABLE_MSVLD,
[NVDEV_ENGINE_SEC] = NV_DEVICE_V0_DISABLE_SEC, [NVDEV_ENGINE_SEC] = NV_DEVICE_V0_DISABLE_SEC,
......
...@@ -53,7 +53,7 @@ static const struct { ...@@ -53,7 +53,7 @@ static const struct {
_(NVDEV_ENGINE_MSVLD , 0), _(NVDEV_ENGINE_MSVLD , 0),
_(NVDEV_ENGINE_CE0 , 0), _(NVDEV_ENGINE_CE0 , 0),
_(NVDEV_ENGINE_CE1 , 0), _(NVDEV_ENGINE_CE1 , 0),
_(NVDEV_ENGINE_VENC , 0), _(NVDEV_ENGINE_MSENC , 0),
}; };
#undef _ #undef _
#define FIFO_ENGINE_NR ARRAY_SIZE(fifo_engine) #define FIFO_ENGINE_NR ARRAY_SIZE(fifo_engine)
...@@ -421,7 +421,7 @@ nve0_fifo_engidx(struct nve0_fifo_priv *priv, u32 engn) ...@@ -421,7 +421,7 @@ nve0_fifo_engidx(struct nve0_fifo_priv *priv, u32 engn)
case NVDEV_ENGINE_VP : engn = 3; break; case NVDEV_ENGINE_VP : engn = 3; break;
case NVDEV_ENGINE_CE0 : engn = 4; break; case NVDEV_ENGINE_CE0 : engn = 4; break;
case NVDEV_ENGINE_CE1 : engn = 5; break; case NVDEV_ENGINE_CE1 : engn = 5; break;
case NVDEV_ENGINE_VENC : engn = 6; break; case NVDEV_ENGINE_MSENC: engn = 6; break;
default: default:
return -1; return -1;
} }
...@@ -626,7 +626,7 @@ nve0_fifo_fault_engine[] = { ...@@ -626,7 +626,7 @@ nve0_fifo_fault_engine[] = {
{ 0x15, "CE0", NULL, NVDEV_ENGINE_CE0 }, { 0x15, "CE0", NULL, NVDEV_ENGINE_CE0 },
{ 0x16, "CE1", NULL, NVDEV_ENGINE_CE1 }, { 0x16, "CE1", NULL, NVDEV_ENGINE_CE1 },
{ 0x17, "PMU" }, { 0x17, "PMU" },
{ 0x19, "MSENC", NULL, NVDEV_ENGINE_VENC }, { 0x19, "MSENC", NULL, NVDEV_ENGINE_MSENC },
{ 0x1b, "CE2", NULL, NVDEV_ENGINE_CE2 }, { 0x1b, "CE2", NULL, NVDEV_ENGINE_CE2 },
{} {}
}; };
......
...@@ -77,7 +77,7 @@ nvc0_devinit_disable(struct nouveau_devinit *devinit) ...@@ -77,7 +77,7 @@ nvc0_devinit_disable(struct nouveau_devinit *devinit)
if (r022500 & 0x00000004) if (r022500 & 0x00000004)
disable |= (1ULL << NVDEV_ENGINE_MSVLD); disable |= (1ULL << NVDEV_ENGINE_MSVLD);
if (r022500 & 0x00000008) if (r022500 & 0x00000008)
disable |= (1ULL << NVDEV_ENGINE_VENC); disable |= (1ULL << NVDEV_ENGINE_MSENC);
if (r022500 & 0x00000100) if (r022500 & 0x00000100)
disable |= (1ULL << NVDEV_ENGINE_CE0); disable |= (1ULL << NVDEV_ENGINE_CE0);
if (r022500 & 0x00000200) if (r022500 & 0x00000200)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment