-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
drm/nouveau/ce: namespace + nvidia gpu names (no binary change)
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: Ben Skeggs <bskeggs@redhat.com>
- Loading branch information
Ben Skeggs
committed
Jan 22, 2015
1 parent
912a29c
commit bd6c5ca
Showing
15 changed files
with
353 additions
and
375 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
nvkm-y += nvkm/engine/ce/nva3.o | ||
nvkm-y += nvkm/engine/ce/nvc0.o | ||
nvkm-y += nvkm/engine/ce/nve0.o | ||
nvkm-y += nvkm/engine/ce/gt215.o | ||
nvkm-y += nvkm/engine/ce/gf100.o | ||
nvkm-y += nvkm/engine/ce/gk104.o |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../drm/nouveau/nvkm/engine/ce/fuc/nva3.fuc3 → ...drm/nouveau/nvkm/engine/ce/fuc/gf100.fuc3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
#define NVA3 | ||
#define GF100 | ||
#include "com.fuc" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
2 changes: 1 addition & 1 deletion
2
.../drm/nouveau/nvkm/engine/ce/fuc/nvc0.fuc3 → ...drm/nouveau/nvkm/engine/ce/fuc/gt215.fuc3
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
#define NVC0 | ||
#define GT215 | ||
#include "com.fuc" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,166 @@ | ||
/* | ||
* Copyright 2012 Red Hat Inc. | ||
* | ||
* Permission is hereby granted, free of charge, to any person obtaining a | ||
* copy of this software and associated documentation files (the "Software"), | ||
* to deal in the Software without restriction, including without limitation | ||
* the rights to use, copy, modify, merge, publish, distribute, sublicense, | ||
* and/or sell copies of the Software, and to permit persons to whom the | ||
* Software is furnished to do so, subject to the following conditions: | ||
* | ||
* The above copyright notice and this permission notice shall be included in | ||
* all copies or substantial portions of the Software. | ||
* | ||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | ||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | ||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | ||
* THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR | ||
* OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, | ||
* ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR | ||
* OTHER DEALINGS IN THE SOFTWARE. | ||
* | ||
* Authors: Ben Skeggs | ||
*/ | ||
#include <engine/ce.h> | ||
#include <engine/falcon.h> | ||
#include "fuc/gf100.fuc3.h" | ||
|
||
struct gf100_ce_priv { | ||
struct nvkm_falcon base; | ||
}; | ||
|
||
/******************************************************************************* | ||
* Copy object classes | ||
******************************************************************************/ | ||
|
||
static struct nvkm_oclass | ||
gf100_ce0_sclass[] = { | ||
{ 0x90b5, &nvkm_object_ofuncs }, | ||
{}, | ||
}; | ||
|
||
static struct nvkm_oclass | ||
gf100_ce1_sclass[] = { | ||
{ 0x90b8, &nvkm_object_ofuncs }, | ||
{}, | ||
}; | ||
|
||
/******************************************************************************* | ||
* PCE context | ||
******************************************************************************/ | ||
|
||
static struct nvkm_ofuncs | ||
gf100_ce_context_ofuncs = { | ||
.ctor = _nvkm_falcon_context_ctor, | ||
.dtor = _nvkm_falcon_context_dtor, | ||
.init = _nvkm_falcon_context_init, | ||
.fini = _nvkm_falcon_context_fini, | ||
.rd32 = _nvkm_falcon_context_rd32, | ||
.wr32 = _nvkm_falcon_context_wr32, | ||
}; | ||
|
||
static struct nvkm_oclass | ||
gf100_ce0_cclass = { | ||
.handle = NV_ENGCTX(CE0, 0xc0), | ||
.ofuncs = &gf100_ce_context_ofuncs, | ||
}; | ||
|
||
static struct nvkm_oclass | ||
gf100_ce1_cclass = { | ||
.handle = NV_ENGCTX(CE1, 0xc0), | ||
.ofuncs = &gf100_ce_context_ofuncs, | ||
}; | ||
|
||
/******************************************************************************* | ||
* PCE engine/subdev functions | ||
******************************************************************************/ | ||
|
||
static int | ||
gf100_ce_init(struct nvkm_object *object) | ||
{ | ||
struct gf100_ce_priv *priv = (void *)object; | ||
int ret; | ||
|
||
ret = nvkm_falcon_init(&priv->base); | ||
if (ret) | ||
return ret; | ||
|
||
nv_wo32(priv, 0x084, nv_engidx(&priv->base.base) - NVDEV_ENGINE_CE0); | ||
return 0; | ||
} | ||
|
||
static int | ||
gf100_ce0_ctor(struct nvkm_object *parent, struct nvkm_object *engine, | ||
struct nvkm_oclass *oclass, void *data, u32 size, | ||
struct nvkm_object **pobject) | ||
{ | ||
struct gf100_ce_priv *priv; | ||
int ret; | ||
|
||
ret = nvkm_falcon_create(parent, engine, oclass, 0x104000, true, | ||
"PCE0", "ce0", &priv); | ||
*pobject = nv_object(priv); | ||
if (ret) | ||
return ret; | ||
|
||
nv_subdev(priv)->unit = 0x00000040; | ||
nv_subdev(priv)->intr = gt215_ce_intr; | ||
nv_engine(priv)->cclass = &gf100_ce0_cclass; | ||
nv_engine(priv)->sclass = gf100_ce0_sclass; | ||
nv_falcon(priv)->code.data = gf100_pce_code; | ||
nv_falcon(priv)->code.size = sizeof(gf100_pce_code); | ||
nv_falcon(priv)->data.data = gf100_pce_data; | ||
nv_falcon(priv)->data.size = sizeof(gf100_pce_data); | ||
return 0; | ||
} | ||
|
||
static int | ||
gf100_ce1_ctor(struct nvkm_object *parent, struct nvkm_object *engine, | ||
struct nvkm_oclass *oclass, void *data, u32 size, | ||
struct nvkm_object **pobject) | ||
{ | ||
struct gf100_ce_priv *priv; | ||
int ret; | ||
|
||
ret = nvkm_falcon_create(parent, engine, oclass, 0x105000, true, | ||
"PCE1", "ce1", &priv); | ||
*pobject = nv_object(priv); | ||
if (ret) | ||
return ret; | ||
|
||
nv_subdev(priv)->unit = 0x00000080; | ||
nv_subdev(priv)->intr = gt215_ce_intr; | ||
nv_engine(priv)->cclass = &gf100_ce1_cclass; | ||
nv_engine(priv)->sclass = gf100_ce1_sclass; | ||
nv_falcon(priv)->code.data = gf100_pce_code; | ||
nv_falcon(priv)->code.size = sizeof(gf100_pce_code); | ||
nv_falcon(priv)->data.data = gf100_pce_data; | ||
nv_falcon(priv)->data.size = sizeof(gf100_pce_data); | ||
return 0; | ||
} | ||
|
||
struct nvkm_oclass | ||
gf100_ce0_oclass = { | ||
.handle = NV_ENGINE(CE0, 0xc0), | ||
.ofuncs = &(struct nvkm_ofuncs) { | ||
.ctor = gf100_ce0_ctor, | ||
.dtor = _nvkm_falcon_dtor, | ||
.init = gf100_ce_init, | ||
.fini = _nvkm_falcon_fini, | ||
.rd32 = _nvkm_falcon_rd32, | ||
.wr32 = _nvkm_falcon_wr32, | ||
}, | ||
}; | ||
|
||
struct nvkm_oclass | ||
gf100_ce1_oclass = { | ||
.handle = NV_ENGINE(CE1, 0xc0), | ||
.ofuncs = &(struct nvkm_ofuncs) { | ||
.ctor = gf100_ce1_ctor, | ||
.dtor = _nvkm_falcon_dtor, | ||
.init = gf100_ce_init, | ||
.fini = _nvkm_falcon_fini, | ||
.rd32 = _nvkm_falcon_rd32, | ||
.wr32 = _nvkm_falcon_wr32, | ||
}, | ||
}; |
Oops, something went wrong.