2012-07-14 09:09:17 +00:00
|
|
|
/*
|
|
|
|
* 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
|
|
|
|
*/
|
2015-01-14 05:09:19 +00:00
|
|
|
#include "nv04.h"
|
2012-07-14 09:09:17 +00:00
|
|
|
|
|
|
|
#include <core/gpuobj.h>
|
2012-09-26 22:56:24 +00:00
|
|
|
#include <core/option.h>
|
2012-07-14 09:09:17 +00:00
|
|
|
#include <subdev/timer.h>
|
|
|
|
|
|
|
|
#define NV41_GART_SIZE (512 * 1024 * 1024)
|
|
|
|
#define NV41_GART_PAGE ( 4 * 1024)
|
|
|
|
|
|
|
|
/*******************************************************************************
|
|
|
|
* VM map/unmap callbacks
|
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
static void
|
2015-01-14 05:09:19 +00:00
|
|
|
nv41_vm_map_sg(struct nvkm_vma *vma, struct nvkm_gpuobj *pgt,
|
|
|
|
struct nvkm_mem *mem, u32 pte, u32 cnt, dma_addr_t *list)
|
2012-07-14 09:09:17 +00:00
|
|
|
{
|
|
|
|
pte = pte * 4;
|
2015-08-20 04:54:14 +00:00
|
|
|
nvkm_kmap(pgt);
|
2012-07-14 09:09:17 +00:00
|
|
|
while (cnt) {
|
|
|
|
u32 page = PAGE_SIZE / NV41_GART_PAGE;
|
|
|
|
u64 phys = (u64)*list++;
|
|
|
|
while (cnt && page--) {
|
2015-08-20 04:54:14 +00:00
|
|
|
nvkm_wo32(pgt, pte, (phys >> 7) | 1);
|
2012-07-14 09:09:17 +00:00
|
|
|
phys += NV41_GART_PAGE;
|
|
|
|
pte += 4;
|
|
|
|
cnt -= 1;
|
|
|
|
}
|
|
|
|
}
|
2015-08-20 04:54:14 +00:00
|
|
|
nvkm_done(pgt);
|
2012-07-14 09:09:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2015-01-14 05:09:19 +00:00
|
|
|
nv41_vm_unmap(struct nvkm_gpuobj *pgt, u32 pte, u32 cnt)
|
2012-07-14 09:09:17 +00:00
|
|
|
{
|
|
|
|
pte = pte * 4;
|
2015-08-20 04:54:14 +00:00
|
|
|
nvkm_kmap(pgt);
|
2012-07-14 09:09:17 +00:00
|
|
|
while (cnt--) {
|
2015-08-20 04:54:14 +00:00
|
|
|
nvkm_wo32(pgt, pte, 0x00000000);
|
2012-07-14 09:09:17 +00:00
|
|
|
pte += 4;
|
|
|
|
}
|
2015-08-20 04:54:14 +00:00
|
|
|
nvkm_done(pgt);
|
2012-07-14 09:09:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
static void
|
2015-01-14 05:09:19 +00:00
|
|
|
nv41_vm_flush(struct nvkm_vm *vm)
|
2012-07-14 09:09:17 +00:00
|
|
|
{
|
2015-08-20 04:54:07 +00:00
|
|
|
struct nv04_mmu *mmu = (void *)vm->mmu;
|
2015-08-20 04:54:09 +00:00
|
|
|
struct nvkm_device *device = mmu->base.subdev.device;
|
2012-07-14 09:09:17 +00:00
|
|
|
|
2015-08-20 04:54:07 +00:00
|
|
|
mutex_lock(&nv_subdev(mmu)->mutex);
|
2015-08-20 04:54:09 +00:00
|
|
|
nvkm_wr32(device, 0x100810, 0x00000022);
|
2015-08-20 04:54:11 +00:00
|
|
|
nvkm_msec(device, 2000,
|
|
|
|
if (nvkm_rd32(device, 0x100810) & 0x00000020)
|
|
|
|
break;
|
|
|
|
);
|
2015-08-20 04:54:09 +00:00
|
|
|
nvkm_wr32(device, 0x100810, 0x00000000);
|
2015-08-20 04:54:07 +00:00
|
|
|
mutex_unlock(&nv_subdev(mmu)->mutex);
|
2012-07-14 09:09:17 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*******************************************************************************
|
2015-01-13 23:57:36 +00:00
|
|
|
* MMU subdev
|
2012-07-14 09:09:17 +00:00
|
|
|
******************************************************************************/
|
|
|
|
|
|
|
|
static int
|
2015-01-14 05:09:19 +00:00
|
|
|
nv41_mmu_ctor(struct nvkm_object *parent, struct nvkm_object *engine,
|
|
|
|
struct nvkm_oclass *oclass, void *data, u32 size,
|
|
|
|
struct nvkm_object **pobject)
|
2012-07-14 09:09:17 +00:00
|
|
|
{
|
2015-01-14 05:09:19 +00:00
|
|
|
struct nvkm_device *device = nv_device(parent);
|
2015-08-20 04:54:07 +00:00
|
|
|
struct nv04_mmu *mmu;
|
2012-07-14 09:09:17 +00:00
|
|
|
int ret;
|
|
|
|
|
2012-10-22 00:56:07 +00:00
|
|
|
if (pci_find_capability(device->pdev, PCI_CAP_ID_AGP) ||
|
2015-01-14 05:09:19 +00:00
|
|
|
!nvkm_boolopt(device->cfgopt, "NvPCIE", true)) {
|
2015-08-20 04:54:16 +00:00
|
|
|
return nvkm_object_old(parent, engine, &nv04_mmu_oclass,
|
2015-01-14 05:09:19 +00:00
|
|
|
data, size, pobject);
|
2012-09-26 22:56:24 +00:00
|
|
|
}
|
|
|
|
|
2015-01-14 05:09:19 +00:00
|
|
|
ret = nvkm_mmu_create(parent, engine, oclass, "PCIEGART",
|
2015-08-20 04:54:07 +00:00
|
|
|
"mmu", &mmu);
|
|
|
|
*pobject = nv_object(mmu);
|
2012-07-14 09:09:17 +00:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2015-08-20 04:54:07 +00:00
|
|
|
mmu->base.create = nv04_vm_create;
|
|
|
|
mmu->base.limit = NV41_GART_SIZE;
|
|
|
|
mmu->base.dma_bits = 39;
|
|
|
|
mmu->base.pgt_bits = 32 - 12;
|
|
|
|
mmu->base.spg_shift = 12;
|
|
|
|
mmu->base.lpg_shift = 12;
|
|
|
|
mmu->base.map_sg = nv41_vm_map_sg;
|
|
|
|
mmu->base.unmap = nv41_vm_unmap;
|
|
|
|
mmu->base.flush = nv41_vm_flush;
|
|
|
|
|
|
|
|
ret = nvkm_vm_create(&mmu->base, 0, NV41_GART_SIZE, 0, 4096,
|
|
|
|
&mmu->vm);
|
2012-07-14 09:09:17 +00:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2015-08-20 04:54:07 +00:00
|
|
|
ret = nvkm_gpuobj_new(nv_object(mmu), NULL,
|
2015-01-14 05:09:19 +00:00
|
|
|
(NV41_GART_SIZE / NV41_GART_PAGE) * 4, 16,
|
|
|
|
NVOBJ_FLAG_ZERO_ALLOC,
|
2015-08-20 04:54:07 +00:00
|
|
|
&mmu->vm->pgt[0].obj[0]);
|
|
|
|
mmu->vm->pgt[0].refcount[0] = 1;
|
2012-07-14 09:09:17 +00:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static int
|
2015-01-14 05:09:19 +00:00
|
|
|
nv41_mmu_init(struct nvkm_object *object)
|
2012-07-14 09:09:17 +00:00
|
|
|
{
|
2015-08-20 04:54:07 +00:00
|
|
|
struct nv04_mmu *mmu = (void *)object;
|
2015-08-20 04:54:09 +00:00
|
|
|
struct nvkm_device *device = mmu->base.subdev.device;
|
2015-08-20 04:54:07 +00:00
|
|
|
struct nvkm_gpuobj *dma = mmu->vm->pgt[0].obj[0];
|
2012-07-14 09:09:17 +00:00
|
|
|
int ret;
|
|
|
|
|
2015-08-20 04:54:07 +00:00
|
|
|
ret = nvkm_mmu_init(&mmu->base);
|
2012-07-14 09:09:17 +00:00
|
|
|
if (ret)
|
|
|
|
return ret;
|
|
|
|
|
2015-08-20 04:54:09 +00:00
|
|
|
nvkm_wr32(device, 0x100800, dma->addr | 0x00000002);
|
|
|
|
nvkm_mask(device, 0x10008c, 0x00000100, 0x00000100);
|
|
|
|
nvkm_wr32(device, 0x100820, 0x00000000);
|
2012-07-14 09:09:17 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
2015-01-14 05:09:19 +00:00
|
|
|
struct nvkm_oclass
|
2015-01-13 23:57:36 +00:00
|
|
|
nv41_mmu_oclass = {
|
|
|
|
.handle = NV_SUBDEV(MMU, 0x41),
|
2015-01-14 05:09:19 +00:00
|
|
|
.ofuncs = &(struct nvkm_ofuncs) {
|
2015-01-13 23:57:36 +00:00
|
|
|
.ctor = nv41_mmu_ctor,
|
|
|
|
.dtor = nv04_mmu_dtor,
|
|
|
|
.init = nv41_mmu_init,
|
2015-01-14 05:09:19 +00:00
|
|
|
.fini = _nvkm_mmu_fini,
|
2012-07-14 09:09:17 +00:00
|
|
|
},
|
|
|
|
};
|