Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 1 | /* |
| 2 | * Copyright 2015 Advanced Micro Devices, 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: monk liu <monk.liu@amd.com> |
| 23 | */ |
| 24 | |
| 25 | #include <drm/drmP.h> |
| 26 | #include "amdgpu.h" |
| 27 | |
Christian König | 47f3850 | 2015-08-04 17:51:05 +0200 | [diff] [blame] | 28 | int amdgpu_ctx_init(struct amdgpu_device *adev, bool kernel, |
| 29 | struct amdgpu_ctx *ctx) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 30 | { |
Christian König | 21c16bf | 2015-07-07 17:24:49 +0200 | [diff] [blame] | 31 | unsigned i, j; |
Christian König | 47f3850 | 2015-08-04 17:51:05 +0200 | [diff] [blame] | 32 | int r; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 33 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 34 | memset(ctx, 0, sizeof(*ctx)); |
Chunming Zhou | 9cb7e5a | 2015-07-21 13:17:19 +0800 | [diff] [blame] | 35 | ctx->adev = adev; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 36 | kref_init(&ctx->refcount); |
Christian König | 21c16bf | 2015-07-07 17:24:49 +0200 | [diff] [blame] | 37 | spin_lock_init(&ctx->ring_lock); |
| 38 | for (i = 0; i < AMDGPU_MAX_RINGS; ++i) |
| 39 | ctx->rings[i].sequence = 1; |
Chunming Zhou | 23ca0e4 | 2015-07-06 13:42:58 +0800 | [diff] [blame] | 40 | |
Chunming Zhou | 9cb7e5a | 2015-07-21 13:17:19 +0800 | [diff] [blame] | 41 | if (amdgpu_enable_scheduler) { |
| 42 | /* create context entity for each ring */ |
| 43 | for (i = 0; i < adev->num_rings; i++) { |
| 44 | struct amd_run_queue *rq; |
Christian König | 47f3850 | 2015-08-04 17:51:05 +0200 | [diff] [blame] | 45 | if (kernel) |
Chunming Zhou | 9cb7e5a | 2015-07-21 13:17:19 +0800 | [diff] [blame] | 46 | rq = &adev->rings[i]->scheduler->kernel_rq; |
Christian König | 47f3850 | 2015-08-04 17:51:05 +0200 | [diff] [blame] | 47 | else |
| 48 | rq = &adev->rings[i]->scheduler->sched_rq; |
Christian König | 91404fb | 2015-08-05 18:33:21 +0200 | [diff] [blame^] | 49 | r = amd_sched_entity_init(adev->rings[i]->scheduler, |
| 50 | &ctx->rings[i].entity, |
| 51 | rq, amdgpu_sched_jobs); |
Chunming Zhou | 9cb7e5a | 2015-07-21 13:17:19 +0800 | [diff] [blame] | 52 | if (r) |
| 53 | break; |
| 54 | } |
| 55 | |
| 56 | if (i < adev->num_rings) { |
| 57 | for (j = 0; j < i; j++) |
Christian König | 91404fb | 2015-08-05 18:33:21 +0200 | [diff] [blame^] | 58 | amd_sched_entity_fini(adev->rings[j]->scheduler, |
| 59 | &ctx->rings[j].entity); |
Chunming Zhou | 9cb7e5a | 2015-07-21 13:17:19 +0800 | [diff] [blame] | 60 | kfree(ctx); |
Christian König | 47f3850 | 2015-08-04 17:51:05 +0200 | [diff] [blame] | 61 | return r; |
Chunming Zhou | 9cb7e5a | 2015-07-21 13:17:19 +0800 | [diff] [blame] | 62 | } |
| 63 | } |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 64 | return 0; |
| 65 | } |
| 66 | |
Christian König | 47f3850 | 2015-08-04 17:51:05 +0200 | [diff] [blame] | 67 | void amdgpu_ctx_fini(struct amdgpu_ctx *ctx) |
| 68 | { |
| 69 | struct amdgpu_device *adev = ctx->adev; |
| 70 | unsigned i, j; |
| 71 | |
| 72 | for (i = 0; i < AMDGPU_MAX_RINGS; ++i) |
| 73 | for (j = 0; j < AMDGPU_CTX_MAX_CS_PENDING; ++j) |
| 74 | fence_put(ctx->rings[i].fences[j]); |
| 75 | |
| 76 | if (amdgpu_enable_scheduler) { |
| 77 | for (i = 0; i < adev->num_rings; i++) |
Christian König | 91404fb | 2015-08-05 18:33:21 +0200 | [diff] [blame^] | 78 | amd_sched_entity_fini(adev->rings[i]->scheduler, |
| 79 | &ctx->rings[i].entity); |
Christian König | 47f3850 | 2015-08-04 17:51:05 +0200 | [diff] [blame] | 80 | } |
| 81 | } |
| 82 | |
| 83 | static int amdgpu_ctx_alloc(struct amdgpu_device *adev, |
| 84 | struct amdgpu_fpriv *fpriv, |
| 85 | uint32_t *id) |
| 86 | { |
| 87 | struct amdgpu_ctx_mgr *mgr = &fpriv->ctx_mgr; |
| 88 | struct amdgpu_ctx *ctx; |
| 89 | int r; |
| 90 | |
| 91 | ctx = kmalloc(sizeof(*ctx), GFP_KERNEL); |
| 92 | if (!ctx) |
| 93 | return -ENOMEM; |
| 94 | |
| 95 | mutex_lock(&mgr->lock); |
| 96 | r = idr_alloc(&mgr->ctx_handles, ctx, 1, 0, GFP_KERNEL); |
| 97 | if (r < 0) { |
| 98 | mutex_unlock(&mgr->lock); |
| 99 | kfree(ctx); |
| 100 | return r; |
| 101 | } |
| 102 | *id = (uint32_t)r; |
| 103 | r = amdgpu_ctx_init(adev, false, ctx); |
| 104 | mutex_unlock(&mgr->lock); |
| 105 | |
| 106 | return r; |
| 107 | } |
| 108 | |
| 109 | static void amdgpu_ctx_do_release(struct kref *ref) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 110 | { |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 111 | struct amdgpu_ctx *ctx; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 112 | |
Christian König | 47f3850 | 2015-08-04 17:51:05 +0200 | [diff] [blame] | 113 | ctx = container_of(ref, struct amdgpu_ctx, refcount); |
| 114 | |
| 115 | amdgpu_ctx_fini(ctx); |
| 116 | |
| 117 | kfree(ctx); |
| 118 | } |
| 119 | |
| 120 | static int amdgpu_ctx_free(struct amdgpu_fpriv *fpriv, uint32_t id) |
| 121 | { |
| 122 | struct amdgpu_ctx_mgr *mgr = &fpriv->ctx_mgr; |
| 123 | struct amdgpu_ctx *ctx; |
| 124 | |
| 125 | mutex_lock(&mgr->lock); |
| 126 | ctx = idr_find(&mgr->ctx_handles, id); |
| 127 | if (ctx) { |
| 128 | idr_remove(&mgr->ctx_handles, id); |
Chunming Zhou | 23ca0e4 | 2015-07-06 13:42:58 +0800 | [diff] [blame] | 129 | kref_put(&ctx->refcount, amdgpu_ctx_do_release); |
Christian König | 47f3850 | 2015-08-04 17:51:05 +0200 | [diff] [blame] | 130 | mutex_unlock(&mgr->lock); |
Marek Olšák | f11358d | 2015-05-05 00:56:45 +0200 | [diff] [blame] | 131 | return 0; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 132 | } |
Christian König | 47f3850 | 2015-08-04 17:51:05 +0200 | [diff] [blame] | 133 | mutex_unlock(&mgr->lock); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 134 | return -EINVAL; |
| 135 | } |
| 136 | |
Marek Olšák | d94aed5 | 2015-05-05 21:13:49 +0200 | [diff] [blame] | 137 | static int amdgpu_ctx_query(struct amdgpu_device *adev, |
| 138 | struct amdgpu_fpriv *fpriv, uint32_t id, |
| 139 | union drm_amdgpu_ctx_out *out) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 140 | { |
| 141 | struct amdgpu_ctx *ctx; |
Chunming Zhou | 23ca0e4 | 2015-07-06 13:42:58 +0800 | [diff] [blame] | 142 | struct amdgpu_ctx_mgr *mgr; |
Marek Olšák | d94aed5 | 2015-05-05 21:13:49 +0200 | [diff] [blame] | 143 | unsigned reset_counter; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 144 | |
Chunming Zhou | 23ca0e4 | 2015-07-06 13:42:58 +0800 | [diff] [blame] | 145 | if (!fpriv) |
| 146 | return -EINVAL; |
| 147 | |
| 148 | mgr = &fpriv->ctx_mgr; |
Marek Olšák | 0147ee0 | 2015-05-05 20:52:00 +0200 | [diff] [blame] | 149 | mutex_lock(&mgr->lock); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 150 | ctx = idr_find(&mgr->ctx_handles, id); |
Marek Olšák | d94aed5 | 2015-05-05 21:13:49 +0200 | [diff] [blame] | 151 | if (!ctx) { |
Marek Olšák | 0147ee0 | 2015-05-05 20:52:00 +0200 | [diff] [blame] | 152 | mutex_unlock(&mgr->lock); |
Marek Olšák | d94aed5 | 2015-05-05 21:13:49 +0200 | [diff] [blame] | 153 | return -EINVAL; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 154 | } |
Marek Olšák | d94aed5 | 2015-05-05 21:13:49 +0200 | [diff] [blame] | 155 | |
| 156 | /* TODO: these two are always zero */ |
Alex Deucher | 0b492a4 | 2015-08-16 22:48:26 -0400 | [diff] [blame] | 157 | out->state.flags = 0x0; |
| 158 | out->state.hangs = 0x0; |
Marek Olšák | d94aed5 | 2015-05-05 21:13:49 +0200 | [diff] [blame] | 159 | |
| 160 | /* determine if a GPU reset has occured since the last call */ |
| 161 | reset_counter = atomic_read(&adev->gpu_reset_counter); |
| 162 | /* TODO: this should ideally return NO, GUILTY, or INNOCENT. */ |
| 163 | if (ctx->reset_counter == reset_counter) |
| 164 | out->state.reset_status = AMDGPU_CTX_NO_RESET; |
| 165 | else |
| 166 | out->state.reset_status = AMDGPU_CTX_UNKNOWN_RESET; |
| 167 | ctx->reset_counter = reset_counter; |
| 168 | |
Marek Olšák | 0147ee0 | 2015-05-05 20:52:00 +0200 | [diff] [blame] | 169 | mutex_unlock(&mgr->lock); |
Marek Olšák | d94aed5 | 2015-05-05 21:13:49 +0200 | [diff] [blame] | 170 | return 0; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 171 | } |
| 172 | |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 173 | int amdgpu_ctx_ioctl(struct drm_device *dev, void *data, |
Marek Olšák | d94aed5 | 2015-05-05 21:13:49 +0200 | [diff] [blame] | 174 | struct drm_file *filp) |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 175 | { |
| 176 | int r; |
| 177 | uint32_t id; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 178 | |
| 179 | union drm_amdgpu_ctx *args = data; |
| 180 | struct amdgpu_device *adev = dev->dev_private; |
| 181 | struct amdgpu_fpriv *fpriv = filp->driver_priv; |
| 182 | |
| 183 | r = 0; |
| 184 | id = args->in.ctx_id; |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 185 | |
| 186 | switch (args->in.op) { |
| 187 | case AMDGPU_CTX_OP_ALLOC_CTX: |
Alex Deucher | 0b492a4 | 2015-08-16 22:48:26 -0400 | [diff] [blame] | 188 | r = amdgpu_ctx_alloc(adev, fpriv, &id); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 189 | args->out.alloc.ctx_id = id; |
| 190 | break; |
| 191 | case AMDGPU_CTX_OP_FREE_CTX: |
Christian König | 47f3850 | 2015-08-04 17:51:05 +0200 | [diff] [blame] | 192 | r = amdgpu_ctx_free(fpriv, id); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 193 | break; |
| 194 | case AMDGPU_CTX_OP_QUERY_STATE: |
Marek Olšák | d94aed5 | 2015-05-05 21:13:49 +0200 | [diff] [blame] | 195 | r = amdgpu_ctx_query(adev, fpriv, id, &args->out); |
Alex Deucher | d38ceaf | 2015-04-20 16:55:21 -0400 | [diff] [blame] | 196 | break; |
| 197 | default: |
| 198 | return -EINVAL; |
| 199 | } |
| 200 | |
| 201 | return r; |
| 202 | } |
Jammy Zhou | 66b3cf2 | 2015-05-08 17:29:40 +0800 | [diff] [blame] | 203 | |
| 204 | struct amdgpu_ctx *amdgpu_ctx_get(struct amdgpu_fpriv *fpriv, uint32_t id) |
| 205 | { |
| 206 | struct amdgpu_ctx *ctx; |
Chunming Zhou | 23ca0e4 | 2015-07-06 13:42:58 +0800 | [diff] [blame] | 207 | struct amdgpu_ctx_mgr *mgr; |
| 208 | |
| 209 | if (!fpriv) |
| 210 | return NULL; |
| 211 | |
| 212 | mgr = &fpriv->ctx_mgr; |
Jammy Zhou | 66b3cf2 | 2015-05-08 17:29:40 +0800 | [diff] [blame] | 213 | |
| 214 | mutex_lock(&mgr->lock); |
| 215 | ctx = idr_find(&mgr->ctx_handles, id); |
| 216 | if (ctx) |
| 217 | kref_get(&ctx->refcount); |
| 218 | mutex_unlock(&mgr->lock); |
| 219 | return ctx; |
| 220 | } |
| 221 | |
| 222 | int amdgpu_ctx_put(struct amdgpu_ctx *ctx) |
| 223 | { |
Jammy Zhou | 66b3cf2 | 2015-05-08 17:29:40 +0800 | [diff] [blame] | 224 | if (ctx == NULL) |
| 225 | return -EINVAL; |
| 226 | |
Jammy Zhou | 66b3cf2 | 2015-05-08 17:29:40 +0800 | [diff] [blame] | 227 | kref_put(&ctx->refcount, amdgpu_ctx_do_release); |
Jammy Zhou | 66b3cf2 | 2015-05-08 17:29:40 +0800 | [diff] [blame] | 228 | return 0; |
| 229 | } |
Christian König | 21c16bf | 2015-07-07 17:24:49 +0200 | [diff] [blame] | 230 | |
| 231 | uint64_t amdgpu_ctx_add_fence(struct amdgpu_ctx *ctx, struct amdgpu_ring *ring, |
Chunming Zhou | d1ff908 | 2015-07-30 17:59:43 +0800 | [diff] [blame] | 232 | struct fence *fence, uint64_t queued_seq) |
Christian König | 21c16bf | 2015-07-07 17:24:49 +0200 | [diff] [blame] | 233 | { |
| 234 | struct amdgpu_ctx_ring *cring = & ctx->rings[ring->idx]; |
Chunming Zhou | b43a9a7 | 2015-07-21 15:13:53 +0800 | [diff] [blame] | 235 | uint64_t seq = 0; |
| 236 | unsigned idx = 0; |
| 237 | struct fence *other = NULL; |
Christian König | 21c16bf | 2015-07-07 17:24:49 +0200 | [diff] [blame] | 238 | |
Chunming Zhou | b43a9a7 | 2015-07-21 15:13:53 +0800 | [diff] [blame] | 239 | if (amdgpu_enable_scheduler) |
Chunming Zhou | d1ff908 | 2015-07-30 17:59:43 +0800 | [diff] [blame] | 240 | seq = queued_seq; |
Chunming Zhou | b43a9a7 | 2015-07-21 15:13:53 +0800 | [diff] [blame] | 241 | else |
| 242 | seq = cring->sequence; |
| 243 | idx = seq % AMDGPU_CTX_MAX_CS_PENDING; |
| 244 | other = cring->fences[idx]; |
Christian König | 21c16bf | 2015-07-07 17:24:49 +0200 | [diff] [blame] | 245 | if (other) { |
| 246 | signed long r; |
| 247 | r = fence_wait_timeout(other, false, MAX_SCHEDULE_TIMEOUT); |
| 248 | if (r < 0) |
| 249 | DRM_ERROR("Error (%ld) waiting for fence!\n", r); |
| 250 | } |
| 251 | |
| 252 | fence_get(fence); |
| 253 | |
| 254 | spin_lock(&ctx->ring_lock); |
| 255 | cring->fences[idx] = fence; |
Chunming Zhou | b43a9a7 | 2015-07-21 15:13:53 +0800 | [diff] [blame] | 256 | if (!amdgpu_enable_scheduler) |
| 257 | cring->sequence++; |
Christian König | 21c16bf | 2015-07-07 17:24:49 +0200 | [diff] [blame] | 258 | spin_unlock(&ctx->ring_lock); |
| 259 | |
| 260 | fence_put(other); |
| 261 | |
| 262 | return seq; |
| 263 | } |
| 264 | |
| 265 | struct fence *amdgpu_ctx_get_fence(struct amdgpu_ctx *ctx, |
| 266 | struct amdgpu_ring *ring, uint64_t seq) |
| 267 | { |
| 268 | struct amdgpu_ctx_ring *cring = & ctx->rings[ring->idx]; |
| 269 | struct fence *fence; |
Chunming Zhou | b43a9a7 | 2015-07-21 15:13:53 +0800 | [diff] [blame] | 270 | uint64_t queued_seq; |
Chunming Zhou | 4b559c9 | 2015-07-21 15:53:04 +0800 | [diff] [blame] | 271 | int r; |
| 272 | |
| 273 | if (amdgpu_enable_scheduler) { |
Christian König | 91404fb | 2015-08-05 18:33:21 +0200 | [diff] [blame^] | 274 | r = amd_sched_wait_emit(&cring->entity, |
Chunming Zhou | 4b559c9 | 2015-07-21 15:53:04 +0800 | [diff] [blame] | 275 | seq, |
Chunming Zhou | 51b9db2 | 2015-07-28 17:31:04 +0800 | [diff] [blame] | 276 | false, |
| 277 | -1); |
Chunming Zhou | 4b559c9 | 2015-07-21 15:53:04 +0800 | [diff] [blame] | 278 | if (r) |
| 279 | return NULL; |
| 280 | } |
Christian König | 21c16bf | 2015-07-07 17:24:49 +0200 | [diff] [blame] | 281 | |
| 282 | spin_lock(&ctx->ring_lock); |
Chunming Zhou | b43a9a7 | 2015-07-21 15:13:53 +0800 | [diff] [blame] | 283 | if (amdgpu_enable_scheduler) |
Christian König | 91404fb | 2015-08-05 18:33:21 +0200 | [diff] [blame^] | 284 | queued_seq = amd_sched_next_queued_seq(&cring->entity); |
Chunming Zhou | b43a9a7 | 2015-07-21 15:13:53 +0800 | [diff] [blame] | 285 | else |
| 286 | queued_seq = cring->sequence; |
| 287 | |
| 288 | if (seq >= queued_seq) { |
Christian König | 21c16bf | 2015-07-07 17:24:49 +0200 | [diff] [blame] | 289 | spin_unlock(&ctx->ring_lock); |
| 290 | return ERR_PTR(-EINVAL); |
| 291 | } |
| 292 | |
Chunming Zhou | b43a9a7 | 2015-07-21 15:13:53 +0800 | [diff] [blame] | 293 | |
| 294 | if (seq + AMDGPU_CTX_MAX_CS_PENDING < queued_seq) { |
Christian König | 21c16bf | 2015-07-07 17:24:49 +0200 | [diff] [blame] | 295 | spin_unlock(&ctx->ring_lock); |
| 296 | return NULL; |
| 297 | } |
| 298 | |
| 299 | fence = fence_get(cring->fences[seq % AMDGPU_CTX_MAX_CS_PENDING]); |
| 300 | spin_unlock(&ctx->ring_lock); |
| 301 | |
| 302 | return fence; |
| 303 | } |
Christian König | efd4ccb | 2015-08-04 16:20:31 +0200 | [diff] [blame] | 304 | |
| 305 | void amdgpu_ctx_mgr_init(struct amdgpu_ctx_mgr *mgr) |
| 306 | { |
| 307 | mutex_init(&mgr->lock); |
| 308 | idr_init(&mgr->ctx_handles); |
| 309 | } |
| 310 | |
| 311 | void amdgpu_ctx_mgr_fini(struct amdgpu_ctx_mgr *mgr) |
| 312 | { |
| 313 | struct amdgpu_ctx *ctx; |
| 314 | struct idr *idp; |
| 315 | uint32_t id; |
| 316 | |
| 317 | idp = &mgr->ctx_handles; |
| 318 | |
| 319 | idr_for_each_entry(idp, ctx, id) { |
| 320 | if (kref_put(&ctx->refcount, amdgpu_ctx_do_release) != 1) |
| 321 | DRM_ERROR("ctx %p is still alive\n", ctx); |
| 322 | } |
| 323 | |
| 324 | idr_destroy(&mgr->ctx_handles); |
| 325 | mutex_destroy(&mgr->lock); |
| 326 | } |