xtensa.c 5.0 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
/*
 * Copyright 2013 Ilia Mirkin
 *
 * 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.
 */
#include <engine/xtensa.h>

24 25
#include <core/engctx.h>

26
int
27 28 29
_nvkm_xtensa_engctx_ctor(struct nvkm_object *parent, struct nvkm_object *engine,
			 struct nvkm_oclass *oclass, void *data, u32 size,
			 struct nvkm_object **pobject)
30
{
31
	struct nvkm_engctx *engctx;
32 33
	int ret;

34 35
	ret = nvkm_engctx_create(parent, engine, oclass, NULL, 0x10000, 0x1000,
				 NVOBJ_FLAG_ZERO_ALLOC, &engctx);
36 37 38 39 40
	*pobject = nv_object(engctx);
	return ret;
}

void
41
_nvkm_xtensa_intr(struct nvkm_subdev *subdev)
42
{
43
	struct nvkm_xtensa *xtensa = (void *)subdev;
44
	struct nvkm_device *device = xtensa->engine.subdev.device;
45 46 47 48 49
	const u32 base = xtensa->addr;
	u32 unk104 = nvkm_rd32(device, base + 0xd04);
	u32 intr = nvkm_rd32(device, base + 0xc20);
	u32 chan = nvkm_rd32(device, base + 0xc28);
	u32 unk10c = nvkm_rd32(device, base + 0xd0c);
50 51

	if (intr & 0x10)
52
		nvkm_warn(subdev, "Watchdog interrupt, engine hung.\n");
53 54
	nvkm_wr32(device, base + 0xc20, intr);
	intr = nvkm_rd32(device, base + 0xc20);
55
	if (unk104 == 0x10001 && unk10c == 0x200 && chan && !intr) {
56
		nvkm_debug(subdev, "Enabling FIFO_CTRL\n");
57
		nvkm_mask(device, xtensa->addr + 0xd94, 0, xtensa->fifo_val);
58 59 60 61
	}
}

int
62 63 64 65
nvkm_xtensa_create_(struct nvkm_object *parent, struct nvkm_object *engine,
		    struct nvkm_oclass *oclass, u32 addr, bool enable,
		    const char *iname, const char *fname,
		    int length, void **pobject)
66
{
67
	struct nvkm_xtensa *xtensa;
68 69
	int ret;

70 71
	ret = nvkm_engine_create_(parent, engine, oclass, enable, iname,
				  fname, length, pobject);
72 73 74 75
	xtensa = *pobject;
	if (ret)
		return ret;

76
	nv_subdev(xtensa)->intr = _nvkm_xtensa_intr;
77 78 79 80 81
	xtensa->addr = addr;
	return 0;
}

int
82
_nvkm_xtensa_init(struct nvkm_object *object)
83
{
84
	struct nvkm_xtensa *xtensa = (void *)object;
85 86
	struct nvkm_subdev *subdev = &xtensa->engine.subdev;
	struct nvkm_device *device = subdev->device;
87
	const u32 base = xtensa->addr;
88 89 90
	const struct firmware *fw;
	char name[32];
	int i, ret;
91
	u64 addr, size;
92 93
	u32 tmp;

94
	ret = nvkm_engine_init_old(&xtensa->engine);
95 96 97 98 99 100 101
	if (ret)
		return ret;

	if (!xtensa->gpu_fw) {
		snprintf(name, sizeof(name), "nouveau/nv84_xuc%03x",
			 xtensa->addr >> 12);

A
Alexandre Courbot 已提交
102
		ret = request_firmware(&fw, name, nv_device_base(device));
103
		if (ret) {
104
			nvkm_warn(subdev, "unable to load firmware %s\n", name);
105 106 107
			return ret;
		}

108
		if (fw->size > 0x40000) {
109
			nvkm_warn(subdev, "firmware %s too large\n", name);
110 111 112 113
			release_firmware(fw);
			return -EINVAL;
		}

114 115
		ret = nvkm_memory_new(device, NVKM_MEM_TARGET_INST,
				      0x40000, 0x1000, false,
116
				      &xtensa->gpu_fw);
117 118 119 120 121
		if (ret) {
			release_firmware(fw);
			return ret;
		}

122
		nvkm_kmap(xtensa->gpu_fw);
123
		for (i = 0; i < fw->size / 4; i++)
124 125
			nvkm_wo32(xtensa->gpu_fw, i * 4, *((u32 *)fw->data + i));
		nvkm_done(xtensa->gpu_fw);
126 127 128
		release_firmware(fw);
	}

129 130 131
	addr = nvkm_memory_addr(xtensa->gpu_fw);
	size = nvkm_memory_size(xtensa->gpu_fw);

132 133
	nvkm_wr32(device, base + 0xd10, 0x1fffffff); /* ?? */
	nvkm_wr32(device, base + 0xd08, 0x0fffffff); /* ?? */
134

135 136 137
	nvkm_wr32(device, base + 0xd28, xtensa->unkd28); /* ?? */
	nvkm_wr32(device, base + 0xc20, 0x3f); /* INTR */
	nvkm_wr32(device, base + 0xd84, 0x3f); /* INTR_EN */
138

139
	nvkm_wr32(device, base + 0xcc0, addr >> 8); /* XT_REGION_BASE */
140
	nvkm_wr32(device, base + 0xcc4, 0x1c); /* XT_REGION_SETUP */
141
	nvkm_wr32(device, base + 0xcc8, size >> 8); /* XT_REGION_LIMIT */
142

143
	tmp = nvkm_rd32(device, 0x0);
144
	nvkm_wr32(device, base + 0xde0, tmp); /* SCRATCH_H2X */
145

146
	nvkm_wr32(device, base + 0xce8, 0xf); /* XT_REGION_SETUP */
147

148 149
	nvkm_wr32(device, base + 0xc20, 0x3f); /* INTR */
	nvkm_wr32(device, base + 0xd84, 0x3f); /* INTR_EN */
150 151 152 153
	return 0;
}

int
154
_nvkm_xtensa_fini(struct nvkm_object *object, bool suspend)
155
{
156
	struct nvkm_xtensa *xtensa = (void *)object;
157 158
	struct nvkm_device *device = xtensa->engine.subdev.device;
	const u32 base = xtensa->addr;
159

160 161
	nvkm_wr32(device, base + 0xd84, 0); /* INTR_EN */
	nvkm_wr32(device, base + 0xd94, 0); /* FIFO_CTRL */
162 163

	if (!suspend)
164
		nvkm_memory_del(&xtensa->gpu_fw);
165

166
	return nvkm_engine_fini_old(&xtensa->engine, suspend);
167
}