1 // SPDX-License-Identifier: GPL-2.0-or-later
3 * Copyright (C) 2012 Samsung Electronics Co.Ltd
10 #include <linux/clk.h>
11 #include <linux/component.h>
12 #include <linux/kernel.h>
13 #include <linux/mfd/syscon.h>
14 #include <linux/of_device.h>
15 #include <linux/platform_device.h>
16 #include <linux/pm_runtime.h>
17 #include <linux/regmap.h>
19 #include <drm/drm_fourcc.h>
20 #include <drm/drm_print.h>
21 #include <drm/exynos_drm.h>
23 #include "exynos_drm_drv.h"
24 #include "exynos_drm_ipp.h"
28 * GSC stands for General SCaler and
29 * supports image scaler/rotator and input/output DMA operations.
30 * input DMA reads image data from the memory.
31 * output DMA writes image data to memory.
32 * GSC supports image rotation and image effect functions.
36 #define GSC_MAX_CLOCKS 8
38 #define GSC_MAX_DST 16
39 #define GSC_RESET_TIMEOUT 50
40 #define GSC_BUF_STOP 1
41 #define GSC_BUF_START 2
43 #define GSC_WIDTH_ITU_709 1280
44 #define GSC_SC_UP_MAX_RATIO 65536
45 #define GSC_SC_DOWN_RATIO_7_8 74898
46 #define GSC_SC_DOWN_RATIO_6_8 87381
47 #define GSC_SC_DOWN_RATIO_5_8 104857
48 #define GSC_SC_DOWN_RATIO_4_8 131072
49 #define GSC_SC_DOWN_RATIO_3_8 174762
50 #define GSC_SC_DOWN_RATIO_2_8 262144
51 #define GSC_CROP_MAX 8192
52 #define GSC_CROP_MIN 32
53 #define GSC_SCALE_MAX 4224
54 #define GSC_SCALE_MIN 32
55 #define GSC_COEF_RATIO 7
56 #define GSC_COEF_PHASE 9
57 #define GSC_COEF_ATTR 16
58 #define GSC_COEF_H_8T 8
59 #define GSC_COEF_V_4T 4
60 #define GSC_COEF_DEPTH 3
61 #define GSC_AUTOSUSPEND_DELAY 2000
63 #define get_gsc_context(dev) dev_get_drvdata(dev)
64 #define gsc_read(offset) readl(ctx->regs + (offset))
65 #define gsc_write(cfg, offset) writel(cfg, ctx->regs + (offset))
68 * A structure of scaler.
70 * @range: narrow, wide.
71 * @pre_shfactor: pre sclaer shift factor.
72 * @pre_hratio: horizontal ratio of the prescaler.
73 * @pre_vratio: vertical ratio of the prescaler.
74 * @main_hratio: the main scaler's horizontal ratio.
75 * @main_vratio: the main scaler's vertical ratio.
82 unsigned long main_hratio;
83 unsigned long main_vratio;
87 * A structure of gsc context.
89 * @regs_res: register resources.
90 * @regs: memory mapped io registers.
91 * @gsc_clk: gsc gate clock.
92 * @sc: scaler infomations.
95 * @rotation: supports rotation of src.
98 struct exynos_drm_ipp ipp;
99 struct drm_device *drm_dev;
102 struct exynos_drm_ipp_task *task;
103 struct exynos_drm_ipp_formats *formats;
104 unsigned int num_formats;
106 struct resource *regs_res;
108 const char **clk_names;
109 struct clk *clocks[GSC_MAX_CLOCKS];
111 struct gsc_scaler sc;
118 * struct gsc_driverdata - per device type driver data for init time.
120 * @limits: picture size limits array
121 * @num_limits: number of items in the aforementioned array
122 * @clk_names: names of clocks needed by this variant
123 * @num_clocks: the number of clocks needed by this variant
125 struct gsc_driverdata {
126 const struct drm_exynos_ipp_limit *limits;
128 const char *clk_names[GSC_MAX_CLOCKS];
132 /* 8-tap Filter Coefficient */
133 static const int h_coef_8t[GSC_COEF_RATIO][GSC_COEF_ATTR][GSC_COEF_H_8T] = {
134 { /* Ratio <= 65536 (~8:8) */
135 { 0, 0, 0, 128, 0, 0, 0, 0 },
136 { -1, 2, -6, 127, 7, -2, 1, 0 },
137 { -1, 4, -12, 125, 16, -5, 1, 0 },
138 { -1, 5, -15, 120, 25, -8, 2, 0 },
139 { -1, 6, -18, 114, 35, -10, 3, -1 },
140 { -1, 6, -20, 107, 46, -13, 4, -1 },
141 { -2, 7, -21, 99, 57, -16, 5, -1 },
142 { -1, 6, -20, 89, 68, -18, 5, -1 },
143 { -1, 6, -20, 79, 79, -20, 6, -1 },
144 { -1, 5, -18, 68, 89, -20, 6, -1 },
145 { -1, 5, -16, 57, 99, -21, 7, -2 },
146 { -1, 4, -13, 46, 107, -20, 6, -1 },
147 { -1, 3, -10, 35, 114, -18, 6, -1 },
148 { 0, 2, -8, 25, 120, -15, 5, -1 },
149 { 0, 1, -5, 16, 125, -12, 4, -1 },
150 { 0, 1, -2, 7, 127, -6, 2, -1 }
151 }, { /* 65536 < Ratio <= 74898 (~8:7) */
152 { 3, -8, 14, 111, 13, -8, 3, 0 },
153 { 2, -6, 7, 112, 21, -10, 3, -1 },
154 { 2, -4, 1, 110, 28, -12, 4, -1 },
155 { 1, -2, -3, 106, 36, -13, 4, -1 },
156 { 1, -1, -7, 103, 44, -15, 4, -1 },
157 { 1, 1, -11, 97, 53, -16, 4, -1 },
158 { 0, 2, -13, 91, 61, -16, 4, -1 },
159 { 0, 3, -15, 85, 69, -17, 4, -1 },
160 { 0, 3, -16, 77, 77, -16, 3, 0 },
161 { -1, 4, -17, 69, 85, -15, 3, 0 },
162 { -1, 4, -16, 61, 91, -13, 2, 0 },
163 { -1, 4, -16, 53, 97, -11, 1, 1 },
164 { -1, 4, -15, 44, 103, -7, -1, 1 },
165 { -1, 4, -13, 36, 106, -3, -2, 1 },
166 { -1, 4, -12, 28, 110, 1, -4, 2 },
167 { -1, 3, -10, 21, 112, 7, -6, 2 }
168 }, { /* 74898 < Ratio <= 87381 (~8:6) */
169 { 2, -11, 25, 96, 25, -11, 2, 0 },
170 { 2, -10, 19, 96, 31, -12, 2, 0 },
171 { 2, -9, 14, 94, 37, -12, 2, 0 },
172 { 2, -8, 10, 92, 43, -12, 1, 0 },
173 { 2, -7, 5, 90, 49, -12, 1, 0 },
174 { 2, -5, 1, 86, 55, -12, 0, 1 },
175 { 2, -4, -2, 82, 61, -11, -1, 1 },
176 { 1, -3, -5, 77, 67, -9, -1, 1 },
177 { 1, -2, -7, 72, 72, -7, -2, 1 },
178 { 1, -1, -9, 67, 77, -5, -3, 1 },
179 { 1, -1, -11, 61, 82, -2, -4, 2 },
180 { 1, 0, -12, 55, 86, 1, -5, 2 },
181 { 0, 1, -12, 49, 90, 5, -7, 2 },
182 { 0, 1, -12, 43, 92, 10, -8, 2 },
183 { 0, 2, -12, 37, 94, 14, -9, 2 },
184 { 0, 2, -12, 31, 96, 19, -10, 2 }
185 }, { /* 87381 < Ratio <= 104857 (~8:5) */
186 { -1, -8, 33, 80, 33, -8, -1, 0 },
187 { -1, -8, 28, 80, 37, -7, -2, 1 },
188 { 0, -8, 24, 79, 41, -7, -2, 1 },
189 { 0, -8, 20, 78, 46, -6, -3, 1 },
190 { 0, -8, 16, 76, 50, -4, -3, 1 },
191 { 0, -7, 13, 74, 54, -3, -4, 1 },
192 { 1, -7, 10, 71, 58, -1, -5, 1 },
193 { 1, -6, 6, 68, 62, 1, -5, 1 },
194 { 1, -6, 4, 65, 65, 4, -6, 1 },
195 { 1, -5, 1, 62, 68, 6, -6, 1 },
196 { 1, -5, -1, 58, 71, 10, -7, 1 },
197 { 1, -4, -3, 54, 74, 13, -7, 0 },
198 { 1, -3, -4, 50, 76, 16, -8, 0 },
199 { 1, -3, -6, 46, 78, 20, -8, 0 },
200 { 1, -2, -7, 41, 79, 24, -8, 0 },
201 { 1, -2, -7, 37, 80, 28, -8, -1 }
202 }, { /* 104857 < Ratio <= 131072 (~8:4) */
203 { -3, 0, 35, 64, 35, 0, -3, 0 },
204 { -3, -1, 32, 64, 38, 1, -3, 0 },
205 { -2, -2, 29, 63, 41, 2, -3, 0 },
206 { -2, -3, 27, 63, 43, 4, -4, 0 },
207 { -2, -3, 24, 61, 46, 6, -4, 0 },
208 { -2, -3, 21, 60, 49, 7, -4, 0 },
209 { -1, -4, 19, 59, 51, 9, -4, -1 },
210 { -1, -4, 16, 57, 53, 12, -4, -1 },
211 { -1, -4, 14, 55, 55, 14, -4, -1 },
212 { -1, -4, 12, 53, 57, 16, -4, -1 },
213 { -1, -4, 9, 51, 59, 19, -4, -1 },
214 { 0, -4, 7, 49, 60, 21, -3, -2 },
215 { 0, -4, 6, 46, 61, 24, -3, -2 },
216 { 0, -4, 4, 43, 63, 27, -3, -2 },
217 { 0, -3, 2, 41, 63, 29, -2, -2 },
218 { 0, -3, 1, 38, 64, 32, -1, -3 }
219 }, { /* 131072 < Ratio <= 174762 (~8:3) */
220 { -1, 8, 33, 48, 33, 8, -1, 0 },
221 { -1, 7, 31, 49, 35, 9, -1, -1 },
222 { -1, 6, 30, 49, 36, 10, -1, -1 },
223 { -1, 5, 28, 48, 38, 12, -1, -1 },
224 { -1, 4, 26, 48, 39, 13, 0, -1 },
225 { -1, 3, 24, 47, 41, 15, 0, -1 },
226 { -1, 2, 23, 47, 42, 16, 0, -1 },
227 { -1, 2, 21, 45, 43, 18, 1, -1 },
228 { -1, 1, 19, 45, 45, 19, 1, -1 },
229 { -1, 1, 18, 43, 45, 21, 2, -1 },
230 { -1, 0, 16, 42, 47, 23, 2, -1 },
231 { -1, 0, 15, 41, 47, 24, 3, -1 },
232 { -1, 0, 13, 39, 48, 26, 4, -1 },
233 { -1, -1, 12, 38, 48, 28, 5, -1 },
234 { -1, -1, 10, 36, 49, 30, 6, -1 },
235 { -1, -1, 9, 35, 49, 31, 7, -1 }
236 }, { /* 174762 < Ratio <= 262144 (~8:2) */
237 { 2, 13, 30, 38, 30, 13, 2, 0 },
238 { 2, 12, 29, 38, 30, 14, 3, 0 },
239 { 2, 11, 28, 38, 31, 15, 3, 0 },
240 { 2, 10, 26, 38, 32, 16, 4, 0 },
241 { 1, 10, 26, 37, 33, 17, 4, 0 },
242 { 1, 9, 24, 37, 34, 18, 5, 0 },
243 { 1, 8, 24, 37, 34, 19, 5, 0 },
244 { 1, 7, 22, 36, 35, 20, 6, 1 },
245 { 1, 6, 21, 36, 36, 21, 6, 1 },
246 { 1, 6, 20, 35, 36, 22, 7, 1 },
247 { 0, 5, 19, 34, 37, 24, 8, 1 },
248 { 0, 5, 18, 34, 37, 24, 9, 1 },
249 { 0, 4, 17, 33, 37, 26, 10, 1 },
250 { 0, 4, 16, 32, 38, 26, 10, 2 },
251 { 0, 3, 15, 31, 38, 28, 11, 2 },
252 { 0, 3, 14, 30, 38, 29, 12, 2 }
256 /* 4-tap Filter Coefficient */
257 static const int v_coef_4t[GSC_COEF_RATIO][GSC_COEF_ATTR][GSC_COEF_V_4T] = {
258 { /* Ratio <= 65536 (~8:8) */
275 }, { /* 65536 < Ratio <= 74898 (~8:7) */
292 }, { /* 74898 < Ratio <= 87381 (~8:6) */
309 }, { /* 87381 < Ratio <= 104857 (~8:5) */
326 }, { /* 104857 < Ratio <= 131072 (~8:4) */
343 }, { /* 131072 < Ratio <= 174762 (~8:3) */
360 }, { /* 174762 < Ratio <= 262144 (~8:2) */
380 static int gsc_sw_reset(struct gsc_context *ctx)
383 int count = GSC_RESET_TIMEOUT;
386 cfg = (GSC_SW_RESET_SRESET);
387 gsc_write(cfg, GSC_SW_RESET);
389 /* wait s/w reset complete */
391 cfg = gsc_read(GSC_SW_RESET);
394 usleep_range(1000, 2000);
398 DRM_DEV_ERROR(ctx->dev, "failed to reset gsc h/w.\n");
403 cfg = gsc_read(GSC_IN_BASE_ADDR_Y_MASK);
404 cfg |= (GSC_IN_BASE_ADDR_MASK |
405 GSC_IN_BASE_ADDR_PINGPONG(0));
406 gsc_write(cfg, GSC_IN_BASE_ADDR_Y_MASK);
407 gsc_write(cfg, GSC_IN_BASE_ADDR_CB_MASK);
408 gsc_write(cfg, GSC_IN_BASE_ADDR_CR_MASK);
410 cfg = gsc_read(GSC_OUT_BASE_ADDR_Y_MASK);
411 cfg |= (GSC_OUT_BASE_ADDR_MASK |
412 GSC_OUT_BASE_ADDR_PINGPONG(0));
413 gsc_write(cfg, GSC_OUT_BASE_ADDR_Y_MASK);
414 gsc_write(cfg, GSC_OUT_BASE_ADDR_CB_MASK);
415 gsc_write(cfg, GSC_OUT_BASE_ADDR_CR_MASK);
420 static void gsc_handle_irq(struct gsc_context *ctx, bool enable,
421 bool overflow, bool done)
425 DRM_DEV_DEBUG_KMS(ctx->dev, "enable[%d]overflow[%d]level[%d]\n",
426 enable, overflow, done);
428 cfg = gsc_read(GSC_IRQ);
429 cfg |= (GSC_IRQ_OR_MASK | GSC_IRQ_FRMDONE_MASK);
432 cfg |= GSC_IRQ_ENABLE;
434 cfg &= ~GSC_IRQ_ENABLE;
437 cfg &= ~GSC_IRQ_OR_MASK;
439 cfg |= GSC_IRQ_OR_MASK;
442 cfg &= ~GSC_IRQ_FRMDONE_MASK;
444 cfg |= GSC_IRQ_FRMDONE_MASK;
446 gsc_write(cfg, GSC_IRQ);
450 static void gsc_src_set_fmt(struct gsc_context *ctx, u32 fmt, bool tiled)
454 DRM_DEV_DEBUG_KMS(ctx->dev, "fmt[0x%x]\n", fmt);
456 cfg = gsc_read(GSC_IN_CON);
457 cfg &= ~(GSC_IN_RGB_TYPE_MASK | GSC_IN_YUV422_1P_ORDER_MASK |
458 GSC_IN_CHROMA_ORDER_MASK | GSC_IN_FORMAT_MASK |
459 GSC_IN_TILE_TYPE_MASK | GSC_IN_TILE_MODE |
460 GSC_IN_CHROM_STRIDE_SEL_MASK | GSC_IN_RB_SWAP_MASK);
463 case DRM_FORMAT_RGB565:
464 cfg |= GSC_IN_RGB565;
466 case DRM_FORMAT_XRGB8888:
467 case DRM_FORMAT_ARGB8888:
468 cfg |= GSC_IN_XRGB8888;
470 case DRM_FORMAT_BGRX8888:
471 cfg |= (GSC_IN_XRGB8888 | GSC_IN_RB_SWAP);
473 case DRM_FORMAT_YUYV:
474 cfg |= (GSC_IN_YUV422_1P |
475 GSC_IN_YUV422_1P_ORDER_LSB_Y |
476 GSC_IN_CHROMA_ORDER_CBCR);
478 case DRM_FORMAT_YVYU:
479 cfg |= (GSC_IN_YUV422_1P |
480 GSC_IN_YUV422_1P_ORDER_LSB_Y |
481 GSC_IN_CHROMA_ORDER_CRCB);
483 case DRM_FORMAT_UYVY:
484 cfg |= (GSC_IN_YUV422_1P |
485 GSC_IN_YUV422_1P_OEDER_LSB_C |
486 GSC_IN_CHROMA_ORDER_CBCR);
488 case DRM_FORMAT_VYUY:
489 cfg |= (GSC_IN_YUV422_1P |
490 GSC_IN_YUV422_1P_OEDER_LSB_C |
491 GSC_IN_CHROMA_ORDER_CRCB);
493 case DRM_FORMAT_NV21:
494 cfg |= (GSC_IN_CHROMA_ORDER_CRCB | GSC_IN_YUV420_2P);
496 case DRM_FORMAT_NV61:
497 cfg |= (GSC_IN_CHROMA_ORDER_CRCB | GSC_IN_YUV422_2P);
499 case DRM_FORMAT_YUV422:
500 cfg |= GSC_IN_YUV422_3P;
502 case DRM_FORMAT_YUV420:
503 cfg |= (GSC_IN_CHROMA_ORDER_CBCR | GSC_IN_YUV420_3P);
505 case DRM_FORMAT_YVU420:
506 cfg |= (GSC_IN_CHROMA_ORDER_CRCB | GSC_IN_YUV420_3P);
508 case DRM_FORMAT_NV12:
509 cfg |= (GSC_IN_CHROMA_ORDER_CBCR | GSC_IN_YUV420_2P);
511 case DRM_FORMAT_NV16:
512 cfg |= (GSC_IN_CHROMA_ORDER_CBCR | GSC_IN_YUV422_2P);
517 cfg |= (GSC_IN_TILE_C_16x8 | GSC_IN_TILE_MODE);
519 gsc_write(cfg, GSC_IN_CON);
522 static void gsc_src_set_transf(struct gsc_context *ctx, unsigned int rotation)
524 unsigned int degree = rotation & DRM_MODE_ROTATE_MASK;
527 cfg = gsc_read(GSC_IN_CON);
528 cfg &= ~GSC_IN_ROT_MASK;
531 case DRM_MODE_ROTATE_0:
532 if (rotation & DRM_MODE_REFLECT_X)
533 cfg |= GSC_IN_ROT_XFLIP;
534 if (rotation & DRM_MODE_REFLECT_Y)
535 cfg |= GSC_IN_ROT_YFLIP;
537 case DRM_MODE_ROTATE_90:
538 cfg |= GSC_IN_ROT_90;
539 if (rotation & DRM_MODE_REFLECT_X)
540 cfg |= GSC_IN_ROT_XFLIP;
541 if (rotation & DRM_MODE_REFLECT_Y)
542 cfg |= GSC_IN_ROT_YFLIP;
544 case DRM_MODE_ROTATE_180:
545 cfg |= GSC_IN_ROT_180;
546 if (rotation & DRM_MODE_REFLECT_X)
547 cfg &= ~GSC_IN_ROT_XFLIP;
548 if (rotation & DRM_MODE_REFLECT_Y)
549 cfg &= ~GSC_IN_ROT_YFLIP;
551 case DRM_MODE_ROTATE_270:
552 cfg |= GSC_IN_ROT_270;
553 if (rotation & DRM_MODE_REFLECT_X)
554 cfg &= ~GSC_IN_ROT_XFLIP;
555 if (rotation & DRM_MODE_REFLECT_Y)
556 cfg &= ~GSC_IN_ROT_YFLIP;
560 gsc_write(cfg, GSC_IN_CON);
562 ctx->rotation = (cfg & GSC_IN_ROT_90) ? 1 : 0;
565 static void gsc_src_set_size(struct gsc_context *ctx,
566 struct exynos_drm_ipp_buffer *buf)
568 struct gsc_scaler *sc = &ctx->sc;
572 cfg = (GSC_SRCIMG_OFFSET_X(buf->rect.x) |
573 GSC_SRCIMG_OFFSET_Y(buf->rect.y));
574 gsc_write(cfg, GSC_SRCIMG_OFFSET);
577 cfg = (GSC_CROPPED_WIDTH(buf->rect.w) |
578 GSC_CROPPED_HEIGHT(buf->rect.h));
579 gsc_write(cfg, GSC_CROPPED_SIZE);
582 cfg = gsc_read(GSC_SRCIMG_SIZE);
583 cfg &= ~(GSC_SRCIMG_HEIGHT_MASK |
584 GSC_SRCIMG_WIDTH_MASK);
586 cfg |= (GSC_SRCIMG_WIDTH(buf->buf.pitch[0] / buf->format->cpp[0]) |
587 GSC_SRCIMG_HEIGHT(buf->buf.height));
589 gsc_write(cfg, GSC_SRCIMG_SIZE);
591 cfg = gsc_read(GSC_IN_CON);
592 cfg &= ~GSC_IN_RGB_TYPE_MASK;
594 if (buf->rect.w >= GSC_WIDTH_ITU_709)
596 cfg |= GSC_IN_RGB_HD_WIDE;
598 cfg |= GSC_IN_RGB_HD_NARROW;
601 cfg |= GSC_IN_RGB_SD_WIDE;
603 cfg |= GSC_IN_RGB_SD_NARROW;
605 gsc_write(cfg, GSC_IN_CON);
608 static void gsc_src_set_buf_seq(struct gsc_context *ctx, u32 buf_id,
611 bool masked = !enqueue;
613 u32 mask = 0x00000001 << buf_id;
615 /* mask register set */
616 cfg = gsc_read(GSC_IN_BASE_ADDR_Y_MASK);
620 cfg |= masked << buf_id;
621 gsc_write(cfg, GSC_IN_BASE_ADDR_Y_MASK);
622 gsc_write(cfg, GSC_IN_BASE_ADDR_CB_MASK);
623 gsc_write(cfg, GSC_IN_BASE_ADDR_CR_MASK);
626 static void gsc_src_set_addr(struct gsc_context *ctx, u32 buf_id,
627 struct exynos_drm_ipp_buffer *buf)
629 /* address register set */
630 gsc_write(buf->dma_addr[0], GSC_IN_BASE_ADDR_Y(buf_id));
631 gsc_write(buf->dma_addr[1], GSC_IN_BASE_ADDR_CB(buf_id));
632 gsc_write(buf->dma_addr[2], GSC_IN_BASE_ADDR_CR(buf_id));
634 gsc_src_set_buf_seq(ctx, buf_id, true);
637 static void gsc_dst_set_fmt(struct gsc_context *ctx, u32 fmt, bool tiled)
641 DRM_DEV_DEBUG_KMS(ctx->dev, "fmt[0x%x]\n", fmt);
643 cfg = gsc_read(GSC_OUT_CON);
644 cfg &= ~(GSC_OUT_RGB_TYPE_MASK | GSC_OUT_YUV422_1P_ORDER_MASK |
645 GSC_OUT_CHROMA_ORDER_MASK | GSC_OUT_FORMAT_MASK |
646 GSC_OUT_CHROM_STRIDE_SEL_MASK | GSC_OUT_RB_SWAP_MASK |
647 GSC_OUT_GLOBAL_ALPHA_MASK);
650 case DRM_FORMAT_RGB565:
651 cfg |= GSC_OUT_RGB565;
653 case DRM_FORMAT_ARGB8888:
654 case DRM_FORMAT_XRGB8888:
655 cfg |= (GSC_OUT_XRGB8888 | GSC_OUT_GLOBAL_ALPHA(0xff));
657 case DRM_FORMAT_BGRX8888:
658 cfg |= (GSC_OUT_XRGB8888 | GSC_OUT_RB_SWAP);
660 case DRM_FORMAT_YUYV:
661 cfg |= (GSC_OUT_YUV422_1P |
662 GSC_OUT_YUV422_1P_ORDER_LSB_Y |
663 GSC_OUT_CHROMA_ORDER_CBCR);
665 case DRM_FORMAT_YVYU:
666 cfg |= (GSC_OUT_YUV422_1P |
667 GSC_OUT_YUV422_1P_ORDER_LSB_Y |
668 GSC_OUT_CHROMA_ORDER_CRCB);
670 case DRM_FORMAT_UYVY:
671 cfg |= (GSC_OUT_YUV422_1P |
672 GSC_OUT_YUV422_1P_OEDER_LSB_C |
673 GSC_OUT_CHROMA_ORDER_CBCR);
675 case DRM_FORMAT_VYUY:
676 cfg |= (GSC_OUT_YUV422_1P |
677 GSC_OUT_YUV422_1P_OEDER_LSB_C |
678 GSC_OUT_CHROMA_ORDER_CRCB);
680 case DRM_FORMAT_NV21:
681 cfg |= (GSC_OUT_CHROMA_ORDER_CRCB | GSC_OUT_YUV420_2P);
683 case DRM_FORMAT_NV61:
684 cfg |= (GSC_OUT_CHROMA_ORDER_CRCB | GSC_OUT_YUV422_2P);
686 case DRM_FORMAT_YUV422:
687 cfg |= GSC_OUT_YUV422_3P;
689 case DRM_FORMAT_YUV420:
690 cfg |= (GSC_OUT_CHROMA_ORDER_CBCR | GSC_OUT_YUV420_3P);
692 case DRM_FORMAT_YVU420:
693 cfg |= (GSC_OUT_CHROMA_ORDER_CRCB | GSC_OUT_YUV420_3P);
695 case DRM_FORMAT_NV12:
696 cfg |= (GSC_OUT_CHROMA_ORDER_CBCR | GSC_OUT_YUV420_2P);
698 case DRM_FORMAT_NV16:
699 cfg |= (GSC_OUT_CHROMA_ORDER_CBCR | GSC_OUT_YUV422_2P);
704 cfg |= (GSC_IN_TILE_C_16x8 | GSC_OUT_TILE_MODE);
706 gsc_write(cfg, GSC_OUT_CON);
709 static int gsc_get_ratio_shift(struct gsc_context *ctx, u32 src, u32 dst,
712 DRM_DEV_DEBUG_KMS(ctx->dev, "src[%d]dst[%d]\n", src, dst);
714 if (src >= dst * 8) {
715 DRM_DEV_ERROR(ctx->dev, "failed to make ratio and shift.\n");
717 } else if (src >= dst * 4)
719 else if (src >= dst * 2)
727 static void gsc_get_prescaler_shfactor(u32 hratio, u32 vratio, u32 *shfactor)
729 if (hratio == 4 && vratio == 4)
731 else if ((hratio == 4 && vratio == 2) ||
732 (hratio == 2 && vratio == 4))
734 else if ((hratio == 4 && vratio == 1) ||
735 (hratio == 1 && vratio == 4) ||
736 (hratio == 2 && vratio == 2))
738 else if (hratio == 1 && vratio == 1)
744 static int gsc_set_prescaler(struct gsc_context *ctx, struct gsc_scaler *sc,
745 struct drm_exynos_ipp_task_rect *src,
746 struct drm_exynos_ipp_task_rect *dst)
749 u32 src_w, src_h, dst_w, dst_h;
763 ret = gsc_get_ratio_shift(ctx, src_w, dst_w, &sc->pre_hratio);
765 DRM_DEV_ERROR(ctx->dev, "failed to get ratio horizontal.\n");
769 ret = gsc_get_ratio_shift(ctx, src_h, dst_h, &sc->pre_vratio);
771 DRM_DEV_ERROR(ctx->dev, "failed to get ratio vertical.\n");
775 DRM_DEV_DEBUG_KMS(ctx->dev, "pre_hratio[%d]pre_vratio[%d]\n",
776 sc->pre_hratio, sc->pre_vratio);
778 sc->main_hratio = (src_w << 16) / dst_w;
779 sc->main_vratio = (src_h << 16) / dst_h;
781 DRM_DEV_DEBUG_KMS(ctx->dev, "main_hratio[%ld]main_vratio[%ld]\n",
782 sc->main_hratio, sc->main_vratio);
784 gsc_get_prescaler_shfactor(sc->pre_hratio, sc->pre_vratio,
787 DRM_DEV_DEBUG_KMS(ctx->dev, "pre_shfactor[%d]\n", sc->pre_shfactor);
789 cfg = (GSC_PRESC_SHFACTOR(sc->pre_shfactor) |
790 GSC_PRESC_H_RATIO(sc->pre_hratio) |
791 GSC_PRESC_V_RATIO(sc->pre_vratio));
792 gsc_write(cfg, GSC_PRE_SCALE_RATIO);
797 static void gsc_set_h_coef(struct gsc_context *ctx, unsigned long main_hratio)
799 int i, j, k, sc_ratio;
801 if (main_hratio <= GSC_SC_UP_MAX_RATIO)
803 else if (main_hratio <= GSC_SC_DOWN_RATIO_7_8)
805 else if (main_hratio <= GSC_SC_DOWN_RATIO_6_8)
807 else if (main_hratio <= GSC_SC_DOWN_RATIO_5_8)
809 else if (main_hratio <= GSC_SC_DOWN_RATIO_4_8)
811 else if (main_hratio <= GSC_SC_DOWN_RATIO_3_8)
816 for (i = 0; i < GSC_COEF_PHASE; i++)
817 for (j = 0; j < GSC_COEF_H_8T; j++)
818 for (k = 0; k < GSC_COEF_DEPTH; k++)
819 gsc_write(h_coef_8t[sc_ratio][i][j],
823 static void gsc_set_v_coef(struct gsc_context *ctx, unsigned long main_vratio)
825 int i, j, k, sc_ratio;
827 if (main_vratio <= GSC_SC_UP_MAX_RATIO)
829 else if (main_vratio <= GSC_SC_DOWN_RATIO_7_8)
831 else if (main_vratio <= GSC_SC_DOWN_RATIO_6_8)
833 else if (main_vratio <= GSC_SC_DOWN_RATIO_5_8)
835 else if (main_vratio <= GSC_SC_DOWN_RATIO_4_8)
837 else if (main_vratio <= GSC_SC_DOWN_RATIO_3_8)
842 for (i = 0; i < GSC_COEF_PHASE; i++)
843 for (j = 0; j < GSC_COEF_V_4T; j++)
844 for (k = 0; k < GSC_COEF_DEPTH; k++)
845 gsc_write(v_coef_4t[sc_ratio][i][j],
849 static void gsc_set_scaler(struct gsc_context *ctx, struct gsc_scaler *sc)
853 DRM_DEV_DEBUG_KMS(ctx->dev, "main_hratio[%ld]main_vratio[%ld]\n",
854 sc->main_hratio, sc->main_vratio);
856 gsc_set_h_coef(ctx, sc->main_hratio);
857 cfg = GSC_MAIN_H_RATIO_VALUE(sc->main_hratio);
858 gsc_write(cfg, GSC_MAIN_H_RATIO);
860 gsc_set_v_coef(ctx, sc->main_vratio);
861 cfg = GSC_MAIN_V_RATIO_VALUE(sc->main_vratio);
862 gsc_write(cfg, GSC_MAIN_V_RATIO);
865 static void gsc_dst_set_size(struct gsc_context *ctx,
866 struct exynos_drm_ipp_buffer *buf)
868 struct gsc_scaler *sc = &ctx->sc;
872 cfg = (GSC_DSTIMG_OFFSET_X(buf->rect.x) |
873 GSC_DSTIMG_OFFSET_Y(buf->rect.y));
874 gsc_write(cfg, GSC_DSTIMG_OFFSET);
878 cfg = (GSC_SCALED_WIDTH(buf->rect.h) |
879 GSC_SCALED_HEIGHT(buf->rect.w));
881 cfg = (GSC_SCALED_WIDTH(buf->rect.w) |
882 GSC_SCALED_HEIGHT(buf->rect.h));
883 gsc_write(cfg, GSC_SCALED_SIZE);
886 cfg = gsc_read(GSC_DSTIMG_SIZE);
887 cfg &= ~(GSC_DSTIMG_HEIGHT_MASK | GSC_DSTIMG_WIDTH_MASK);
888 cfg |= GSC_DSTIMG_WIDTH(buf->buf.pitch[0] / buf->format->cpp[0]) |
889 GSC_DSTIMG_HEIGHT(buf->buf.height);
890 gsc_write(cfg, GSC_DSTIMG_SIZE);
892 cfg = gsc_read(GSC_OUT_CON);
893 cfg &= ~GSC_OUT_RGB_TYPE_MASK;
895 if (buf->rect.w >= GSC_WIDTH_ITU_709)
897 cfg |= GSC_OUT_RGB_HD_WIDE;
899 cfg |= GSC_OUT_RGB_HD_NARROW;
902 cfg |= GSC_OUT_RGB_SD_WIDE;
904 cfg |= GSC_OUT_RGB_SD_NARROW;
906 gsc_write(cfg, GSC_OUT_CON);
909 static int gsc_dst_get_buf_seq(struct gsc_context *ctx)
911 u32 cfg, i, buf_num = GSC_REG_SZ;
912 u32 mask = 0x00000001;
914 cfg = gsc_read(GSC_OUT_BASE_ADDR_Y_MASK);
916 for (i = 0; i < GSC_REG_SZ; i++)
917 if (cfg & (mask << i))
920 DRM_DEV_DEBUG_KMS(ctx->dev, "buf_num[%d]\n", buf_num);
925 static void gsc_dst_set_buf_seq(struct gsc_context *ctx, u32 buf_id,
928 bool masked = !enqueue;
930 u32 mask = 0x00000001 << buf_id;
932 /* mask register set */
933 cfg = gsc_read(GSC_OUT_BASE_ADDR_Y_MASK);
937 cfg |= masked << buf_id;
938 gsc_write(cfg, GSC_OUT_BASE_ADDR_Y_MASK);
939 gsc_write(cfg, GSC_OUT_BASE_ADDR_CB_MASK);
940 gsc_write(cfg, GSC_OUT_BASE_ADDR_CR_MASK);
942 /* interrupt enable */
943 if (enqueue && gsc_dst_get_buf_seq(ctx) >= GSC_BUF_START)
944 gsc_handle_irq(ctx, true, false, true);
946 /* interrupt disable */
947 if (!enqueue && gsc_dst_get_buf_seq(ctx) <= GSC_BUF_STOP)
948 gsc_handle_irq(ctx, false, false, true);
951 static void gsc_dst_set_addr(struct gsc_context *ctx,
952 u32 buf_id, struct exynos_drm_ipp_buffer *buf)
954 /* address register set */
955 gsc_write(buf->dma_addr[0], GSC_OUT_BASE_ADDR_Y(buf_id));
956 gsc_write(buf->dma_addr[1], GSC_OUT_BASE_ADDR_CB(buf_id));
957 gsc_write(buf->dma_addr[2], GSC_OUT_BASE_ADDR_CR(buf_id));
959 gsc_dst_set_buf_seq(ctx, buf_id, true);
962 static int gsc_get_src_buf_index(struct gsc_context *ctx)
964 u32 cfg, curr_index, i;
965 u32 buf_id = GSC_MAX_SRC;
967 DRM_DEV_DEBUG_KMS(ctx->dev, "gsc id[%d]\n", ctx->id);
969 cfg = gsc_read(GSC_IN_BASE_ADDR_Y_MASK);
970 curr_index = GSC_IN_CURR_GET_INDEX(cfg);
972 for (i = curr_index; i < GSC_MAX_SRC; i++) {
973 if (!((cfg >> i) & 0x1)) {
979 DRM_DEV_DEBUG_KMS(ctx->dev, "cfg[0x%x]curr_index[%d]buf_id[%d]\n", cfg,
982 if (buf_id == GSC_MAX_SRC) {
983 DRM_DEV_ERROR(ctx->dev, "failed to get in buffer index.\n");
987 gsc_src_set_buf_seq(ctx, buf_id, false);
992 static int gsc_get_dst_buf_index(struct gsc_context *ctx)
994 u32 cfg, curr_index, i;
995 u32 buf_id = GSC_MAX_DST;
997 DRM_DEV_DEBUG_KMS(ctx->dev, "gsc id[%d]\n", ctx->id);
999 cfg = gsc_read(GSC_OUT_BASE_ADDR_Y_MASK);
1000 curr_index = GSC_OUT_CURR_GET_INDEX(cfg);
1002 for (i = curr_index; i < GSC_MAX_DST; i++) {
1003 if (!((cfg >> i) & 0x1)) {
1009 if (buf_id == GSC_MAX_DST) {
1010 DRM_DEV_ERROR(ctx->dev, "failed to get out buffer index.\n");
1014 gsc_dst_set_buf_seq(ctx, buf_id, false);
1016 DRM_DEV_DEBUG_KMS(ctx->dev, "cfg[0x%x]curr_index[%d]buf_id[%d]\n", cfg,
1017 curr_index, buf_id);
1022 static irqreturn_t gsc_irq_handler(int irq, void *dev_id)
1024 struct gsc_context *ctx = dev_id;
1028 DRM_DEV_DEBUG_KMS(ctx->dev, "gsc id[%d]\n", ctx->id);
1030 status = gsc_read(GSC_IRQ);
1031 if (status & GSC_IRQ_STATUS_OR_IRQ) {
1032 dev_err(ctx->dev, "occurred overflow at %d, status 0x%x.\n",
1037 if (status & GSC_IRQ_STATUS_OR_FRM_DONE) {
1038 int src_buf_id, dst_buf_id;
1040 dev_dbg(ctx->dev, "occurred frame done at %d, status 0x%x.\n",
1043 src_buf_id = gsc_get_src_buf_index(ctx);
1044 dst_buf_id = gsc_get_dst_buf_index(ctx);
1046 DRM_DEV_DEBUG_KMS(ctx->dev, "buf_id_src[%d]buf_id_dst[%d]\n",
1047 src_buf_id, dst_buf_id);
1049 if (src_buf_id < 0 || dst_buf_id < 0)
1054 struct exynos_drm_ipp_task *task = ctx->task;
1057 pm_runtime_mark_last_busy(ctx->dev);
1058 pm_runtime_put_autosuspend(ctx->dev);
1059 exynos_drm_ipp_task_done(task, err);
1065 static int gsc_reset(struct gsc_context *ctx)
1067 struct gsc_scaler *sc = &ctx->sc;
1070 /* reset h/w block */
1071 ret = gsc_sw_reset(ctx);
1073 dev_err(ctx->dev, "failed to reset hardware.\n");
1077 /* scaler setting */
1078 memset(&ctx->sc, 0x0, sizeof(ctx->sc));
1084 static void gsc_start(struct gsc_context *ctx)
1088 gsc_handle_irq(ctx, true, false, true);
1090 /* enable one shot */
1091 cfg = gsc_read(GSC_ENABLE);
1092 cfg &= ~(GSC_ENABLE_ON_CLEAR_MASK |
1093 GSC_ENABLE_CLK_GATE_MODE_MASK);
1094 cfg |= GSC_ENABLE_ON_CLEAR_ONESHOT;
1095 gsc_write(cfg, GSC_ENABLE);
1097 /* src dma memory */
1098 cfg = gsc_read(GSC_IN_CON);
1099 cfg &= ~(GSC_IN_PATH_MASK | GSC_IN_LOCAL_SEL_MASK);
1100 cfg |= GSC_IN_PATH_MEMORY;
1101 gsc_write(cfg, GSC_IN_CON);
1103 /* dst dma memory */
1104 cfg = gsc_read(GSC_OUT_CON);
1105 cfg |= GSC_OUT_PATH_MEMORY;
1106 gsc_write(cfg, GSC_OUT_CON);
1108 gsc_set_scaler(ctx, &ctx->sc);
1110 cfg = gsc_read(GSC_ENABLE);
1111 cfg |= GSC_ENABLE_ON;
1112 gsc_write(cfg, GSC_ENABLE);
1115 static int gsc_commit(struct exynos_drm_ipp *ipp,
1116 struct exynos_drm_ipp_task *task)
1118 struct gsc_context *ctx = container_of(ipp, struct gsc_context, ipp);
1121 pm_runtime_get_sync(ctx->dev);
1124 ret = gsc_reset(ctx);
1126 pm_runtime_put_autosuspend(ctx->dev);
1131 gsc_src_set_fmt(ctx, task->src.buf.fourcc, task->src.buf.modifier);
1132 gsc_src_set_transf(ctx, task->transform.rotation);
1133 gsc_src_set_size(ctx, &task->src);
1134 gsc_src_set_addr(ctx, 0, &task->src);
1135 gsc_dst_set_fmt(ctx, task->dst.buf.fourcc, task->dst.buf.modifier);
1136 gsc_dst_set_size(ctx, &task->dst);
1137 gsc_dst_set_addr(ctx, 0, &task->dst);
1138 gsc_set_prescaler(ctx, &ctx->sc, &task->src.rect, &task->dst.rect);
1144 static void gsc_abort(struct exynos_drm_ipp *ipp,
1145 struct exynos_drm_ipp_task *task)
1147 struct gsc_context *ctx =
1148 container_of(ipp, struct gsc_context, ipp);
1152 struct exynos_drm_ipp_task *task = ctx->task;
1155 pm_runtime_mark_last_busy(ctx->dev);
1156 pm_runtime_put_autosuspend(ctx->dev);
1157 exynos_drm_ipp_task_done(task, -EIO);
1161 static struct exynos_drm_ipp_funcs ipp_funcs = {
1162 .commit = gsc_commit,
1166 static int gsc_bind(struct device *dev, struct device *master, void *data)
1168 struct gsc_context *ctx = dev_get_drvdata(dev);
1169 struct drm_device *drm_dev = data;
1170 struct exynos_drm_ipp *ipp = &ctx->ipp;
1172 ctx->drm_dev = drm_dev;
1173 ctx->drm_dev = drm_dev;
1174 exynos_drm_register_dma(drm_dev, dev, &ctx->dma_priv);
1176 exynos_drm_ipp_register(dev, ipp, &ipp_funcs,
1177 DRM_EXYNOS_IPP_CAP_CROP | DRM_EXYNOS_IPP_CAP_ROTATE |
1178 DRM_EXYNOS_IPP_CAP_SCALE | DRM_EXYNOS_IPP_CAP_CONVERT,
1179 ctx->formats, ctx->num_formats, "gsc");
1181 dev_info(dev, "The exynos gscaler has been probed successfully\n");
1186 static void gsc_unbind(struct device *dev, struct device *master,
1189 struct gsc_context *ctx = dev_get_drvdata(dev);
1190 struct drm_device *drm_dev = data;
1191 struct exynos_drm_ipp *ipp = &ctx->ipp;
1193 exynos_drm_ipp_unregister(dev, ipp);
1194 exynos_drm_unregister_dma(drm_dev, dev, &ctx->dma_priv);
1197 static const struct component_ops gsc_component_ops = {
1199 .unbind = gsc_unbind,
1202 static const unsigned int gsc_formats[] = {
1203 DRM_FORMAT_ARGB8888,
1204 DRM_FORMAT_XRGB8888, DRM_FORMAT_RGB565, DRM_FORMAT_BGRX8888,
1205 DRM_FORMAT_NV12, DRM_FORMAT_NV16, DRM_FORMAT_NV21, DRM_FORMAT_NV61,
1206 DRM_FORMAT_UYVY, DRM_FORMAT_VYUY, DRM_FORMAT_YUYV, DRM_FORMAT_YVYU,
1207 DRM_FORMAT_YUV420, DRM_FORMAT_YVU420, DRM_FORMAT_YUV422,
1210 static const unsigned int gsc_tiled_formats[] = {
1211 DRM_FORMAT_NV12, DRM_FORMAT_NV21,
1214 static int gsc_probe(struct platform_device *pdev)
1216 struct device *dev = &pdev->dev;
1217 struct gsc_driverdata *driver_data;
1218 struct exynos_drm_ipp_formats *formats;
1219 struct gsc_context *ctx;
1220 struct resource *res;
1221 int num_formats, ret, i, j;
1223 ctx = devm_kzalloc(dev, sizeof(*ctx), GFP_KERNEL);
1227 driver_data = (struct gsc_driverdata *)of_device_get_match_data(dev);
1229 ctx->num_clocks = driver_data->num_clocks;
1230 ctx->clk_names = driver_data->clk_names;
1232 /* construct formats/limits array */
1233 num_formats = ARRAY_SIZE(gsc_formats) + ARRAY_SIZE(gsc_tiled_formats);
1234 formats = devm_kcalloc(dev, num_formats, sizeof(*formats), GFP_KERNEL);
1238 /* linear formats */
1239 for (i = 0; i < ARRAY_SIZE(gsc_formats); i++) {
1240 formats[i].fourcc = gsc_formats[i];
1241 formats[i].type = DRM_EXYNOS_IPP_FORMAT_SOURCE |
1242 DRM_EXYNOS_IPP_FORMAT_DESTINATION;
1243 formats[i].limits = driver_data->limits;
1244 formats[i].num_limits = driver_data->num_limits;
1248 for (j = i, i = 0; i < ARRAY_SIZE(gsc_tiled_formats); j++, i++) {
1249 formats[j].fourcc = gsc_tiled_formats[i];
1250 formats[j].modifier = DRM_FORMAT_MOD_SAMSUNG_16_16_TILE;
1251 formats[j].type = DRM_EXYNOS_IPP_FORMAT_SOURCE |
1252 DRM_EXYNOS_IPP_FORMAT_DESTINATION;
1253 formats[j].limits = driver_data->limits;
1254 formats[j].num_limits = driver_data->num_limits;
1257 ctx->formats = formats;
1258 ctx->num_formats = num_formats;
1261 for (i = 0; i < ctx->num_clocks; i++) {
1262 ctx->clocks[i] = devm_clk_get(dev, ctx->clk_names[i]);
1263 if (IS_ERR(ctx->clocks[i])) {
1264 dev_err(dev, "failed to get clock: %s\n",
1266 return PTR_ERR(ctx->clocks[i]);
1270 /* resource memory */
1271 ctx->regs_res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1272 ctx->regs = devm_ioremap_resource(dev, ctx->regs_res);
1273 if (IS_ERR(ctx->regs))
1274 return PTR_ERR(ctx->regs);
1277 res = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
1279 dev_err(dev, "failed to request irq resource.\n");
1283 ctx->irq = res->start;
1284 ret = devm_request_irq(dev, ctx->irq, gsc_irq_handler, 0,
1285 dev_name(dev), ctx);
1287 dev_err(dev, "failed to request irq.\n");
1291 /* context initailization */
1294 platform_set_drvdata(pdev, ctx);
1296 pm_runtime_use_autosuspend(dev);
1297 pm_runtime_set_autosuspend_delay(dev, GSC_AUTOSUSPEND_DELAY);
1298 pm_runtime_enable(dev);
1300 ret = component_add(dev, &gsc_component_ops);
1304 dev_info(dev, "drm gsc registered successfully.\n");
1309 pm_runtime_dont_use_autosuspend(dev);
1310 pm_runtime_disable(dev);
1314 static int gsc_remove(struct platform_device *pdev)
1316 struct device *dev = &pdev->dev;
1318 component_del(dev, &gsc_component_ops);
1319 pm_runtime_dont_use_autosuspend(dev);
1320 pm_runtime_disable(dev);
1325 static int __maybe_unused gsc_runtime_suspend(struct device *dev)
1327 struct gsc_context *ctx = get_gsc_context(dev);
1330 DRM_DEV_DEBUG_KMS(dev, "id[%d]\n", ctx->id);
1332 for (i = ctx->num_clocks - 1; i >= 0; i--)
1333 clk_disable_unprepare(ctx->clocks[i]);
1338 static int __maybe_unused gsc_runtime_resume(struct device *dev)
1340 struct gsc_context *ctx = get_gsc_context(dev);
1343 DRM_DEV_DEBUG_KMS(dev, "id[%d]\n", ctx->id);
1345 for (i = 0; i < ctx->num_clocks; i++) {
1346 ret = clk_prepare_enable(ctx->clocks[i]);
1349 clk_disable_unprepare(ctx->clocks[i]);
1356 static const struct dev_pm_ops gsc_pm_ops = {
1357 SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend,
1358 pm_runtime_force_resume)
1359 SET_RUNTIME_PM_OPS(gsc_runtime_suspend, gsc_runtime_resume, NULL)
1362 static const struct drm_exynos_ipp_limit gsc_5250_limits[] = {
1363 { IPP_SIZE_LIMIT(BUFFER, .h = { 32, 4800, 8 }, .v = { 16, 3344, 8 }) },
1364 { IPP_SIZE_LIMIT(AREA, .h = { 16, 4800, 2 }, .v = { 8, 3344, 2 }) },
1365 { IPP_SIZE_LIMIT(ROTATED, .h = { 32, 2048 }, .v = { 16, 2048 }) },
1366 { IPP_SCALE_LIMIT(.h = { (1 << 16) / 16, (1 << 16) * 8 },
1367 .v = { (1 << 16) / 16, (1 << 16) * 8 }) },
1370 static const struct drm_exynos_ipp_limit gsc_5420_limits[] = {
1371 { IPP_SIZE_LIMIT(BUFFER, .h = { 32, 4800, 8 }, .v = { 16, 3344, 8 }) },
1372 { IPP_SIZE_LIMIT(AREA, .h = { 16, 4800, 2 }, .v = { 8, 3344, 2 }) },
1373 { IPP_SIZE_LIMIT(ROTATED, .h = { 16, 2016 }, .v = { 8, 2016 }) },
1374 { IPP_SCALE_LIMIT(.h = { (1 << 16) / 16, (1 << 16) * 8 },
1375 .v = { (1 << 16) / 16, (1 << 16) * 8 }) },
1378 static const struct drm_exynos_ipp_limit gsc_5433_limits[] = {
1379 { IPP_SIZE_LIMIT(BUFFER, .h = { 32, 8191, 16 }, .v = { 16, 8191, 2 }) },
1380 { IPP_SIZE_LIMIT(AREA, .h = { 16, 4800, 1 }, .v = { 8, 3344, 1 }) },
1381 { IPP_SIZE_LIMIT(ROTATED, .h = { 32, 2047 }, .v = { 8, 8191 }) },
1382 { IPP_SCALE_LIMIT(.h = { (1 << 16) / 16, (1 << 16) * 8 },
1383 .v = { (1 << 16) / 16, (1 << 16) * 8 }) },
1386 static struct gsc_driverdata gsc_exynos5250_drvdata = {
1387 .clk_names = {"gscl"},
1389 .limits = gsc_5250_limits,
1390 .num_limits = ARRAY_SIZE(gsc_5250_limits),
1393 static struct gsc_driverdata gsc_exynos5420_drvdata = {
1394 .clk_names = {"gscl"},
1396 .limits = gsc_5420_limits,
1397 .num_limits = ARRAY_SIZE(gsc_5420_limits),
1400 static struct gsc_driverdata gsc_exynos5433_drvdata = {
1401 .clk_names = {"pclk", "aclk", "aclk_xiu", "aclk_gsclbend"},
1403 .limits = gsc_5433_limits,
1404 .num_limits = ARRAY_SIZE(gsc_5433_limits),
1407 static const struct of_device_id exynos_drm_gsc_of_match[] = {
1409 .compatible = "samsung,exynos5-gsc",
1410 .data = &gsc_exynos5250_drvdata,
1412 .compatible = "samsung,exynos5250-gsc",
1413 .data = &gsc_exynos5250_drvdata,
1415 .compatible = "samsung,exynos5420-gsc",
1416 .data = &gsc_exynos5420_drvdata,
1418 .compatible = "samsung,exynos5433-gsc",
1419 .data = &gsc_exynos5433_drvdata,
1423 MODULE_DEVICE_TABLE(of, exynos_drm_gsc_of_match);
1425 struct platform_driver gsc_driver = {
1427 .remove = gsc_remove,
1429 .name = "exynos-drm-gsc",
1430 .owner = THIS_MODULE,
1432 .of_match_table = of_match_ptr(exynos_drm_gsc_of_match),