exynos: fimg2d: fix return codes
[platform/upstream/libdrm.git] / exynos / exynos_fimg2d.c
1 /*
2  * Copyright (C) 2013 Samsung Electronics Co.Ltd
3  * Authors:
4  *      Inki Dae <inki.dae@samsung.com>
5  *
6  * This program is free software; you can redistribute  it and/or modify it
7  * under  the terms of  the GNU General  Public License as published by the
8  * Free Software Foundation;  either version 2 of the  License, or (at your
9  * option) any later version.
10  *
11  */
12
13 #ifdef HAVE_CONFIG_H
14 #include "config.h"
15 #endif
16
17 #include <stdlib.h>
18 #include <stdio.h>
19 #include <string.h>
20 #include <errno.h>
21
22 #include <sys/mman.h>
23 #include <linux/stddef.h>
24
25 #include <xf86drm.h>
26
27 #include "libdrm_macros.h"
28 #include "exynos_drm.h"
29 #include "fimg2d_reg.h"
30 #include "exynos_fimg2d.h"
31
32 #define         SET_BF(val, sc, si, scsa, scda, dc, di, dcsa, dcda) \
33                         val.data.src_coeff = sc;                \
34                         val.data.inv_src_color_coeff = si;      \
35                         val.data.src_coeff_src_a = scsa;        \
36                         val.data.src_coeff_dst_a = scda;        \
37                         val.data.dst_coeff = dc;                \
38                         val.data.inv_dst_color_coeff = di;      \
39                         val.data.dst_coeff_src_a = dcsa;        \
40                         val.data.dst_coeff_dst_a = dcda;
41
42 #define MIN(a, b)       ((a) < (b) ? (a) : (b))
43
44 enum g2d_base_addr_reg {
45         g2d_dst = 0,
46         g2d_src
47 };
48
49 static unsigned int g2d_get_scaling(unsigned int src, unsigned int dst)
50 {
51         /*
52          * The G2D hw scaling factor is a normalized inverse of the scaling factor.
53          * For example: When source width is 100 and destination width is 200
54          * (scaling of 2x), then the hw factor is NC * 100 / 200.
55          * The normalization factor (NC) is 2^16 = 0x10000.
56          */
57
58         return ((src << 16) / dst);
59 }
60
61 static unsigned int g2d_get_blend_op(enum e_g2d_op op)
62 {
63         union g2d_blend_func_val val;
64
65         val.val = 0;
66
67         switch (op) {
68         case G2D_OP_CLEAR:
69         case G2D_OP_DISJOINT_CLEAR:
70         case G2D_OP_CONJOINT_CLEAR:
71                 SET_BF(val, G2D_COEFF_MODE_ZERO, 0, 0, 0, G2D_COEFF_MODE_ZERO,
72                                 0, 0, 0);
73                 break;
74         case G2D_OP_SRC:
75         case G2D_OP_DISJOINT_SRC:
76         case G2D_OP_CONJOINT_SRC:
77                 SET_BF(val, G2D_COEFF_MODE_ONE, 0, 0, 0, G2D_COEFF_MODE_ZERO,
78                                 0, 0, 0);
79                 break;
80         case G2D_OP_DST:
81         case G2D_OP_DISJOINT_DST:
82         case G2D_OP_CONJOINT_DST:
83                 SET_BF(val, G2D_COEFF_MODE_ZERO, 0, 0, 0, G2D_COEFF_MODE_ONE,
84                                 0, 0, 0);
85                 break;
86         case G2D_OP_OVER:
87                 SET_BF(val, G2D_COEFF_MODE_ONE, 0, 0, 0,
88                                 G2D_COEFF_MODE_SRC_ALPHA, 1, 0, 0);
89                 break;
90         case G2D_OP_INTERPOLATE:
91                 SET_BF(val, G2D_COEFF_MODE_SRC_ALPHA, 0, 0, 0,
92                                 G2D_COEFF_MODE_SRC_ALPHA, 1, 0, 0);
93                 break;
94         default:
95                 fprintf(stderr, "Not support operation(%d).\n", op);
96                 SET_BF(val, G2D_COEFF_MODE_ONE, 0, 0, 0, G2D_COEFF_MODE_ZERO,
97                                 0, 0, 0);
98                 break;
99         }
100
101         return val.val;
102 }
103
104 /*
105  * g2d_add_cmd - set given command and value to user side command buffer.
106  *
107  * @ctx: a pointer to g2d_context structure.
108  * @cmd: command data.
109  * @value: value data.
110  */
111 static int g2d_add_cmd(struct g2d_context *ctx, unsigned long cmd,
112                         unsigned long value)
113 {
114         switch (cmd & ~(G2D_BUF_USERPTR)) {
115         case SRC_BASE_ADDR_REG:
116         case SRC_PLANE2_BASE_ADDR_REG:
117         case DST_BASE_ADDR_REG:
118         case DST_PLANE2_BASE_ADDR_REG:
119         case PAT_BASE_ADDR_REG:
120         case MASK_BASE_ADDR_REG:
121                 if (ctx->cmd_buf_nr >= G2D_MAX_GEM_CMD_NR) {
122                         fprintf(stderr, "Overflow cmd_gem size.\n");
123                         return -EINVAL;
124                 }
125
126                 ctx->cmd_buf[ctx->cmd_buf_nr].offset = cmd;
127                 ctx->cmd_buf[ctx->cmd_buf_nr].data = value;
128                 ctx->cmd_buf_nr++;
129                 break;
130         default:
131                 if (ctx->cmd_nr >= G2D_MAX_CMD_NR) {
132                         fprintf(stderr, "Overflow cmd size.\n");
133                         return -EINVAL;
134                 }
135
136                 ctx->cmd[ctx->cmd_nr].offset = cmd;
137                 ctx->cmd[ctx->cmd_nr].data = value;
138                 ctx->cmd_nr++;
139                 break;
140         }
141
142         return 0;
143 }
144
145 /*
146  * g2d_add_base_addr - helper function to set dst/src base address register.
147  *
148  * @ctx: a pointer to g2d_context structure.
149  * @img: a pointer to the dst/src g2d_image structure.
150  * @reg: the register that should be set.
151  */
152 static void g2d_add_base_addr(struct g2d_context *ctx, struct g2d_image *img,
153                         enum g2d_base_addr_reg reg)
154 {
155         const unsigned long cmd = (reg == g2d_dst) ?
156                 DST_BASE_ADDR_REG : SRC_BASE_ADDR_REG;
157
158         if (img->buf_type == G2D_IMGBUF_USERPTR)
159                 g2d_add_cmd(ctx, cmd | G2D_BUF_USERPTR,
160                                 (unsigned long)&img->user_ptr[0]);
161         else
162                 g2d_add_cmd(ctx, cmd, img->bo[0]);
163 }
164
165 /*
166  * g2d_reset - reset fimg2d hardware.
167  *
168  * @ctx: a pointer to g2d_context structure.
169  *
170  */
171 static void g2d_reset(struct g2d_context *ctx)
172 {
173         ctx->cmd_nr = 0;
174         ctx->cmd_buf_nr = 0;
175
176         g2d_add_cmd(ctx, SOFT_RESET_REG, 0x01);
177 }
178
179 /*
180  * g2d_flush - submit all commands and values in user side command buffer
181  *              to command queue aware of fimg2d dma.
182  *
183  * @ctx: a pointer to g2d_context structure.
184  *
185  * This function should be called after all commands and values to user
186  * side command buffer are set. It submits that buffer to the kernel side driver.
187  */
188 static int g2d_flush(struct g2d_context *ctx)
189 {
190         int ret;
191         struct drm_exynos_g2d_set_cmdlist cmdlist = {0};
192
193         if (ctx->cmd_nr == 0 && ctx->cmd_buf_nr == 0)
194                 return -1;
195
196         if (ctx->cmdlist_nr >= G2D_MAX_CMD_LIST_NR) {
197                 fprintf(stderr, "Overflow cmdlist.\n");
198                 return -EINVAL;
199         }
200
201         cmdlist.cmd = (uint64_t)(uintptr_t)&ctx->cmd[0];
202         cmdlist.cmd_buf = (uint64_t)(uintptr_t)&ctx->cmd_buf[0];
203         cmdlist.cmd_nr = ctx->cmd_nr;
204         cmdlist.cmd_buf_nr = ctx->cmd_buf_nr;
205         cmdlist.event_type = G2D_EVENT_NOT;
206         cmdlist.user_data = 0;
207
208         ctx->cmd_nr = 0;
209         ctx->cmd_buf_nr = 0;
210
211         ret = drmIoctl(ctx->fd, DRM_IOCTL_EXYNOS_G2D_SET_CMDLIST, &cmdlist);
212         if (ret < 0) {
213                 fprintf(stderr, "failed to set cmdlist.\n");
214                 return ret;
215         }
216
217         ctx->cmdlist_nr++;
218
219         return ret;
220 }
221
222 /**
223  * g2d_init - create a new g2d context and get hardware version.
224  *
225  * fd: a file descriptor to an opened drm device.
226  */
227 struct g2d_context *g2d_init(int fd)
228 {
229         struct drm_exynos_g2d_get_ver ver;
230         struct g2d_context *ctx;
231         int ret;
232
233         ctx = calloc(1, sizeof(*ctx));
234         if (!ctx) {
235                 fprintf(stderr, "failed to allocate context.\n");
236                 return NULL;
237         }
238
239         ctx->fd = fd;
240
241         ret = drmIoctl(fd, DRM_IOCTL_EXYNOS_G2D_GET_VER, &ver);
242         if (ret < 0) {
243                 fprintf(stderr, "failed to get version.\n");
244                 free(ctx);
245                 return NULL;
246         }
247
248         ctx->major = ver.major;
249         ctx->minor = ver.minor;
250
251         printf("g2d version(%d.%d).\n", ctx->major, ctx->minor);
252         return ctx;
253 }
254
255 void g2d_fini(struct g2d_context *ctx)
256 {
257         if (ctx)
258                 free(ctx);
259 }
260
261 /**
262  * g2d_exec - start the dma to process all commands summited by g2d_flush().
263  *
264  * @ctx: a pointer to g2d_context structure.
265  */
266 int g2d_exec(struct g2d_context *ctx)
267 {
268         struct drm_exynos_g2d_exec exec;
269         int ret;
270
271         if (ctx->cmdlist_nr == 0)
272                 return -EINVAL;
273
274         exec.async = 0;
275
276         ret = drmIoctl(ctx->fd, DRM_IOCTL_EXYNOS_G2D_EXEC, &exec);
277         if (ret < 0) {
278                 fprintf(stderr, "failed to execute.\n");
279                 return ret;
280         }
281
282         ctx->cmdlist_nr = 0;
283
284         return ret;
285 }
286
287 /**
288  * g2d_solid_fill - fill given buffer with given color data.
289  *
290  * @ctx: a pointer to g2d_context structure.
291  * @img: a pointer to g2d_image structure including image and buffer
292  *      information.
293  * @x: x start position to buffer filled with given color data.
294  * @y: y start position to buffer filled with given color data.
295  * @w: width value to buffer filled with given color data.
296  * @h: height value to buffer filled with given color data.
297  */
298 int
299 g2d_solid_fill(struct g2d_context *ctx, struct g2d_image *img,
300                         unsigned int x, unsigned int y, unsigned int w,
301                         unsigned int h)
302 {
303         union g2d_bitblt_cmd_val bitblt;
304         union g2d_point_val pt;
305
306         g2d_add_cmd(ctx, DST_SELECT_REG, G2D_SELECT_MODE_NORMAL);
307         g2d_add_cmd(ctx, DST_COLOR_MODE_REG, img->color_mode);
308         g2d_add_base_addr(ctx, img, g2d_dst);
309         g2d_add_cmd(ctx, DST_STRIDE_REG, img->stride);
310
311         if (x + w > img->width)
312                 w = img->width - x;
313         if (y + h > img->height)
314                 h = img->height - y;
315
316         pt.val = 0;
317         pt.data.x = x;
318         pt.data.y = y;
319         g2d_add_cmd(ctx, DST_LEFT_TOP_REG, pt.val);
320
321         pt.val = 0;
322         pt.data.x = x + w;
323         pt.data.y = y + h;
324
325         g2d_add_cmd(ctx, DST_RIGHT_BOTTOM_REG, pt.val);
326
327         g2d_add_cmd(ctx, SF_COLOR_REG, img->color);
328
329         bitblt.val = 0;
330         bitblt.data.fast_solid_color_fill_en = 1;
331         g2d_add_cmd(ctx, BITBLT_COMMAND_REG, bitblt.val);
332
333         return g2d_flush(ctx);
334 }
335
336 /**
337  * g2d_copy - copy contents in source buffer to destination buffer.
338  *
339  * @ctx: a pointer to g2d_context structure.
340  * @src: a pointer to g2d_image structure including image and buffer
341  *      information to source.
342  * @dst: a pointer to g2d_image structure including image and buffer
343  *      information to destination.
344  * @src_x: x start position to source buffer.
345  * @src_y: y start position to source buffer.
346  * @dst_x: x start position to destination buffer.
347  * @dst_y: y start position to destination buffer.
348  * @w: width value to source and destination buffers.
349  * @h: height value to source and destination buffers.
350  */
351 int
352 g2d_copy(struct g2d_context *ctx, struct g2d_image *src,
353                 struct g2d_image *dst, unsigned int src_x, unsigned int src_y,
354                 unsigned int dst_x, unsigned dst_y, unsigned int w,
355                 unsigned int h)
356 {
357         union g2d_rop4_val rop4;
358         union g2d_point_val pt;
359         unsigned int src_w = 0, src_h = 0, dst_w = 0, dst_h = 0;
360
361         g2d_add_cmd(ctx, DST_SELECT_REG, G2D_SELECT_MODE_BGCOLOR);
362         g2d_add_cmd(ctx, DST_COLOR_MODE_REG, dst->color_mode);
363         g2d_add_base_addr(ctx, dst, g2d_dst);
364         g2d_add_cmd(ctx, DST_STRIDE_REG, dst->stride);
365
366         g2d_add_cmd(ctx, SRC_SELECT_REG, G2D_SELECT_MODE_NORMAL);
367         g2d_add_cmd(ctx, SRC_COLOR_MODE_REG, src->color_mode);
368         g2d_add_base_addr(ctx, src, g2d_src);
369         g2d_add_cmd(ctx, SRC_STRIDE_REG, src->stride);
370
371         src_w = w;
372         src_h = h;
373         if (src_x + src->width > w)
374                 src_w = src->width - src_x;
375         if (src_y + src->height > h)
376                 src_h = src->height - src_y;
377
378         dst_w = w;
379         dst_h = w;
380         if (dst_x + dst->width > w)
381                 dst_w = dst->width - dst_x;
382         if (dst_y + dst->height > h)
383                 dst_h = dst->height - dst_y;
384
385         w = MIN(src_w, dst_w);
386         h = MIN(src_h, dst_h);
387
388         if (w <= 0 || h <= 0) {
389                 fprintf(stderr, "invalid width or height.\n");
390                 g2d_reset(ctx);
391                 return -EINVAL;
392         }
393
394         pt.val = 0;
395         pt.data.x = src_x;
396         pt.data.y = src_y;
397         g2d_add_cmd(ctx, SRC_LEFT_TOP_REG, pt.val);
398         pt.val = 0;
399         pt.data.x = src_x + w;
400         pt.data.y = src_y + h;
401         g2d_add_cmd(ctx, SRC_RIGHT_BOTTOM_REG, pt.val);
402
403         pt.val = 0;
404         pt.data.x = dst_x;
405         pt.data.y = dst_y;
406         g2d_add_cmd(ctx, DST_LEFT_TOP_REG, pt.val);
407         pt.val = 0;
408         pt.data.x = dst_x + w;
409         pt.data.y = dst_y + h;
410         g2d_add_cmd(ctx, DST_RIGHT_BOTTOM_REG, pt.val);
411
412         rop4.val = 0;
413         rop4.data.unmasked_rop3 = G2D_ROP3_SRC;
414         g2d_add_cmd(ctx, ROP4_REG, rop4.val);
415
416         return g2d_flush(ctx);
417 }
418
419 /**
420  * g2d_copy_with_scale - copy contents in source buffer to destination buffer
421  *      scaling up or down properly.
422  *
423  * @ctx: a pointer to g2d_context structure.
424  * @src: a pointer to g2d_image structure including image and buffer
425  *      information to source.
426  * @dst: a pointer to g2d_image structure including image and buffer
427  *      information to destination.
428  * @src_x: x start position to source buffer.
429  * @src_y: y start position to source buffer.
430  * @src_w: width value to source buffer.
431  * @src_h: height value to source buffer.
432  * @dst_x: x start position to destination buffer.
433  * @dst_y: y start position to destination buffer.
434  * @dst_w: width value to destination buffer.
435  * @dst_h: height value to destination buffer.
436  * @negative: indicate that it uses color negative to source and
437  *      destination buffers.
438  */
439 int
440 g2d_copy_with_scale(struct g2d_context *ctx, struct g2d_image *src,
441                                 struct g2d_image *dst, unsigned int src_x,
442                                 unsigned int src_y, unsigned int src_w,
443                                 unsigned int src_h, unsigned int dst_x,
444                                 unsigned int dst_y, unsigned int dst_w,
445                                 unsigned int dst_h, unsigned int negative)
446 {
447         union g2d_rop4_val rop4;
448         union g2d_point_val pt;
449         unsigned int scale;
450         unsigned int scale_x, scale_y;
451
452         g2d_add_cmd(ctx, DST_SELECT_REG, G2D_SELECT_MODE_BGCOLOR);
453         g2d_add_cmd(ctx, DST_COLOR_MODE_REG, dst->color_mode);
454         g2d_add_base_addr(ctx, dst, g2d_dst);
455         g2d_add_cmd(ctx, DST_STRIDE_REG, dst->stride);
456
457         g2d_add_cmd(ctx, SRC_SELECT_REG, G2D_SELECT_MODE_NORMAL);
458         g2d_add_cmd(ctx, SRC_COLOR_MODE_REG, src->color_mode);
459
460         g2d_add_cmd(ctx, SRC_REPEAT_MODE_REG, src->repeat_mode);
461         if (src->repeat_mode == G2D_REPEAT_MODE_PAD)
462                 g2d_add_cmd(ctx, SRC_PAD_VALUE_REG, dst->color);
463
464         g2d_add_base_addr(ctx, src, g2d_src);
465         g2d_add_cmd(ctx, SRC_STRIDE_REG, src->stride);
466
467         if (src_w == dst_w && src_h == dst_h)
468                 scale = 0;
469         else {
470                 scale = 1;
471                 scale_x = g2d_get_scaling(src_w, dst_w);
472                 scale_y = g2d_get_scaling(src_h, dst_h);
473         }
474
475         if (src_x + src_w > src->width)
476                 src_w = src->width - src_x;
477         if (src_y + src_h > src->height)
478                 src_h = src->height - src_y;
479
480         if (dst_x + dst_w > dst->width)
481                 dst_w = dst->width - dst_x;
482         if (dst_y + dst_h > dst->height)
483                 dst_h = dst->height - dst_y;
484
485         if (src_w <= 0 || src_h <= 0 || dst_w <= 0 || dst_h <= 0) {
486                 fprintf(stderr, "invalid width or height.\n");
487                 g2d_reset(ctx);
488                 return -EINVAL;
489         }
490
491         if (negative) {
492                 g2d_add_cmd(ctx, BG_COLOR_REG, 0x00FFFFFF);
493                 rop4.val = 0;
494                 rop4.data.unmasked_rop3 = G2D_ROP3_SRC^G2D_ROP3_DST;
495                 g2d_add_cmd(ctx, ROP4_REG, rop4.val);
496         } else {
497                 rop4.val = 0;
498                 rop4.data.unmasked_rop3 = G2D_ROP3_SRC;
499                 g2d_add_cmd(ctx, ROP4_REG, rop4.val);
500         }
501
502         if (scale) {
503                 g2d_add_cmd(ctx, SRC_SCALE_CTRL_REG, G2D_SCALE_MODE_BILINEAR);
504                 g2d_add_cmd(ctx, SRC_XSCALE_REG, scale_x);
505                 g2d_add_cmd(ctx, SRC_YSCALE_REG, scale_y);
506         }
507
508         pt.val = 0;
509         pt.data.x = src_x;
510         pt.data.y = src_y;
511         g2d_add_cmd(ctx, SRC_LEFT_TOP_REG, pt.val);
512         pt.val = 0;
513         pt.data.x = src_x + src_w;
514         pt.data.y = src_y + src_h;
515         g2d_add_cmd(ctx, SRC_RIGHT_BOTTOM_REG, pt.val);
516
517         pt.val = 0;
518         pt.data.x = dst_x;
519         pt.data.y = dst_y;
520         g2d_add_cmd(ctx, DST_LEFT_TOP_REG, pt.val);
521         pt.val = 0;
522         pt.data.x = dst_x + dst_w;
523         pt.data.y = dst_y + dst_h;
524         g2d_add_cmd(ctx, DST_RIGHT_BOTTOM_REG, pt.val);
525
526         return g2d_flush(ctx);
527 }
528
529 /**
530  * g2d_blend - blend image data in source and destination buffers.
531  *
532  * @ctx: a pointer to g2d_context structure.
533  * @src: a pointer to g2d_image structure including image and buffer
534  *      information to source.
535  * @dst: a pointer to g2d_image structure including image and buffer
536  *      information to destination.
537  * @src_x: x start position to source buffer.
538  * @src_y: y start position to source buffer.
539  * @dst_x: x start position to destination buffer.
540  * @dst_y: y start position to destination buffer.
541  * @w: width value to source and destination buffer.
542  * @h: height value to source and destination buffer.
543  * @op: blend operation type.
544  */
545 int
546 g2d_blend(struct g2d_context *ctx, struct g2d_image *src,
547                 struct g2d_image *dst, unsigned int src_x,
548                 unsigned int src_y, unsigned int dst_x, unsigned int dst_y,
549                 unsigned int w, unsigned int h, enum e_g2d_op op)
550 {
551         union g2d_point_val pt;
552         union g2d_bitblt_cmd_val bitblt;
553         union g2d_blend_func_val blend;
554         unsigned int src_w = 0, src_h = 0, dst_w = 0, dst_h = 0;
555
556         bitblt.val = 0;
557         blend.val = 0;
558
559         if (op == G2D_OP_SRC || op == G2D_OP_CLEAR)
560                 g2d_add_cmd(ctx, DST_SELECT_REG, G2D_SELECT_MODE_BGCOLOR);
561         else
562                 g2d_add_cmd(ctx, DST_SELECT_REG, G2D_SELECT_MODE_NORMAL);
563
564         g2d_add_cmd(ctx, DST_COLOR_MODE_REG, dst->color_mode);
565         g2d_add_base_addr(ctx, dst, g2d_dst);
566         g2d_add_cmd(ctx, DST_STRIDE_REG, dst->stride);
567
568         g2d_add_cmd(ctx, SRC_SELECT_REG, src->select_mode);
569         g2d_add_cmd(ctx, SRC_COLOR_MODE_REG, src->color_mode);
570
571         switch (src->select_mode) {
572         case G2D_SELECT_MODE_NORMAL:
573                 g2d_add_base_addr(ctx, src, g2d_src);
574                 g2d_add_cmd(ctx, SRC_STRIDE_REG, src->stride);
575                 break;
576         case G2D_SELECT_MODE_FGCOLOR:
577                 g2d_add_cmd(ctx, FG_COLOR_REG, src->color);
578                 break;
579         case G2D_SELECT_MODE_BGCOLOR:
580                 g2d_add_cmd(ctx, BG_COLOR_REG, src->color);
581                 break;
582         default:
583                 fprintf(stderr , "failed to set src.\n");
584                 return -EINVAL;
585         }
586
587         src_w = w;
588         src_h = h;
589         if (src_x + w > src->width)
590                 src_w = src->width - src_x;
591         if (src_y + h > src->height)
592                 src_h = src->height - src_y;
593
594         dst_w = w;
595         dst_h = h;
596         if (dst_x + w > dst->width)
597                 dst_w = dst->width - dst_x;
598         if (dst_y + h > dst->height)
599                 dst_h = dst->height - dst_y;
600
601         w = MIN(src_w, dst_w);
602         h = MIN(src_h, dst_h);
603
604         if (w <= 0 || h <= 0) {
605                 fprintf(stderr, "invalid width or height.\n");
606                 g2d_reset(ctx);
607                 return -EINVAL;
608         }
609
610         bitblt.data.alpha_blend_mode = G2D_ALPHA_BLEND_MODE_ENABLE;
611         blend.val = g2d_get_blend_op(op);
612         g2d_add_cmd(ctx, BITBLT_COMMAND_REG, bitblt.val);
613         g2d_add_cmd(ctx, BLEND_FUNCTION_REG, blend.val);
614
615         pt.val = 0;
616         pt.data.x = src_x;
617         pt.data.y = src_y;
618         g2d_add_cmd(ctx, SRC_LEFT_TOP_REG, pt.val);
619         pt.val = 0;
620         pt.data.x = src_x + w;
621         pt.data.y = src_y + h;
622         g2d_add_cmd(ctx, SRC_RIGHT_BOTTOM_REG, pt.val);
623
624         pt.val = 0;
625         pt.data.x = dst_x;
626         pt.data.y = dst_y;
627         g2d_add_cmd(ctx, DST_LEFT_TOP_REG, pt.val);
628         pt.val = 0;
629         pt.data.x = dst_x + w;
630         pt.data.y = dst_y + h;
631         g2d_add_cmd(ctx, DST_RIGHT_BOTTOM_REG, pt.val);
632
633         return g2d_flush(ctx);
634 }
635
636 /**
637  * g2d_scale_and_blend - apply scaling to source buffer and then blend to destination buffer
638  *
639  * @ctx: a pointer to g2d_context structure.
640  * @src: a pointer to g2d_image structure including image and buffer
641  *      information to source.
642  * @dst: a pointer to g2d_image structure including image and buffer
643  *      information to destination.
644  * @src_x: x start position to source buffer.
645  * @src_y: y start position to source buffer.
646  * @src_w: width value to source buffer.
647  * @src_h: height value to source buffer.
648  * @dst_x: x start position to destination buffer.
649  * @dst_y: y start position to destination buffer.
650  * @dst_w: width value to destination buffer.
651  * @dst_h: height value to destination buffer.
652  * @op: blend operation type.
653  */
654 int
655 g2d_scale_and_blend(struct g2d_context *ctx, struct g2d_image *src,
656                 struct g2d_image *dst, unsigned int src_x, unsigned int src_y,
657                 unsigned int src_w, unsigned int src_h, unsigned int dst_x,
658                 unsigned int dst_y, unsigned int dst_w, unsigned int dst_h,
659                 enum e_g2d_op op)
660 {
661         union g2d_point_val pt;
662         union g2d_bitblt_cmd_val bitblt;
663         union g2d_blend_func_val blend;
664         unsigned int scale;
665         unsigned int scale_x, scale_y;
666
667         bitblt.val = 0;
668         blend.val = 0;
669
670         if (op == G2D_OP_SRC || op == G2D_OP_CLEAR)
671                 g2d_add_cmd(ctx, DST_SELECT_REG, G2D_SELECT_MODE_BGCOLOR);
672         else
673                 g2d_add_cmd(ctx, DST_SELECT_REG, G2D_SELECT_MODE_NORMAL);
674
675         g2d_add_cmd(ctx, DST_COLOR_MODE_REG, dst->color_mode);
676         if (dst->buf_type == G2D_IMGBUF_USERPTR)
677                 g2d_add_cmd(ctx, DST_BASE_ADDR_REG | G2D_BUF_USERPTR,
678                                 (unsigned long)&dst->user_ptr[0]);
679         else
680                 g2d_add_cmd(ctx, DST_BASE_ADDR_REG, dst->bo[0]);
681
682         g2d_add_cmd(ctx, DST_STRIDE_REG, dst->stride);
683
684         g2d_add_cmd(ctx, SRC_SELECT_REG, src->select_mode);
685         g2d_add_cmd(ctx, SRC_COLOR_MODE_REG, src->color_mode);
686
687         switch (src->select_mode) {
688         case G2D_SELECT_MODE_NORMAL:
689                 if (src->buf_type == G2D_IMGBUF_USERPTR)
690                         g2d_add_cmd(ctx, SRC_BASE_ADDR_REG | G2D_BUF_USERPTR,
691                                         (unsigned long)&src->user_ptr[0]);
692                 else
693                         g2d_add_cmd(ctx, SRC_BASE_ADDR_REG, src->bo[0]);
694
695                 g2d_add_cmd(ctx, SRC_STRIDE_REG, src->stride);
696                 break;
697         case G2D_SELECT_MODE_FGCOLOR:
698                 g2d_add_cmd(ctx, FG_COLOR_REG, src->color);
699                 break;
700         case G2D_SELECT_MODE_BGCOLOR:
701                 g2d_add_cmd(ctx, BG_COLOR_REG, src->color);
702                 break;
703         default:
704                 fprintf(stderr , "failed to set src.\n");
705                 return -EINVAL;
706         }
707
708         if (src_w == dst_w && src_h == dst_h)
709                 scale = 0;
710         else {
711                 scale = 1;
712                 scale_x = g2d_get_scaling(src_w, dst_w);
713                 scale_y = g2d_get_scaling(src_h, dst_h);
714         }
715
716         if (src_x + src_w > src->width)
717                 src_w = src->width - src_x;
718         if (src_y + src_h > src->height)
719                 src_h = src->height - src_y;
720
721         if (dst_x + dst_w > dst->width)
722                 dst_w = dst->width - dst_x;
723         if (dst_y + dst_h > dst->height)
724                 dst_h = dst->height - dst_y;
725
726         if (src_w <= 0 || src_h <= 0 || dst_w <= 0 || dst_h <= 0) {
727                 fprintf(stderr, "invalid width or height.\n");
728                 g2d_reset(ctx);
729                 return -EINVAL;
730         }
731
732         if (scale) {
733                 g2d_add_cmd(ctx, SRC_SCALE_CTRL_REG, G2D_SCALE_MODE_BILINEAR);
734                 g2d_add_cmd(ctx, SRC_XSCALE_REG, scale_x);
735                 g2d_add_cmd(ctx, SRC_YSCALE_REG, scale_y);
736         }
737
738         bitblt.data.alpha_blend_mode = G2D_ALPHA_BLEND_MODE_ENABLE;
739         blend.val = g2d_get_blend_op(op);
740         g2d_add_cmd(ctx, BITBLT_COMMAND_REG, bitblt.val);
741         g2d_add_cmd(ctx, BLEND_FUNCTION_REG, blend.val);
742
743         pt.val = 0;
744         pt.data.x = src_x;
745         pt.data.y = src_y;
746         g2d_add_cmd(ctx, SRC_LEFT_TOP_REG, pt.val);
747         pt.val = 0;
748         pt.data.x = src_x + src_w;
749         pt.data.y = src_y + src_h;
750         g2d_add_cmd(ctx, SRC_RIGHT_BOTTOM_REG, pt.val);
751
752         pt.val = 0;
753         pt.data.x = dst_x;
754         pt.data.y = dst_y;
755         g2d_add_cmd(ctx, DST_LEFT_TOP_REG, pt.val);
756         pt.val = 0;
757         pt.data.x = dst_x + dst_w;
758         pt.data.y = dst_y + dst_h;
759         g2d_add_cmd(ctx, DST_RIGHT_BOTTOM_REG, pt.val);
760
761         return g2d_flush(ctx);
762 }