2 * VIDIX driver for SuperH Mobile VEU hardware block.
3 * Copyright (C) 2008, 2009 Magnus Damm
5 * Requires a kernel that exposes the VEU hardware block to user space
6 * using UIO. Available in upstream linux-2.6.27 or later.
8 * Tested using WVGA and QVGA panels with sh7722 VEU and sh7723 VEU2H.
10 * This file is part of MPlayer.
12 * MPlayer is free software; you can redistribute it and/or modify
13 * it under the terms of the GNU General Public License as published by
14 * the Free Software Foundation; either version 2 of the License, or
15 * (at your option) any later version.
17 * MPlayer is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
22 * You should have received a copy of the GNU General Public License
23 * along with MPlayer; if not, write to the Free Software
24 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA
33 #include <sys/ioctl.h>
46 static int fgets_with_openclose(char *fname
, char *buf
, size_t maxlen
)
50 fp
= fopen(fname
, "r");
54 fgets(buf
, maxlen
, fp
);
65 #define MAXNAMELEN 256
67 static int locate_uio_device(char *name
, struct uio_device
*udp
)
69 char fname
[MAXNAMELEN
], buf
[MAXNAMELEN
];
76 snprintf(fname
, MAXNAMELEN
, "/sys/class/uio/uio%d/name", uio_id
);
77 if (fgets_with_openclose(fname
, buf
, MAXNAMELEN
) < 0)
80 } while (strncmp(name
, buf
, strlen(name
)));
82 tmp
= strchr(buf
, '\n');
86 udp
->name
= strdup(buf
);
87 udp
->path
= strdup(fname
);
88 udp
->path
[strlen(udp
->path
) - 5] = '\0';
90 snprintf(buf
, MAXNAMELEN
, "/dev/uio%d", uio_id
);
91 udp
->fd
= open(buf
, O_RDWR
| O_SYNC
);
100 unsigned long address
;
105 static int setup_uio_map(struct uio_device
*udp
, int nr
, struct uio_map
*ump
)
107 char fname
[MAXNAMELEN
], buf
[MAXNAMELEN
];
109 snprintf(fname
, MAXNAMELEN
, "%s/maps/map%d/addr", udp
->path
, nr
);
110 if (fgets_with_openclose(fname
, buf
, MAXNAMELEN
) <= 0)
113 ump
->address
= strtoul(buf
, NULL
, 0);
115 snprintf(fname
, MAXNAMELEN
, "%s/maps/map%d/size", udp
->path
, nr
);
116 if (fgets_with_openclose(fname
, buf
, MAXNAMELEN
) <= 0)
119 ump
->size
= strtoul(buf
, NULL
, 0);
120 ump
->iomem
= mmap(0, ump
->size
,
121 PROT_READ
|PROT_WRITE
, MAP_SHARED
,
122 udp
->fd
, nr
* getpagesize());
124 if (ump
->iomem
== MAP_FAILED
)
132 unsigned long height
;
134 unsigned long line_length
;
136 unsigned long address
;
140 static int get_fb_info(char *device
, struct fb_info
*fip
)
142 struct fb_var_screeninfo vinfo
;
143 struct fb_fix_screeninfo finfo
;
147 fd
= open(device
, O_RDWR
);
153 if (ioctl(fd
, FBIOGET_VSCREENINFO
, &vinfo
) == -1) {
154 perror("ioctl(FBIOGET_VSCREENINFO)");
158 fip
->width
= vinfo
.xres
;
159 fip
->height
= vinfo
.yres
;
160 fip
->bpp
= vinfo
.bits_per_pixel
;
162 if (ioctl(fd
, FBIOGET_FSCREENINFO
, &finfo
) == -1) {
163 perror("ioctl(FBIOGET_FSCREENINFO)");
167 fip
->address
= finfo
.smem_start
;
168 fip
->size
= finfo
.smem_len
;
169 fip
->line_length
= finfo
.line_length
;
171 iomem
= mmap(0, fip
->size
, PROT_READ
|PROT_WRITE
, MAP_SHARED
, fd
, 0);
173 if (iomem
== MAP_FAILED
) {
178 /* clear framebuffer */
179 memset(iomem
, 0, fip
->line_length
* fip
->height
);
180 munmap(iomem
, fip
->size
);
185 #define VESTR 0x00 /* start register */
186 #define VESWR 0x10 /* src: line length */
187 #define VESSR 0x14 /* src: image size */
188 #define VSAYR 0x18 /* src: y/rgb plane address */
189 #define VSACR 0x1c /* src: c plane address */
190 #define VBSSR 0x20 /* bundle mode register */
191 #define VEDWR 0x30 /* dst: line length */
192 #define VDAYR 0x34 /* dst: y/rgb plane address */
193 #define VDACR 0x38 /* dst: c plane address */
194 #define VTRCR 0x50 /* transform control */
195 #define VRFCR 0x54 /* resize scale */
196 #define VRFSR 0x58 /* resize clip */
197 #define VENHR 0x5c /* enhance */
198 #define VFMCR 0x70 /* filter mode */
199 #define VVTCR 0x74 /* lowpass vertical */
200 #define VHTCR 0x78 /* lowpass horizontal */
201 #define VAPCR 0x80 /* color match */
202 #define VECCR 0x84 /* color replace */
203 #define VAFXR 0x90 /* fixed mode */
204 #define VSWPR 0x94 /* swap */
205 #define VEIER 0xa0 /* interrupt mask */
206 #define VEVTR 0xa4 /* interrupt event */
207 #define VSTAR 0xb0 /* status */
208 #define VBSRR 0xb4 /* reset */
210 #define VMCR00 0x200 /* color conversion matrix coefficient 00 */
211 #define VMCR01 0x204 /* color conversion matrix coefficient 01 */
212 #define VMCR02 0x208 /* color conversion matrix coefficient 02 */
213 #define VMCR10 0x20c /* color conversion matrix coefficient 10 */
214 #define VMCR11 0x210 /* color conversion matrix coefficient 11 */
215 #define VMCR12 0x214 /* color conversion matrix coefficient 12 */
216 #define VMCR20 0x218 /* color conversion matrix coefficient 20 */
217 #define VMCR21 0x21c /* color conversion matrix coefficient 21 */
218 #define VMCR22 0x220 /* color conversion matrix coefficient 22 */
219 #define VCOFFR 0x224 /* color conversion offset */
220 #define VCBR 0x228 /* color conversion clip */
222 #define VRPBR 0xc8 /* resize passband */
224 /* Helper functions for reading registers. */
226 static unsigned long read_reg(struct uio_map
*ump
, int reg_offs
)
228 volatile unsigned long *reg
= ump
->iomem
;
230 return reg
[reg_offs
/ 4];
233 static void write_reg(struct uio_map
*ump
, unsigned long value
, int reg_offs
)
235 volatile unsigned long *reg
= ump
->iomem
;
237 reg
[reg_offs
/ 4] = value
;
240 static vidix_capability_t sh_veu_cap
= {
250 FLAG_UPSCALER
|FLAG_DOWNSCALER
,
256 /* global variables yuck */
258 static struct fb_info fbi
;
259 static struct uio_device uio_dev
;
260 static struct uio_map uio_mmio
, uio_mem
;
262 struct sh_veu_plane
{
264 unsigned long height
;
265 unsigned long stride
;
270 static struct sh_veu_plane _src
, _dst
;
271 static vidix_playback_t my_info
;
274 static int sh_veu_probe(int verbose
, int force
)
278 ret
= get_fb_info("/dev/fb0", &fbi
);
284 printf("sh_veu: only 16bpp supported\n");
288 ret
= locate_uio_device("VEU", &uio_dev
);
290 printf("sh_veu: unable to locate matching UIO device\n");
294 ret
= setup_uio_map(&uio_dev
, 0, &uio_mmio
);
296 printf("sh_veu: cannot setup MMIO\n");
300 ret
= setup_uio_map(&uio_dev
, 1, &uio_mem
);
302 printf("sh_veu: cannot setup contiguous memory\n");
306 printf("sh_veu: Using %s at %s on %lux%lu %ldbpp /dev/fb0\n",
307 uio_dev
.name
, uio_dev
.path
,
308 fbi
.width
, fbi
.height
, fbi
.bpp
);
313 static void sh_veu_wait_irq(vidix_playback_t
*info
)
315 unsigned long n_pending
;
317 /* Wait for an interrupt */
318 read(uio_dev
.fd
, &n_pending
, sizeof(unsigned long));
320 write_reg(&uio_mmio
, 0x100, VEVTR
); /* ack int, write 0 to bit 0 */
322 /* flush framebuffer to handle deferred io case */
326 static int sh_veu_is_veu2h(void)
328 return uio_mmio
.size
== 0x27c;
331 static int sh_veu_is_veu3f(void)
333 return uio_mmio
.size
== 0xcc;
336 static unsigned long sh_veu_do_scale(struct uio_map
*ump
,
337 int vertical
, int size_in
,
338 int size_out
, int crop_out
)
340 unsigned long fixpoint
, mant
, frac
, value
, rep
, vb
;
342 /* calculate FRAC and MANT */
344 rep
= mant
= frac
= 0;
346 if (size_in
== size_out
) {
347 if (crop_out
!= size_out
)
348 mant
= 1; /* needed for cropping */
352 /* VEU2H special upscale */
353 if (sh_veu_is_veu2h() && size_out
> size_in
) {
354 fixpoint
= (4096 * size_in
) / size_out
;
356 mant
= fixpoint
/ 4096;
357 frac
= fixpoint
- (mant
* 4096);
376 fixpoint
= (4096 * (size_in
- 1)) / (size_out
+ 1);
377 mant
= fixpoint
/ 4096;
378 frac
= fixpoint
- (mant
* 4096);
382 if (size_out
> size_in
)
383 frac
-= 8; /* round down if scaling up */
385 frac
+= 8; /* round up if scaling down */
391 value
= read_reg(ump
, VRFCR
);
393 value
&= ~0xffff0000;
394 value
|= ((mant
<< 12) | frac
) << 16;
397 value
|= (mant
<< 12) | frac
;
399 write_reg(ump
, value
, VRFCR
);
402 value
= read_reg(ump
, VRFSR
);
404 value
&= ~0xffff0000;
405 value
|= ((rep
<< 12) | crop_out
) << 16;
408 value
|= (rep
<< 12) | crop_out
;
410 write_reg(ump
, value
, VRFSR
);
412 /* VEU3F needs additional VRPBR register handling */
413 if (sh_veu_is_veu3f()) {
414 if (size_out
> size_in
)
417 if ((mant
>= 8) && (mant
< 16))
419 else if ((mant
>= 4) && (mant
< 8))
424 vb
= 64 * 4096 * value
;
425 vb
/= 4096 * mant
+ frac
;
428 /* set resize passband register */
429 value
= read_reg(ump
, VRPBR
);
431 value
&= ~0xffff0000;
437 write_reg(ump
, value
, VRPBR
);
440 return (((size_in
* crop_out
) / size_out
) + 0x03) & ~0x03;
443 static void sh_veu_setup_planes(vidix_playback_t
*info
,
444 struct sh_veu_plane
*src
,
445 struct sh_veu_plane
*dst
)
447 unsigned long addr
, real_w
, real_h
;
449 src
->width
= info
->src
.w
;
450 src
->height
= info
->src
.h
;
451 src
->stride
= (info
->src
.w
+15) & ~15;
453 dst
->width
= real_w
= info
->dest
.w
;
454 dst
->height
= real_h
= info
->dest
.h
;
455 dst
->stride
= fbi
.line_length
;
456 dst
->pos_x
= info
->dest
.x
& ~0x03;
457 dst
->pos_y
= info
->dest
.y
;
459 if ((dst
->width
+ dst
->pos_x
) > fbi
.width
)
460 dst
->width
= fbi
.width
- dst
->pos_x
;
462 if ((dst
->height
+ dst
->pos_y
) > fbi
.height
)
463 dst
->height
= fbi
.height
- dst
->pos_y
;
466 addr
+= dst
->pos_x
* (fbi
.bpp
/ 8);
467 addr
+= dst
->pos_y
* dst
->stride
;
469 src
->width
= sh_veu_do_scale(&uio_mmio
, 0, src
->width
,
471 src
->height
= sh_veu_do_scale(&uio_mmio
, 1, src
->height
,
472 real_h
, dst
->height
);
474 write_reg(&uio_mmio
, src
->stride
, VESWR
);
475 write_reg(&uio_mmio
, src
->width
| (src
->height
<< 16), VESSR
);
476 write_reg(&uio_mmio
, 0, VBSSR
); /* not using bundle mode */
478 write_reg(&uio_mmio
, dst
->stride
, VEDWR
);
479 write_reg(&uio_mmio
, addr
, VDAYR
);
480 write_reg(&uio_mmio
, 0, VDACR
); /* unused for RGB */
482 write_reg(&uio_mmio
, 0x67, VSWPR
);
483 write_reg(&uio_mmio
, (6 << 16) | (0 << 14) | 2 | 4, VTRCR
);
485 if (sh_veu_is_veu2h()) {
486 write_reg(&uio_mmio
, 0x0cc5, VMCR00
);
487 write_reg(&uio_mmio
, 0x0950, VMCR01
);
488 write_reg(&uio_mmio
, 0x0000, VMCR02
);
490 write_reg(&uio_mmio
, 0x397f, VMCR10
);
491 write_reg(&uio_mmio
, 0x0950, VMCR11
);
492 write_reg(&uio_mmio
, 0x3ccd, VMCR12
);
494 write_reg(&uio_mmio
, 0x0000, VMCR20
);
495 write_reg(&uio_mmio
, 0x0950, VMCR21
);
496 write_reg(&uio_mmio
, 0x1023, VMCR22
);
498 write_reg(&uio_mmio
, 0x00800010, VCOFFR
);
501 write_reg(&uio_mmio
, 1, VEIER
); /* enable interrupt in VEU */
504 static void sh_veu_blit(vidix_playback_t
*info
, int frame
)
506 unsigned long enable
= 1;
509 addr
= uio_mem
.address
+ info
->offsets
[frame
];
511 write_reg(&uio_mmio
, addr
+ info
->offset
.y
, VSAYR
);
512 write_reg(&uio_mmio
, addr
+ info
->offset
.u
, VSACR
);
514 /* Enable interrupt in UIO driver */
515 write(uio_dev
.fd
, &enable
, sizeof(unsigned long));
517 write_reg(&uio_mmio
, 1, VESTR
); /* start operation */
520 static int sh_veu_init(void)
522 write_reg(&uio_mmio
, 0x100, VBSRR
); /* reset VEU */
526 static void sh_veu_destroy(void)
531 static int sh_veu_get_caps(vidix_capability_t
*to
)
533 memcpy(to
, &sh_veu_cap
, sizeof(vidix_capability_t
));
537 static int sh_veu_query_fourcc(vidix_fourcc_t
*to
)
539 if (to
->fourcc
== IMGFMT_NV12
) {
540 to
->depth
= VID_DEPTH_ALL
;
541 to
->flags
= VID_CAP_EXPAND
| VID_CAP_SHRINK
;
544 to
->depth
= to
->flags
= 0;
549 static int sh_veu_config_playback(vidix_playback_t
*info
)
551 unsigned int i
, y_pitch
;
553 switch (info
->fourcc
) {
555 y_pitch
= (info
->src
.w
+ 15) & ~15;
558 info
->offset
.u
= y_pitch
* info
->src
.h
;
559 info
->frame_size
= info
->offset
.u
+ info
->offset
.u
/ 2;
565 info
->num_frames
= uio_mem
.size
/ info
->frame_size
;
566 if (info
->num_frames
> VID_PLAY_MAXFRAMES
)
567 info
->num_frames
= VID_PLAY_MAXFRAMES
;
569 if (!info
->num_frames
) {
570 printf("sh_veu: %d is not enough memory for %d bytes frame\n",
571 (int)uio_mem
.size
, (int)info
->frame_size
);
575 info
->dga_addr
= uio_mem
.iomem
;
576 info
->dest
.pitch
.y
= info
->dest
.pitch
.u
= info
->dest
.pitch
.v
= 16;
578 for (i
= 0; i
< info
->num_frames
; i
++)
579 info
->offsets
[i
] = info
->frame_size
* i
;
583 printf("sh_veu: %d frames * %d bytes, total size = %d\n",
584 (int)info
->num_frames
, (int)info
->frame_size
,
587 sh_veu_setup_planes(info
, &_src
, &_dst
);
589 printf("sh_veu: %dx%d->%dx%d@%dx%d -> %dx%d->%dx%d@%dx%d \n",
590 (int)info
->src
.w
, (int)info
->src
.h
,
591 (int)info
->dest
.w
, (int)info
->dest
.h
,
592 (int)info
->dest
.x
, (int)info
->dest
.y
,
593 (int)_src
.width
, (int)_src
.height
,
594 (int)_dst
.width
, (int)_dst
.height
,
595 (int)_dst
.pos_x
, (int)_dst
.pos_y
);
600 static int sh_veu_playback_on(void)
605 static int sh_veu_playback_off(void)
610 static int sh_veu_first_frame
= 1;
612 static int sh_veu_frame_sel(unsigned int frame
)
614 if (!sh_veu_first_frame
)
615 sh_veu_wait_irq(&my_info
);
617 sh_veu_blit(&my_info
, frame
);
618 sh_veu_first_frame
= 0;
622 VDXDriver sh_veu_drv
= {
625 .probe
= sh_veu_probe
,
626 .get_caps
= sh_veu_get_caps
,
627 .query_fourcc
= sh_veu_query_fourcc
,
629 .destroy
= sh_veu_destroy
,
630 .config_playback
= sh_veu_config_playback
,
631 .playback_on
= sh_veu_playback_on
,
632 .playback_off
= sh_veu_playback_off
,
633 .frame_sel
= sh_veu_frame_sel
,