gf100.c 3.3 KB
Newer Older
1
/*
2
 * Copyright 2012 Red Hat Inc.
3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23
 *
 * 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
 */
24
#include "gf100.h"
25

26
extern const u8 gf100_pte_storage_type_map[256];
27

28
bool
29
gf100_fb_memtype_valid(struct nvkm_fb *pfb, u32 tile_flags)
30
{
31
	u8 memtype = (tile_flags & 0x0000ff00) >> 8;
32
	return likely((gf100_pte_storage_type_map[memtype] != 0xff));
33
}
34

35
static void
36
gf100_fb_intr(struct nvkm_subdev *subdev)
37
{
38
	struct gf100_fb_priv *priv = (void *)subdev;
39 40 41 42 43 44 45 46 47 48 49
	u32 intr = nv_rd32(priv, 0x000100);
	if (intr & 0x08000000) {
		nv_debug(priv, "PFFB intr\n");
		intr &= ~0x08000000;
	}
	if (intr & 0x00002000) {
		nv_debug(priv, "PBFB intr\n");
		intr &= ~0x00002000;
	}
}

50
int
51
gf100_fb_init(struct nvkm_object *object)
52
{
53
	struct gf100_fb_priv *priv = (void *)object;
54 55
	int ret;

56
	ret = nvkm_fb_init(&priv->base);
57 58
	if (ret)
		return ret;
59

60 61
	if (priv->r100c10_page)
		nv_wr32(priv, 0x100c10, priv->r100c10 >> 8);
62

63
	nv_mask(priv, 0x100c80, 0x00000001, 0x00000000); /* 128KiB lpg */
64
	return 0;
65 66
}

67
void
68
gf100_fb_dtor(struct nvkm_object *object)
69
{
70 71
	struct nvkm_device *device = nv_device(object);
	struct gf100_fb_priv *priv = (void *)object;
72

73
	if (priv->r100c10_page) {
74 75
		dma_unmap_page(nv_device_base(device), priv->r100c10, PAGE_SIZE,
			       DMA_BIDIRECTIONAL);
76 77 78
		__free_page(priv->r100c10_page);
	}

79
	nvkm_fb_destroy(&priv->base);
80 81
}

82
int
83 84 85
gf100_fb_ctor(struct nvkm_object *parent, struct nvkm_object *engine,
	      struct nvkm_oclass *oclass, void *data, u32 size,
	      struct nvkm_object **pobject)
86
{
87 88
	struct nvkm_device *device = nv_device(parent);
	struct gf100_fb_priv *priv;
89 90
	int ret;

91
	ret = nvkm_fb_create(parent, engine, oclass, &priv);
92 93 94
	*pobject = nv_object(priv);
	if (ret)
		return ret;
95

96
	priv->r100c10_page = alloc_page(GFP_KERNEL | __GFP_ZERO);
97
	if (priv->r100c10_page) {
98 99 100
		priv->r100c10 = dma_map_page(nv_device_base(device),
					     priv->r100c10_page, 0, PAGE_SIZE,
					     DMA_BIDIRECTIONAL);
101
		if (dma_mapping_error(nv_device_base(device), priv->r100c10))
102 103
			return -EFAULT;
	}
104

105
	nv_subdev(priv)->intr = gf100_fb_intr;
106
	return 0;
107
}
108

109 110
struct nvkm_oclass *
gf100_fb_oclass = &(struct nvkm_fb_impl) {
111
	.base.handle = NV_SUBDEV(FB, 0xc0),
112 113 114 115 116
	.base.ofuncs = &(struct nvkm_ofuncs) {
		.ctor = gf100_fb_ctor,
		.dtor = gf100_fb_dtor,
		.init = gf100_fb_init,
		.fini = _nvkm_fb_fini,
117
	},
118 119
	.memtype = gf100_fb_memtype_valid,
	.ram = &gf100_ram_oclass,
120
}.base;