nv04.c 4.2 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72
/*
 * 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 <core/gpuobj.h>

#include "nv04.h"

#define NV04_PDMA_SIZE (128 * 1024 * 1024)
#define NV04_PDMA_PAGE (  4 * 1024)

/*******************************************************************************
 * VM map/unmap callbacks
 ******************************************************************************/

static void
nv04_vm_map_sg(struct nouveau_vma *vma, struct nouveau_gpuobj *pgt,
	       struct nouveau_mem *mem, u32 pte, u32 cnt, dma_addr_t *list)
{
	pte = 0x00008 + (pte * 4);
	while (cnt) {
		u32 page = PAGE_SIZE / NV04_PDMA_PAGE;
		u32 phys = (u32)*list++;
		while (cnt && page--) {
			nv_wo32(pgt, pte, phys | 3);
			phys += NV04_PDMA_PAGE;
			pte += 4;
			cnt -= 1;
		}
	}
}

static void
nv04_vm_unmap(struct nouveau_gpuobj *pgt, u32 pte, u32 cnt)
{
	pte = 0x00008 + (pte * 4);
	while (cnt--) {
		nv_wo32(pgt, pte, 0x00000000);
		pte += 4;
	}
}

static void
nv04_vm_flush(struct nouveau_vm *vm)
{
}

/*******************************************************************************
 * VM object
 ******************************************************************************/

int
73
nv04_vm_create(struct nouveau_mmu *mmu, u64 offset, u64 length, u64 mmstart,
74 75 76 77 78 79
	       struct nouveau_vm **pvm)
{
	return -EINVAL;
}

/*******************************************************************************
80
 * MMU subdev
81 82 83
 ******************************************************************************/

static int
84
nv04_mmu_ctor(struct nouveau_object *parent, struct nouveau_object *engine,
85 86 87
		struct nouveau_oclass *oclass, void *data, u32 size,
		struct nouveau_object **pobject)
{
88
	struct nv04_mmu_priv *priv;
89 90 91
	struct nouveau_gpuobj *dma;
	int ret;

92
	ret = nouveau_mmu_create(parent, engine, oclass, "PCIGART",
93 94 95 96 97 98
				   "pcigart", &priv);
	*pobject = nv_object(priv);
	if (ret)
		return ret;

	priv->base.create = nv04_vm_create;
99
	priv->base.limit = NV04_PDMA_SIZE;
100
	priv->base.dma_bits = 32;
101 102 103 104 105 106 107 108 109 110 111 112
	priv->base.pgt_bits = 32 - 12;
	priv->base.spg_shift = 12;
	priv->base.lpg_shift = 12;
	priv->base.map_sg = nv04_vm_map_sg;
	priv->base.unmap = nv04_vm_unmap;
	priv->base.flush = nv04_vm_flush;

	ret = nouveau_vm_create(&priv->base, 0, NV04_PDMA_SIZE, 0, 4096,
				&priv->vm);
	if (ret)
		return ret;

113
	ret = nouveau_gpuobj_new(nv_object(priv), NULL,
114 115 116 117 118 119 120 121 122 123 124 125 126 127
				 (NV04_PDMA_SIZE / NV04_PDMA_PAGE) * 4 +
				 8, 16, NVOBJ_FLAG_ZERO_ALLOC,
				 &priv->vm->pgt[0].obj[0]);
	dma = priv->vm->pgt[0].obj[0];
	priv->vm->pgt[0].refcount[0] = 1;
	if (ret)
		return ret;

	nv_wo32(dma, 0x00000, 0x0002103d); /* PCI, RW, PT, !LN */
	nv_wo32(dma, 0x00004, NV04_PDMA_SIZE - 1);
	return 0;
}

void
128
nv04_mmu_dtor(struct nouveau_object *object)
129
{
130
	struct nv04_mmu_priv *priv = (void *)object;
131 132 133 134
	if (priv->vm) {
		nouveau_gpuobj_ref(NULL, &priv->vm->pgt[0].obj[0]);
		nouveau_vm_ref(NULL, &priv->vm, NULL);
	}
135 136 137
	if (priv->nullp) {
		pci_free_consistent(nv_device(priv)->pdev, 16 * 1024,
				    priv->nullp, priv->null);
138
	}
139
	nouveau_mmu_destroy(&priv->base);
140 141 142
}

struct nouveau_oclass
143 144
nv04_mmu_oclass = {
	.handle = NV_SUBDEV(MMU, 0x04),
145
	.ofuncs = &(struct nouveau_ofuncs) {
146 147 148 149
		.ctor = nv04_mmu_ctor,
		.dtor = nv04_mmu_dtor,
		.init = _nouveau_mmu_init,
		.fini = _nouveau_mmu_fini,
150 151
	},
};
新手
引导
客服 返回
顶部