[media] vivid: SDR cap add 'CU08' Complex U8 format
authorAntti Palosaari <crope@iki.fi>
Sun, 17 May 2015 11:34:37 +0000 (08:34 -0300)
committerMauro Carvalho Chehab <mchehab@osg.samsung.com>
Sat, 30 May 2015 14:40:38 +0000 (11:40 -0300)
Add complex unsigned 8-bit sample format for SDR capture.

Signed-off-by: Antti Palosaari <crope@iki.fi>
Signed-off-by: Hans Verkuil <hans.verkuil@cisco.com>
Signed-off-by: Mauro Carvalho Chehab <mchehab@osg.samsung.com>
drivers/media/platform/vivid/vivid-core.c
drivers/media/platform/vivid/vivid-core.h
drivers/media/platform/vivid/vivid-sdr-cap.c
drivers/media/platform/vivid/vivid-sdr-cap.h

index d6caeeb5758d19e64dda132877e21adbc92f9f39..a047b47167417339bf501286d4ba3d9e3f76894e 100644 (file)
@@ -559,8 +559,8 @@ static const struct v4l2_ioctl_ops vivid_ioctl_ops = {
 
        .vidioc_enum_fmt_sdr_cap        = vidioc_enum_fmt_sdr_cap,
        .vidioc_g_fmt_sdr_cap           = vidioc_g_fmt_sdr_cap,
-       .vidioc_try_fmt_sdr_cap         = vidioc_g_fmt_sdr_cap,
-       .vidioc_s_fmt_sdr_cap           = vidioc_g_fmt_sdr_cap,
+       .vidioc_try_fmt_sdr_cap         = vidioc_try_fmt_sdr_cap,
+       .vidioc_s_fmt_sdr_cap           = vidioc_s_fmt_sdr_cap,
 
        .vidioc_overlay                 = vidioc_overlay,
        .vidioc_enum_framesizes         = vidioc_enum_framesizes,
@@ -977,6 +977,9 @@ static int vivid_create_instance(struct platform_device *pdev, int inst)
        dev->radio_tx_subchans = V4L2_TUNER_SUB_STEREO | V4L2_TUNER_SUB_RDS;
        dev->sdr_adc_freq = 300000;
        dev->sdr_fm_freq = 50000000;
+       dev->sdr_pixelformat = V4L2_SDR_FMT_CU8;
+       dev->sdr_buffersize = SDR_CAP_SAMPLES_PER_BUF * 2;
+
        dev->edid_max_blocks = dev->edid_blocks = 2;
        memcpy(dev->edid, vivid_hdmi_edid, sizeof(vivid_hdmi_edid));
        ktime_get_ts(&dev->radio_rds_init_ts);
index bf26173f1e3be39e33caa0b91d043c4ed8d5fbd2..aa1b5232a963dea40c369bcad90ad32544e48a1c 100644 (file)
@@ -446,6 +446,8 @@ struct vivid_dev {
        /* SDR capture */
        struct vb2_queue                vb_sdr_cap_q;
        struct list_head                sdr_cap_active;
+       u32                             sdr_pixelformat; /* v4l2 format id */
+       unsigned                        sdr_buffersize;
        unsigned                        sdr_adc_freq;
        unsigned                        sdr_fm_freq;
        int                             sdr_fixp_src_phase;
index caf131666e37426f63029462b10839c83634fcdd..d2f2188a0efe78ac7f13bab293b00dc53d6084eb 100644 (file)
 #include "vivid-ctrls.h"
 #include "vivid-sdr-cap.h"
 
+/* stream formats */
+struct vivid_format {
+       u32     pixelformat;
+       u32     buffersize;
+};
+
+/* format descriptions for capture and preview */
+static struct vivid_format formats[] = {
+       {
+               .pixelformat    = V4L2_SDR_FMT_CU8,
+               .buffersize     = SDR_CAP_SAMPLES_PER_BUF * 2,
+       }, {
+               .pixelformat    = V4L2_SDR_FMT_CS8,
+               .buffersize     = SDR_CAP_SAMPLES_PER_BUF * 2,
+       },
+};
+
+static const unsigned int NUM_FORMATS = ARRAY_SIZE(formats);
+
 static const struct v4l2_frequency_band bands_adc[] = {
        {
                .tuner = 0,
@@ -409,21 +428,63 @@ int vivid_sdr_s_tuner(struct file *file, void *fh, const struct v4l2_tuner *vt)
 
 int vidioc_enum_fmt_sdr_cap(struct file *file, void *fh, struct v4l2_fmtdesc *f)
 {
-       if (f->index)
+       if (f->index >= ARRAY_SIZE(formats))
                return -EINVAL;
-       f->pixelformat = V4L2_SDR_FMT_CU8;
-       strlcpy(f->description, "IQ U8", sizeof(f->description));
+       f->pixelformat = formats[f->index].pixelformat;
        return 0;
 }
 
 int vidioc_g_fmt_sdr_cap(struct file *file, void *fh, struct v4l2_format *f)
 {
-       f->fmt.sdr.pixelformat = V4L2_SDR_FMT_CU8;
-       f->fmt.sdr.buffersize = SDR_CAP_SAMPLES_PER_BUF * 2;
+       struct vivid_dev *dev = video_drvdata(file);
+
+       f->fmt.sdr.pixelformat = dev->sdr_pixelformat;
+       f->fmt.sdr.buffersize = dev->sdr_buffersize;
        memset(f->fmt.sdr.reserved, 0, sizeof(f->fmt.sdr.reserved));
        return 0;
 }
 
+int vidioc_s_fmt_sdr_cap(struct file *file, void *fh, struct v4l2_format *f)
+{
+       struct vivid_dev *dev = video_drvdata(file);
+       struct vb2_queue *q = &dev->vb_sdr_cap_q;
+       int i;
+
+       if (vb2_is_busy(q))
+               return -EBUSY;
+
+       memset(f->fmt.sdr.reserved, 0, sizeof(f->fmt.sdr.reserved));
+       for (i = 0; i < ARRAY_SIZE(formats); i++) {
+               if (formats[i].pixelformat == f->fmt.sdr.pixelformat) {
+                       dev->sdr_pixelformat = formats[i].pixelformat;
+                       dev->sdr_buffersize = formats[i].buffersize;
+                       f->fmt.sdr.buffersize = formats[i].buffersize;
+                       return 0;
+               }
+       }
+       dev->sdr_pixelformat = formats[0].pixelformat;
+       dev->sdr_buffersize = formats[0].buffersize;
+       f->fmt.sdr.pixelformat = formats[0].pixelformat;
+       f->fmt.sdr.buffersize = formats[0].buffersize;
+       return 0;
+}
+
+int vidioc_try_fmt_sdr_cap(struct file *file, void *fh, struct v4l2_format *f)
+{
+       int i;
+
+       memset(f->fmt.sdr.reserved, 0, sizeof(f->fmt.sdr.reserved));
+       for (i = 0; i < ARRAY_SIZE(formats); i++) {
+               if (formats[i].pixelformat == f->fmt.sdr.pixelformat) {
+                       f->fmt.sdr.buffersize = formats[i].buffersize;
+                       return 0;
+               }
+       }
+       f->fmt.sdr.pixelformat = formats[0].pixelformat;
+       f->fmt.sdr.buffersize = formats[0].buffersize;
+       return 0;
+}
+
 #define FIXP_N    (15)
 #define FIXP_FRAC (1 << FIXP_N)
 #define FIXP_2PI  ((int)(2 * 3.141592653589 * FIXP_FRAC))
@@ -477,11 +538,24 @@ void vivid_sdr_cap_process(struct vivid_dev *dev, struct vivid_buffer *buf)
                fixp_i >>= (31 - FIXP_N);
                fixp_q >>= (31 - FIXP_N);
 
-               /* convert 'fixp float' to u8 */
-               /* u8 = X * 127.5f + 127.5f; where X is float [-1.0 / +1.0] */
-               fixp_i = fixp_i * 1275 + FIXP_FRAC * 1275;
-               fixp_q = fixp_q * 1275 + FIXP_FRAC * 1275;
-               *vbuf++ = DIV_ROUND_CLOSEST(fixp_i, FIXP_FRAC * 10);
-               *vbuf++ = DIV_ROUND_CLOSEST(fixp_q, FIXP_FRAC * 10);
+               switch (dev->sdr_pixelformat) {
+               case V4L2_SDR_FMT_CU8:
+                       /* convert 'fixp float' to u8 */
+                       /* u8 = X * 127.5 + 127.5; X is float [-1.0, +1.0] */
+                       fixp_i = fixp_i * 1275 + FIXP_FRAC * 1275;
+                       fixp_q = fixp_q * 1275 + FIXP_FRAC * 1275;
+                       *vbuf++ = DIV_ROUND_CLOSEST(fixp_i, FIXP_FRAC * 10);
+                       *vbuf++ = DIV_ROUND_CLOSEST(fixp_q, FIXP_FRAC * 10);
+                       break;
+               case V4L2_SDR_FMT_CS8:
+                       /* convert 'fixp float' to s8 */
+                       fixp_i = fixp_i * 1275;
+                       fixp_q = fixp_q * 1275;
+                       *vbuf++ = DIV_ROUND_CLOSEST(fixp_i, FIXP_FRAC * 10);
+                       *vbuf++ = DIV_ROUND_CLOSEST(fixp_q, FIXP_FRAC * 10);
+                       break;
+               default:
+                       break;
+               }
        }
 }
index 79c1890de97235c027c980aecea8811537482a12..43014b2733db72134524a1f7aa66dd20f09a3cd3 100644 (file)
@@ -27,6 +27,8 @@ int vivid_sdr_g_tuner(struct file *file, void *fh, struct v4l2_tuner *vt);
 int vivid_sdr_s_tuner(struct file *file, void *fh, const struct v4l2_tuner *vt);
 int vidioc_enum_fmt_sdr_cap(struct file *file, void *fh, struct v4l2_fmtdesc *f);
 int vidioc_g_fmt_sdr_cap(struct file *file, void *fh, struct v4l2_format *f);
+int vidioc_s_fmt_sdr_cap(struct file *file, void *fh, struct v4l2_format *f);
+int vidioc_try_fmt_sdr_cap(struct file *file, void *fh, struct v4l2_format *f);
 void vivid_sdr_cap_process(struct vivid_dev *dev, struct vivid_buffer *buf);
 
 extern const struct vb2_ops vivid_sdr_cap_qops;