2 * Copyright (C) 2012 Samsung Electronics Co.Ltd
4 * Eunchul Kim <chulspro.kim@samsung.com>
5 * Jinyoung Jeon <jy0.jeon@samsung.com>
6 * Sangmin Lee <lsmin.lee@samsung.com>
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
14 #include <linux/kernel.h>
15 #include <linux/component.h>
16 #include <linux/platform_device.h>
17 #include <linux/clk.h>
18 #include <linux/pm_runtime.h>
19 #include <linux/mfd/syscon.h>
20 #include <linux/of_device.h>
21 #include <linux/regmap.h>
24 #include <drm/exynos_drm.h>
26 #include "exynos_drm_drv.h"
27 #include "exynos_drm_iommu.h"
28 #include "exynos_drm_ipp.h"
31 * GSC stands for General SCaler and
32 * supports image scaler/rotator and input/output DMA operations.
33 * input DMA reads image data from the memory.
34 * output DMA writes image data to memory.
35 * GSC supports image rotation and image effect functions.
39 #define GSC_MAX_CLOCKS 8
41 #define GSC_MAX_DST 16
42 #define GSC_RESET_TIMEOUT 50
43 #define GSC_BUF_STOP 1
44 #define GSC_BUF_START 2
46 #define GSC_WIDTH_ITU_709 1280
47 #define GSC_SC_UP_MAX_RATIO 65536
48 #define GSC_SC_DOWN_RATIO_7_8 74898
49 #define GSC_SC_DOWN_RATIO_6_8 87381
50 #define GSC_SC_DOWN_RATIO_5_8 104857
51 #define GSC_SC_DOWN_RATIO_4_8 131072
52 #define GSC_SC_DOWN_RATIO_3_8 174762
53 #define GSC_SC_DOWN_RATIO_2_8 262144
54 #define GSC_CROP_MAX 8192
55 #define GSC_CROP_MIN 32
56 #define GSC_SCALE_MAX 4224
57 #define GSC_SCALE_MIN 32
58 #define GSC_COEF_RATIO 7
59 #define GSC_COEF_PHASE 9
60 #define GSC_COEF_ATTR 16
61 #define GSC_COEF_H_8T 8
62 #define GSC_COEF_V_4T 4
63 #define GSC_COEF_DEPTH 3
64 #define GSC_AUTOSUSPEND_DELAY 2000
66 #define get_gsc_context(dev) platform_get_drvdata(to_platform_device(dev))
67 #define gsc_read(offset) readl(ctx->regs + (offset))
68 #define gsc_write(cfg, offset) writel(cfg, ctx->regs + (offset))
71 * A structure of scaler.
73 * @range: narrow, wide.
74 * @pre_shfactor: pre sclaer shift factor.
75 * @pre_hratio: horizontal ratio of the prescaler.
76 * @pre_vratio: vertical ratio of the prescaler.
77 * @main_hratio: the main scaler's horizontal ratio.
78 * @main_vratio: the main scaler's vertical ratio.
85 unsigned long main_hratio
;
86 unsigned long main_vratio
;
90 * A structure of gsc context.
92 * @regs_res: register resources.
93 * @regs: memory mapped io registers.
94 * @gsc_clk: gsc gate clock.
95 * @sc: scaler infomations.
98 * @rotation: supports rotation of src.
101 struct exynos_drm_ipp ipp
;
102 struct drm_device
*drm_dev
;
104 struct exynos_drm_ipp_task
*task
;
105 struct exynos_drm_ipp_formats
*formats
;
106 unsigned int num_formats
;
108 struct resource
*regs_res
;
110 const char **clk_names
;
111 struct clk
*clocks
[GSC_MAX_CLOCKS
];
113 struct gsc_scaler sc
;
120 * struct gsc_driverdata - per device type driver data for init time.
122 * @limits: picture size limits array
123 * @clk_names: names of clocks needed by this variant
124 * @num_clocks: the number of clocks needed by this variant
126 struct gsc_driverdata
{
127 const struct drm_exynos_ipp_limit
*limits
;
129 const char *clk_names
[GSC_MAX_CLOCKS
];
133 /* 8-tap Filter Coefficient */
134 static const int h_coef_8t
[GSC_COEF_RATIO
][GSC_COEF_ATTR
][GSC_COEF_H_8T
] = {
135 { /* Ratio <= 65536 (~8:8) */
136 { 0, 0, 0, 128, 0, 0, 0, 0 },
137 { -1, 2, -6, 127, 7, -2, 1, 0 },
138 { -1, 4, -12, 125, 16, -5, 1, 0 },
139 { -1, 5, -15, 120, 25, -8, 2, 0 },
140 { -1, 6, -18, 114, 35, -10, 3, -1 },
141 { -1, 6, -20, 107, 46, -13, 4, -1 },
142 { -2, 7, -21, 99, 57, -16, 5, -1 },
143 { -1, 6, -20, 89, 68, -18, 5, -1 },
144 { -1, 6, -20, 79, 79, -20, 6, -1 },
145 { -1, 5, -18, 68, 89, -20, 6, -1 },
146 { -1, 5, -16, 57, 99, -21, 7, -2 },
147 { -1, 4, -13, 46, 107, -20, 6, -1 },
148 { -1, 3, -10, 35, 114, -18, 6, -1 },
149 { 0, 2, -8, 25, 120, -15, 5, -1 },
150 { 0, 1, -5, 16, 125, -12, 4, -1 },
151 { 0, 1, -2, 7, 127, -6, 2, -1 }
152 }, { /* 65536 < Ratio <= 74898 (~8:7) */
153 { 3, -8, 14, 111, 13, -8, 3, 0 },
154 { 2, -6, 7, 112, 21, -10, 3, -1 },
155 { 2, -4, 1, 110, 28, -12, 4, -1 },
156 { 1, -2, -3, 106, 36, -13, 4, -1 },
157 { 1, -1, -7, 103, 44, -15, 4, -1 },
158 { 1, 1, -11, 97, 53, -16, 4, -1 },
159 { 0, 2, -13, 91, 61, -16, 4, -1 },
160 { 0, 3, -15, 85, 69, -17, 4, -1 },
161 { 0, 3, -16, 77, 77, -16, 3, 0 },
162 { -1, 4, -17, 69, 85, -15, 3, 0 },
163 { -1, 4, -16, 61, 91, -13, 2, 0 },
164 { -1, 4, -16, 53, 97, -11, 1, 1 },
165 { -1, 4, -15, 44, 103, -7, -1, 1 },
166 { -1, 4, -13, 36, 106, -3, -2, 1 },
167 { -1, 4, -12, 28, 110, 1, -4, 2 },
168 { -1, 3, -10, 21, 112, 7, -6, 2 }
169 }, { /* 74898 < Ratio <= 87381 (~8:6) */
170 { 2, -11, 25, 96, 25, -11, 2, 0 },
171 { 2, -10, 19, 96, 31, -12, 2, 0 },
172 { 2, -9, 14, 94, 37, -12, 2, 0 },
173 { 2, -8, 10, 92, 43, -12, 1, 0 },
174 { 2, -7, 5, 90, 49, -12, 1, 0 },
175 { 2, -5, 1, 86, 55, -12, 0, 1 },
176 { 2, -4, -2, 82, 61, -11, -1, 1 },
177 { 1, -3, -5, 77, 67, -9, -1, 1 },
178 { 1, -2, -7, 72, 72, -7, -2, 1 },
179 { 1, -1, -9, 67, 77, -5, -3, 1 },
180 { 1, -1, -11, 61, 82, -2, -4, 2 },
181 { 1, 0, -12, 55, 86, 1, -5, 2 },
182 { 0, 1, -12, 49, 90, 5, -7, 2 },
183 { 0, 1, -12, 43, 92, 10, -8, 2 },
184 { 0, 2, -12, 37, 94, 14, -9, 2 },
185 { 0, 2, -12, 31, 96, 19, -10, 2 }
186 }, { /* 87381 < Ratio <= 104857 (~8:5) */
187 { -1, -8, 33, 80, 33, -8, -1, 0 },
188 { -1, -8, 28, 80, 37, -7, -2, 1 },
189 { 0, -8, 24, 79, 41, -7, -2, 1 },
190 { 0, -8, 20, 78, 46, -6, -3, 1 },
191 { 0, -8, 16, 76, 50, -4, -3, 1 },
192 { 0, -7, 13, 74, 54, -3, -4, 1 },
193 { 1, -7, 10, 71, 58, -1, -5, 1 },
194 { 1, -6, 6, 68, 62, 1, -5, 1 },
195 { 1, -6, 4, 65, 65, 4, -6, 1 },
196 { 1, -5, 1, 62, 68, 6, -6, 1 },
197 { 1, -5, -1, 58, 71, 10, -7, 1 },
198 { 1, -4, -3, 54, 74, 13, -7, 0 },
199 { 1, -3, -4, 50, 76, 16, -8, 0 },
200 { 1, -3, -6, 46, 78, 20, -8, 0 },
201 { 1, -2, -7, 41, 79, 24, -8, 0 },
202 { 1, -2, -7, 37, 80, 28, -8, -1 }
203 }, { /* 104857 < Ratio <= 131072 (~8:4) */
204 { -3, 0, 35, 64, 35, 0, -3, 0 },
205 { -3, -1, 32, 64, 38, 1, -3, 0 },
206 { -2, -2, 29, 63, 41, 2, -3, 0 },
207 { -2, -3, 27, 63, 43, 4, -4, 0 },
208 { -2, -3, 24, 61, 46, 6, -4, 0 },
209 { -2, -3, 21, 60, 49, 7, -4, 0 },
210 { -1, -4, 19, 59, 51, 9, -4, -1 },
211 { -1, -4, 16, 57, 53, 12, -4, -1 },
212 { -1, -4, 14, 55, 55, 14, -4, -1 },
213 { -1, -4, 12, 53, 57, 16, -4, -1 },
214 { -1, -4, 9, 51, 59, 19, -4, -1 },
215 { 0, -4, 7, 49, 60, 21, -3, -2 },
216 { 0, -4, 6, 46, 61, 24, -3, -2 },
217 { 0, -4, 4, 43, 63, 27, -3, -2 },
218 { 0, -3, 2, 41, 63, 29, -2, -2 },
219 { 0, -3, 1, 38, 64, 32, -1, -3 }
220 }, { /* 131072 < Ratio <= 174762 (~8:3) */
221 { -1, 8, 33, 48, 33, 8, -1, 0 },
222 { -1, 7, 31, 49, 35, 9, -1, -1 },
223 { -1, 6, 30, 49, 36, 10, -1, -1 },
224 { -1, 5, 28, 48, 38, 12, -1, -1 },
225 { -1, 4, 26, 48, 39, 13, 0, -1 },
226 { -1, 3, 24, 47, 41, 15, 0, -1 },
227 { -1, 2, 23, 47, 42, 16, 0, -1 },
228 { -1, 2, 21, 45, 43, 18, 1, -1 },
229 { -1, 1, 19, 45, 45, 19, 1, -1 },
230 { -1, 1, 18, 43, 45, 21, 2, -1 },
231 { -1, 0, 16, 42, 47, 23, 2, -1 },
232 { -1, 0, 15, 41, 47, 24, 3, -1 },
233 { -1, 0, 13, 39, 48, 26, 4, -1 },
234 { -1, -1, 12, 38, 48, 28, 5, -1 },
235 { -1, -1, 10, 36, 49, 30, 6, -1 },
236 { -1, -1, 9, 35, 49, 31, 7, -1 }
237 }, { /* 174762 < Ratio <= 262144 (~8:2) */
238 { 2, 13, 30, 38, 30, 13, 2, 0 },
239 { 2, 12, 29, 38, 30, 14, 3, 0 },
240 { 2, 11, 28, 38, 31, 15, 3, 0 },
241 { 2, 10, 26, 38, 32, 16, 4, 0 },
242 { 1, 10, 26, 37, 33, 17, 4, 0 },
243 { 1, 9, 24, 37, 34, 18, 5, 0 },
244 { 1, 8, 24, 37, 34, 19, 5, 0 },
245 { 1, 7, 22, 36, 35, 20, 6, 1 },
246 { 1, 6, 21, 36, 36, 21, 6, 1 },
247 { 1, 6, 20, 35, 36, 22, 7, 1 },
248 { 0, 5, 19, 34, 37, 24, 8, 1 },
249 { 0, 5, 18, 34, 37, 24, 9, 1 },
250 { 0, 4, 17, 33, 37, 26, 10, 1 },
251 { 0, 4, 16, 32, 38, 26, 10, 2 },
252 { 0, 3, 15, 31, 38, 28, 11, 2 },
253 { 0, 3, 14, 30, 38, 29, 12, 2 }
257 /* 4-tap Filter Coefficient */
258 static const int v_coef_4t
[GSC_COEF_RATIO
][GSC_COEF_ATTR
][GSC_COEF_V_4T
] = {
259 { /* Ratio <= 65536 (~8:8) */
276 }, { /* 65536 < Ratio <= 74898 (~8:7) */
293 }, { /* 74898 < Ratio <= 87381 (~8:6) */
310 }, { /* 87381 < Ratio <= 104857 (~8:5) */
327 }, { /* 104857 < Ratio <= 131072 (~8:4) */
344 }, { /* 131072 < Ratio <= 174762 (~8:3) */
361 }, { /* 174762 < Ratio <= 262144 (~8:2) */
381 static int gsc_sw_reset(struct gsc_context
*ctx
)
384 int count
= GSC_RESET_TIMEOUT
;
387 cfg
= (GSC_SW_RESET_SRESET
);
388 gsc_write(cfg
, GSC_SW_RESET
);
390 /* wait s/w reset complete */
392 cfg
= gsc_read(GSC_SW_RESET
);
395 usleep_range(1000, 2000);
399 DRM_ERROR("failed to reset gsc h/w.\n");
404 cfg
= gsc_read(GSC_IN_BASE_ADDR_Y_MASK
);
405 cfg
|= (GSC_IN_BASE_ADDR_MASK
|
406 GSC_IN_BASE_ADDR_PINGPONG(0));
407 gsc_write(cfg
, GSC_IN_BASE_ADDR_Y_MASK
);
408 gsc_write(cfg
, GSC_IN_BASE_ADDR_CB_MASK
);
409 gsc_write(cfg
, GSC_IN_BASE_ADDR_CR_MASK
);
411 cfg
= gsc_read(GSC_OUT_BASE_ADDR_Y_MASK
);
412 cfg
|= (GSC_OUT_BASE_ADDR_MASK
|
413 GSC_OUT_BASE_ADDR_PINGPONG(0));
414 gsc_write(cfg
, GSC_OUT_BASE_ADDR_Y_MASK
);
415 gsc_write(cfg
, GSC_OUT_BASE_ADDR_CB_MASK
);
416 gsc_write(cfg
, GSC_OUT_BASE_ADDR_CR_MASK
);
421 static void gsc_handle_irq(struct gsc_context
*ctx
, bool enable
,
422 bool overflow
, bool done
)
426 DRM_DEBUG_KMS("enable[%d]overflow[%d]level[%d]\n",
427 enable
, overflow
, done
);
429 cfg
= gsc_read(GSC_IRQ
);
430 cfg
|= (GSC_IRQ_OR_MASK
| GSC_IRQ_FRMDONE_MASK
);
433 cfg
|= GSC_IRQ_ENABLE
;
435 cfg
&= ~GSC_IRQ_ENABLE
;
438 cfg
&= ~GSC_IRQ_OR_MASK
;
440 cfg
|= GSC_IRQ_OR_MASK
;
443 cfg
&= ~GSC_IRQ_FRMDONE_MASK
;
445 cfg
|= GSC_IRQ_FRMDONE_MASK
;
447 gsc_write(cfg
, GSC_IRQ
);
451 static void gsc_src_set_fmt(struct gsc_context
*ctx
, u32 fmt
)
455 DRM_DEBUG_KMS("fmt[0x%x]\n", fmt
);
457 cfg
= gsc_read(GSC_IN_CON
);
458 cfg
&= ~(GSC_IN_RGB_TYPE_MASK
| GSC_IN_YUV422_1P_ORDER_MASK
|
459 GSC_IN_CHROMA_ORDER_MASK
| GSC_IN_FORMAT_MASK
|
460 GSC_IN_TILE_TYPE_MASK
| GSC_IN_TILE_MODE
|
461 GSC_IN_CHROM_STRIDE_SEL_MASK
| GSC_IN_RB_SWAP_MASK
);
464 case DRM_FORMAT_RGB565
:
465 cfg
|= GSC_IN_RGB565
;
467 case DRM_FORMAT_XRGB8888
:
468 case DRM_FORMAT_ARGB8888
:
469 cfg
|= GSC_IN_XRGB8888
;
471 case DRM_FORMAT_BGRX8888
:
472 cfg
|= (GSC_IN_XRGB8888
| GSC_IN_RB_SWAP
);
474 case DRM_FORMAT_YUYV
:
475 cfg
|= (GSC_IN_YUV422_1P
|
476 GSC_IN_YUV422_1P_ORDER_LSB_Y
|
477 GSC_IN_CHROMA_ORDER_CBCR
);
479 case DRM_FORMAT_YVYU
:
480 cfg
|= (GSC_IN_YUV422_1P
|
481 GSC_IN_YUV422_1P_ORDER_LSB_Y
|
482 GSC_IN_CHROMA_ORDER_CRCB
);
484 case DRM_FORMAT_UYVY
:
485 cfg
|= (GSC_IN_YUV422_1P
|
486 GSC_IN_YUV422_1P_OEDER_LSB_C
|
487 GSC_IN_CHROMA_ORDER_CBCR
);
489 case DRM_FORMAT_VYUY
:
490 cfg
|= (GSC_IN_YUV422_1P
|
491 GSC_IN_YUV422_1P_OEDER_LSB_C
|
492 GSC_IN_CHROMA_ORDER_CRCB
);
494 case DRM_FORMAT_NV21
:
495 cfg
|= (GSC_IN_CHROMA_ORDER_CRCB
| GSC_IN_YUV420_2P
);
497 case DRM_FORMAT_NV61
:
498 cfg
|= (GSC_IN_CHROMA_ORDER_CRCB
| GSC_IN_YUV422_2P
);
500 case DRM_FORMAT_YUV422
:
501 cfg
|= GSC_IN_YUV422_3P
;
503 case DRM_FORMAT_YUV420
:
504 cfg
|= (GSC_IN_CHROMA_ORDER_CBCR
| GSC_IN_YUV420_3P
);
506 case DRM_FORMAT_YVU420
:
507 cfg
|= (GSC_IN_CHROMA_ORDER_CRCB
| GSC_IN_YUV420_3P
);
509 case DRM_FORMAT_NV12
:
510 cfg
|= (GSC_IN_CHROMA_ORDER_CBCR
| GSC_IN_YUV420_2P
);
512 case DRM_FORMAT_NV16
:
513 cfg
|= (GSC_IN_CHROMA_ORDER_CBCR
| GSC_IN_YUV422_2P
);
517 gsc_write(cfg
, GSC_IN_CON
);
520 static void gsc_src_set_transf(struct gsc_context
*ctx
, unsigned int rotation
)
522 unsigned int degree
= rotation
& DRM_MODE_ROTATE_MASK
;
525 cfg
= gsc_read(GSC_IN_CON
);
526 cfg
&= ~GSC_IN_ROT_MASK
;
529 case DRM_MODE_ROTATE_0
:
530 if (rotation
& DRM_MODE_REFLECT_X
)
531 cfg
|= GSC_IN_ROT_XFLIP
;
532 if (rotation
& DRM_MODE_REFLECT_Y
)
533 cfg
|= GSC_IN_ROT_YFLIP
;
535 case DRM_MODE_ROTATE_90
:
536 cfg
|= GSC_IN_ROT_90
;
537 if (rotation
& DRM_MODE_REFLECT_X
)
538 cfg
|= GSC_IN_ROT_XFLIP
;
539 if (rotation
& DRM_MODE_REFLECT_Y
)
540 cfg
|= GSC_IN_ROT_YFLIP
;
542 case DRM_MODE_ROTATE_180
:
543 cfg
|= GSC_IN_ROT_180
;
544 if (rotation
& DRM_MODE_REFLECT_X
)
545 cfg
&= ~GSC_IN_ROT_XFLIP
;
546 if (rotation
& DRM_MODE_REFLECT_Y
)
547 cfg
&= ~GSC_IN_ROT_YFLIP
;
549 case DRM_MODE_ROTATE_270
:
550 cfg
|= GSC_IN_ROT_270
;
551 if (rotation
& DRM_MODE_REFLECT_X
)
552 cfg
&= ~GSC_IN_ROT_XFLIP
;
553 if (rotation
& DRM_MODE_REFLECT_Y
)
554 cfg
&= ~GSC_IN_ROT_YFLIP
;
558 gsc_write(cfg
, GSC_IN_CON
);
560 ctx
->rotation
= (cfg
& GSC_IN_ROT_90
) ? 1 : 0;
563 static void gsc_src_set_size(struct gsc_context
*ctx
,
564 struct exynos_drm_ipp_buffer
*buf
)
566 struct gsc_scaler
*sc
= &ctx
->sc
;
570 cfg
= (GSC_SRCIMG_OFFSET_X(buf
->rect
.x
) |
571 GSC_SRCIMG_OFFSET_Y(buf
->rect
.y
));
572 gsc_write(cfg
, GSC_SRCIMG_OFFSET
);
575 cfg
= (GSC_CROPPED_WIDTH(buf
->rect
.w
) |
576 GSC_CROPPED_HEIGHT(buf
->rect
.h
));
577 gsc_write(cfg
, GSC_CROPPED_SIZE
);
580 cfg
= gsc_read(GSC_SRCIMG_SIZE
);
581 cfg
&= ~(GSC_SRCIMG_HEIGHT_MASK
|
582 GSC_SRCIMG_WIDTH_MASK
);
584 cfg
|= (GSC_SRCIMG_WIDTH(buf
->buf
.pitch
[0] / buf
->format
->cpp
[0]) |
585 GSC_SRCIMG_HEIGHT(buf
->buf
.height
));
587 gsc_write(cfg
, GSC_SRCIMG_SIZE
);
589 cfg
= gsc_read(GSC_IN_CON
);
590 cfg
&= ~GSC_IN_RGB_TYPE_MASK
;
592 if (buf
->rect
.w
>= GSC_WIDTH_ITU_709
)
594 cfg
|= GSC_IN_RGB_HD_WIDE
;
596 cfg
|= GSC_IN_RGB_HD_NARROW
;
599 cfg
|= GSC_IN_RGB_SD_WIDE
;
601 cfg
|= GSC_IN_RGB_SD_NARROW
;
603 gsc_write(cfg
, GSC_IN_CON
);
606 static void gsc_src_set_buf_seq(struct gsc_context
*ctx
, u32 buf_id
,
609 bool masked
= !enqueue
;
611 u32 mask
= 0x00000001 << buf_id
;
613 /* mask register set */
614 cfg
= gsc_read(GSC_IN_BASE_ADDR_Y_MASK
);
618 cfg
|= masked
<< buf_id
;
619 gsc_write(cfg
, GSC_IN_BASE_ADDR_Y_MASK
);
620 gsc_write(cfg
, GSC_IN_BASE_ADDR_CB_MASK
);
621 gsc_write(cfg
, GSC_IN_BASE_ADDR_CR_MASK
);
624 static void gsc_src_set_addr(struct gsc_context
*ctx
, u32 buf_id
,
625 struct exynos_drm_ipp_buffer
*buf
)
627 /* address register set */
628 gsc_write(buf
->dma_addr
[0], GSC_IN_BASE_ADDR_Y(buf_id
));
629 gsc_write(buf
->dma_addr
[1], GSC_IN_BASE_ADDR_CB(buf_id
));
630 gsc_write(buf
->dma_addr
[2], GSC_IN_BASE_ADDR_CR(buf_id
));
632 gsc_src_set_buf_seq(ctx
, buf_id
, true);
635 static void gsc_dst_set_fmt(struct gsc_context
*ctx
, u32 fmt
)
639 DRM_DEBUG_KMS("fmt[0x%x]\n", fmt
);
641 cfg
= gsc_read(GSC_OUT_CON
);
642 cfg
&= ~(GSC_OUT_RGB_TYPE_MASK
| GSC_OUT_YUV422_1P_ORDER_MASK
|
643 GSC_OUT_CHROMA_ORDER_MASK
| GSC_OUT_FORMAT_MASK
|
644 GSC_OUT_CHROM_STRIDE_SEL_MASK
| GSC_OUT_RB_SWAP_MASK
|
645 GSC_OUT_GLOBAL_ALPHA_MASK
);
648 case DRM_FORMAT_RGB565
:
649 cfg
|= GSC_OUT_RGB565
;
651 case DRM_FORMAT_ARGB8888
:
652 case DRM_FORMAT_XRGB8888
:
653 cfg
|= (GSC_OUT_XRGB8888
| GSC_OUT_GLOBAL_ALPHA(0xff));
655 case DRM_FORMAT_BGRX8888
:
656 cfg
|= (GSC_OUT_XRGB8888
| GSC_OUT_RB_SWAP
);
658 case DRM_FORMAT_YUYV
:
659 cfg
|= (GSC_OUT_YUV422_1P
|
660 GSC_OUT_YUV422_1P_ORDER_LSB_Y
|
661 GSC_OUT_CHROMA_ORDER_CBCR
);
663 case DRM_FORMAT_YVYU
:
664 cfg
|= (GSC_OUT_YUV422_1P
|
665 GSC_OUT_YUV422_1P_ORDER_LSB_Y
|
666 GSC_OUT_CHROMA_ORDER_CRCB
);
668 case DRM_FORMAT_UYVY
:
669 cfg
|= (GSC_OUT_YUV422_1P
|
670 GSC_OUT_YUV422_1P_OEDER_LSB_C
|
671 GSC_OUT_CHROMA_ORDER_CBCR
);
673 case DRM_FORMAT_VYUY
:
674 cfg
|= (GSC_OUT_YUV422_1P
|
675 GSC_OUT_YUV422_1P_OEDER_LSB_C
|
676 GSC_OUT_CHROMA_ORDER_CRCB
);
678 case DRM_FORMAT_NV21
:
679 cfg
|= (GSC_OUT_CHROMA_ORDER_CRCB
| GSC_OUT_YUV420_2P
);
681 case DRM_FORMAT_NV61
:
682 cfg
|= (GSC_OUT_CHROMA_ORDER_CRCB
| GSC_OUT_YUV422_2P
);
684 case DRM_FORMAT_YUV422
:
685 cfg
|= GSC_OUT_YUV422_3P
;
687 case DRM_FORMAT_YUV420
:
688 cfg
|= (GSC_OUT_CHROMA_ORDER_CBCR
| GSC_OUT_YUV420_3P
);
690 case DRM_FORMAT_YVU420
:
691 cfg
|= (GSC_OUT_CHROMA_ORDER_CRCB
| GSC_OUT_YUV420_3P
);
693 case DRM_FORMAT_NV12
:
694 cfg
|= (GSC_OUT_CHROMA_ORDER_CBCR
| GSC_OUT_YUV420_2P
);
696 case DRM_FORMAT_NV16
:
697 cfg
|= (GSC_OUT_CHROMA_ORDER_CBCR
| GSC_OUT_YUV422_2P
);
701 gsc_write(cfg
, GSC_OUT_CON
);
704 static int gsc_get_ratio_shift(u32 src
, u32 dst
, u32
*ratio
)
706 DRM_DEBUG_KMS("src[%d]dst[%d]\n", src
, dst
);
708 if (src
>= dst
* 8) {
709 DRM_ERROR("failed to make ratio and shift.\n");
711 } else if (src
>= dst
* 4)
713 else if (src
>= dst
* 2)
721 static void gsc_get_prescaler_shfactor(u32 hratio
, u32 vratio
, u32
*shfactor
)
723 if (hratio
== 4 && vratio
== 4)
725 else if ((hratio
== 4 && vratio
== 2) ||
726 (hratio
== 2 && vratio
== 4))
728 else if ((hratio
== 4 && vratio
== 1) ||
729 (hratio
== 1 && vratio
== 4) ||
730 (hratio
== 2 && vratio
== 2))
732 else if (hratio
== 1 && vratio
== 1)
738 static int gsc_set_prescaler(struct gsc_context
*ctx
, struct gsc_scaler
*sc
,
739 struct drm_exynos_ipp_task_rect
*src
,
740 struct drm_exynos_ipp_task_rect
*dst
)
743 u32 src_w
, src_h
, dst_w
, dst_h
;
757 ret
= gsc_get_ratio_shift(src_w
, dst_w
, &sc
->pre_hratio
);
759 dev_err(ctx
->dev
, "failed to get ratio horizontal.\n");
763 ret
= gsc_get_ratio_shift(src_h
, dst_h
, &sc
->pre_vratio
);
765 dev_err(ctx
->dev
, "failed to get ratio vertical.\n");
769 DRM_DEBUG_KMS("pre_hratio[%d]pre_vratio[%d]\n",
770 sc
->pre_hratio
, sc
->pre_vratio
);
772 sc
->main_hratio
= (src_w
<< 16) / dst_w
;
773 sc
->main_vratio
= (src_h
<< 16) / dst_h
;
775 DRM_DEBUG_KMS("main_hratio[%ld]main_vratio[%ld]\n",
776 sc
->main_hratio
, sc
->main_vratio
);
778 gsc_get_prescaler_shfactor(sc
->pre_hratio
, sc
->pre_vratio
,
781 DRM_DEBUG_KMS("pre_shfactor[%d]\n", sc
->pre_shfactor
);
783 cfg
= (GSC_PRESC_SHFACTOR(sc
->pre_shfactor
) |
784 GSC_PRESC_H_RATIO(sc
->pre_hratio
) |
785 GSC_PRESC_V_RATIO(sc
->pre_vratio
));
786 gsc_write(cfg
, GSC_PRE_SCALE_RATIO
);
791 static void gsc_set_h_coef(struct gsc_context
*ctx
, unsigned long main_hratio
)
793 int i
, j
, k
, sc_ratio
;
795 if (main_hratio
<= GSC_SC_UP_MAX_RATIO
)
797 else if (main_hratio
<= GSC_SC_DOWN_RATIO_7_8
)
799 else if (main_hratio
<= GSC_SC_DOWN_RATIO_6_8
)
801 else if (main_hratio
<= GSC_SC_DOWN_RATIO_5_8
)
803 else if (main_hratio
<= GSC_SC_DOWN_RATIO_4_8
)
805 else if (main_hratio
<= GSC_SC_DOWN_RATIO_3_8
)
810 for (i
= 0; i
< GSC_COEF_PHASE
; i
++)
811 for (j
= 0; j
< GSC_COEF_H_8T
; j
++)
812 for (k
= 0; k
< GSC_COEF_DEPTH
; k
++)
813 gsc_write(h_coef_8t
[sc_ratio
][i
][j
],
817 static void gsc_set_v_coef(struct gsc_context
*ctx
, unsigned long main_vratio
)
819 int i
, j
, k
, sc_ratio
;
821 if (main_vratio
<= GSC_SC_UP_MAX_RATIO
)
823 else if (main_vratio
<= GSC_SC_DOWN_RATIO_7_8
)
825 else if (main_vratio
<= GSC_SC_DOWN_RATIO_6_8
)
827 else if (main_vratio
<= GSC_SC_DOWN_RATIO_5_8
)
829 else if (main_vratio
<= GSC_SC_DOWN_RATIO_4_8
)
831 else if (main_vratio
<= GSC_SC_DOWN_RATIO_3_8
)
836 for (i
= 0; i
< GSC_COEF_PHASE
; i
++)
837 for (j
= 0; j
< GSC_COEF_V_4T
; j
++)
838 for (k
= 0; k
< GSC_COEF_DEPTH
; k
++)
839 gsc_write(v_coef_4t
[sc_ratio
][i
][j
],
843 static void gsc_set_scaler(struct gsc_context
*ctx
, struct gsc_scaler
*sc
)
847 DRM_DEBUG_KMS("main_hratio[%ld]main_vratio[%ld]\n",
848 sc
->main_hratio
, sc
->main_vratio
);
850 gsc_set_h_coef(ctx
, sc
->main_hratio
);
851 cfg
= GSC_MAIN_H_RATIO_VALUE(sc
->main_hratio
);
852 gsc_write(cfg
, GSC_MAIN_H_RATIO
);
854 gsc_set_v_coef(ctx
, sc
->main_vratio
);
855 cfg
= GSC_MAIN_V_RATIO_VALUE(sc
->main_vratio
);
856 gsc_write(cfg
, GSC_MAIN_V_RATIO
);
859 static void gsc_dst_set_size(struct gsc_context
*ctx
,
860 struct exynos_drm_ipp_buffer
*buf
)
862 struct gsc_scaler
*sc
= &ctx
->sc
;
866 cfg
= (GSC_DSTIMG_OFFSET_X(buf
->rect
.x
) |
867 GSC_DSTIMG_OFFSET_Y(buf
->rect
.y
));
868 gsc_write(cfg
, GSC_DSTIMG_OFFSET
);
872 cfg
= (GSC_SCALED_WIDTH(buf
->rect
.h
) |
873 GSC_SCALED_HEIGHT(buf
->rect
.w
));
875 cfg
= (GSC_SCALED_WIDTH(buf
->rect
.w
) |
876 GSC_SCALED_HEIGHT(buf
->rect
.h
));
877 gsc_write(cfg
, GSC_SCALED_SIZE
);
880 cfg
= gsc_read(GSC_DSTIMG_SIZE
);
881 cfg
&= ~(GSC_DSTIMG_HEIGHT_MASK
| GSC_DSTIMG_WIDTH_MASK
);
882 cfg
|= GSC_DSTIMG_WIDTH(buf
->buf
.pitch
[0] / buf
->format
->cpp
[0]) |
883 GSC_DSTIMG_HEIGHT(buf
->buf
.height
);
884 gsc_write(cfg
, GSC_DSTIMG_SIZE
);
886 cfg
= gsc_read(GSC_OUT_CON
);
887 cfg
&= ~GSC_OUT_RGB_TYPE_MASK
;
889 if (buf
->rect
.w
>= GSC_WIDTH_ITU_709
)
891 cfg
|= GSC_OUT_RGB_HD_WIDE
;
893 cfg
|= GSC_OUT_RGB_HD_NARROW
;
896 cfg
|= GSC_OUT_RGB_SD_WIDE
;
898 cfg
|= GSC_OUT_RGB_SD_NARROW
;
900 gsc_write(cfg
, GSC_OUT_CON
);
903 static int gsc_dst_get_buf_seq(struct gsc_context
*ctx
)
905 u32 cfg
, i
, buf_num
= GSC_REG_SZ
;
906 u32 mask
= 0x00000001;
908 cfg
= gsc_read(GSC_OUT_BASE_ADDR_Y_MASK
);
910 for (i
= 0; i
< GSC_REG_SZ
; i
++)
911 if (cfg
& (mask
<< i
))
914 DRM_DEBUG_KMS("buf_num[%d]\n", buf_num
);
919 static void gsc_dst_set_buf_seq(struct gsc_context
*ctx
, u32 buf_id
,
922 bool masked
= !enqueue
;
924 u32 mask
= 0x00000001 << buf_id
;
926 /* mask register set */
927 cfg
= gsc_read(GSC_OUT_BASE_ADDR_Y_MASK
);
931 cfg
|= masked
<< buf_id
;
932 gsc_write(cfg
, GSC_OUT_BASE_ADDR_Y_MASK
);
933 gsc_write(cfg
, GSC_OUT_BASE_ADDR_CB_MASK
);
934 gsc_write(cfg
, GSC_OUT_BASE_ADDR_CR_MASK
);
936 /* interrupt enable */
937 if (enqueue
&& gsc_dst_get_buf_seq(ctx
) >= GSC_BUF_START
)
938 gsc_handle_irq(ctx
, true, false, true);
940 /* interrupt disable */
941 if (!enqueue
&& gsc_dst_get_buf_seq(ctx
) <= GSC_BUF_STOP
)
942 gsc_handle_irq(ctx
, false, false, true);
945 static void gsc_dst_set_addr(struct gsc_context
*ctx
,
946 u32 buf_id
, struct exynos_drm_ipp_buffer
*buf
)
948 /* address register set */
949 gsc_write(buf
->dma_addr
[0], GSC_OUT_BASE_ADDR_Y(buf_id
));
950 gsc_write(buf
->dma_addr
[1], GSC_OUT_BASE_ADDR_CB(buf_id
));
951 gsc_write(buf
->dma_addr
[2], GSC_OUT_BASE_ADDR_CR(buf_id
));
953 gsc_dst_set_buf_seq(ctx
, buf_id
, true);
956 static int gsc_get_src_buf_index(struct gsc_context
*ctx
)
958 u32 cfg
, curr_index
, i
;
959 u32 buf_id
= GSC_MAX_SRC
;
961 DRM_DEBUG_KMS("gsc id[%d]\n", ctx
->id
);
963 cfg
= gsc_read(GSC_IN_BASE_ADDR_Y_MASK
);
964 curr_index
= GSC_IN_CURR_GET_INDEX(cfg
);
966 for (i
= curr_index
; i
< GSC_MAX_SRC
; i
++) {
967 if (!((cfg
>> i
) & 0x1)) {
973 DRM_DEBUG_KMS("cfg[0x%x]curr_index[%d]buf_id[%d]\n", cfg
,
976 if (buf_id
== GSC_MAX_SRC
) {
977 DRM_ERROR("failed to get in buffer index.\n");
981 gsc_src_set_buf_seq(ctx
, buf_id
, false);
986 static int gsc_get_dst_buf_index(struct gsc_context
*ctx
)
988 u32 cfg
, curr_index
, i
;
989 u32 buf_id
= GSC_MAX_DST
;
991 DRM_DEBUG_KMS("gsc id[%d]\n", ctx
->id
);
993 cfg
= gsc_read(GSC_OUT_BASE_ADDR_Y_MASK
);
994 curr_index
= GSC_OUT_CURR_GET_INDEX(cfg
);
996 for (i
= curr_index
; i
< GSC_MAX_DST
; i
++) {
997 if (!((cfg
>> i
) & 0x1)) {
1003 if (buf_id
== GSC_MAX_DST
) {
1004 DRM_ERROR("failed to get out buffer index.\n");
1008 gsc_dst_set_buf_seq(ctx
, buf_id
, false);
1010 DRM_DEBUG_KMS("cfg[0x%x]curr_index[%d]buf_id[%d]\n", cfg
,
1011 curr_index
, buf_id
);
1016 static irqreturn_t
gsc_irq_handler(int irq
, void *dev_id
)
1018 struct gsc_context
*ctx
= dev_id
;
1022 DRM_DEBUG_KMS("gsc id[%d]\n", ctx
->id
);
1024 status
= gsc_read(GSC_IRQ
);
1025 if (status
& GSC_IRQ_STATUS_OR_IRQ
) {
1026 dev_err(ctx
->dev
, "occurred overflow at %d, status 0x%x.\n",
1031 if (status
& GSC_IRQ_STATUS_OR_FRM_DONE
) {
1032 int src_buf_id
, dst_buf_id
;
1034 dev_dbg(ctx
->dev
, "occurred frame done at %d, status 0x%x.\n",
1037 src_buf_id
= gsc_get_src_buf_index(ctx
);
1038 dst_buf_id
= gsc_get_dst_buf_index(ctx
);
1040 DRM_DEBUG_KMS("buf_id_src[%d]buf_id_dst[%d]\n", src_buf_id
,
1043 if (src_buf_id
< 0 || dst_buf_id
< 0)
1048 struct exynos_drm_ipp_task
*task
= ctx
->task
;
1051 pm_runtime_mark_last_busy(ctx
->dev
);
1052 pm_runtime_put_autosuspend(ctx
->dev
);
1053 exynos_drm_ipp_task_done(task
, err
);
1059 static int gsc_reset(struct gsc_context
*ctx
)
1061 struct gsc_scaler
*sc
= &ctx
->sc
;
1064 /* reset h/w block */
1065 ret
= gsc_sw_reset(ctx
);
1067 dev_err(ctx
->dev
, "failed to reset hardware.\n");
1071 /* scaler setting */
1072 memset(&ctx
->sc
, 0x0, sizeof(ctx
->sc
));
1078 static void gsc_start(struct gsc_context
*ctx
)
1082 gsc_handle_irq(ctx
, true, false, true);
1084 /* enable one shot */
1085 cfg
= gsc_read(GSC_ENABLE
);
1086 cfg
&= ~(GSC_ENABLE_ON_CLEAR_MASK
|
1087 GSC_ENABLE_CLK_GATE_MODE_MASK
);
1088 cfg
|= GSC_ENABLE_ON_CLEAR_ONESHOT
;
1089 gsc_write(cfg
, GSC_ENABLE
);
1091 /* src dma memory */
1092 cfg
= gsc_read(GSC_IN_CON
);
1093 cfg
&= ~(GSC_IN_PATH_MASK
| GSC_IN_LOCAL_SEL_MASK
);
1094 cfg
|= GSC_IN_PATH_MEMORY
;
1095 gsc_write(cfg
, GSC_IN_CON
);
1097 /* dst dma memory */
1098 cfg
= gsc_read(GSC_OUT_CON
);
1099 cfg
|= GSC_OUT_PATH_MEMORY
;
1100 gsc_write(cfg
, GSC_OUT_CON
);
1102 gsc_set_scaler(ctx
, &ctx
->sc
);
1104 cfg
= gsc_read(GSC_ENABLE
);
1105 cfg
|= GSC_ENABLE_ON
;
1106 gsc_write(cfg
, GSC_ENABLE
);
1109 static int gsc_commit(struct exynos_drm_ipp
*ipp
,
1110 struct exynos_drm_ipp_task
*task
)
1112 struct gsc_context
*ctx
= container_of(ipp
, struct gsc_context
, ipp
);
1115 pm_runtime_get_sync(ctx
->dev
);
1118 ret
= gsc_reset(ctx
);
1120 pm_runtime_put_autosuspend(ctx
->dev
);
1125 gsc_src_set_fmt(ctx
, task
->src
.buf
.fourcc
);
1126 gsc_src_set_transf(ctx
, task
->transform
.rotation
);
1127 gsc_src_set_size(ctx
, &task
->src
);
1128 gsc_src_set_addr(ctx
, 0, &task
->src
);
1129 gsc_dst_set_fmt(ctx
, task
->dst
.buf
.fourcc
);
1130 gsc_dst_set_size(ctx
, &task
->dst
);
1131 gsc_dst_set_addr(ctx
, 0, &task
->dst
);
1132 gsc_set_prescaler(ctx
, &ctx
->sc
, &task
->src
.rect
, &task
->dst
.rect
);
1138 static void gsc_abort(struct exynos_drm_ipp
*ipp
,
1139 struct exynos_drm_ipp_task
*task
)
1141 struct gsc_context
*ctx
=
1142 container_of(ipp
, struct gsc_context
, ipp
);
1146 struct exynos_drm_ipp_task
*task
= ctx
->task
;
1149 pm_runtime_mark_last_busy(ctx
->dev
);
1150 pm_runtime_put_autosuspend(ctx
->dev
);
1151 exynos_drm_ipp_task_done(task
, -EIO
);
1155 static struct exynos_drm_ipp_funcs ipp_funcs
= {
1156 .commit
= gsc_commit
,
1160 static int gsc_bind(struct device
*dev
, struct device
*master
, void *data
)
1162 struct gsc_context
*ctx
= dev_get_drvdata(dev
);
1163 struct drm_device
*drm_dev
= data
;
1164 struct exynos_drm_ipp
*ipp
= &ctx
->ipp
;
1166 ctx
->drm_dev
= drm_dev
;
1167 drm_iommu_attach_device(drm_dev
, dev
);
1169 exynos_drm_ipp_register(drm_dev
, ipp
, &ipp_funcs
,
1170 DRM_EXYNOS_IPP_CAP_CROP
| DRM_EXYNOS_IPP_CAP_ROTATE
|
1171 DRM_EXYNOS_IPP_CAP_SCALE
| DRM_EXYNOS_IPP_CAP_CONVERT
,
1172 ctx
->formats
, ctx
->num_formats
, "gsc");
1174 dev_info(dev
, "The exynos gscaler has been probed successfully\n");
1179 static void gsc_unbind(struct device
*dev
, struct device
*master
,
1182 struct gsc_context
*ctx
= dev_get_drvdata(dev
);
1183 struct drm_device
*drm_dev
= data
;
1184 struct exynos_drm_ipp
*ipp
= &ctx
->ipp
;
1186 exynos_drm_ipp_unregister(drm_dev
, ipp
);
1187 drm_iommu_detach_device(drm_dev
, dev
);
1190 static const struct component_ops gsc_component_ops
= {
1192 .unbind
= gsc_unbind
,
1195 static const unsigned int gsc_formats
[] = {
1196 DRM_FORMAT_ARGB8888
,
1197 DRM_FORMAT_XRGB8888
, DRM_FORMAT_RGB565
, DRM_FORMAT_BGRX8888
,
1198 DRM_FORMAT_NV12
, DRM_FORMAT_NV16
, DRM_FORMAT_NV21
, DRM_FORMAT_NV61
,
1199 DRM_FORMAT_UYVY
, DRM_FORMAT_VYUY
, DRM_FORMAT_YUYV
, DRM_FORMAT_YVYU
,
1200 DRM_FORMAT_YUV420
, DRM_FORMAT_YVU420
, DRM_FORMAT_YUV422
,
1203 static int gsc_probe(struct platform_device
*pdev
)
1205 struct device
*dev
= &pdev
->dev
;
1206 struct gsc_driverdata
*driver_data
;
1207 struct exynos_drm_ipp_formats
*formats
;
1208 struct gsc_context
*ctx
;
1209 struct resource
*res
;
1212 ctx
= devm_kzalloc(dev
, sizeof(*ctx
), GFP_KERNEL
);
1216 formats
= devm_kcalloc(dev
,
1217 ARRAY_SIZE(gsc_formats
), sizeof(*formats
),
1222 driver_data
= (struct gsc_driverdata
*)of_device_get_match_data(dev
);
1224 ctx
->num_clocks
= driver_data
->num_clocks
;
1225 ctx
->clk_names
= driver_data
->clk_names
;
1227 for (i
= 0; i
< ARRAY_SIZE(gsc_formats
); i
++) {
1228 formats
[i
].fourcc
= gsc_formats
[i
];
1229 formats
[i
].type
= DRM_EXYNOS_IPP_FORMAT_SOURCE
|
1230 DRM_EXYNOS_IPP_FORMAT_DESTINATION
;
1231 formats
[i
].limits
= driver_data
->limits
;
1232 formats
[i
].num_limits
= driver_data
->num_limits
;
1234 ctx
->formats
= formats
;
1235 ctx
->num_formats
= ARRAY_SIZE(gsc_formats
);
1238 for (i
= 0; i
< ctx
->num_clocks
; i
++) {
1239 ctx
->clocks
[i
] = devm_clk_get(dev
, ctx
->clk_names
[i
]);
1240 if (IS_ERR(ctx
->clocks
[i
])) {
1241 dev_err(dev
, "failed to get clock: %s\n",
1243 return PTR_ERR(ctx
->clocks
[i
]);
1247 /* resource memory */
1248 ctx
->regs_res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
1249 ctx
->regs
= devm_ioremap_resource(dev
, ctx
->regs_res
);
1250 if (IS_ERR(ctx
->regs
))
1251 return PTR_ERR(ctx
->regs
);
1254 res
= platform_get_resource(pdev
, IORESOURCE_IRQ
, 0);
1256 dev_err(dev
, "failed to request irq resource.\n");
1260 ctx
->irq
= res
->start
;
1261 ret
= devm_request_irq(dev
, ctx
->irq
, gsc_irq_handler
, 0,
1262 dev_name(dev
), ctx
);
1264 dev_err(dev
, "failed to request irq.\n");
1268 /* context initailization */
1271 platform_set_drvdata(pdev
, ctx
);
1273 pm_runtime_use_autosuspend(dev
);
1274 pm_runtime_set_autosuspend_delay(dev
, GSC_AUTOSUSPEND_DELAY
);
1275 pm_runtime_enable(dev
);
1277 ret
= component_add(dev
, &gsc_component_ops
);
1281 dev_info(dev
, "drm gsc registered successfully.\n");
1286 pm_runtime_dont_use_autosuspend(dev
);
1287 pm_runtime_disable(dev
);
1291 static int gsc_remove(struct platform_device
*pdev
)
1293 struct device
*dev
= &pdev
->dev
;
1295 component_del(dev
, &gsc_component_ops
);
1296 pm_runtime_dont_use_autosuspend(dev
);
1297 pm_runtime_disable(dev
);
1302 static int __maybe_unused
gsc_runtime_suspend(struct device
*dev
)
1304 struct gsc_context
*ctx
= get_gsc_context(dev
);
1307 DRM_DEBUG_KMS("id[%d]\n", ctx
->id
);
1309 for (i
= ctx
->num_clocks
- 1; i
>= 0; i
--)
1310 clk_disable_unprepare(ctx
->clocks
[i
]);
1315 static int __maybe_unused
gsc_runtime_resume(struct device
*dev
)
1317 struct gsc_context
*ctx
= get_gsc_context(dev
);
1320 DRM_DEBUG_KMS("id[%d]\n", ctx
->id
);
1322 for (i
= 0; i
< ctx
->num_clocks
; i
++) {
1323 ret
= clk_prepare_enable(ctx
->clocks
[i
]);
1326 clk_disable_unprepare(ctx
->clocks
[i
]);
1333 static const struct dev_pm_ops gsc_pm_ops
= {
1334 SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend
,
1335 pm_runtime_force_resume
)
1336 SET_RUNTIME_PM_OPS(gsc_runtime_suspend
, gsc_runtime_resume
, NULL
)
1339 static const struct drm_exynos_ipp_limit gsc_5250_limits
[] = {
1340 { IPP_SIZE_LIMIT(BUFFER
, .h
= { 32, 4800, 8 }, .v
= { 16, 3344, 8 }) },
1341 { IPP_SIZE_LIMIT(AREA
, .h
= { 16, 4800, 2 }, .v
= { 8, 3344, 2 }) },
1342 { IPP_SIZE_LIMIT(ROTATED
, .h
= { 32, 2048 }, .v
= { 16, 2048 }) },
1343 { IPP_SCALE_LIMIT(.h
= { (1 << 16) / 16, (1 << 16) * 8 },
1344 .v
= { (1 << 16) / 16, (1 << 16) * 8 }) },
1347 static const struct drm_exynos_ipp_limit gsc_5420_limits
[] = {
1348 { IPP_SIZE_LIMIT(BUFFER
, .h
= { 32, 4800, 8 }, .v
= { 16, 3344, 8 }) },
1349 { IPP_SIZE_LIMIT(AREA
, .h
= { 16, 4800, 2 }, .v
= { 8, 3344, 2 }) },
1350 { IPP_SIZE_LIMIT(ROTATED
, .h
= { 16, 2016 }, .v
= { 8, 2016 }) },
1351 { IPP_SCALE_LIMIT(.h
= { (1 << 16) / 16, (1 << 16) * 8 },
1352 .v
= { (1 << 16) / 16, (1 << 16) * 8 }) },
1355 static const struct drm_exynos_ipp_limit gsc_5433_limits
[] = {
1356 { IPP_SIZE_LIMIT(BUFFER
, .h
= { 32, 8191, 16 }, .v
= { 16, 8191, 2 }) },
1357 { IPP_SIZE_LIMIT(AREA
, .h
= { 16, 4800, 1 }, .v
= { 8, 3344, 1 }) },
1358 { IPP_SIZE_LIMIT(ROTATED
, .h
= { 32, 2047 }, .v
= { 8, 8191 }) },
1359 { IPP_SCALE_LIMIT(.h
= { (1 << 16) / 16, (1 << 16) * 8 },
1360 .v
= { (1 << 16) / 16, (1 << 16) * 8 }) },
1363 static struct gsc_driverdata gsc_exynos5250_drvdata
= {
1364 .clk_names
= {"gscl"},
1366 .limits
= gsc_5250_limits
,
1367 .num_limits
= ARRAY_SIZE(gsc_5250_limits
),
1370 static struct gsc_driverdata gsc_exynos5420_drvdata
= {
1371 .clk_names
= {"gscl"},
1373 .limits
= gsc_5420_limits
,
1374 .num_limits
= ARRAY_SIZE(gsc_5420_limits
),
1377 static struct gsc_driverdata gsc_exynos5433_drvdata
= {
1378 .clk_names
= {"pclk", "aclk", "aclk_xiu", "aclk_gsclbend"},
1380 .limits
= gsc_5433_limits
,
1381 .num_limits
= ARRAY_SIZE(gsc_5433_limits
),
1384 static const struct of_device_id exynos_drm_gsc_of_match
[] = {
1386 .compatible
= "samsung,exynos5-gsc",
1387 .data
= &gsc_exynos5250_drvdata
,
1389 .compatible
= "samsung,exynos5250-gsc",
1390 .data
= &gsc_exynos5250_drvdata
,
1392 .compatible
= "samsung,exynos5420-gsc",
1393 .data
= &gsc_exynos5420_drvdata
,
1395 .compatible
= "samsung,exynos5433-gsc",
1396 .data
= &gsc_exynos5433_drvdata
,
1400 MODULE_DEVICE_TABLE(of
, exynos_drm_gsc_of_match
);
1402 struct platform_driver gsc_driver
= {
1404 .remove
= gsc_remove
,
1406 .name
= "exynos-drm-gsc",
1407 .owner
= THIS_MODULE
,
1409 .of_match_table
= of_match_ptr(exynos_drm_gsc_of_match
),