2 * Copyright 2010 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.
26 #include "nouveau_drv.h"
27 #include "nouveau_util.h"
28 #include "nouveau_vm.h"
30 static void nv84_crypt_isr(struct drm_device
*);
33 nv84_crypt_create_context(struct nouveau_channel
*chan
)
35 struct drm_device
*dev
= chan
->dev
;
36 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
37 struct nouveau_gpuobj
*ramin
= chan
->ramin
;
40 NV_DEBUG(dev
, "ch%d\n", chan
->id
);
42 ret
= nouveau_gpuobj_new(dev
, chan
, 256, 0,
43 NVOBJ_FLAG_ZERO_ALLOC
| NVOBJ_FLAG_ZERO_FREE
,
48 nv_wo32(ramin
, 0xa0, 0x00190000);
49 nv_wo32(ramin
, 0xa4, chan
->crypt_ctx
->vinst
+ 0xff);
50 nv_wo32(ramin
, 0xa8, chan
->crypt_ctx
->vinst
);
51 nv_wo32(ramin
, 0xac, 0);
52 nv_wo32(ramin
, 0xb0, 0);
53 nv_wo32(ramin
, 0xb4, 0);
55 dev_priv
->engine
.instmem
.flush(dev
);
56 atomic_inc(&chan
->vm
->pcrypt_refs
);
61 nv84_crypt_destroy_context(struct nouveau_channel
*chan
)
63 struct drm_device
*dev
= chan
->dev
;
69 inst
= (chan
->ramin
->vinst
>> 12);
72 /* mark context as invalid if still on the hardware, not
73 * doing this causes issues the next time PCRYPT is used,
76 nv_wr32(dev
, 0x10200c, 0x00000000);
77 if (nv_rd32(dev
, 0x102188) == inst
)
78 nv_mask(dev
, 0x102188, 0x80000000, 0x00000000);
79 if (nv_rd32(dev
, 0x10218c) == inst
)
80 nv_mask(dev
, 0x10218c, 0x80000000, 0x00000000);
81 nv_wr32(dev
, 0x10200c, 0x00000010);
83 nouveau_gpuobj_ref(NULL
, &chan
->crypt_ctx
);
84 atomic_dec(&chan
->vm
->pcrypt_refs
);
88 nv84_crypt_tlb_flush(struct drm_device
*dev
)
90 nv50_vm_flush_engine(dev
, 0x0a);
94 nv84_crypt_init(struct drm_device
*dev
)
96 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
97 struct nouveau_crypt_engine
*pcrypt
= &dev_priv
->engine
.crypt
;
99 if (!pcrypt
->registered
) {
100 NVOBJ_CLASS(dev
, 0x74c1, CRYPT
);
101 pcrypt
->registered
= true;
104 nv_mask(dev
, 0x000200, 0x00004000, 0x00000000);
105 nv_mask(dev
, 0x000200, 0x00004000, 0x00004000);
107 nouveau_irq_register(dev
, 14, nv84_crypt_isr
);
108 nv_wr32(dev
, 0x102130, 0xffffffff);
109 nv_wr32(dev
, 0x102140, 0xffffffbf);
111 nv_wr32(dev
, 0x10200c, 0x00000010);
116 nv84_crypt_fini(struct drm_device
*dev
)
118 nv_wr32(dev
, 0x102140, 0x00000000);
119 nouveau_irq_unregister(dev
, 14);
123 nv84_crypt_isr(struct drm_device
*dev
)
125 u32 stat
= nv_rd32(dev
, 0x102130);
126 u32 mthd
= nv_rd32(dev
, 0x102190);
127 u32 data
= nv_rd32(dev
, 0x102194);
128 u32 inst
= nv_rd32(dev
, 0x102188) & 0x7fffffff;
129 int show
= nouveau_ratelimit();
132 NV_INFO(dev
, "PCRYPT_INTR: 0x%08x 0x%08x 0x%08x 0x%08x\n",
133 stat
, mthd
, data
, inst
);
136 nv_wr32(dev
, 0x102130, stat
);
137 nv_wr32(dev
, 0x10200c, 0x10);
139 nv50_fb_vm_trap(dev
, show
);