2 * Copyright 2012 Red Hat Inc.
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
24 #include <engine/cipher.h>
25 #include <engine/fifo.h>
27 #include <core/client.h>
28 #include <core/enum.h>
29 #include <core/gpuobj.h>
31 #include <nvif/class.h>
34 g84_cipher_oclass_bind(struct nvkm_object
*object
, struct nvkm_gpuobj
*parent
,
35 int align
, struct nvkm_gpuobj
**pgpuobj
)
37 int ret
= nvkm_gpuobj_new(object
->engine
->subdev
.device
, 16,
38 align
, false, parent
, pgpuobj
);
41 nvkm_wo32(*pgpuobj
, 0x00, object
->oclass
);
42 nvkm_wo32(*pgpuobj
, 0x04, 0x00000000);
43 nvkm_wo32(*pgpuobj
, 0x08, 0x00000000);
44 nvkm_wo32(*pgpuobj
, 0x0c, 0x00000000);
50 static const struct nvkm_object_func
51 g84_cipher_oclass_func
= {
52 .bind
= g84_cipher_oclass_bind
,
56 g84_cipher_cclass_bind(struct nvkm_object
*object
, struct nvkm_gpuobj
*parent
,
57 int align
, struct nvkm_gpuobj
**pgpuobj
)
59 return nvkm_gpuobj_new(object
->engine
->subdev
.device
, 256,
60 align
, true, parent
, pgpuobj
);
64 static const struct nvkm_object_func
66 .bind
= g84_cipher_cclass_bind
,
69 static const struct nvkm_bitfield
70 g84_cipher_intr_mask
[] = {
71 { 0x00000001, "INVALID_STATE" },
72 { 0x00000002, "ILLEGAL_MTHD" },
73 { 0x00000004, "ILLEGAL_CLASS" },
74 { 0x00000080, "QUERY" },
75 { 0x00000100, "FAULT" },
80 g84_cipher_intr(struct nvkm_engine
*cipher
)
82 struct nvkm_subdev
*subdev
= &cipher
->subdev
;
83 struct nvkm_device
*device
= subdev
->device
;
84 struct nvkm_fifo
*fifo
= device
->fifo
;
85 struct nvkm_fifo_chan
*chan
;
86 u32 stat
= nvkm_rd32(device
, 0x102130);
87 u32 mthd
= nvkm_rd32(device
, 0x102190);
88 u32 data
= nvkm_rd32(device
, 0x102194);
89 u32 inst
= nvkm_rd32(device
, 0x102188) & 0x7fffffff;
93 chan
= nvkm_fifo_chan_inst(fifo
, (u64
)inst
<< 12, &flags
);
95 nvkm_snprintbf(msg
, sizeof(msg
), g84_cipher_intr_mask
, stat
);
96 nvkm_error(subdev
, "%08x [%s] ch %d [%010llx %s] "
97 "mthd %04x data %08x\n", stat
, msg
,
98 chan
? chan
->chid
: -1, (u64
)inst
<< 12,
99 chan
? chan
->object
.client
->name
: "unknown",
102 nvkm_fifo_chan_put(fifo
, flags
, &chan
);
104 nvkm_wr32(device
, 0x102130, stat
);
105 nvkm_wr32(device
, 0x10200c, 0x10);
109 g84_cipher_init(struct nvkm_engine
*cipher
)
111 struct nvkm_device
*device
= cipher
->subdev
.device
;
112 nvkm_wr32(device
, 0x102130, 0xffffffff);
113 nvkm_wr32(device
, 0x102140, 0xffffffbf);
114 nvkm_wr32(device
, 0x10200c, 0x00000010);
118 static const struct nvkm_engine_func
120 .init
= g84_cipher_init
,
121 .intr
= g84_cipher_intr
,
122 .cclass
= &g84_cipher_cclass
,
124 { -1, -1, NV74_CIPHER
, &g84_cipher_oclass_func
},
130 g84_cipher_new(struct nvkm_device
*device
, int index
,
131 struct nvkm_engine
**pengine
)
133 return nvkm_engine_new_(&g84_cipher
, device
, index
, true, pengine
);