Ben Skeggs | bd2e597 | 2010-10-19 20:06:01 +1000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2010 Red Hat Inc. |
| 3 | * |
| 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: |
| 10 | * |
| 11 | * The above copyright notice and this permission notice shall be included in |
| 12 | * all copies or substantial portions of the Software. |
| 13 | * |
| 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. |
| 21 | * |
| 22 | * Authors: Ben Skeggs |
| 23 | */ |
| 24 | |
| 25 | #include "drmP.h" |
| 26 | #include "nouveau_drv.h" |
Ben Skeggs | d7facf9 | 2010-11-03 10:06:43 +1000 | [diff] [blame] | 27 | #include "nouveau_util.h" |
Ben Skeggs | a11c319 | 2010-08-27 10:00:25 +1000 | [diff] [blame^] | 28 | #include "nouveau_vm.h" |
Ben Skeggs | d7facf9 | 2010-11-03 10:06:43 +1000 | [diff] [blame] | 29 | |
| 30 | static void nv84_crypt_isr(struct drm_device *); |
Ben Skeggs | bd2e597 | 2010-10-19 20:06:01 +1000 | [diff] [blame] | 31 | |
| 32 | int |
| 33 | nv84_crypt_create_context(struct nouveau_channel *chan) |
| 34 | { |
| 35 | struct drm_device *dev = chan->dev; |
| 36 | struct drm_nouveau_private *dev_priv = dev->dev_private; |
| 37 | struct nouveau_gpuobj *ramin = chan->ramin; |
| 38 | int ret; |
| 39 | |
| 40 | NV_DEBUG(dev, "ch%d\n", chan->id); |
| 41 | |
Ben Skeggs | 3052be2 | 2010-10-20 11:46:38 +1000 | [diff] [blame] | 42 | ret = nouveau_gpuobj_new(dev, chan, 256, 0, |
Ben Skeggs | bd2e597 | 2010-10-19 20:06:01 +1000 | [diff] [blame] | 43 | NVOBJ_FLAG_ZERO_ALLOC | NVOBJ_FLAG_ZERO_FREE, |
| 44 | &chan->crypt_ctx); |
| 45 | if (ret) |
| 46 | return ret; |
| 47 | |
| 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); |
| 54 | |
| 55 | dev_priv->engine.instmem.flush(dev); |
| 56 | return 0; |
| 57 | } |
| 58 | |
| 59 | void |
| 60 | nv84_crypt_destroy_context(struct nouveau_channel *chan) |
| 61 | { |
| 62 | struct drm_device *dev = chan->dev; |
| 63 | u32 inst; |
| 64 | |
Ben Skeggs | 2cb3d3b | 2010-11-15 16:28:19 +1000 | [diff] [blame] | 65 | if (!chan->crypt_ctx) |
Ben Skeggs | bd2e597 | 2010-10-19 20:06:01 +1000 | [diff] [blame] | 66 | return; |
| 67 | |
| 68 | inst = (chan->ramin->vinst >> 12); |
| 69 | inst |= 0x80000000; |
| 70 | |
| 71 | /* mark context as invalid if still on the hardware, not |
| 72 | * doing this causes issues the next time PCRYPT is used, |
| 73 | * unsurprisingly :) |
| 74 | */ |
| 75 | nv_wr32(dev, 0x10200c, 0x00000000); |
| 76 | if (nv_rd32(dev, 0x102188) == inst) |
| 77 | nv_mask(dev, 0x102188, 0x80000000, 0x00000000); |
| 78 | if (nv_rd32(dev, 0x10218c) == inst) |
| 79 | nv_mask(dev, 0x10218c, 0x80000000, 0x00000000); |
| 80 | nv_wr32(dev, 0x10200c, 0x00000010); |
| 81 | |
| 82 | nouveau_gpuobj_ref(NULL, &chan->crypt_ctx); |
| 83 | } |
| 84 | |
| 85 | void |
| 86 | nv84_crypt_tlb_flush(struct drm_device *dev) |
| 87 | { |
Ben Skeggs | a11c319 | 2010-08-27 10:00:25 +1000 | [diff] [blame^] | 88 | nv50_vm_flush_engine(dev, 0x0a); |
Ben Skeggs | bd2e597 | 2010-10-19 20:06:01 +1000 | [diff] [blame] | 89 | } |
| 90 | |
| 91 | int |
| 92 | nv84_crypt_init(struct drm_device *dev) |
| 93 | { |
| 94 | struct drm_nouveau_private *dev_priv = dev->dev_private; |
| 95 | struct nouveau_crypt_engine *pcrypt = &dev_priv->engine.crypt; |
| 96 | |
| 97 | if (!pcrypt->registered) { |
| 98 | NVOBJ_CLASS(dev, 0x74c1, CRYPT); |
| 99 | pcrypt->registered = true; |
| 100 | } |
| 101 | |
| 102 | nv_mask(dev, 0x000200, 0x00004000, 0x00000000); |
| 103 | nv_mask(dev, 0x000200, 0x00004000, 0x00004000); |
Ben Skeggs | d7facf9 | 2010-11-03 10:06:43 +1000 | [diff] [blame] | 104 | |
| 105 | nouveau_irq_register(dev, 14, nv84_crypt_isr); |
Ben Skeggs | bd2e597 | 2010-10-19 20:06:01 +1000 | [diff] [blame] | 106 | nv_wr32(dev, 0x102130, 0xffffffff); |
| 107 | nv_wr32(dev, 0x102140, 0xffffffbf); |
Ben Skeggs | d7facf9 | 2010-11-03 10:06:43 +1000 | [diff] [blame] | 108 | |
Ben Skeggs | bd2e597 | 2010-10-19 20:06:01 +1000 | [diff] [blame] | 109 | nv_wr32(dev, 0x10200c, 0x00000010); |
| 110 | return 0; |
| 111 | } |
| 112 | |
| 113 | void |
| 114 | nv84_crypt_fini(struct drm_device *dev) |
| 115 | { |
| 116 | nv_wr32(dev, 0x102140, 0x00000000); |
Ben Skeggs | d7facf9 | 2010-11-03 10:06:43 +1000 | [diff] [blame] | 117 | nouveau_irq_unregister(dev, 14); |
| 118 | } |
| 119 | |
| 120 | static void |
| 121 | nv84_crypt_isr(struct drm_device *dev) |
| 122 | { |
| 123 | u32 stat = nv_rd32(dev, 0x102130); |
| 124 | u32 mthd = nv_rd32(dev, 0x102190); |
| 125 | u32 data = nv_rd32(dev, 0x102194); |
| 126 | u32 inst = nv_rd32(dev, 0x102188) & 0x7fffffff; |
| 127 | int show = nouveau_ratelimit(); |
| 128 | |
| 129 | if (show) { |
| 130 | NV_INFO(dev, "PCRYPT_INTR: 0x%08x 0x%08x 0x%08x 0x%08x\n", |
| 131 | stat, mthd, data, inst); |
| 132 | } |
| 133 | |
| 134 | nv_wr32(dev, 0x102130, stat); |
| 135 | nv_wr32(dev, 0x10200c, 0x10); |
| 136 | |
| 137 | nv50_fb_vm_trap(dev, show, "PCRYPT"); |
Ben Skeggs | bd2e597 | 2010-10-19 20:06:01 +1000 | [diff] [blame] | 138 | } |