82ef16cbdba03e4ec7c658456c832c3db5171778
[profile/ivi/libdrm.git] / libdrm / radeon / radeon_cs_gem.c
1 /* 
2  * Copyright © 2008 Jérôme Glisse
3  * All Rights Reserved.
4  * 
5  * Permission is hereby granted, free of charge, to any person obtaining
6  * a copy of this software and associated documentation files (the
7  * "Software"), to deal in the Software without restriction, including
8  * without limitation the rights to use, copy, modify, merge, publish,
9  * distribute, sub license, and/or sell copies of the Software, and to
10  * permit persons to whom the Software is furnished to do so, subject to
11  * the following conditions:
12  * 
13  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND,
14  * EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES
15  * OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
16  * NON-INFRINGEMENT. IN NO EVENT SHALL THE COPYRIGHT HOLDERS, AUTHORS
17  * AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE 
20  * USE OR OTHER DEALINGS IN THE SOFTWARE.
21  *
22  * The above copyright notice and this permission notice (including the
23  * next paragraph) shall be included in all copies or substantial portions
24  * of the Software.
25  */
26 /*
27  * Authors:
28  *      Aapo Tahkola <aet@rasterburn.org>
29  *      Nicolai Haehnle <prefect_@gmx.net>
30  *      Jérôme Glisse <glisse@freedesktop.org>
31  */
32 #include <assert.h>
33 #include <errno.h>
34 #include <stdlib.h>
35 #include <sys/mman.h>
36 #include <sys/ioctl.h>
37 #include "radeon_cs.h"
38 #include "radeon_cs_gem.h"
39 #include "radeon_bo_gem.h"
40 #include "drm.h"
41 #include "xf86drm.h"
42 #include "radeon_drm.h"
43
44 #pragma pack(1)
45 struct cs_reloc_gem {
46     uint32_t    handle;
47     uint32_t    read_domain;
48     uint32_t    write_domain;
49     uint32_t    flags;
50 };
51
52 #pragma pack()
53 #define RELOC_SIZE (sizeof(struct cs_reloc_gem) / sizeof(uint32_t))
54
55 struct cs_gem {
56     struct radeon_cs            base;
57     struct drm_radeon_cs        cs;
58     struct drm_radeon_cs_chunk  chunks[2];
59     unsigned                    nrelocs;
60     uint32_t                    *relocs;
61     struct radeon_bo            **relocs_bo;
62 };
63
64 static struct radeon_cs *cs_gem_create(struct radeon_cs_manager *csm,
65                                        uint32_t ndw)
66 {
67     struct cs_gem *csg;
68
69     /* max cmd buffer size is 64Kb */
70     if (ndw > (64 * 1024 / 4)) {
71         return NULL;
72     }
73     csg = (struct cs_gem*)calloc(1, sizeof(struct cs_gem));
74     if (csg == NULL) {
75         return NULL;
76     }
77     csg->base.csm = csm;
78     csg->base.ndw = 64 * 1024 / 4;
79     csg->base.packets = (uint32_t*)calloc(1, 64 * 1024);
80     if (csg->base.packets == NULL) {
81         free(csg);
82         return NULL;
83     }
84     csg->base.relocs_total_size = 0;
85     csg->base.crelocs = 0;
86     csg->nrelocs = 4096 / (4 * 4) ;
87     csg->relocs_bo = (struct radeon_bo**)calloc(1,
88                                                 csg->nrelocs*sizeof(void*));
89     if (csg->relocs_bo == NULL) {
90         free(csg->base.packets);
91         free(csg);
92         return NULL;
93     }
94     csg->base.relocs = csg->relocs = (uint32_t*)calloc(1, 4096);
95     if (csg->relocs == NULL) {
96         free(csg->relocs_bo);
97         free(csg->base.packets);
98         free(csg);
99         return NULL;
100     }
101     csg->chunks[0].chunk_id = RADEON_CHUNK_ID_IB;
102     csg->chunks[0].length_dw = 0;
103     csg->chunks[0].chunk_data = (uint64_t)(intptr_t)csg->base.packets;
104     csg->chunks[1].chunk_id = RADEON_CHUNK_ID_RELOCS;
105     csg->chunks[1].length_dw = 0;
106     csg->chunks[1].chunk_data = (uint64_t)(intptr_t)csg->relocs;
107     return (struct radeon_cs*)csg;
108 }
109
110 static int cs_gem_write_reloc(struct radeon_cs *cs,
111                               struct radeon_bo *bo,
112                               uint32_t read_domain,
113                               uint32_t write_domain,
114                               uint32_t flags)
115 {
116     struct cs_gem *csg = (struct cs_gem*)cs;
117     struct cs_reloc_gem *reloc;
118     uint32_t idx;
119     unsigned i;
120
121     assert(bo->space_accounted);
122
123     /* check domains */
124     if ((read_domain && write_domain) || (!read_domain && !write_domain)) {
125         /* in one CS a bo can only be in read or write domain but not
126          * in read & write domain at the same sime
127          */
128         return -EINVAL;
129     }
130     if (read_domain == RADEON_GEM_DOMAIN_CPU) {
131         return -EINVAL;
132     }
133     if (write_domain == RADEON_GEM_DOMAIN_CPU) {
134         return -EINVAL;
135     }
136     /* check if bo is already referenced */
137     for(i = 0; i < cs->crelocs; i++) {
138         idx = i * RELOC_SIZE;
139         reloc = (struct cs_reloc_gem*)&csg->relocs[idx];
140         if (reloc->handle == bo->handle) {
141             /* Check domains must be in read or write. As we check already
142              * checked that in argument one of the read or write domain was
143              * set we only need to check that if previous reloc as the read
144              * domain set then the read_domain should also be set for this
145              * new relocation.
146              */
147             /* the DDX expects to read and write from same pixmap */
148             if (write_domain && (reloc->read_domain & write_domain)) {
149                 reloc->read_domain = 0;
150                 reloc->write_domain = write_domain;
151             } else if (read_domain & reloc->write_domain) {
152                 reloc->read_domain = 0;
153             } else {
154                 if (write_domain != reloc->write_domain)
155                     return -EINVAL;
156                 if (read_domain != reloc->read_domain)
157                     return -EINVAL;
158             }
159
160             reloc->read_domain |= read_domain;
161             reloc->write_domain |= write_domain;
162             /* update flags */
163             reloc->flags |= (flags & reloc->flags);
164             /* write relocation packet */
165             radeon_cs_write_dword(cs, 0xc0001000);
166             radeon_cs_write_dword(cs, idx);
167             return 0;
168         }
169     }
170     /* new relocation */
171     if (csg->base.crelocs >= csg->nrelocs) {
172         /* allocate more memory (TODO: should use a slab allocatore maybe) */
173         uint32_t *tmp, size;
174         size = ((csg->nrelocs + 1) * sizeof(struct radeon_bo*));
175         tmp = (uint32_t*)realloc(csg->relocs_bo, size);
176         if (tmp == NULL) {
177             return -ENOMEM;
178         }
179         csg->relocs_bo = (struct radeon_bo**)tmp;
180         size = ((csg->nrelocs + 1) * RELOC_SIZE * 4);
181         tmp = (uint32_t*)realloc(csg->relocs, size);
182         if (tmp == NULL) {
183             return -ENOMEM;
184         }
185         cs->relocs = csg->relocs = tmp;
186         csg->nrelocs += 1;
187         csg->chunks[1].chunk_data = (uint64_t)(intptr_t)csg->relocs;
188     }
189     csg->relocs_bo[csg->base.crelocs] = bo;
190     idx = (csg->base.crelocs++) * RELOC_SIZE;
191     reloc = (struct cs_reloc_gem*)&csg->relocs[idx];
192     reloc->handle = bo->handle;
193     reloc->read_domain = read_domain;
194     reloc->write_domain = write_domain;
195     reloc->flags = flags;
196     csg->chunks[1].length_dw += RELOC_SIZE;
197     radeon_bo_ref(bo);
198     cs->relocs_total_size += bo->size;
199     radeon_cs_write_dword(cs, 0xc0001000);
200     radeon_cs_write_dword(cs, idx);
201     return 0;
202 }
203
204 static int cs_gem_begin(struct radeon_cs *cs,
205                         uint32_t ndw,
206                         const char *file,
207                         const char *func,
208                         int line)
209 {
210
211     if (cs->section) {
212         fprintf(stderr, "CS already in a section(%s,%s,%d)\n",
213                 cs->section_file, cs->section_func, cs->section_line);
214         fprintf(stderr, "CS can't start section(%s,%s,%d)\n",
215                 file, func, line);
216         return -EPIPE;
217     }
218     cs->section = 1;
219     cs->section_ndw = ndw;
220     cs->section_cdw = 0;
221     cs->section_file = file;
222     cs->section_func = func;
223     cs->section_line = line;
224
225
226     if (cs->cdw + ndw > cs->ndw) {
227         uint32_t tmp, *ptr;
228         int num = (ndw > 0x3FF) ? ndw : 0x3FF;
229
230         tmp = (cs->cdw + 1 + num) & (~num);
231         ptr = (uint32_t*)realloc(cs->packets, 4 * tmp);
232         if (ptr == NULL) {
233             return -ENOMEM;
234         }
235         cs->packets = ptr;
236         cs->ndw = tmp;
237     }
238
239     return 0;
240 }
241
242 static int cs_gem_end(struct radeon_cs *cs,
243                       const char *file,
244                       const char *func,
245                       int line)
246
247 {
248     if (!cs->section) {
249         fprintf(stderr, "CS no section to end at (%s,%s,%d)\n",
250                 file, func, line);
251         return -EPIPE;
252     }
253     cs->section = 0;
254     if (cs->section_ndw != cs->section_cdw) {
255         fprintf(stderr, "CS section size missmatch start at (%s,%s,%d) %d vs %d\n",
256                 cs->section_file, cs->section_func, cs->section_line, cs->section_ndw, cs->section_cdw);
257         fprintf(stderr, "CS section end at (%s,%s,%d)\n",
258                 file, func, line);
259         return -EPIPE;
260     }
261     return 0;
262 }
263
264 static int cs_gem_emit(struct radeon_cs *cs)
265 {
266     struct cs_gem *csg = (struct cs_gem*)cs;
267     uint64_t chunk_array[2];
268     unsigned i;
269     int r;
270
271     csg->chunks[0].length_dw = cs->cdw;
272
273     chunk_array[0] = (uint64_t)(intptr_t)&csg->chunks[0];
274     chunk_array[1] = (uint64_t)(intptr_t)&csg->chunks[1];
275
276     csg->cs.num_chunks = 2;
277     csg->cs.chunks = (uint64_t)(intptr_t)chunk_array;
278
279     r = drmCommandWriteRead(cs->csm->fd, DRM_RADEON_CS,
280                             &csg->cs, sizeof(struct drm_radeon_cs));
281     for (i = 0; i < csg->base.crelocs; i++) {
282             csg->relocs_bo[i]->space_accounted = 0;
283             radeon_bo_unref(csg->relocs_bo[i]);
284             csg->relocs_bo[i] = NULL;
285     }
286
287     cs->csm->read_used = 0;
288     cs->csm->vram_write_used = 0;
289     cs->csm->gart_write_used = 0;
290     return r;
291 }
292
293 static int cs_gem_destroy(struct radeon_cs *cs)
294 {
295     struct cs_gem *csg = (struct cs_gem*)cs;
296
297     free(csg->relocs_bo);
298     free(cs->relocs);
299     free(cs->packets);
300     free(cs);
301     return 0;
302 }
303
304 static int cs_gem_erase(struct radeon_cs *cs)
305 {
306     struct cs_gem *csg = (struct cs_gem*)cs;
307     unsigned i;
308
309     if (csg->relocs_bo) {
310         for (i = 0; i < csg->base.crelocs; i++) {
311             if (csg->relocs_bo[i]) {
312                 radeon_bo_unref(csg->relocs_bo[i]);
313                 csg->relocs_bo[i] = NULL;
314             }
315         }
316     }
317     cs->relocs_total_size = 0;
318     cs->cdw = 0;
319     cs->section = 0;
320     cs->crelocs = 0;
321     csg->chunks[0].length_dw = 0;
322     csg->chunks[1].length_dw = 0;
323     return 0;
324 }
325
326 static int cs_gem_need_flush(struct radeon_cs *cs)
327 {
328     return 0; //(cs->relocs_total_size > (32*1024*1024));
329 }
330
331 #define PACKET_TYPE0 0
332 #define PACKET_TYPE1 1
333 #define PACKET_TYPE2 2
334 #define PACKET_TYPE3 3
335   
336 #define PACKET3_NOP 0x10
337 #define PACKET3_SET_SCISSORS 0x1E
338 #define PACKET3_3D_DRAW_VBUF 0x28
339 #define PACKET3_3D_DRAW_IMMD 0x29
340 #define PACKET3_3D_DRAW_INDX 0x2A
341 #define PACKET3_3D_LOAD_VBPNTR 0x2F
342 #define PACKET3_INDX_BUFFER 0x33
343 #define PACKET3_3D_DRAW_VBUF_2 0x34
344 #define PACKET3_3D_DRAW_IMMD_2 0x35
345 #define PACKET3_3D_DRAW_INDX_2 0x36
346  
347 #define CP_PACKET_GET_TYPE(h) (((h) >> 30) & 3)
348 #define CP_PACKET_GET_COUNT(h) (((h) >> 16) & 0x3FFF)
349 #define CP_PACKET0_GET_REG(h) (((h) & 0x1FFF) << 2)
350 #define CP_PACKET0_GET_ONE_REG_WR(h) (((h) >> 15) & 1)
351 #define CP_PACKET3_GET_OPCODE(h) (((h) >> 8) & 0xFF)
352
353 static void cs_gem_print(struct radeon_cs *cs, FILE *file)
354 {
355     unsigned opcode;
356     unsigned reg;
357     unsigned cnt;
358     int i, j;
359
360     for (i = 0; i < cs->cdw;) {
361         cnt = CP_PACKET_GET_COUNT(cs->packets[i]);
362         switch (CP_PACKET_GET_TYPE(cs->packets[i])) {
363         case PACKET_TYPE0:
364             fprintf(file, "Pkt0 at %d (%d dwords):\n", i, cnt + 1);
365             reg = CP_PACKET0_GET_REG(cs->packets[i]);
366             if (CP_PACKET0_GET_ONE_REG_WR(cs->packets[i++])) {
367                 for (j = 0; j <= cnt; j++) {
368                     fprintf(file, "    0x%08X -> 0x%04X\n",
369                             cs->packets[i++], reg);
370                 }
371             } else {
372                 for (j = 0; j <= cnt; j++) {
373                     fprintf(file, "    0x%08X -> 0x%04X\n",
374                             cs->packets[i++], reg);
375                     reg += 4;
376                 }
377             }
378             break;
379         case PACKET_TYPE3:
380             fprintf(file, "Pkt3 at %d :\n", i);
381             opcode = CP_PACKET3_GET_OPCODE(cs->packets[i++]);
382             switch (opcode) {
383             case PACKET3_NOP:
384                 fprintf(file, "    PACKET3_NOP:\n");
385                 break;
386             case PACKET3_3D_DRAW_VBUF:
387                 fprintf(file, "    PACKET3_3D_DRAW_VBUF:\n");
388                 break;
389             case PACKET3_3D_DRAW_IMMD:
390                 fprintf(file, "    PACKET3_3D_DRAW_IMMD:\n");
391                 break;
392             case PACKET3_3D_DRAW_INDX:
393                 fprintf(file, "    PACKET3_3D_DRAW_INDX:\n");
394                 break;
395             case PACKET3_3D_LOAD_VBPNTR:
396                 fprintf(file, "    PACKET3_3D_LOAD_VBPNTR:\n");
397                 break;
398             case PACKET3_INDX_BUFFER:
399                 fprintf(file, "    PACKET3_INDX_BUFFER:\n");
400                 break;
401             case PACKET3_3D_DRAW_VBUF_2:
402                 fprintf(file, "    PACKET3_3D_DRAW_VBUF_2:\n");
403                 break;
404             case PACKET3_3D_DRAW_IMMD_2:
405                 fprintf(file, "    PACKET3_3D_DRAW_IMMD_2:\n");
406                 break;
407             case PACKET3_3D_DRAW_INDX_2:
408                 fprintf(file, "    PACKET3_3D_DRAW_INDX_2:\n");
409                 break;
410             default:
411                 fprintf(file, "Unknow opcode 0x%02X at %d\n", opcode, i);
412                 return;
413             }
414             for (j = 0; j <= cnt; j++) {
415                 fprintf(file, "        0x%08X\n", cs->packets[i++]);
416             }
417             break;
418         case PACKET_TYPE1:
419         case PACKET_TYPE2:
420         default:
421             fprintf(file, "Unknow packet 0x%08X at %d\n", cs->packets[i], i);
422             return;
423         }
424     }
425 }
426
427 static int cs_gem_check_space(struct radeon_cs *cs, struct radeon_cs_space_check *bos, int num_bo)
428 {
429     struct radeon_cs_manager *csm = cs->csm;
430     int this_op_read = 0, this_op_gart_write = 0, this_op_vram_write = 0;
431     uint32_t read_domains, write_domain;
432     int i;
433     struct radeon_bo *bo;
434
435     /* check the totals for this operation */
436
437     if (num_bo == 0)
438         return 0;
439
440     /* prepare */
441     for (i = 0; i < num_bo; i++) {
442       bo = bos[i].bo;
443
444       bos[i].new_accounted = 0;
445       read_domains = bos[i].read_domains;
446       write_domain = bos[i].write_domain;
447                 
448       /* already accounted this bo */
449       if (write_domain && (write_domain == bo->space_accounted)) {
450               bos[i].new_accounted = bo->space_accounted;
451               continue;
452       }
453       if (read_domains && ((read_domains << 16) == bo->space_accounted)) {
454               bos[i].new_accounted = bo->space_accounted;
455               continue;
456       }
457       
458       if (bo->space_accounted == 0) {
459           if (write_domain == RADEON_GEM_DOMAIN_VRAM)
460               this_op_vram_write += bo->size;
461           else if (write_domain == RADEON_GEM_DOMAIN_GTT)
462               this_op_gart_write += bo->size;
463           else
464               this_op_read += bo->size;
465           bos[i].new_accounted = (read_domains << 16) | write_domain;
466       } else {
467           uint16_t old_read, old_write;
468           
469           old_read = bo->space_accounted >> 16;
470           old_write = bo->space_accounted & 0xffff;
471
472           if (write_domain && (old_read & write_domain)) {
473               bos[i].new_accounted = write_domain;
474               /* moving from read to a write domain */
475               if (write_domain == RADEON_GEM_DOMAIN_VRAM) {
476                   this_op_read -= bo->size;
477                   this_op_vram_write += bo->size;
478               } else if (write_domain == RADEON_GEM_DOMAIN_VRAM) {
479                   this_op_read -= bo->size;
480                   this_op_gart_write += bo->size;
481               }
482           } else if (read_domains & old_write) {
483               bos[i].new_accounted = bo->space_accounted & 0xffff;
484           } else {
485               /* rewrite the domains */
486               if (write_domain != old_write)
487                   fprintf(stderr,"WRITE DOMAIN RELOC FAILURE 0x%x %d %d\n", bo->handle, write_domain, old_write);
488               if (read_domains != old_read)
489                   fprintf(stderr,"READ DOMAIN RELOC FAILURE 0x%x %d %d\n", bo->handle, read_domains, old_read);
490               return RADEON_CS_SPACE_FLUSH;
491           }
492       }
493     }
494         
495     if (this_op_read < 0)
496             this_op_read = 0;
497
498     /* check sizes - operation first */
499     if ((this_op_read + this_op_gart_write > csm->gart_limit) ||
500         (this_op_vram_write > csm->vram_limit)) {
501             return RADEON_CS_SPACE_OP_TO_BIG;
502     }
503     
504     if (((csm->vram_write_used + this_op_vram_write) > csm->vram_limit) ||
505         ((csm->read_used + csm->gart_write_used + this_op_gart_write + this_op_read) > csm->gart_limit)) {
506             return RADEON_CS_SPACE_FLUSH;
507     }
508     
509     csm->gart_write_used += this_op_gart_write;
510     csm->vram_write_used += this_op_vram_write;
511     csm->read_used += this_op_read;
512     /* commit */
513     for (i = 0; i < num_bo; i++) {
514             bo = bos[i].bo;
515             bo->space_accounted = bos[i].new_accounted;
516     }
517     
518     return RADEON_CS_SPACE_OK;
519 }
520
521 static struct radeon_cs_funcs radeon_cs_gem_funcs = {
522     cs_gem_create,
523     cs_gem_write_reloc,
524     cs_gem_begin,
525     cs_gem_end,
526     cs_gem_emit,
527     cs_gem_destroy,
528     cs_gem_erase,
529     cs_gem_need_flush,
530     cs_gem_print,
531     cs_gem_check_space,
532 };
533
534 struct radeon_cs_manager *radeon_cs_manager_gem_ctor(int fd)
535 {
536     struct radeon_cs_manager *csm;
537
538     csm = (struct radeon_cs_manager*)calloc(1,
539                                             sizeof(struct radeon_cs_manager));
540     if (csm == NULL) {
541         return NULL;
542     }
543     csm->funcs = &radeon_cs_gem_funcs;
544     csm->fd = fd;
545     return csm;
546 }
547
548 void radeon_cs_manager_gem_dtor(struct radeon_cs_manager *csm)
549 {
550     free(csm);
551 }