sti_gdp.c 15.2 KB
Newer Older
B
Benjamin Gaignard 已提交
1 2 3 4 5 6 7 8 9 10 11
/*
 * Copyright (C) STMicroelectronics SA 2014
 * Authors: Benjamin Gaignard <benjamin.gaignard@st.com>
 *          Fabien Dessenne <fabien.dessenne@st.com>
 *          for STMicroelectronics.
 * License terms:  GNU General Public License (GPL), version 2
 */

#include <linux/clk.h>
#include <linux/dma-mapping.h>

B
Benjamin Gaignard 已提交
12
#include "sti_compositor.h"
B
Benjamin Gaignard 已提交
13
#include "sti_gdp.h"
14
#include "sti_plane.h"
B
Benjamin Gaignard 已提交
15 16
#include "sti_vtg.h"

17
#define ALPHASWITCH     BIT(6)
B
Benjamin Gaignard 已提交
18
#define ENA_COLOR_FILL  BIT(8)
19
#define BIGNOTLITTLE    BIT(23)
B
Benjamin Gaignard 已提交
20 21 22 23 24 25
#define WAIT_NEXT_VSYNC BIT(31)

/* GDP color formats */
#define GDP_RGB565      0x00
#define GDP_RGB888      0x01
#define GDP_RGB888_32   0x02
26
#define GDP_XBGR8888    (GDP_RGB888_32 | BIGNOTLITTLE | ALPHASWITCH)
B
Benjamin Gaignard 已提交
27 28
#define GDP_ARGB8565    0x04
#define GDP_ARGB8888    0x05
29
#define GDP_ABGR8888	(GDP_ARGB8888 | BIGNOTLITTLE | ALPHASWITCH)
B
Benjamin Gaignard 已提交
30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79
#define GDP_ARGB1555    0x06
#define GDP_ARGB4444    0x07
#define GDP_CLUT8       0x0B
#define GDP_YCBR888     0x10
#define GDP_YCBR422R    0x12
#define GDP_AYCBR8888   0x15

#define GAM_GDP_CTL_OFFSET      0x00
#define GAM_GDP_AGC_OFFSET      0x04
#define GAM_GDP_VPO_OFFSET      0x0C
#define GAM_GDP_VPS_OFFSET      0x10
#define GAM_GDP_PML_OFFSET      0x14
#define GAM_GDP_PMP_OFFSET      0x18
#define GAM_GDP_SIZE_OFFSET     0x1C
#define GAM_GDP_NVN_OFFSET      0x24
#define GAM_GDP_KEY1_OFFSET     0x28
#define GAM_GDP_KEY2_OFFSET     0x2C
#define GAM_GDP_PPT_OFFSET      0x34
#define GAM_GDP_CML_OFFSET      0x3C
#define GAM_GDP_MST_OFFSET      0x68

#define GAM_GDP_ALPHARANGE_255  BIT(5)
#define GAM_GDP_AGC_FULL_RANGE  0x00808080
#define GAM_GDP_PPT_IGNORE      (BIT(1) | BIT(0))
#define GAM_GDP_SIZE_MAX        0x7FF

#define GDP_NODE_NB_BANK	2
#define GDP_NODE_PER_FIELD	2

struct sti_gdp_node {
	u32 gam_gdp_ctl;
	u32 gam_gdp_agc;
	u32 reserved1;
	u32 gam_gdp_vpo;
	u32 gam_gdp_vps;
	u32 gam_gdp_pml;
	u32 gam_gdp_pmp;
	u32 gam_gdp_size;
	u32 reserved2;
	u32 gam_gdp_nvn;
	u32 gam_gdp_key1;
	u32 gam_gdp_key2;
	u32 reserved3;
	u32 gam_gdp_ppt;
	u32 reserved4;
	u32 gam_gdp_cml;
};

struct sti_gdp_node_list {
	struct sti_gdp_node *top_field;
B
Benjamin Gaignard 已提交
80
	dma_addr_t top_field_paddr;
B
Benjamin Gaignard 已提交
81
	struct sti_gdp_node *btm_field;
B
Benjamin Gaignard 已提交
82
	dma_addr_t btm_field_paddr;
B
Benjamin Gaignard 已提交
83 84 85 86 87
};

/**
 * STI GDP structure
 *
V
Vincent Abriou 已提交
88 89 90
 * @sti_plane:          sti_plane structure
 * @dev:                driver device
 * @regs:               gdp registers
B
Benjamin Gaignard 已提交
91
 * @clk_pix:            pixel clock for the current gdp
92 93
 * @clk_main_parent:    gdp parent clock if main path used
 * @clk_aux_parent:     gdp parent clock if aux path used
B
Benjamin Gaignard 已提交
94 95
 * @vtg_field_nb:       callback for VTG FIELD (top or bottom) notification
 * @is_curr_top:        true if the current node processed is the top field
V
Vincent Abriou 已提交
96
 * @node_list:          array of node list
B
Benjamin Gaignard 已提交
97 98
 */
struct sti_gdp {
V
Vincent Abriou 已提交
99 100 101
	struct sti_plane plane;
	struct device *dev;
	void __iomem *regs;
B
Benjamin Gaignard 已提交
102
	struct clk *clk_pix;
103 104
	struct clk *clk_main_parent;
	struct clk *clk_aux_parent;
B
Benjamin Gaignard 已提交
105 106 107 108 109
	struct notifier_block vtg_field_nb;
	bool is_curr_top;
	struct sti_gdp_node_list node_list[GDP_NODE_NB_BANK];
};

V
Vincent Abriou 已提交
110
#define to_sti_gdp(x) container_of(x, struct sti_gdp, plane)
B
Benjamin Gaignard 已提交
111 112 113

static const uint32_t gdp_supported_formats[] = {
	DRM_FORMAT_XRGB8888,
114
	DRM_FORMAT_XBGR8888,
B
Benjamin Gaignard 已提交
115
	DRM_FORMAT_ARGB8888,
116
	DRM_FORMAT_ABGR8888,
B
Benjamin Gaignard 已提交
117 118 119 120 121 122 123 124 125 126
	DRM_FORMAT_ARGB4444,
	DRM_FORMAT_ARGB1555,
	DRM_FORMAT_RGB565,
	DRM_FORMAT_RGB888,
	DRM_FORMAT_AYUV,
	DRM_FORMAT_YUV444,
	DRM_FORMAT_VYUY,
	DRM_FORMAT_C8,
};

V
Vincent Abriou 已提交
127
static const uint32_t *sti_gdp_get_formats(struct sti_plane *plane)
B
Benjamin Gaignard 已提交
128 129 130 131
{
	return gdp_supported_formats;
}

V
Vincent Abriou 已提交
132
static unsigned int sti_gdp_get_nb_formats(struct sti_plane *plane)
B
Benjamin Gaignard 已提交
133 134 135 136 137 138 139 140 141
{
	return ARRAY_SIZE(gdp_supported_formats);
}

static int sti_gdp_fourcc2format(int fourcc)
{
	switch (fourcc) {
	case DRM_FORMAT_XRGB8888:
		return GDP_RGB888_32;
142 143
	case DRM_FORMAT_XBGR8888:
		return GDP_XBGR8888;
B
Benjamin Gaignard 已提交
144 145
	case DRM_FORMAT_ARGB8888:
		return GDP_ARGB8888;
146 147
	case DRM_FORMAT_ABGR8888:
		return GDP_ABGR8888;
B
Benjamin Gaignard 已提交
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173
	case DRM_FORMAT_ARGB4444:
		return GDP_ARGB4444;
	case DRM_FORMAT_ARGB1555:
		return GDP_ARGB1555;
	case DRM_FORMAT_RGB565:
		return GDP_RGB565;
	case DRM_FORMAT_RGB888:
		return GDP_RGB888;
	case DRM_FORMAT_AYUV:
		return GDP_AYCBR8888;
	case DRM_FORMAT_YUV444:
		return GDP_YCBR888;
	case DRM_FORMAT_VYUY:
		return GDP_YCBR422R;
	case DRM_FORMAT_C8:
		return GDP_CLUT8;
	}
	return -1;
}

static int sti_gdp_get_alpharange(int format)
{
	switch (format) {
	case GDP_ARGB8565:
	case GDP_ARGB8888:
	case GDP_AYCBR8888:
174
	case GDP_ABGR8888:
B
Benjamin Gaignard 已提交
175 176 177 178 179 180 181
		return GAM_GDP_ALPHARANGE_255;
	}
	return 0;
}

/**
 * sti_gdp_get_free_nodes
V
Vincent Abriou 已提交
182
 * @plane: gdp plane
B
Benjamin Gaignard 已提交
183 184 185 186 187 188
 *
 * Look for a GDP node list that is not currently read by the HW.
 *
 * RETURNS:
 * Pointer to the free GDP node list
 */
V
Vincent Abriou 已提交
189
static struct sti_gdp_node_list *sti_gdp_get_free_nodes(struct sti_plane *plane)
B
Benjamin Gaignard 已提交
190 191
{
	int hw_nvn;
V
Vincent Abriou 已提交
192
	struct sti_gdp *gdp = to_sti_gdp(plane);
B
Benjamin Gaignard 已提交
193 194
	unsigned int i;

V
Vincent Abriou 已提交
195
	hw_nvn = readl(gdp->regs + GAM_GDP_NVN_OFFSET);
B
Benjamin Gaignard 已提交
196 197 198 199
	if (!hw_nvn)
		goto end;

	for (i = 0; i < GDP_NODE_NB_BANK; i++)
B
Benjamin Gaignard 已提交
200 201
		if ((hw_nvn != gdp->node_list[i].btm_field_paddr) &&
		    (hw_nvn != gdp->node_list[i].top_field_paddr))
B
Benjamin Gaignard 已提交
202 203
			return &gdp->node_list[i];

B
Benjamin Gaignard 已提交
204 205
	/* in hazardious cases restart with the first node */
	DRM_ERROR("inconsistent NVN for %s: 0x%08X\n",
V
Vincent Abriou 已提交
206
			sti_plane_to_str(plane), hw_nvn);
B
Benjamin Gaignard 已提交
207

B
Benjamin Gaignard 已提交
208 209 210 211 212 213
end:
	return &gdp->node_list[0];
}

/**
 * sti_gdp_get_current_nodes
V
Vincent Abriou 已提交
214
 * @plane: GDP plane
B
Benjamin Gaignard 已提交
215 216 217 218 219 220 221
 *
 * Look for GDP nodes that are currently read by the HW.
 *
 * RETURNS:
 * Pointer to the current GDP node list
 */
static
V
Vincent Abriou 已提交
222
struct sti_gdp_node_list *sti_gdp_get_current_nodes(struct sti_plane *plane)
B
Benjamin Gaignard 已提交
223 224
{
	int hw_nvn;
V
Vincent Abriou 已提交
225
	struct sti_gdp *gdp = to_sti_gdp(plane);
B
Benjamin Gaignard 已提交
226 227
	unsigned int i;

V
Vincent Abriou 已提交
228
	hw_nvn = readl(gdp->regs + GAM_GDP_NVN_OFFSET);
B
Benjamin Gaignard 已提交
229 230 231 232
	if (!hw_nvn)
		goto end;

	for (i = 0; i < GDP_NODE_NB_BANK; i++)
B
Benjamin Gaignard 已提交
233 234
		if ((hw_nvn == gdp->node_list[i].btm_field_paddr) ||
				(hw_nvn == gdp->node_list[i].top_field_paddr))
B
Benjamin Gaignard 已提交
235 236 237
			return &gdp->node_list[i];

end:
B
Benjamin Gaignard 已提交
238
	DRM_DEBUG_DRIVER("Warning, NVN 0x%08X for %s does not match any node\n",
V
Vincent Abriou 已提交
239
				hw_nvn, sti_plane_to_str(plane));
B
Benjamin Gaignard 已提交
240

B
Benjamin Gaignard 已提交
241 242 243 244
	return NULL;
}

/**
V
Vincent Abriou 已提交
245 246
 * sti_gdp_prepare
 * @plane: gdp plane
B
Benjamin Gaignard 已提交
247 248
 * @first_prepare: true if it is the first time this function is called
 *
V
Vincent Abriou 已提交
249
 * Update the free GDP node list according to the plane properties.
B
Benjamin Gaignard 已提交
250 251 252 253
 *
 * RETURNS:
 * 0 on success.
 */
V
Vincent Abriou 已提交
254
static int sti_gdp_prepare(struct sti_plane *plane, bool first_prepare)
B
Benjamin Gaignard 已提交
255 256 257
{
	struct sti_gdp_node_list *list;
	struct sti_gdp_node *top_field, *btm_field;
V
Vincent Abriou 已提交
258 259 260
	struct drm_display_mode *mode = plane->mode;
	struct sti_gdp *gdp = to_sti_gdp(plane);
	struct device *dev = gdp->dev;
B
Benjamin Gaignard 已提交
261
	struct sti_compositor *compo = dev_get_drvdata(dev);
B
Benjamin Gaignard 已提交
262 263 264 265 266 267
	int format;
	unsigned int depth, bpp;
	int rate = mode->clock * 1000;
	int res;
	u32 ydo, xdo, yds, xds;

V
Vincent Abriou 已提交
268
	list = sti_gdp_get_free_nodes(plane);
B
Benjamin Gaignard 已提交
269 270 271
	top_field = list->top_field;
	btm_field = list->btm_field;

B
Benjamin Gaignard 已提交
272
	dev_dbg(dev, "%s %s top_node:0x%p btm_node:0x%p\n", __func__,
V
Vincent Abriou 已提交
273
			sti_plane_to_str(plane), top_field, btm_field);
B
Benjamin Gaignard 已提交
274

V
Vincent Abriou 已提交
275
	/* Build the top field from plane params */
B
Benjamin Gaignard 已提交
276 277
	top_field->gam_gdp_agc = GAM_GDP_AGC_FULL_RANGE;
	top_field->gam_gdp_ctl = WAIT_NEXT_VSYNC;
V
Vincent Abriou 已提交
278
	format = sti_gdp_fourcc2format(plane->format);
B
Benjamin Gaignard 已提交
279 280
	if (format == -1) {
		DRM_ERROR("Format not supported by GDP %.4s\n",
V
Vincent Abriou 已提交
281
			  (char *)&plane->format);
B
Benjamin Gaignard 已提交
282 283 284 285 286 287 288
		return 1;
	}
	top_field->gam_gdp_ctl |= format;
	top_field->gam_gdp_ctl |= sti_gdp_get_alpharange(format);
	top_field->gam_gdp_ppt &= ~GAM_GDP_PPT_IGNORE;

	/* pixel memory location */
V
Vincent Abriou 已提交
289 290 291 292
	drm_fb_get_bpp_depth(plane->format, &depth, &bpp);
	top_field->gam_gdp_pml = (u32)plane->paddr + plane->offsets[0];
	top_field->gam_gdp_pml += plane->src_x * (bpp >> 3);
	top_field->gam_gdp_pml += plane->src_y * plane->pitches[0];
B
Benjamin Gaignard 已提交
293 294

	/* input parameters */
V
Vincent Abriou 已提交
295
	top_field->gam_gdp_pmp = plane->pitches[0];
B
Benjamin Gaignard 已提交
296
	top_field->gam_gdp_size =
V
Vincent Abriou 已提交
297 298
	    clamp_val(plane->src_h, 0, GAM_GDP_SIZE_MAX) << 16 |
	    clamp_val(plane->src_w, 0, GAM_GDP_SIZE_MAX);
B
Benjamin Gaignard 已提交
299 300

	/* output parameters */
V
Vincent Abriou 已提交
301 302 303 304
	ydo = sti_vtg_get_line_number(*mode, plane->dst_y);
	yds = sti_vtg_get_line_number(*mode, plane->dst_y + plane->dst_h - 1);
	xdo = sti_vtg_get_pixel_number(*mode, plane->dst_x);
	xds = sti_vtg_get_pixel_number(*mode, plane->dst_x + plane->dst_w - 1);
B
Benjamin Gaignard 已提交
305 306 307 308 309
	top_field->gam_gdp_vpo = (ydo << 16) | xdo;
	top_field->gam_gdp_vps = (yds << 16) | xds;

	/* Same content and chained together */
	memcpy(btm_field, top_field, sizeof(*btm_field));
B
Benjamin Gaignard 已提交
310 311
	top_field->gam_gdp_nvn = list->btm_field_paddr;
	btm_field->gam_gdp_nvn = list->top_field_paddr;
B
Benjamin Gaignard 已提交
312 313

	/* Interlaced mode */
V
Vincent Abriou 已提交
314
	if (plane->mode->flags & DRM_MODE_FLAG_INTERLACE)
B
Benjamin Gaignard 已提交
315
		btm_field->gam_gdp_pml = top_field->gam_gdp_pml +
V
Vincent Abriou 已提交
316
		    plane->pitches[0];
B
Benjamin Gaignard 已提交
317 318

	if (first_prepare) {
B
Benjamin Gaignard 已提交
319
		/* Register gdp callback */
V
Vincent Abriou 已提交
320
		if (sti_vtg_register_client(plane->mixer_id == STI_MIXER_MAIN ?
B
Benjamin Gaignard 已提交
321
				compo->vtg_main : compo->vtg_aux,
V
Vincent Abriou 已提交
322
				&gdp->vtg_field_nb, plane->mixer_id)) {
B
Benjamin Gaignard 已提交
323 324 325 326
			DRM_ERROR("Cannot register VTG notifier\n");
			return 1;
		}

B
Benjamin Gaignard 已提交
327 328
		/* Set and enable gdp clock */
		if (gdp->clk_pix) {
329 330 331
			struct clk *clkp;
			/* According to the mixer used, the gdp pixel clock
			 * should have a different parent clock. */
V
Vincent Abriou 已提交
332
			if (plane->mixer_id == STI_MIXER_MAIN)
333 334 335 336 337 338 339
				clkp = gdp->clk_main_parent;
			else
				clkp = gdp->clk_aux_parent;

			if (clkp)
				clk_set_parent(gdp->clk_pix, clkp);

B
Benjamin Gaignard 已提交
340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357
			res = clk_set_rate(gdp->clk_pix, rate);
			if (res < 0) {
				DRM_ERROR("Cannot set rate (%dHz) for gdp\n",
						rate);
				return 1;
			}

			if (clk_prepare_enable(gdp->clk_pix)) {
				DRM_ERROR("Failed to prepare/enable gdp\n");
				return 1;
			}
		}
	}

	return 0;
}

/**
V
Vincent Abriou 已提交
358 359
 * sti_gdp_commit
 * @plane: gdp plane
B
Benjamin Gaignard 已提交
360 361 362 363 364 365 366 367 368 369 370 371
 *
 * Update the NVN field of the 'right' field of the current GDP node (being
 * used by the HW) with the address of the updated ('free') top field GDP node.
 * - In interlaced mode the 'right' field is the bottom field as we update
 *   frames starting from their top field
 * - In progressive mode, we update both bottom and top fields which are
 *   equal nodes.
 * At the next VSYNC, the updated node list will be used by the HW.
 *
 * RETURNS:
 * 0 on success.
 */
V
Vincent Abriou 已提交
372
static int sti_gdp_commit(struct sti_plane *plane)
B
Benjamin Gaignard 已提交
373
{
V
Vincent Abriou 已提交
374
	struct sti_gdp_node_list *updated_list = sti_gdp_get_free_nodes(plane);
B
Benjamin Gaignard 已提交
375 376
	struct sti_gdp_node *updated_top_node = updated_list->top_field;
	struct sti_gdp_node *updated_btm_node = updated_list->btm_field;
V
Vincent Abriou 已提交
377
	struct sti_gdp *gdp = to_sti_gdp(plane);
B
Benjamin Gaignard 已提交
378 379
	u32 dma_updated_top = updated_list->top_field_paddr;
	u32 dma_updated_btm = updated_list->btm_field_paddr;
V
Vincent Abriou 已提交
380
	struct sti_gdp_node_list *curr_list = sti_gdp_get_current_nodes(plane);
B
Benjamin Gaignard 已提交
381

V
Vincent Abriou 已提交
382 383 384 385 386 387 388 389
	dev_dbg(gdp->dev, "%s %s top/btm_node:0x%p/0x%p\n", __func__,
		sti_plane_to_str(plane),
		updated_top_node, updated_btm_node);
	dev_dbg(gdp->dev, "Current NVN:0x%X\n",
		readl(gdp->regs + GAM_GDP_NVN_OFFSET));
	dev_dbg(gdp->dev, "Posted buff: %lx current buff: %x\n",
		(unsigned long)plane->paddr,
		readl(gdp->regs + GAM_GDP_PML_OFFSET));
B
Benjamin Gaignard 已提交
390 391 392 393

	if (curr_list == NULL) {
		/* First update or invalid node should directly write in the
		 * hw register */
B
Benjamin Gaignard 已提交
394
		DRM_DEBUG_DRIVER("%s first update (or invalid node)",
V
Vincent Abriou 已提交
395
				sti_plane_to_str(plane));
B
Benjamin Gaignard 已提交
396

B
Benjamin Gaignard 已提交
397 398
		writel(gdp->is_curr_top == true ?
				dma_updated_btm : dma_updated_top,
V
Vincent Abriou 已提交
399
				gdp->regs + GAM_GDP_NVN_OFFSET);
B
Benjamin Gaignard 已提交
400 401 402
		return 0;
	}

V
Vincent Abriou 已提交
403
	if (plane->mode->flags & DRM_MODE_FLAG_INTERLACE) {
B
Benjamin Gaignard 已提交
404 405 406 407 408 409 410 411
		if (gdp->is_curr_top == true) {
			/* Do not update in the middle of the frame, but
			 * postpone the update after the bottom field has
			 * been displayed */
			curr_list->btm_field->gam_gdp_nvn = dma_updated_top;
		} else {
			/* Direct update to avoid one frame delay */
			writel(dma_updated_top,
V
Vincent Abriou 已提交
412
				gdp->regs + GAM_GDP_NVN_OFFSET);
B
Benjamin Gaignard 已提交
413 414 415
		}
	} else {
		/* Direct update for progressive to avoid one frame delay */
V
Vincent Abriou 已提交
416
		writel(dma_updated_top, gdp->regs + GAM_GDP_NVN_OFFSET);
B
Benjamin Gaignard 已提交
417 418 419 420 421 422
	}

	return 0;
}

/**
V
Vincent Abriou 已提交
423 424
 * sti_gdp_disable
 * @plane: gdp plane
B
Benjamin Gaignard 已提交
425 426 427 428 429 430
 *
 * Disable a GDP.
 *
 * RETURNS:
 * 0 on success.
 */
V
Vincent Abriou 已提交
431
static int sti_gdp_disable(struct sti_plane *plane)
B
Benjamin Gaignard 已提交
432 433
{
	unsigned int i;
V
Vincent Abriou 已提交
434 435
	struct sti_gdp *gdp = to_sti_gdp(plane);
	struct sti_compositor *compo = dev_get_drvdata(gdp->dev);
B
Benjamin Gaignard 已提交
436

V
Vincent Abriou 已提交
437
	DRM_DEBUG_DRIVER("%s\n", sti_plane_to_str(plane));
B
Benjamin Gaignard 已提交
438 439 440 441 442 443 444

	/* Set the nodes as 'to be ignored on mixer' */
	for (i = 0; i < GDP_NODE_NB_BANK; i++) {
		gdp->node_list[i].top_field->gam_gdp_ppt |= GAM_GDP_PPT_IGNORE;
		gdp->node_list[i].btm_field->gam_gdp_ppt |= GAM_GDP_PPT_IGNORE;
	}

V
Vincent Abriou 已提交
445
	if (sti_vtg_unregister_client(plane->mixer_id == STI_MIXER_MAIN ?
B
Benjamin Gaignard 已提交
446 447 448
			compo->vtg_main : compo->vtg_aux, &gdp->vtg_field_nb))
		DRM_DEBUG_DRIVER("Warning: cannot unregister VTG notifier\n");

B
Benjamin Gaignard 已提交
449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485
	if (gdp->clk_pix)
		clk_disable_unprepare(gdp->clk_pix);

	return 0;
}

/**
 * sti_gdp_field_cb
 * @nb: notifier block
 * @event: event message
 * @data: private data
 *
 * Handle VTG top field and bottom field event.
 *
 * RETURNS:
 * 0 on success.
 */
int sti_gdp_field_cb(struct notifier_block *nb,
		unsigned long event, void *data)
{
	struct sti_gdp *gdp = container_of(nb, struct sti_gdp, vtg_field_nb);

	switch (event) {
	case VTG_TOP_FIELD_EVENT:
		gdp->is_curr_top = true;
		break;
	case VTG_BOTTOM_FIELD_EVENT:
		gdp->is_curr_top = false;
		break;
	default:
		DRM_ERROR("unsupported event: %lu\n", event);
		break;
	}

	return 0;
}

V
Vincent Abriou 已提交
486
static void sti_gdp_init(struct sti_gdp *gdp)
B
Benjamin Gaignard 已提交
487
{
V
Vincent Abriou 已提交
488
	struct device_node *np = gdp->dev->of_node;
B
Benjamin Gaignard 已提交
489
	dma_addr_t dma_addr;
B
Benjamin Gaignard 已提交
490 491 492 493 494 495
	void *base;
	unsigned int i, size;

	/* Allocate all the nodes within a single memory page */
	size = sizeof(struct sti_gdp_node) *
	    GDP_NODE_PER_FIELD * GDP_NODE_NB_BANK;
V
Vincent Abriou 已提交
496 497
	base = dma_alloc_writecombine(gdp->dev,
				      size, &dma_addr, GFP_KERNEL | GFP_DMA);
B
Benjamin Gaignard 已提交
498

B
Benjamin Gaignard 已提交
499 500 501 502 503 504 505
	if (!base) {
		DRM_ERROR("Failed to allocate memory for GDP node\n");
		return;
	}
	memset(base, 0, size);

	for (i = 0; i < GDP_NODE_NB_BANK; i++) {
B
Benjamin Gaignard 已提交
506
		if (dma_addr & 0xF) {
B
Benjamin Gaignard 已提交
507 508 509 510
			DRM_ERROR("Mem alignment failed\n");
			return;
		}
		gdp->node_list[i].top_field = base;
B
Benjamin Gaignard 已提交
511 512
		gdp->node_list[i].top_field_paddr = dma_addr;

B
Benjamin Gaignard 已提交
513 514
		DRM_DEBUG_DRIVER("node[%d].top_field=%p\n", i, base);
		base += sizeof(struct sti_gdp_node);
B
Benjamin Gaignard 已提交
515
		dma_addr += sizeof(struct sti_gdp_node);
B
Benjamin Gaignard 已提交
516

B
Benjamin Gaignard 已提交
517
		if (dma_addr & 0xF) {
B
Benjamin Gaignard 已提交
518 519 520 521
			DRM_ERROR("Mem alignment failed\n");
			return;
		}
		gdp->node_list[i].btm_field = base;
B
Benjamin Gaignard 已提交
522
		gdp->node_list[i].btm_field_paddr = dma_addr;
B
Benjamin Gaignard 已提交
523 524
		DRM_DEBUG_DRIVER("node[%d].btm_field=%p\n", i, base);
		base += sizeof(struct sti_gdp_node);
B
Benjamin Gaignard 已提交
525
		dma_addr += sizeof(struct sti_gdp_node);
B
Benjamin Gaignard 已提交
526 527 528 529 530 531
	}

	if (of_device_is_compatible(np, "st,stih407-compositor")) {
		/* GDP of STiH407 chip have its own pixel clock */
		char *clk_name;

V
Vincent Abriou 已提交
532
		switch (gdp->plane.desc) {
B
Benjamin Gaignard 已提交
533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549
		case STI_GDP_0:
			clk_name = "pix_gdp1";
			break;
		case STI_GDP_1:
			clk_name = "pix_gdp2";
			break;
		case STI_GDP_2:
			clk_name = "pix_gdp3";
			break;
		case STI_GDP_3:
			clk_name = "pix_gdp4";
			break;
		default:
			DRM_ERROR("GDP id not recognized\n");
			return;
		}

V
Vincent Abriou 已提交
550
		gdp->clk_pix = devm_clk_get(gdp->dev, clk_name);
B
Benjamin Gaignard 已提交
551 552
		if (IS_ERR(gdp->clk_pix))
			DRM_ERROR("Cannot get %s clock\n", clk_name);
553

V
Vincent Abriou 已提交
554
		gdp->clk_main_parent = devm_clk_get(gdp->dev, "main_parent");
555 556 557
		if (IS_ERR(gdp->clk_main_parent))
			DRM_ERROR("Cannot get main_parent clock\n");

V
Vincent Abriou 已提交
558
		gdp->clk_aux_parent = devm_clk_get(gdp->dev, "aux_parent");
559 560
		if (IS_ERR(gdp->clk_aux_parent))
			DRM_ERROR("Cannot get aux_parent clock\n");
B
Benjamin Gaignard 已提交
561 562 563
	}
}

V
Vincent Abriou 已提交
564
static const struct sti_plane_funcs gdp_plane_ops = {
B
Benjamin Gaignard 已提交
565 566
	.get_formats = sti_gdp_get_formats,
	.get_nb_formats = sti_gdp_get_nb_formats,
V
Vincent Abriou 已提交
567 568 569
	.prepare = sti_gdp_prepare,
	.commit = sti_gdp_commit,
	.disable = sti_gdp_disable,
B
Benjamin Gaignard 已提交
570 571
};

V
Vincent Abriou 已提交
572 573
struct sti_plane *sti_gdp_create(struct device *dev, int desc,
				 void __iomem *baseaddr)
B
Benjamin Gaignard 已提交
574 575 576 577 578 579 580 581 582
{
	struct sti_gdp *gdp;

	gdp = devm_kzalloc(dev, sizeof(*gdp), GFP_KERNEL);
	if (!gdp) {
		DRM_ERROR("Failed to allocate memory for GDP\n");
		return NULL;
	}

V
Vincent Abriou 已提交
583 584 585 586 587
	gdp->dev = dev;
	gdp->regs = baseaddr;
	gdp->plane.desc = desc;
	gdp->plane.ops = &gdp_plane_ops;

B
Benjamin Gaignard 已提交
588 589
	gdp->vtg_field_nb.notifier_call = sti_gdp_field_cb;

V
Vincent Abriou 已提交
590 591 592
	sti_gdp_init(gdp);

	return &gdp->plane;
B
Benjamin Gaignard 已提交
593
}