Loading...
1/*
2 * Copyright (C) 2012 Red Hat
3 *
4 * based in parts on udlfb.c:
5 * Copyright (C) 2009 Roberto De Ioris <roberto@unbit.it>
6 * Copyright (C) 2009 Jaya Kumar <jayakumar.lkml@gmail.com>
7 * Copyright (C) 2009 Bernie Thompson <bernie@plugable.com>
8
9 * This file is subject to the terms and conditions of the GNU General Public
10 * License v2. See the file COPYING in the main directory of this archive for
11 * more details.
12 */
13
14#include "drmP.h"
15#include "drm_crtc.h"
16#include "drm_crtc_helper.h"
17#include "udl_drv.h"
18
19/*
20 * All DisplayLink bulk operations start with 0xAF, followed by specific code
21 * All operations are written to buffers which then later get sent to device
22 */
23static char *udl_set_register(char *buf, u8 reg, u8 val)
24{
25 *buf++ = 0xAF;
26 *buf++ = 0x20;
27 *buf++ = reg;
28 *buf++ = val;
29 return buf;
30}
31
32static char *udl_vidreg_lock(char *buf)
33{
34 return udl_set_register(buf, 0xFF, 0x00);
35}
36
37static char *udl_vidreg_unlock(char *buf)
38{
39 return udl_set_register(buf, 0xFF, 0xFF);
40}
41
42/*
43 * On/Off for driving the DisplayLink framebuffer to the display
44 * 0x00 H and V sync on
45 * 0x01 H and V sync off (screen blank but powered)
46 * 0x07 DPMS powerdown (requires modeset to come back)
47 */
48static char *udl_enable_hvsync(char *buf, bool enable)
49{
50 if (enable)
51 return udl_set_register(buf, 0x1F, 0x00);
52 else
53 return udl_set_register(buf, 0x1F, 0x07);
54}
55
56static char *udl_set_color_depth(char *buf, u8 selection)
57{
58 return udl_set_register(buf, 0x00, selection);
59}
60
61static char *udl_set_base16bpp(char *wrptr, u32 base)
62{
63 /* the base pointer is 16 bits wide, 0x20 is hi byte. */
64 wrptr = udl_set_register(wrptr, 0x20, base >> 16);
65 wrptr = udl_set_register(wrptr, 0x21, base >> 8);
66 return udl_set_register(wrptr, 0x22, base);
67}
68
69/*
70 * DisplayLink HW has separate 16bpp and 8bpp framebuffers.
71 * In 24bpp modes, the low 323 RGB bits go in the 8bpp framebuffer
72 */
73static char *udl_set_base8bpp(char *wrptr, u32 base)
74{
75 wrptr = udl_set_register(wrptr, 0x26, base >> 16);
76 wrptr = udl_set_register(wrptr, 0x27, base >> 8);
77 return udl_set_register(wrptr, 0x28, base);
78}
79
80static char *udl_set_register_16(char *wrptr, u8 reg, u16 value)
81{
82 wrptr = udl_set_register(wrptr, reg, value >> 8);
83 return udl_set_register(wrptr, reg+1, value);
84}
85
86/*
87 * This is kind of weird because the controller takes some
88 * register values in a different byte order than other registers.
89 */
90static char *udl_set_register_16be(char *wrptr, u8 reg, u16 value)
91{
92 wrptr = udl_set_register(wrptr, reg, value);
93 return udl_set_register(wrptr, reg+1, value >> 8);
94}
95
96/*
97 * LFSR is linear feedback shift register. The reason we have this is
98 * because the display controller needs to minimize the clock depth of
99 * various counters used in the display path. So this code reverses the
100 * provided value into the lfsr16 value by counting backwards to get
101 * the value that needs to be set in the hardware comparator to get the
102 * same actual count. This makes sense once you read above a couple of
103 * times and think about it from a hardware perspective.
104 */
105static u16 udl_lfsr16(u16 actual_count)
106{
107 u32 lv = 0xFFFF; /* This is the lfsr value that the hw starts with */
108
109 while (actual_count--) {
110 lv = ((lv << 1) |
111 (((lv >> 15) ^ (lv >> 4) ^ (lv >> 2) ^ (lv >> 1)) & 1))
112 & 0xFFFF;
113 }
114
115 return (u16) lv;
116}
117
118/*
119 * This does LFSR conversion on the value that is to be written.
120 * See LFSR explanation above for more detail.
121 */
122static char *udl_set_register_lfsr16(char *wrptr, u8 reg, u16 value)
123{
124 return udl_set_register_16(wrptr, reg, udl_lfsr16(value));
125}
126
127/*
128 * This takes a standard fbdev screeninfo struct and all of its monitor mode
129 * details and converts them into the DisplayLink equivalent register commands.
130 ERR(vreg(dev, 0x00, (color_depth == 16) ? 0 : 1));
131 ERR(vreg_lfsr16(dev, 0x01, xDisplayStart));
132 ERR(vreg_lfsr16(dev, 0x03, xDisplayEnd));
133 ERR(vreg_lfsr16(dev, 0x05, yDisplayStart));
134 ERR(vreg_lfsr16(dev, 0x07, yDisplayEnd));
135 ERR(vreg_lfsr16(dev, 0x09, xEndCount));
136 ERR(vreg_lfsr16(dev, 0x0B, hSyncStart));
137 ERR(vreg_lfsr16(dev, 0x0D, hSyncEnd));
138 ERR(vreg_big_endian(dev, 0x0F, hPixels));
139 ERR(vreg_lfsr16(dev, 0x11, yEndCount));
140 ERR(vreg_lfsr16(dev, 0x13, vSyncStart));
141 ERR(vreg_lfsr16(dev, 0x15, vSyncEnd));
142 ERR(vreg_big_endian(dev, 0x17, vPixels));
143 ERR(vreg_little_endian(dev, 0x1B, pixelClock5KHz));
144
145 ERR(vreg(dev, 0x1F, 0));
146
147 ERR(vbuf(dev, WRITE_VIDREG_UNLOCK, DSIZEOF(WRITE_VIDREG_UNLOCK)));
148 */
149static char *udl_set_vid_cmds(char *wrptr, struct drm_display_mode *mode)
150{
151 u16 xds, yds;
152 u16 xde, yde;
153 u16 yec;
154
155 /* x display start */
156 xds = mode->crtc_htotal - mode->crtc_hsync_start;
157 wrptr = udl_set_register_lfsr16(wrptr, 0x01, xds);
158 /* x display end */
159 xde = xds + mode->crtc_hdisplay;
160 wrptr = udl_set_register_lfsr16(wrptr, 0x03, xde);
161
162 /* y display start */
163 yds = mode->crtc_vtotal - mode->crtc_vsync_start;
164 wrptr = udl_set_register_lfsr16(wrptr, 0x05, yds);
165 /* y display end */
166 yde = yds + mode->crtc_vdisplay;
167 wrptr = udl_set_register_lfsr16(wrptr, 0x07, yde);
168
169 /* x end count is active + blanking - 1 */
170 wrptr = udl_set_register_lfsr16(wrptr, 0x09,
171 mode->crtc_htotal - 1);
172
173 /* libdlo hardcodes hsync start to 1 */
174 wrptr = udl_set_register_lfsr16(wrptr, 0x0B, 1);
175
176 /* hsync end is width of sync pulse + 1 */
177 wrptr = udl_set_register_lfsr16(wrptr, 0x0D,
178 mode->crtc_hsync_end - mode->crtc_hsync_start + 1);
179
180 /* hpixels is active pixels */
181 wrptr = udl_set_register_16(wrptr, 0x0F, mode->hdisplay);
182
183 /* yendcount is vertical active + vertical blanking */
184 yec = mode->crtc_vtotal;
185 wrptr = udl_set_register_lfsr16(wrptr, 0x11, yec);
186
187 /* libdlo hardcodes vsync start to 0 */
188 wrptr = udl_set_register_lfsr16(wrptr, 0x13, 0);
189
190 /* vsync end is width of vsync pulse */
191 wrptr = udl_set_register_lfsr16(wrptr, 0x15, mode->crtc_vsync_end - mode->crtc_vsync_start);
192
193 /* vpixels is active pixels */
194 wrptr = udl_set_register_16(wrptr, 0x17, mode->crtc_vdisplay);
195
196 wrptr = udl_set_register_16be(wrptr, 0x1B,
197 mode->clock / 5);
198
199 return wrptr;
200}
201
202static int udl_crtc_write_mode_to_hw(struct drm_crtc *crtc)
203{
204 struct drm_device *dev = crtc->dev;
205 struct udl_device *udl = dev->dev_private;
206 struct urb *urb;
207 char *buf;
208 int retval;
209
210 urb = udl_get_urb(dev);
211 if (!urb)
212 return -ENOMEM;
213
214 buf = (char *)urb->transfer_buffer;
215
216 memcpy(buf, udl->mode_buf, udl->mode_buf_len);
217 retval = udl_submit_urb(dev, urb, udl->mode_buf_len);
218 DRM_INFO("write mode info %d\n", udl->mode_buf_len);
219 return retval;
220}
221
222
223static void udl_crtc_dpms(struct drm_crtc *crtc, int mode)
224{
225 struct drm_device *dev = crtc->dev;
226 struct udl_device *udl = dev->dev_private;
227 int retval;
228
229 if (mode == DRM_MODE_DPMS_OFF) {
230 char *buf;
231 struct urb *urb;
232 urb = udl_get_urb(dev);
233 if (!urb)
234 return;
235
236 buf = (char *)urb->transfer_buffer;
237 buf = udl_vidreg_lock(buf);
238 buf = udl_enable_hvsync(buf, false);
239 buf = udl_vidreg_unlock(buf);
240
241 retval = udl_submit_urb(dev, urb, buf - (char *)
242 urb->transfer_buffer);
243 } else {
244 if (udl->mode_buf_len == 0) {
245 DRM_ERROR("Trying to enable DPMS with no mode\n");
246 return;
247 }
248 udl_crtc_write_mode_to_hw(crtc);
249 }
250
251}
252
253static bool udl_crtc_mode_fixup(struct drm_crtc *crtc,
254 struct drm_display_mode *mode,
255 struct drm_display_mode *adjusted_mode)
256
257{
258 return true;
259}
260
261#if 0
262static int
263udl_pipe_set_base_atomic(struct drm_crtc *crtc, struct drm_framebuffer *fb,
264 int x, int y, enum mode_set_atomic state)
265{
266 return 0;
267}
268
269static int
270udl_pipe_set_base(struct drm_crtc *crtc, int x, int y,
271 struct drm_framebuffer *old_fb)
272{
273 return 0;
274}
275#endif
276
277static int udl_crtc_mode_set(struct drm_crtc *crtc,
278 struct drm_display_mode *mode,
279 struct drm_display_mode *adjusted_mode,
280 int x, int y,
281 struct drm_framebuffer *old_fb)
282
283{
284 struct drm_device *dev = crtc->dev;
285 struct udl_framebuffer *ufb = to_udl_fb(crtc->fb);
286 struct udl_device *udl = dev->dev_private;
287 char *buf;
288 char *wrptr;
289 int color_depth = 0;
290
291 buf = (char *)udl->mode_buf;
292
293 /* for now we just clip 24 -> 16 - if we fix that fix this */
294 /*if (crtc->fb->bits_per_pixel != 16)
295 color_depth = 1; */
296
297 /* This first section has to do with setting the base address on the
298 * controller * associated with the display. There are 2 base
299 * pointers, currently, we only * use the 16 bpp segment.
300 */
301 wrptr = udl_vidreg_lock(buf);
302 wrptr = udl_set_color_depth(wrptr, color_depth);
303 /* set base for 16bpp segment to 0 */
304 wrptr = udl_set_base16bpp(wrptr, 0);
305 /* set base for 8bpp segment to end of fb */
306 wrptr = udl_set_base8bpp(wrptr, 2 * mode->vdisplay * mode->hdisplay);
307
308 wrptr = udl_set_vid_cmds(wrptr, adjusted_mode);
309 wrptr = udl_enable_hvsync(wrptr, true);
310 wrptr = udl_vidreg_unlock(wrptr);
311
312 ufb->active_16 = true;
313 if (old_fb) {
314 struct udl_framebuffer *uold_fb = to_udl_fb(old_fb);
315 uold_fb->active_16 = false;
316 }
317 udl->mode_buf_len = wrptr - buf;
318
319 /* damage all of it */
320 udl_handle_damage(ufb, 0, 0, ufb->base.width, ufb->base.height);
321 return 0;
322}
323
324
325static void udl_crtc_disable(struct drm_crtc *crtc)
326{
327
328
329}
330
331static void udl_crtc_destroy(struct drm_crtc *crtc)
332{
333 drm_crtc_cleanup(crtc);
334 kfree(crtc);
335}
336
337static void udl_load_lut(struct drm_crtc *crtc)
338{
339}
340
341static void udl_crtc_prepare(struct drm_crtc *crtc)
342{
343}
344
345static void udl_crtc_commit(struct drm_crtc *crtc)
346{
347 udl_crtc_dpms(crtc, DRM_MODE_DPMS_ON);
348}
349
350static struct drm_crtc_helper_funcs udl_helper_funcs = {
351 .dpms = udl_crtc_dpms,
352 .mode_fixup = udl_crtc_mode_fixup,
353 .mode_set = udl_crtc_mode_set,
354 .prepare = udl_crtc_prepare,
355 .commit = udl_crtc_commit,
356 .disable = udl_crtc_disable,
357 .load_lut = udl_load_lut,
358};
359
360static const struct drm_crtc_funcs udl_crtc_funcs = {
361 .set_config = drm_crtc_helper_set_config,
362 .destroy = udl_crtc_destroy,
363};
364
365int udl_crtc_init(struct drm_device *dev)
366{
367 struct drm_crtc *crtc;
368
369 crtc = kzalloc(sizeof(struct drm_crtc) + sizeof(struct drm_connector *), GFP_KERNEL);
370 if (crtc == NULL)
371 return -ENOMEM;
372
373 drm_crtc_init(dev, crtc, &udl_crtc_funcs);
374 drm_crtc_helper_add(crtc, &udl_helper_funcs);
375
376 return 0;
377}
378
379static const struct drm_mode_config_funcs udl_mode_funcs = {
380 .fb_create = udl_fb_user_fb_create,
381 .output_poll_changed = NULL,
382};
383
384int udl_modeset_init(struct drm_device *dev)
385{
386 struct drm_encoder *encoder;
387 drm_mode_config_init(dev);
388
389 dev->mode_config.min_width = 640;
390 dev->mode_config.min_height = 480;
391
392 dev->mode_config.max_width = 2048;
393 dev->mode_config.max_height = 2048;
394
395 dev->mode_config.prefer_shadow = 0;
396 dev->mode_config.preferred_depth = 24;
397
398 dev->mode_config.funcs = &udl_mode_funcs;
399
400 drm_mode_create_dirty_info_property(dev);
401
402 udl_crtc_init(dev);
403
404 encoder = udl_encoder_init(dev);
405
406 udl_connector_init(dev, encoder);
407
408 return 0;
409}
410
411void udl_modeset_cleanup(struct drm_device *dev)
412{
413 drm_mode_config_cleanup(dev);
414}
1// SPDX-License-Identifier: GPL-2.0-only
2/*
3 * Copyright (C) 2012 Red Hat
4 *
5 * based in parts on udlfb.c:
6 * Copyright (C) 2009 Roberto De Ioris <roberto@unbit.it>
7 * Copyright (C) 2009 Jaya Kumar <jayakumar.lkml@gmail.com>
8 * Copyright (C) 2009 Bernie Thompson <bernie@plugable.com>
9
10 */
11
12#include <linux/dma-buf.h>
13
14#include <drm/drm_atomic_helper.h>
15#include <drm/drm_crtc_helper.h>
16#include <drm/drm_damage_helper.h>
17#include <drm/drm_fourcc.h>
18#include <drm/drm_gem_framebuffer_helper.h>
19#include <drm/drm_gem_shmem_helper.h>
20#include <drm/drm_modeset_helper_vtables.h>
21#include <drm/drm_vblank.h>
22
23#include "udl_drv.h"
24
25#define UDL_COLOR_DEPTH_16BPP 0
26
27/*
28 * All DisplayLink bulk operations start with 0xAF, followed by specific code
29 * All operations are written to buffers which then later get sent to device
30 */
31static char *udl_set_register(char *buf, u8 reg, u8 val)
32{
33 *buf++ = 0xAF;
34 *buf++ = 0x20;
35 *buf++ = reg;
36 *buf++ = val;
37 return buf;
38}
39
40static char *udl_vidreg_lock(char *buf)
41{
42 return udl_set_register(buf, 0xFF, 0x00);
43}
44
45static char *udl_vidreg_unlock(char *buf)
46{
47 return udl_set_register(buf, 0xFF, 0xFF);
48}
49
50static char *udl_set_blank_mode(char *buf, u8 mode)
51{
52 return udl_set_register(buf, UDL_REG_BLANK_MODE, mode);
53}
54
55static char *udl_set_color_depth(char *buf, u8 selection)
56{
57 return udl_set_register(buf, 0x00, selection);
58}
59
60static char *udl_set_base16bpp(char *wrptr, u32 base)
61{
62 /* the base pointer is 16 bits wide, 0x20 is hi byte. */
63 wrptr = udl_set_register(wrptr, 0x20, base >> 16);
64 wrptr = udl_set_register(wrptr, 0x21, base >> 8);
65 return udl_set_register(wrptr, 0x22, base);
66}
67
68/*
69 * DisplayLink HW has separate 16bpp and 8bpp framebuffers.
70 * In 24bpp modes, the low 323 RGB bits go in the 8bpp framebuffer
71 */
72static char *udl_set_base8bpp(char *wrptr, u32 base)
73{
74 wrptr = udl_set_register(wrptr, 0x26, base >> 16);
75 wrptr = udl_set_register(wrptr, 0x27, base >> 8);
76 return udl_set_register(wrptr, 0x28, base);
77}
78
79static char *udl_set_register_16(char *wrptr, u8 reg, u16 value)
80{
81 wrptr = udl_set_register(wrptr, reg, value >> 8);
82 return udl_set_register(wrptr, reg+1, value);
83}
84
85/*
86 * This is kind of weird because the controller takes some
87 * register values in a different byte order than other registers.
88 */
89static char *udl_set_register_16be(char *wrptr, u8 reg, u16 value)
90{
91 wrptr = udl_set_register(wrptr, reg, value);
92 return udl_set_register(wrptr, reg+1, value >> 8);
93}
94
95/*
96 * LFSR is linear feedback shift register. The reason we have this is
97 * because the display controller needs to minimize the clock depth of
98 * various counters used in the display path. So this code reverses the
99 * provided value into the lfsr16 value by counting backwards to get
100 * the value that needs to be set in the hardware comparator to get the
101 * same actual count. This makes sense once you read above a couple of
102 * times and think about it from a hardware perspective.
103 */
104static u16 udl_lfsr16(u16 actual_count)
105{
106 u32 lv = 0xFFFF; /* This is the lfsr value that the hw starts with */
107
108 while (actual_count--) {
109 lv = ((lv << 1) |
110 (((lv >> 15) ^ (lv >> 4) ^ (lv >> 2) ^ (lv >> 1)) & 1))
111 & 0xFFFF;
112 }
113
114 return (u16) lv;
115}
116
117/*
118 * This does LFSR conversion on the value that is to be written.
119 * See LFSR explanation above for more detail.
120 */
121static char *udl_set_register_lfsr16(char *wrptr, u8 reg, u16 value)
122{
123 return udl_set_register_16(wrptr, reg, udl_lfsr16(value));
124}
125
126/*
127 * This takes a standard fbdev screeninfo struct and all of its monitor mode
128 * details and converts them into the DisplayLink equivalent register commands.
129 ERR(vreg(dev, 0x00, (color_depth == 16) ? 0 : 1));
130 ERR(vreg_lfsr16(dev, 0x01, xDisplayStart));
131 ERR(vreg_lfsr16(dev, 0x03, xDisplayEnd));
132 ERR(vreg_lfsr16(dev, 0x05, yDisplayStart));
133 ERR(vreg_lfsr16(dev, 0x07, yDisplayEnd));
134 ERR(vreg_lfsr16(dev, 0x09, xEndCount));
135 ERR(vreg_lfsr16(dev, 0x0B, hSyncStart));
136 ERR(vreg_lfsr16(dev, 0x0D, hSyncEnd));
137 ERR(vreg_big_endian(dev, 0x0F, hPixels));
138 ERR(vreg_lfsr16(dev, 0x11, yEndCount));
139 ERR(vreg_lfsr16(dev, 0x13, vSyncStart));
140 ERR(vreg_lfsr16(dev, 0x15, vSyncEnd));
141 ERR(vreg_big_endian(dev, 0x17, vPixels));
142 ERR(vreg_little_endian(dev, 0x1B, pixelClock5KHz));
143
144 ERR(vreg(dev, 0x1F, 0));
145
146 ERR(vbuf(dev, WRITE_VIDREG_UNLOCK, DSIZEOF(WRITE_VIDREG_UNLOCK)));
147 */
148static char *udl_set_vid_cmds(char *wrptr, struct drm_display_mode *mode)
149{
150 u16 xds, yds;
151 u16 xde, yde;
152 u16 yec;
153
154 /* x display start */
155 xds = mode->crtc_htotal - mode->crtc_hsync_start;
156 wrptr = udl_set_register_lfsr16(wrptr, 0x01, xds);
157 /* x display end */
158 xde = xds + mode->crtc_hdisplay;
159 wrptr = udl_set_register_lfsr16(wrptr, 0x03, xde);
160
161 /* y display start */
162 yds = mode->crtc_vtotal - mode->crtc_vsync_start;
163 wrptr = udl_set_register_lfsr16(wrptr, 0x05, yds);
164 /* y display end */
165 yde = yds + mode->crtc_vdisplay;
166 wrptr = udl_set_register_lfsr16(wrptr, 0x07, yde);
167
168 /* x end count is active + blanking - 1 */
169 wrptr = udl_set_register_lfsr16(wrptr, 0x09,
170 mode->crtc_htotal - 1);
171
172 /* libdlo hardcodes hsync start to 1 */
173 wrptr = udl_set_register_lfsr16(wrptr, 0x0B, 1);
174
175 /* hsync end is width of sync pulse + 1 */
176 wrptr = udl_set_register_lfsr16(wrptr, 0x0D,
177 mode->crtc_hsync_end - mode->crtc_hsync_start + 1);
178
179 /* hpixels is active pixels */
180 wrptr = udl_set_register_16(wrptr, 0x0F, mode->hdisplay);
181
182 /* yendcount is vertical active + vertical blanking */
183 yec = mode->crtc_vtotal;
184 wrptr = udl_set_register_lfsr16(wrptr, 0x11, yec);
185
186 /* libdlo hardcodes vsync start to 0 */
187 wrptr = udl_set_register_lfsr16(wrptr, 0x13, 0);
188
189 /* vsync end is width of vsync pulse */
190 wrptr = udl_set_register_lfsr16(wrptr, 0x15, mode->crtc_vsync_end - mode->crtc_vsync_start);
191
192 /* vpixels is active pixels */
193 wrptr = udl_set_register_16(wrptr, 0x17, mode->crtc_vdisplay);
194
195 wrptr = udl_set_register_16be(wrptr, 0x1B,
196 mode->clock / 5);
197
198 return wrptr;
199}
200
201static char *udl_dummy_render(char *wrptr)
202{
203 *wrptr++ = 0xAF;
204 *wrptr++ = 0x6A; /* copy */
205 *wrptr++ = 0x00; /* from addr */
206 *wrptr++ = 0x00;
207 *wrptr++ = 0x00;
208 *wrptr++ = 0x01; /* one pixel */
209 *wrptr++ = 0x00; /* to address */
210 *wrptr++ = 0x00;
211 *wrptr++ = 0x00;
212 return wrptr;
213}
214
215static int udl_crtc_write_mode_to_hw(struct drm_crtc *crtc)
216{
217 struct drm_device *dev = crtc->dev;
218 struct udl_device *udl = to_udl(dev);
219 struct urb *urb;
220 char *buf;
221 int retval;
222
223 if (udl->mode_buf_len == 0) {
224 DRM_ERROR("No mode set\n");
225 return -EINVAL;
226 }
227
228 urb = udl_get_urb(dev);
229 if (!urb)
230 return -ENOMEM;
231
232 buf = (char *)urb->transfer_buffer;
233
234 memcpy(buf, udl->mode_buf, udl->mode_buf_len);
235 retval = udl_submit_urb(dev, urb, udl->mode_buf_len);
236 DRM_DEBUG("write mode info %d\n", udl->mode_buf_len);
237 return retval;
238}
239
240static long udl_log_cpp(unsigned int cpp)
241{
242 if (WARN_ON(!is_power_of_2(cpp)))
243 return -EINVAL;
244 return __ffs(cpp);
245}
246
247static int udl_aligned_damage_clip(struct drm_rect *clip, int x, int y,
248 int width, int height)
249{
250 int x1, x2;
251
252 if (WARN_ON_ONCE(x < 0) ||
253 WARN_ON_ONCE(y < 0) ||
254 WARN_ON_ONCE(width < 0) ||
255 WARN_ON_ONCE(height < 0))
256 return -EINVAL;
257
258 x1 = ALIGN_DOWN(x, sizeof(unsigned long));
259 x2 = ALIGN(width + (x - x1), sizeof(unsigned long)) + x1;
260
261 clip->x1 = x1;
262 clip->y1 = y;
263 clip->x2 = x2;
264 clip->y2 = y + height;
265
266 return 0;
267}
268
269static int udl_handle_damage(struct drm_framebuffer *fb, int x, int y,
270 int width, int height)
271{
272 struct drm_device *dev = fb->dev;
273 struct dma_buf_attachment *import_attach = fb->obj[0]->import_attach;
274 int i, ret, tmp_ret;
275 char *cmd;
276 struct urb *urb;
277 struct drm_rect clip;
278 int log_bpp;
279 void *vaddr;
280
281 ret = udl_log_cpp(fb->format->cpp[0]);
282 if (ret < 0)
283 return ret;
284 log_bpp = ret;
285
286 ret = udl_aligned_damage_clip(&clip, x, y, width, height);
287 if (ret)
288 return ret;
289 else if ((clip.x2 > fb->width) || (clip.y2 > fb->height))
290 return -EINVAL;
291
292 if (import_attach) {
293 ret = dma_buf_begin_cpu_access(import_attach->dmabuf,
294 DMA_FROM_DEVICE);
295 if (ret)
296 return ret;
297 }
298
299 vaddr = drm_gem_shmem_vmap(fb->obj[0]);
300 if (IS_ERR(vaddr)) {
301 DRM_ERROR("failed to vmap fb\n");
302 goto out_dma_buf_end_cpu_access;
303 }
304
305 urb = udl_get_urb(dev);
306 if (!urb)
307 goto out_drm_gem_shmem_vunmap;
308 cmd = urb->transfer_buffer;
309
310 for (i = clip.y1; i < clip.y2; i++) {
311 const int line_offset = fb->pitches[0] * i;
312 const int byte_offset = line_offset + (clip.x1 << log_bpp);
313 const int dev_byte_offset = (fb->width * i + clip.x1) << log_bpp;
314 const int byte_width = (clip.x2 - clip.x1) << log_bpp;
315 ret = udl_render_hline(dev, log_bpp, &urb, (char *)vaddr,
316 &cmd, byte_offset, dev_byte_offset,
317 byte_width);
318 if (ret)
319 goto out_drm_gem_shmem_vunmap;
320 }
321
322 if (cmd > (char *)urb->transfer_buffer) {
323 /* Send partial buffer remaining before exiting */
324 int len;
325 if (cmd < (char *)urb->transfer_buffer + urb->transfer_buffer_length)
326 *cmd++ = 0xAF;
327 len = cmd - (char *)urb->transfer_buffer;
328 ret = udl_submit_urb(dev, urb, len);
329 } else {
330 udl_urb_completion(urb);
331 }
332
333 ret = 0;
334
335out_drm_gem_shmem_vunmap:
336 drm_gem_shmem_vunmap(fb->obj[0], vaddr);
337out_dma_buf_end_cpu_access:
338 if (import_attach) {
339 tmp_ret = dma_buf_end_cpu_access(import_attach->dmabuf,
340 DMA_FROM_DEVICE);
341 if (tmp_ret && !ret)
342 ret = tmp_ret; /* only update ret if not set yet */
343 }
344
345 return ret;
346}
347
348/*
349 * Simple display pipeline
350 */
351
352static const uint32_t udl_simple_display_pipe_formats[] = {
353 DRM_FORMAT_RGB565,
354 DRM_FORMAT_XRGB8888,
355};
356
357static enum drm_mode_status
358udl_simple_display_pipe_mode_valid(struct drm_simple_display_pipe *pipe,
359 const struct drm_display_mode *mode)
360{
361 return MODE_OK;
362}
363
364static void
365udl_simple_display_pipe_enable(struct drm_simple_display_pipe *pipe,
366 struct drm_crtc_state *crtc_state,
367 struct drm_plane_state *plane_state)
368{
369 struct drm_crtc *crtc = &pipe->crtc;
370 struct drm_device *dev = crtc->dev;
371 struct drm_framebuffer *fb = plane_state->fb;
372 struct udl_device *udl = to_udl(dev);
373 struct drm_display_mode *mode = &crtc_state->mode;
374 char *buf;
375 char *wrptr;
376 int color_depth = UDL_COLOR_DEPTH_16BPP;
377
378 buf = (char *)udl->mode_buf;
379
380 /* This first section has to do with setting the base address on the
381 * controller associated with the display. There are 2 base
382 * pointers, currently, we only use the 16 bpp segment.
383 */
384 wrptr = udl_vidreg_lock(buf);
385 wrptr = udl_set_color_depth(wrptr, color_depth);
386 /* set base for 16bpp segment to 0 */
387 wrptr = udl_set_base16bpp(wrptr, 0);
388 /* set base for 8bpp segment to end of fb */
389 wrptr = udl_set_base8bpp(wrptr, 2 * mode->vdisplay * mode->hdisplay);
390
391 wrptr = udl_set_vid_cmds(wrptr, mode);
392 wrptr = udl_set_blank_mode(wrptr, UDL_BLANK_MODE_ON);
393 wrptr = udl_vidreg_unlock(wrptr);
394
395 wrptr = udl_dummy_render(wrptr);
396
397 udl->mode_buf_len = wrptr - buf;
398
399 udl_handle_damage(fb, 0, 0, fb->width, fb->height);
400
401 if (!crtc_state->mode_changed)
402 return;
403
404 /* enable display */
405 udl_crtc_write_mode_to_hw(crtc);
406}
407
408static void
409udl_simple_display_pipe_disable(struct drm_simple_display_pipe *pipe)
410{
411 struct drm_crtc *crtc = &pipe->crtc;
412 struct drm_device *dev = crtc->dev;
413 struct urb *urb;
414 char *buf;
415
416 urb = udl_get_urb(dev);
417 if (!urb)
418 return;
419
420 buf = (char *)urb->transfer_buffer;
421 buf = udl_vidreg_lock(buf);
422 buf = udl_set_blank_mode(buf, UDL_BLANK_MODE_POWERDOWN);
423 buf = udl_vidreg_unlock(buf);
424 buf = udl_dummy_render(buf);
425
426 udl_submit_urb(dev, urb, buf - (char *)urb->transfer_buffer);
427}
428
429static void
430udl_simple_display_pipe_update(struct drm_simple_display_pipe *pipe,
431 struct drm_plane_state *old_plane_state)
432{
433 struct drm_plane_state *state = pipe->plane.state;
434 struct drm_framebuffer *fb = state->fb;
435 struct drm_rect rect;
436
437 if (!fb)
438 return;
439
440 if (drm_atomic_helper_damage_merged(old_plane_state, state, &rect))
441 udl_handle_damage(fb, rect.x1, rect.y1, rect.x2 - rect.x1,
442 rect.y2 - rect.y1);
443}
444
445static const
446struct drm_simple_display_pipe_funcs udl_simple_display_pipe_funcs = {
447 .mode_valid = udl_simple_display_pipe_mode_valid,
448 .enable = udl_simple_display_pipe_enable,
449 .disable = udl_simple_display_pipe_disable,
450 .update = udl_simple_display_pipe_update,
451 .prepare_fb = drm_gem_fb_simple_display_pipe_prepare_fb,
452};
453
454/*
455 * Modesetting
456 */
457
458static const struct drm_mode_config_funcs udl_mode_funcs = {
459 .fb_create = drm_gem_fb_create_with_dirty,
460 .atomic_check = drm_atomic_helper_check,
461 .atomic_commit = drm_atomic_helper_commit,
462};
463
464int udl_modeset_init(struct drm_device *dev)
465{
466 size_t format_count = ARRAY_SIZE(udl_simple_display_pipe_formats);
467 struct udl_device *udl = to_udl(dev);
468 struct drm_connector *connector;
469 int ret;
470
471 ret = drmm_mode_config_init(dev);
472 if (ret)
473 return ret;
474
475 dev->mode_config.min_width = 640;
476 dev->mode_config.min_height = 480;
477
478 dev->mode_config.max_width = 2048;
479 dev->mode_config.max_height = 2048;
480
481 dev->mode_config.prefer_shadow = 0;
482 dev->mode_config.preferred_depth = 16;
483
484 dev->mode_config.funcs = &udl_mode_funcs;
485
486 connector = udl_connector_init(dev);
487 if (IS_ERR(connector))
488 return PTR_ERR(connector);
489
490 format_count = ARRAY_SIZE(udl_simple_display_pipe_formats);
491
492 ret = drm_simple_display_pipe_init(dev, &udl->display_pipe,
493 &udl_simple_display_pipe_funcs,
494 udl_simple_display_pipe_formats,
495 format_count, NULL, connector);
496 if (ret)
497 return ret;
498
499 drm_mode_config_reset(dev);
500
501 return 0;
502}