Loading...
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright © 2018 Broadcom
4 *
5 * Authors:
6 * Eric Anholt <eric@anholt.net>
7 * Boris Brezillon <boris.brezillon@bootlin.com>
8 */
9
10#include <linux/clk.h>
11#include <linux/component.h>
12#include <linux/of_graph.h>
13#include <linux/of_platform.h>
14#include <linux/pm_runtime.h>
15
16#include <drm/drm_atomic_helper.h>
17#include <drm/drm_edid.h>
18#include <drm/drm_fb_cma_helper.h>
19#include <drm/drm_fourcc.h>
20#include <drm/drm_panel.h>
21#include <drm/drm_probe_helper.h>
22#include <drm/drm_writeback.h>
23
24#include "vc4_drv.h"
25#include "vc4_regs.h"
26
27/* Base address of the output. Raster formats must be 4-byte aligned,
28 * T and LT must be 16-byte aligned or maybe utile-aligned (docs are
29 * inconsistent, but probably utile).
30 */
31#define TXP_DST_PTR 0x00
32
33/* Pitch in bytes for raster images, 16-byte aligned. For tiled, it's
34 * the width in tiles.
35 */
36#define TXP_DST_PITCH 0x04
37/* For T-tiled imgaes, DST_PITCH should be the number of tiles wide,
38 * shifted up.
39 */
40# define TXP_T_TILE_WIDTH_SHIFT 7
41/* For LT-tiled images, DST_PITCH should be the number of utiles wide,
42 * shifted up.
43 */
44# define TXP_LT_TILE_WIDTH_SHIFT 4
45
46/* Pre-rotation width/height of the image. Must match HVS config.
47 *
48 * If TFORMAT and 32-bit, limit is 1920 for 32-bit and 3840 to 16-bit
49 * and width/height must be tile or utile-aligned as appropriate. If
50 * transposing (rotating), width is limited to 1920.
51 *
52 * Height is limited to various numbers between 4088 and 4095. I'd
53 * just use 4088 to be safe.
54 */
55#define TXP_DIM 0x08
56# define TXP_HEIGHT_SHIFT 16
57# define TXP_HEIGHT_MASK GENMASK(31, 16)
58# define TXP_WIDTH_SHIFT 0
59# define TXP_WIDTH_MASK GENMASK(15, 0)
60
61#define TXP_DST_CTRL 0x0c
62/* These bits are set to 0x54 */
63#define TXP_PILOT_SHIFT 24
64#define TXP_PILOT_MASK GENMASK(31, 24)
65/* Bits 22-23 are set to 0x01 */
66#define TXP_VERSION_SHIFT 22
67#define TXP_VERSION_MASK GENMASK(23, 22)
68
69/* Powers down the internal memory. */
70# define TXP_POWERDOWN BIT(21)
71
72/* Enables storing the alpha component in 8888/4444, instead of
73 * filling with ~ALPHA_INVERT.
74 */
75# define TXP_ALPHA_ENABLE BIT(20)
76
77/* 4 bits, each enables stores for a channel in each set of 4 bytes.
78 * Set to 0xf for normal operation.
79 */
80# define TXP_BYTE_ENABLE_SHIFT 16
81# define TXP_BYTE_ENABLE_MASK GENMASK(19, 16)
82
83/* Debug: Generate VSTART again at EOF. */
84# define TXP_VSTART_AT_EOF BIT(15)
85
86/* Debug: Terminate the current frame immediately. Stops AXI
87 * writes.
88 */
89# define TXP_ABORT BIT(14)
90
91# define TXP_DITHER BIT(13)
92
93/* Inverts alpha if TXP_ALPHA_ENABLE, chooses fill value for
94 * !TXP_ALPHA_ENABLE.
95 */
96# define TXP_ALPHA_INVERT BIT(12)
97
98/* Note: I've listed the channels here in high bit (in byte 3/2/1) to
99 * low bit (in byte 0) order.
100 */
101# define TXP_FORMAT_SHIFT 8
102# define TXP_FORMAT_MASK GENMASK(11, 8)
103# define TXP_FORMAT_ABGR4444 0
104# define TXP_FORMAT_ARGB4444 1
105# define TXP_FORMAT_BGRA4444 2
106# define TXP_FORMAT_RGBA4444 3
107# define TXP_FORMAT_BGR565 6
108# define TXP_FORMAT_RGB565 7
109/* 888s are non-rotated, raster-only */
110# define TXP_FORMAT_BGR888 8
111# define TXP_FORMAT_RGB888 9
112# define TXP_FORMAT_ABGR8888 12
113# define TXP_FORMAT_ARGB8888 13
114# define TXP_FORMAT_BGRA8888 14
115# define TXP_FORMAT_RGBA8888 15
116
117/* If TFORMAT is set, generates LT instead of T format. */
118# define TXP_LINEAR_UTILE BIT(7)
119
120/* Rotate output by 90 degrees. */
121# define TXP_TRANSPOSE BIT(6)
122
123/* Generate a tiled format for V3D. */
124# define TXP_TFORMAT BIT(5)
125
126/* Generates some undefined test mode output. */
127# define TXP_TEST_MODE BIT(4)
128
129/* Request odd field from HVS. */
130# define TXP_FIELD BIT(3)
131
132/* Raise interrupt when idle. */
133# define TXP_EI BIT(2)
134
135/* Set when generating a frame, clears when idle. */
136# define TXP_BUSY BIT(1)
137
138/* Starts a frame. Self-clearing. */
139# define TXP_GO BIT(0)
140
141/* Number of lines received and committed to memory. */
142#define TXP_PROGRESS 0x10
143
144#define TXP_READ(offset) readl(txp->regs + (offset))
145#define TXP_WRITE(offset, val) writel(val, txp->regs + (offset))
146
147struct vc4_txp {
148 struct platform_device *pdev;
149
150 struct drm_writeback_connector connector;
151
152 void __iomem *regs;
153 struct debugfs_regset32 regset;
154};
155
156static inline struct vc4_txp *encoder_to_vc4_txp(struct drm_encoder *encoder)
157{
158 return container_of(encoder, struct vc4_txp, connector.encoder);
159}
160
161static inline struct vc4_txp *connector_to_vc4_txp(struct drm_connector *conn)
162{
163 return container_of(conn, struct vc4_txp, connector.base);
164}
165
166static const struct debugfs_reg32 txp_regs[] = {
167 VC4_REG32(TXP_DST_PTR),
168 VC4_REG32(TXP_DST_PITCH),
169 VC4_REG32(TXP_DIM),
170 VC4_REG32(TXP_DST_CTRL),
171 VC4_REG32(TXP_PROGRESS),
172};
173
174static int vc4_txp_connector_get_modes(struct drm_connector *connector)
175{
176 struct drm_device *dev = connector->dev;
177
178 return drm_add_modes_noedid(connector, dev->mode_config.max_width,
179 dev->mode_config.max_height);
180}
181
182static enum drm_mode_status
183vc4_txp_connector_mode_valid(struct drm_connector *connector,
184 struct drm_display_mode *mode)
185{
186 struct drm_device *dev = connector->dev;
187 struct drm_mode_config *mode_config = &dev->mode_config;
188 int w = mode->hdisplay, h = mode->vdisplay;
189
190 if (w < mode_config->min_width || w > mode_config->max_width)
191 return MODE_BAD_HVALUE;
192
193 if (h < mode_config->min_height || h > mode_config->max_height)
194 return MODE_BAD_VVALUE;
195
196 return MODE_OK;
197}
198
199static const u32 drm_fmts[] = {
200 DRM_FORMAT_RGB888,
201 DRM_FORMAT_BGR888,
202 DRM_FORMAT_XRGB8888,
203 DRM_FORMAT_XBGR8888,
204 DRM_FORMAT_ARGB8888,
205 DRM_FORMAT_ABGR8888,
206 DRM_FORMAT_RGBX8888,
207 DRM_FORMAT_BGRX8888,
208 DRM_FORMAT_RGBA8888,
209 DRM_FORMAT_BGRA8888,
210};
211
212static const u32 txp_fmts[] = {
213 TXP_FORMAT_RGB888,
214 TXP_FORMAT_BGR888,
215 TXP_FORMAT_ARGB8888,
216 TXP_FORMAT_ABGR8888,
217 TXP_FORMAT_ARGB8888,
218 TXP_FORMAT_ABGR8888,
219 TXP_FORMAT_RGBA8888,
220 TXP_FORMAT_BGRA8888,
221 TXP_FORMAT_RGBA8888,
222 TXP_FORMAT_BGRA8888,
223};
224
225static int vc4_txp_connector_atomic_check(struct drm_connector *conn,
226 struct drm_atomic_state *state)
227{
228 struct drm_connector_state *conn_state;
229 struct drm_crtc_state *crtc_state;
230 struct drm_framebuffer *fb;
231 int i;
232
233 conn_state = drm_atomic_get_new_connector_state(state, conn);
234 if (!conn_state->writeback_job)
235 return 0;
236
237 crtc_state = drm_atomic_get_new_crtc_state(state, conn_state->crtc);
238
239 fb = conn_state->writeback_job->fb;
240 if (fb->width != crtc_state->mode.hdisplay ||
241 fb->height != crtc_state->mode.vdisplay) {
242 DRM_DEBUG_KMS("Invalid framebuffer size %ux%u\n",
243 fb->width, fb->height);
244 return -EINVAL;
245 }
246
247 for (i = 0; i < ARRAY_SIZE(drm_fmts); i++) {
248 if (fb->format->format == drm_fmts[i])
249 break;
250 }
251
252 if (i == ARRAY_SIZE(drm_fmts))
253 return -EINVAL;
254
255 /* Pitch must be aligned on 16 bytes. */
256 if (fb->pitches[0] & GENMASK(3, 0))
257 return -EINVAL;
258
259 vc4_crtc_txp_armed(crtc_state);
260
261 return 0;
262}
263
264static void vc4_txp_connector_atomic_commit(struct drm_connector *conn,
265 struct drm_connector_state *conn_state)
266{
267 struct vc4_txp *txp = connector_to_vc4_txp(conn);
268 struct drm_gem_cma_object *gem;
269 struct drm_display_mode *mode;
270 struct drm_framebuffer *fb;
271 u32 ctrl;
272 int i;
273
274 if (WARN_ON(!conn_state->writeback_job))
275 return;
276
277 mode = &conn_state->crtc->state->adjusted_mode;
278 fb = conn_state->writeback_job->fb;
279
280 for (i = 0; i < ARRAY_SIZE(drm_fmts); i++) {
281 if (fb->format->format == drm_fmts[i])
282 break;
283 }
284
285 if (WARN_ON(i == ARRAY_SIZE(drm_fmts)))
286 return;
287
288 ctrl = TXP_GO | TXP_VSTART_AT_EOF | TXP_EI |
289 VC4_SET_FIELD(0xf, TXP_BYTE_ENABLE) |
290 VC4_SET_FIELD(txp_fmts[i], TXP_FORMAT);
291
292 if (fb->format->has_alpha)
293 ctrl |= TXP_ALPHA_ENABLE;
294
295 gem = drm_fb_cma_get_gem_obj(fb, 0);
296 TXP_WRITE(TXP_DST_PTR, gem->paddr + fb->offsets[0]);
297 TXP_WRITE(TXP_DST_PITCH, fb->pitches[0]);
298 TXP_WRITE(TXP_DIM,
299 VC4_SET_FIELD(mode->hdisplay, TXP_WIDTH) |
300 VC4_SET_FIELD(mode->vdisplay, TXP_HEIGHT));
301
302 TXP_WRITE(TXP_DST_CTRL, ctrl);
303
304 drm_writeback_queue_job(&txp->connector, conn_state);
305}
306
307static const struct drm_connector_helper_funcs vc4_txp_connector_helper_funcs = {
308 .get_modes = vc4_txp_connector_get_modes,
309 .mode_valid = vc4_txp_connector_mode_valid,
310 .atomic_check = vc4_txp_connector_atomic_check,
311 .atomic_commit = vc4_txp_connector_atomic_commit,
312};
313
314static enum drm_connector_status
315vc4_txp_connector_detect(struct drm_connector *connector, bool force)
316{
317 return connector_status_connected;
318}
319
320static void vc4_txp_connector_destroy(struct drm_connector *connector)
321{
322 drm_connector_unregister(connector);
323 drm_connector_cleanup(connector);
324}
325
326static const struct drm_connector_funcs vc4_txp_connector_funcs = {
327 .detect = vc4_txp_connector_detect,
328 .fill_modes = drm_helper_probe_single_connector_modes,
329 .destroy = vc4_txp_connector_destroy,
330 .reset = drm_atomic_helper_connector_reset,
331 .atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
332 .atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
333};
334
335static void vc4_txp_encoder_disable(struct drm_encoder *encoder)
336{
337 struct vc4_txp *txp = encoder_to_vc4_txp(encoder);
338
339 if (TXP_READ(TXP_DST_CTRL) & TXP_BUSY) {
340 unsigned long timeout = jiffies + msecs_to_jiffies(1000);
341
342 TXP_WRITE(TXP_DST_CTRL, TXP_ABORT);
343
344 while (TXP_READ(TXP_DST_CTRL) & TXP_BUSY &&
345 time_before(jiffies, timeout))
346 ;
347
348 WARN_ON(TXP_READ(TXP_DST_CTRL) & TXP_BUSY);
349 }
350
351 TXP_WRITE(TXP_DST_CTRL, TXP_POWERDOWN);
352}
353
354static const struct drm_encoder_helper_funcs vc4_txp_encoder_helper_funcs = {
355 .disable = vc4_txp_encoder_disable,
356};
357
358static irqreturn_t vc4_txp_interrupt(int irq, void *data)
359{
360 struct vc4_txp *txp = data;
361
362 TXP_WRITE(TXP_DST_CTRL, TXP_READ(TXP_DST_CTRL) & ~TXP_EI);
363 vc4_crtc_handle_vblank(to_vc4_crtc(txp->connector.base.state->crtc));
364 drm_writeback_signal_completion(&txp->connector, 0);
365
366 return IRQ_HANDLED;
367}
368
369static int vc4_txp_bind(struct device *dev, struct device *master, void *data)
370{
371 struct platform_device *pdev = to_platform_device(dev);
372 struct drm_device *drm = dev_get_drvdata(master);
373 struct vc4_dev *vc4 = to_vc4_dev(drm);
374 struct vc4_txp *txp;
375 int ret, irq;
376
377 irq = platform_get_irq(pdev, 0);
378 if (irq < 0)
379 return irq;
380
381 txp = devm_kzalloc(dev, sizeof(*txp), GFP_KERNEL);
382 if (!txp)
383 return -ENOMEM;
384
385 txp->pdev = pdev;
386
387 txp->regs = vc4_ioremap_regs(pdev, 0);
388 if (IS_ERR(txp->regs))
389 return PTR_ERR(txp->regs);
390 txp->regset.base = txp->regs;
391 txp->regset.regs = txp_regs;
392 txp->regset.nregs = ARRAY_SIZE(txp_regs);
393
394 drm_connector_helper_add(&txp->connector.base,
395 &vc4_txp_connector_helper_funcs);
396 ret = drm_writeback_connector_init(drm, &txp->connector,
397 &vc4_txp_connector_funcs,
398 &vc4_txp_encoder_helper_funcs,
399 drm_fmts, ARRAY_SIZE(drm_fmts));
400 if (ret)
401 return ret;
402
403 ret = devm_request_irq(dev, irq, vc4_txp_interrupt, 0,
404 dev_name(dev), txp);
405 if (ret)
406 return ret;
407
408 dev_set_drvdata(dev, txp);
409 vc4->txp = txp;
410
411 vc4_debugfs_add_regset32(drm, "txp_regs", &txp->regset);
412
413 return 0;
414}
415
416static void vc4_txp_unbind(struct device *dev, struct device *master,
417 void *data)
418{
419 struct drm_device *drm = dev_get_drvdata(master);
420 struct vc4_dev *vc4 = to_vc4_dev(drm);
421 struct vc4_txp *txp = dev_get_drvdata(dev);
422
423 vc4_txp_connector_destroy(&txp->connector.base);
424
425 vc4->txp = NULL;
426}
427
428static const struct component_ops vc4_txp_ops = {
429 .bind = vc4_txp_bind,
430 .unbind = vc4_txp_unbind,
431};
432
433static int vc4_txp_probe(struct platform_device *pdev)
434{
435 return component_add(&pdev->dev, &vc4_txp_ops);
436}
437
438static int vc4_txp_remove(struct platform_device *pdev)
439{
440 component_del(&pdev->dev, &vc4_txp_ops);
441 return 0;
442}
443
444static const struct of_device_id vc4_txp_dt_match[] = {
445 { .compatible = "brcm,bcm2835-txp" },
446 { /* sentinel */ },
447};
448
449struct platform_driver vc4_txp_driver = {
450 .probe = vc4_txp_probe,
451 .remove = vc4_txp_remove,
452 .driver = {
453 .name = "vc4_txp",
454 .of_match_table = vc4_txp_dt_match,
455 },
456};
1// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright © 2018 Broadcom
4 *
5 * Authors:
6 * Eric Anholt <eric@anholt.net>
7 * Boris Brezillon <boris.brezillon@bootlin.com>
8 */
9
10#include <linux/clk.h>
11#include <linux/component.h>
12#include <linux/of_graph.h>
13#include <linux/of_platform.h>
14#include <linux/pm_runtime.h>
15
16#include <drm/drm_atomic.h>
17#include <drm/drm_atomic_helper.h>
18#include <drm/drm_drv.h>
19#include <drm/drm_edid.h>
20#include <drm/drm_fb_dma_helper.h>
21#include <drm/drm_fourcc.h>
22#include <drm/drm_framebuffer.h>
23#include <drm/drm_panel.h>
24#include <drm/drm_probe_helper.h>
25#include <drm/drm_vblank.h>
26#include <drm/drm_writeback.h>
27
28#include "vc4_drv.h"
29#include "vc4_regs.h"
30
31/* Base address of the output. Raster formats must be 4-byte aligned,
32 * T and LT must be 16-byte aligned or maybe utile-aligned (docs are
33 * inconsistent, but probably utile).
34 */
35#define TXP_DST_PTR 0x00
36
37/* Pitch in bytes for raster images, 16-byte aligned. For tiled, it's
38 * the width in tiles.
39 */
40#define TXP_DST_PITCH 0x04
41/* For T-tiled imgaes, DST_PITCH should be the number of tiles wide,
42 * shifted up.
43 */
44# define TXP_T_TILE_WIDTH_SHIFT 7
45/* For LT-tiled images, DST_PITCH should be the number of utiles wide,
46 * shifted up.
47 */
48# define TXP_LT_TILE_WIDTH_SHIFT 4
49
50/* Pre-rotation width/height of the image. Must match HVS config.
51 *
52 * If TFORMAT and 32-bit, limit is 1920 for 32-bit and 3840 to 16-bit
53 * and width/height must be tile or utile-aligned as appropriate. If
54 * transposing (rotating), width is limited to 1920.
55 *
56 * Height is limited to various numbers between 4088 and 4095. I'd
57 * just use 4088 to be safe.
58 */
59#define TXP_DIM 0x08
60# define TXP_HEIGHT_SHIFT 16
61# define TXP_HEIGHT_MASK GENMASK(31, 16)
62# define TXP_WIDTH_SHIFT 0
63# define TXP_WIDTH_MASK GENMASK(15, 0)
64
65#define TXP_DST_CTRL 0x0c
66/* These bits are set to 0x54 */
67#define TXP_PILOT_SHIFT 24
68#define TXP_PILOT_MASK GENMASK(31, 24)
69/* Bits 22-23 are set to 0x01 */
70#define TXP_VERSION_SHIFT 22
71#define TXP_VERSION_MASK GENMASK(23, 22)
72
73/* Powers down the internal memory. */
74# define TXP_POWERDOWN BIT(21)
75
76/* Enables storing the alpha component in 8888/4444, instead of
77 * filling with ~ALPHA_INVERT.
78 */
79# define TXP_ALPHA_ENABLE BIT(20)
80
81/* 4 bits, each enables stores for a channel in each set of 4 bytes.
82 * Set to 0xf for normal operation.
83 */
84# define TXP_BYTE_ENABLE_SHIFT 16
85# define TXP_BYTE_ENABLE_MASK GENMASK(19, 16)
86
87/* Debug: Generate VSTART again at EOF. */
88# define TXP_VSTART_AT_EOF BIT(15)
89
90/* Debug: Terminate the current frame immediately. Stops AXI
91 * writes.
92 */
93# define TXP_ABORT BIT(14)
94
95# define TXP_DITHER BIT(13)
96
97/* Inverts alpha if TXP_ALPHA_ENABLE, chooses fill value for
98 * !TXP_ALPHA_ENABLE.
99 */
100# define TXP_ALPHA_INVERT BIT(12)
101
102/* Note: I've listed the channels here in high bit (in byte 3/2/1) to
103 * low bit (in byte 0) order.
104 */
105# define TXP_FORMAT_SHIFT 8
106# define TXP_FORMAT_MASK GENMASK(11, 8)
107# define TXP_FORMAT_ABGR4444 0
108# define TXP_FORMAT_ARGB4444 1
109# define TXP_FORMAT_BGRA4444 2
110# define TXP_FORMAT_RGBA4444 3
111# define TXP_FORMAT_BGR565 6
112# define TXP_FORMAT_RGB565 7
113/* 888s are non-rotated, raster-only */
114# define TXP_FORMAT_BGR888 8
115# define TXP_FORMAT_RGB888 9
116# define TXP_FORMAT_ABGR8888 12
117# define TXP_FORMAT_ARGB8888 13
118# define TXP_FORMAT_BGRA8888 14
119# define TXP_FORMAT_RGBA8888 15
120
121/* If TFORMAT is set, generates LT instead of T format. */
122# define TXP_LINEAR_UTILE BIT(7)
123
124/* Rotate output by 90 degrees. */
125# define TXP_TRANSPOSE BIT(6)
126
127/* Generate a tiled format for V3D. */
128# define TXP_TFORMAT BIT(5)
129
130/* Generates some undefined test mode output. */
131# define TXP_TEST_MODE BIT(4)
132
133/* Request odd field from HVS. */
134# define TXP_FIELD BIT(3)
135
136/* Raise interrupt when idle. */
137# define TXP_EI BIT(2)
138
139/* Set when generating a frame, clears when idle. */
140# define TXP_BUSY BIT(1)
141
142/* Starts a frame. Self-clearing. */
143# define TXP_GO BIT(0)
144
145/* Number of lines received and committed to memory. */
146#define TXP_PROGRESS 0x10
147
148#define TXP_READ(offset) readl(txp->regs + (offset))
149#define TXP_WRITE(offset, val) writel(val, txp->regs + (offset))
150
151struct vc4_txp {
152 struct vc4_crtc base;
153
154 struct platform_device *pdev;
155
156 struct drm_writeback_connector connector;
157
158 void __iomem *regs;
159};
160
161static inline struct vc4_txp *encoder_to_vc4_txp(struct drm_encoder *encoder)
162{
163 return container_of(encoder, struct vc4_txp, connector.encoder);
164}
165
166static inline struct vc4_txp *connector_to_vc4_txp(struct drm_connector *conn)
167{
168 return container_of(conn, struct vc4_txp, connector.base);
169}
170
171static const struct debugfs_reg32 txp_regs[] = {
172 VC4_REG32(TXP_DST_PTR),
173 VC4_REG32(TXP_DST_PITCH),
174 VC4_REG32(TXP_DIM),
175 VC4_REG32(TXP_DST_CTRL),
176 VC4_REG32(TXP_PROGRESS),
177};
178
179static int vc4_txp_connector_get_modes(struct drm_connector *connector)
180{
181 struct drm_device *dev = connector->dev;
182
183 return drm_add_modes_noedid(connector, dev->mode_config.max_width,
184 dev->mode_config.max_height);
185}
186
187static enum drm_mode_status
188vc4_txp_connector_mode_valid(struct drm_connector *connector,
189 struct drm_display_mode *mode)
190{
191 struct drm_device *dev = connector->dev;
192 struct drm_mode_config *mode_config = &dev->mode_config;
193 int w = mode->hdisplay, h = mode->vdisplay;
194
195 if (w < mode_config->min_width || w > mode_config->max_width)
196 return MODE_BAD_HVALUE;
197
198 if (h < mode_config->min_height || h > mode_config->max_height)
199 return MODE_BAD_VVALUE;
200
201 return MODE_OK;
202}
203
204static const u32 drm_fmts[] = {
205 DRM_FORMAT_RGB888,
206 DRM_FORMAT_BGR888,
207 DRM_FORMAT_XRGB8888,
208 DRM_FORMAT_XBGR8888,
209 DRM_FORMAT_ARGB8888,
210 DRM_FORMAT_ABGR8888,
211 DRM_FORMAT_RGBX8888,
212 DRM_FORMAT_BGRX8888,
213 DRM_FORMAT_RGBA8888,
214 DRM_FORMAT_BGRA8888,
215};
216
217static const u32 txp_fmts[] = {
218 TXP_FORMAT_RGB888,
219 TXP_FORMAT_BGR888,
220 TXP_FORMAT_ARGB8888,
221 TXP_FORMAT_ABGR8888,
222 TXP_FORMAT_ARGB8888,
223 TXP_FORMAT_ABGR8888,
224 TXP_FORMAT_RGBA8888,
225 TXP_FORMAT_BGRA8888,
226 TXP_FORMAT_RGBA8888,
227 TXP_FORMAT_BGRA8888,
228};
229
230static void vc4_txp_armed(struct drm_crtc_state *state)
231{
232 struct vc4_crtc_state *vc4_state = to_vc4_crtc_state(state);
233
234 vc4_state->txp_armed = true;
235}
236
237static int vc4_txp_connector_atomic_check(struct drm_connector *conn,
238 struct drm_atomic_state *state)
239{
240 struct drm_connector_state *conn_state;
241 struct drm_crtc_state *crtc_state;
242 struct drm_framebuffer *fb;
243 int i;
244
245 conn_state = drm_atomic_get_new_connector_state(state, conn);
246 if (!conn_state->writeback_job)
247 return 0;
248
249 crtc_state = drm_atomic_get_new_crtc_state(state, conn_state->crtc);
250
251 fb = conn_state->writeback_job->fb;
252 if (fb->width != crtc_state->mode.hdisplay ||
253 fb->height != crtc_state->mode.vdisplay) {
254 DRM_DEBUG_KMS("Invalid framebuffer size %ux%u\n",
255 fb->width, fb->height);
256 return -EINVAL;
257 }
258
259 for (i = 0; i < ARRAY_SIZE(drm_fmts); i++) {
260 if (fb->format->format == drm_fmts[i])
261 break;
262 }
263
264 if (i == ARRAY_SIZE(drm_fmts))
265 return -EINVAL;
266
267 /* Pitch must be aligned on 16 bytes. */
268 if (fb->pitches[0] & GENMASK(3, 0))
269 return -EINVAL;
270
271 vc4_txp_armed(crtc_state);
272
273 return 0;
274}
275
276static void vc4_txp_connector_atomic_commit(struct drm_connector *conn,
277 struct drm_atomic_state *state)
278{
279 struct drm_device *drm = conn->dev;
280 struct drm_connector_state *conn_state = drm_atomic_get_new_connector_state(state,
281 conn);
282 struct vc4_txp *txp = connector_to_vc4_txp(conn);
283 struct drm_gem_dma_object *gem;
284 struct drm_display_mode *mode;
285 struct drm_framebuffer *fb;
286 u32 ctrl;
287 int idx;
288 int i;
289
290 if (WARN_ON(!conn_state->writeback_job))
291 return;
292
293 mode = &conn_state->crtc->state->adjusted_mode;
294 fb = conn_state->writeback_job->fb;
295
296 for (i = 0; i < ARRAY_SIZE(drm_fmts); i++) {
297 if (fb->format->format == drm_fmts[i])
298 break;
299 }
300
301 if (WARN_ON(i == ARRAY_SIZE(drm_fmts)))
302 return;
303
304 ctrl = TXP_GO | TXP_EI |
305 VC4_SET_FIELD(0xf, TXP_BYTE_ENABLE) |
306 VC4_SET_FIELD(txp_fmts[i], TXP_FORMAT);
307
308 if (fb->format->has_alpha)
309 ctrl |= TXP_ALPHA_ENABLE;
310 else
311 /*
312 * If TXP_ALPHA_ENABLE isn't set and TXP_ALPHA_INVERT is, the
313 * hardware will force the output padding to be 0xff.
314 */
315 ctrl |= TXP_ALPHA_INVERT;
316
317 if (!drm_dev_enter(drm, &idx))
318 return;
319
320 gem = drm_fb_dma_get_gem_obj(fb, 0);
321 TXP_WRITE(TXP_DST_PTR, gem->dma_addr + fb->offsets[0]);
322 TXP_WRITE(TXP_DST_PITCH, fb->pitches[0]);
323 TXP_WRITE(TXP_DIM,
324 VC4_SET_FIELD(mode->hdisplay, TXP_WIDTH) |
325 VC4_SET_FIELD(mode->vdisplay, TXP_HEIGHT));
326
327 TXP_WRITE(TXP_DST_CTRL, ctrl);
328
329 drm_writeback_queue_job(&txp->connector, conn_state);
330
331 drm_dev_exit(idx);
332}
333
334static const struct drm_connector_helper_funcs vc4_txp_connector_helper_funcs = {
335 .get_modes = vc4_txp_connector_get_modes,
336 .mode_valid = vc4_txp_connector_mode_valid,
337 .atomic_check = vc4_txp_connector_atomic_check,
338 .atomic_commit = vc4_txp_connector_atomic_commit,
339};
340
341static enum drm_connector_status
342vc4_txp_connector_detect(struct drm_connector *connector, bool force)
343{
344 return connector_status_connected;
345}
346
347static const struct drm_connector_funcs vc4_txp_connector_funcs = {
348 .detect = vc4_txp_connector_detect,
349 .fill_modes = drm_helper_probe_single_connector_modes,
350 .destroy = drm_connector_cleanup,
351 .reset = drm_atomic_helper_connector_reset,
352 .atomic_duplicate_state = drm_atomic_helper_connector_duplicate_state,
353 .atomic_destroy_state = drm_atomic_helper_connector_destroy_state,
354};
355
356static void vc4_txp_encoder_disable(struct drm_encoder *encoder)
357{
358 struct drm_device *drm = encoder->dev;
359 struct vc4_txp *txp = encoder_to_vc4_txp(encoder);
360 int idx;
361
362 if (!drm_dev_enter(drm, &idx))
363 return;
364
365 if (TXP_READ(TXP_DST_CTRL) & TXP_BUSY) {
366 unsigned long timeout = jiffies + msecs_to_jiffies(1000);
367
368 TXP_WRITE(TXP_DST_CTRL, TXP_ABORT);
369
370 while (TXP_READ(TXP_DST_CTRL) & TXP_BUSY &&
371 time_before(jiffies, timeout))
372 ;
373
374 WARN_ON(TXP_READ(TXP_DST_CTRL) & TXP_BUSY);
375 }
376
377 TXP_WRITE(TXP_DST_CTRL, TXP_POWERDOWN);
378
379 drm_dev_exit(idx);
380}
381
382static const struct drm_encoder_helper_funcs vc4_txp_encoder_helper_funcs = {
383 .disable = vc4_txp_encoder_disable,
384};
385
386static int vc4_txp_enable_vblank(struct drm_crtc *crtc)
387{
388 return 0;
389}
390
391static void vc4_txp_disable_vblank(struct drm_crtc *crtc) {}
392
393static const struct drm_crtc_funcs vc4_txp_crtc_funcs = {
394 .set_config = drm_atomic_helper_set_config,
395 .page_flip = vc4_page_flip,
396 .reset = vc4_crtc_reset,
397 .atomic_duplicate_state = vc4_crtc_duplicate_state,
398 .atomic_destroy_state = vc4_crtc_destroy_state,
399 .enable_vblank = vc4_txp_enable_vblank,
400 .disable_vblank = vc4_txp_disable_vblank,
401 .late_register = vc4_crtc_late_register,
402};
403
404static int vc4_txp_atomic_check(struct drm_crtc *crtc,
405 struct drm_atomic_state *state)
406{
407 struct drm_crtc_state *crtc_state = drm_atomic_get_new_crtc_state(state,
408 crtc);
409 int ret;
410
411 ret = vc4_hvs_atomic_check(crtc, state);
412 if (ret)
413 return ret;
414
415 crtc_state->no_vblank = true;
416
417 return 0;
418}
419
420static void vc4_txp_atomic_enable(struct drm_crtc *crtc,
421 struct drm_atomic_state *state)
422{
423 drm_crtc_vblank_on(crtc);
424 vc4_hvs_atomic_enable(crtc, state);
425}
426
427static void vc4_txp_atomic_disable(struct drm_crtc *crtc,
428 struct drm_atomic_state *state)
429{
430 struct drm_device *dev = crtc->dev;
431
432 /* Disable vblank irq handling before crtc is disabled. */
433 drm_crtc_vblank_off(crtc);
434
435 vc4_hvs_atomic_disable(crtc, state);
436
437 /*
438 * Make sure we issue a vblank event after disabling the CRTC if
439 * someone was waiting it.
440 */
441 if (crtc->state->event) {
442 unsigned long flags;
443
444 spin_lock_irqsave(&dev->event_lock, flags);
445 drm_crtc_send_vblank_event(crtc, crtc->state->event);
446 crtc->state->event = NULL;
447 spin_unlock_irqrestore(&dev->event_lock, flags);
448 }
449}
450
451static const struct drm_crtc_helper_funcs vc4_txp_crtc_helper_funcs = {
452 .atomic_check = vc4_txp_atomic_check,
453 .atomic_begin = vc4_hvs_atomic_begin,
454 .atomic_flush = vc4_hvs_atomic_flush,
455 .atomic_enable = vc4_txp_atomic_enable,
456 .atomic_disable = vc4_txp_atomic_disable,
457};
458
459static irqreturn_t vc4_txp_interrupt(int irq, void *data)
460{
461 struct vc4_txp *txp = data;
462 struct vc4_crtc *vc4_crtc = &txp->base;
463
464 /*
465 * We don't need to protect the register access using
466 * drm_dev_enter() there because the interrupt handler lifetime
467 * is tied to the device itself, and not to the DRM device.
468 *
469 * So when the device will be gone, one of the first thing we
470 * will be doing will be to unregister the interrupt handler,
471 * and then unregister the DRM device. drm_dev_enter() would
472 * thus always succeed if we are here.
473 */
474 TXP_WRITE(TXP_DST_CTRL, TXP_READ(TXP_DST_CTRL) & ~TXP_EI);
475 vc4_crtc_handle_vblank(vc4_crtc);
476 drm_writeback_signal_completion(&txp->connector, 0);
477
478 return IRQ_HANDLED;
479}
480
481static const struct vc4_crtc_data vc4_txp_crtc_data = {
482 .debugfs_name = "txp_regs",
483 .hvs_available_channels = BIT(2),
484 .hvs_output = 2,
485};
486
487static int vc4_txp_bind(struct device *dev, struct device *master, void *data)
488{
489 struct platform_device *pdev = to_platform_device(dev);
490 struct drm_device *drm = dev_get_drvdata(master);
491 struct vc4_crtc *vc4_crtc;
492 struct vc4_txp *txp;
493 struct drm_crtc *crtc;
494 struct drm_encoder *encoder;
495 int ret, irq;
496
497 irq = platform_get_irq(pdev, 0);
498 if (irq < 0)
499 return irq;
500
501 txp = drmm_kzalloc(drm, sizeof(*txp), GFP_KERNEL);
502 if (!txp)
503 return -ENOMEM;
504 vc4_crtc = &txp->base;
505 crtc = &vc4_crtc->base;
506
507 vc4_crtc->pdev = pdev;
508 vc4_crtc->data = &vc4_txp_crtc_data;
509 vc4_crtc->feeds_txp = true;
510
511 txp->pdev = pdev;
512
513 txp->regs = vc4_ioremap_regs(pdev, 0);
514 if (IS_ERR(txp->regs))
515 return PTR_ERR(txp->regs);
516 vc4_crtc->regset.base = txp->regs;
517 vc4_crtc->regset.regs = txp_regs;
518 vc4_crtc->regset.nregs = ARRAY_SIZE(txp_regs);
519
520 drm_connector_helper_add(&txp->connector.base,
521 &vc4_txp_connector_helper_funcs);
522 ret = drm_writeback_connector_init(drm, &txp->connector,
523 &vc4_txp_connector_funcs,
524 &vc4_txp_encoder_helper_funcs,
525 drm_fmts, ARRAY_SIZE(drm_fmts),
526 0);
527 if (ret)
528 return ret;
529
530 ret = vc4_crtc_init(drm, vc4_crtc,
531 &vc4_txp_crtc_funcs, &vc4_txp_crtc_helper_funcs);
532 if (ret)
533 return ret;
534
535 encoder = &txp->connector.encoder;
536 encoder->possible_crtcs = drm_crtc_mask(crtc);
537
538 ret = devm_request_irq(dev, irq, vc4_txp_interrupt, 0,
539 dev_name(dev), txp);
540 if (ret)
541 return ret;
542
543 dev_set_drvdata(dev, txp);
544
545 return 0;
546}
547
548static void vc4_txp_unbind(struct device *dev, struct device *master,
549 void *data)
550{
551 struct vc4_txp *txp = dev_get_drvdata(dev);
552
553 drm_connector_cleanup(&txp->connector.base);
554}
555
556static const struct component_ops vc4_txp_ops = {
557 .bind = vc4_txp_bind,
558 .unbind = vc4_txp_unbind,
559};
560
561static int vc4_txp_probe(struct platform_device *pdev)
562{
563 return component_add(&pdev->dev, &vc4_txp_ops);
564}
565
566static int vc4_txp_remove(struct platform_device *pdev)
567{
568 component_del(&pdev->dev, &vc4_txp_ops);
569 return 0;
570}
571
572static const struct of_device_id vc4_txp_dt_match[] = {
573 { .compatible = "brcm,bcm2835-txp" },
574 { /* sentinel */ },
575};
576
577struct platform_driver vc4_txp_driver = {
578 .probe = vc4_txp_probe,
579 .remove = vc4_txp_remove,
580 .driver = {
581 .name = "vc4_txp",
582 .of_match_table = vc4_txp_dt_match,
583 },
584};