1 // SPDX-License-Identifier: GPL-2.0-only
3 * Copyright (c) 2012-2015 Synaptics Incorporated
4 * Copyright (C) 2016 Zodiac Inflight Innovations
7 #include <linux/kernel.h>
9 #include <linux/input.h>
10 #include <linux/slab.h>
11 #include <linux/delay.h>
12 #include <linux/i2c.h>
13 #include <media/v4l2-device.h>
14 #include <media/v4l2-ioctl.h>
15 #include <media/videobuf2-v4l2.h>
16 #include <media/videobuf2-vmalloc.h>
17 #include "rmi_driver.h"
19 #define F54_NAME "rmi4_f54"
21 /* F54 data offsets */
22 #define F54_REPORT_DATA_OFFSET 3
23 #define F54_FIFO_OFFSET 1
24 #define F54_NUM_TX_OFFSET 1
25 #define F54_NUM_RX_OFFSET 0
28 * The smbus protocol can read only 32 bytes max at a time.
29 * But this should be fine for i2c/spi as well.
31 #define F54_REPORT_DATA_SIZE 32
34 #define F54_GET_REPORT 1
35 #define F54_FORCE_CAL 2
37 /* F54 capabilities */
38 #define F54_CAP_BASELINE (1 << 2)
39 #define F54_CAP_IMAGE8 (1 << 3)
40 #define F54_CAP_IMAGE16 (1 << 6)
43 * enum rmi_f54_report_type - RMI4 F54 report types
45 * @F54_8BIT_IMAGE: Normalized 8-Bit Image Report. The capacitance variance
46 * from baseline for each pixel.
48 * @F54_16BIT_IMAGE: Normalized 16-Bit Image Report. The capacitance variance
49 * from baseline for each pixel.
51 * @F54_RAW_16BIT_IMAGE:
52 * Raw 16-Bit Image Report. The raw capacitance for each
55 * @F54_TRUE_BASELINE: True Baseline Report. The baseline capacitance for each
58 * @F54_FULL_RAW_CAP: Full Raw Capacitance Report. The raw capacitance with
59 * low reference set to its minimum value and high
60 * reference set to its maximum value.
62 * @F54_FULL_RAW_CAP_RX_OFFSET_REMOVED:
63 * Full Raw Capacitance with Receiver Offset Removed
64 * Report. Set Low reference to its minimum value and high
65 * references to its maximum value, then report the raw
66 * capacitance for each pixel.
68 enum rmi_f54_report_type
{
72 F54_RAW_16BIT_IMAGE
= 3,
73 F54_TRUE_BASELINE
= 9,
74 F54_FULL_RAW_CAP
= 19,
75 F54_FULL_RAW_CAP_RX_OFFSET_REMOVED
= 20,
79 static const char * const rmi_f54_report_type_names
[] = {
80 [F54_REPORT_NONE
] = "Unknown",
81 [F54_8BIT_IMAGE
] = "Normalized 8-Bit Image",
82 [F54_16BIT_IMAGE
] = "Normalized 16-Bit Image",
83 [F54_RAW_16BIT_IMAGE
] = "Raw 16-Bit Image",
84 [F54_TRUE_BASELINE
] = "True Baseline",
85 [F54_FULL_RAW_CAP
] = "Full Raw Capacitance",
86 [F54_FULL_RAW_CAP_RX_OFFSET_REMOVED
]
87 = "Full Raw Capacitance RX Offset Removed",
91 struct rmi_function
*fn
;
99 enum rmi_f54_report_type report_type
;
104 struct mutex status_mutex
;
105 struct mutex data_mutex
;
107 struct workqueue_struct
*workqueue
;
108 struct delayed_work work
;
109 unsigned long timeout
;
111 struct completion cmd_done
;
114 struct v4l2_device v4l2
;
115 struct v4l2_pix_format format
;
116 struct video_device vdev
;
117 struct vb2_queue queue
;
121 enum rmi_f54_report_type inputs
[F54_MAX_REPORT_TYPE
];
125 * Basic checks on report_type to ensure we write a valid type
128 static bool is_f54_report_type_valid(struct f54_data
*f54
,
129 enum rmi_f54_report_type reptype
)
133 return f54
->capabilities
& F54_CAP_IMAGE8
;
134 case F54_16BIT_IMAGE
:
135 case F54_RAW_16BIT_IMAGE
:
136 return f54
->capabilities
& F54_CAP_IMAGE16
;
137 case F54_TRUE_BASELINE
:
138 return f54
->capabilities
& F54_CAP_IMAGE16
;
139 case F54_FULL_RAW_CAP
:
140 case F54_FULL_RAW_CAP_RX_OFFSET_REMOVED
:
147 static enum rmi_f54_report_type
rmi_f54_get_reptype(struct f54_data
*f54
,
150 if (i
>= F54_MAX_REPORT_TYPE
)
151 return F54_REPORT_NONE
;
153 return f54
->inputs
[i
];
156 static void rmi_f54_create_input_map(struct f54_data
*f54
)
159 enum rmi_f54_report_type reptype
;
161 for (reptype
= 1; reptype
< F54_MAX_REPORT_TYPE
; reptype
++) {
162 if (!is_f54_report_type_valid(f54
, reptype
))
165 f54
->inputs
[i
++] = reptype
;
168 /* Remaining values are zero via kzalloc */
171 static int rmi_f54_request_report(struct rmi_function
*fn
, u8 report_type
)
173 struct f54_data
*f54
= dev_get_drvdata(&fn
->dev
);
174 struct rmi_device
*rmi_dev
= fn
->rmi_dev
;
177 /* Write Report Type into F54_AD_Data0 */
178 if (f54
->report_type
!= report_type
) {
179 error
= rmi_write(rmi_dev
, f54
->fn
->fd
.data_base_addr
,
183 f54
->report_type
= report_type
;
187 * Small delay after disabling interrupts to avoid race condition
188 * in firmare. This value is a bit higher than absolutely necessary.
189 * Should be removed once issue is resolved in firmware.
191 usleep_range(2000, 3000);
193 mutex_lock(&f54
->data_mutex
);
195 error
= rmi_write(rmi_dev
, fn
->fd
.command_base_addr
, F54_GET_REPORT
);
199 init_completion(&f54
->cmd_done
);
202 f54
->timeout
= jiffies
+ msecs_to_jiffies(100);
204 queue_delayed_work(f54
->workqueue
, &f54
->work
, 0);
207 mutex_unlock(&f54
->data_mutex
);
212 static size_t rmi_f54_get_report_size(struct f54_data
*f54
)
214 struct rmi_device
*rmi_dev
= f54
->fn
->rmi_dev
;
215 struct rmi_driver_data
*drv_data
= dev_get_drvdata(&rmi_dev
->dev
);
216 u8 rx
= drv_data
->num_rx_electrodes
? : f54
->num_rx_electrodes
;
217 u8 tx
= drv_data
->num_tx_electrodes
? : f54
->num_tx_electrodes
;
220 switch (rmi_f54_get_reptype(f54
, f54
->input
)) {
224 case F54_16BIT_IMAGE
:
225 case F54_RAW_16BIT_IMAGE
:
226 case F54_TRUE_BASELINE
:
227 case F54_FULL_RAW_CAP
:
228 case F54_FULL_RAW_CAP_RX_OFFSET_REMOVED
:
229 size
= sizeof(u16
) * rx
* tx
;
238 static int rmi_f54_get_pixel_fmt(enum rmi_f54_report_type reptype
, u32
*pixfmt
)
244 *pixfmt
= V4L2_TCH_FMT_DELTA_TD08
;
247 case F54_16BIT_IMAGE
:
248 *pixfmt
= V4L2_TCH_FMT_DELTA_TD16
;
251 case F54_RAW_16BIT_IMAGE
:
252 case F54_TRUE_BASELINE
:
253 case F54_FULL_RAW_CAP
:
254 case F54_FULL_RAW_CAP_RX_OFFSET_REMOVED
:
255 *pixfmt
= V4L2_TCH_FMT_TU16
;
258 case F54_REPORT_NONE
:
259 case F54_MAX_REPORT_TYPE
:
267 static const struct v4l2_file_operations rmi_f54_video_fops
= {
268 .owner
= THIS_MODULE
,
269 .open
= v4l2_fh_open
,
270 .release
= vb2_fop_release
,
271 .unlocked_ioctl
= video_ioctl2
,
272 .read
= vb2_fop_read
,
273 .mmap
= vb2_fop_mmap
,
274 .poll
= vb2_fop_poll
,
277 static int rmi_f54_queue_setup(struct vb2_queue
*q
, unsigned int *nbuffers
,
278 unsigned int *nplanes
, unsigned int sizes
[],
279 struct device
*alloc_devs
[])
281 struct f54_data
*f54
= q
->drv_priv
;
284 return sizes
[0] < rmi_f54_get_report_size(f54
) ? -EINVAL
: 0;
287 sizes
[0] = rmi_f54_get_report_size(f54
);
292 static void rmi_f54_buffer_queue(struct vb2_buffer
*vb
)
294 struct vb2_v4l2_buffer
*vbuf
= to_vb2_v4l2_buffer(vb
);
295 struct f54_data
*f54
= vb2_get_drv_priv(vb
->vb2_queue
);
297 enum vb2_buffer_state state
;
298 enum rmi_f54_report_type reptype
;
301 mutex_lock(&f54
->status_mutex
);
303 vb2_set_plane_payload(vb
, 0, 0);
304 reptype
= rmi_f54_get_reptype(f54
, f54
->input
);
305 if (reptype
== F54_REPORT_NONE
) {
306 state
= VB2_BUF_STATE_ERROR
;
311 state
= VB2_BUF_STATE_ERROR
;
315 ret
= rmi_f54_request_report(f54
->fn
, reptype
);
317 dev_err(&f54
->fn
->dev
, "Error requesting F54 report\n");
318 state
= VB2_BUF_STATE_ERROR
;
323 mutex_lock(&f54
->data_mutex
);
325 while (f54
->is_busy
) {
326 mutex_unlock(&f54
->data_mutex
);
327 if (!wait_for_completion_timeout(&f54
->cmd_done
,
328 msecs_to_jiffies(1000))) {
329 dev_err(&f54
->fn
->dev
, "Timed out\n");
330 state
= VB2_BUF_STATE_ERROR
;
333 mutex_lock(&f54
->data_mutex
);
336 ptr
= vb2_plane_vaddr(vb
, 0);
338 dev_err(&f54
->fn
->dev
, "Error acquiring frame ptr\n");
339 state
= VB2_BUF_STATE_ERROR
;
343 memcpy(ptr
, f54
->report_data
, f54
->report_size
);
344 vb2_set_plane_payload(vb
, 0, rmi_f54_get_report_size(f54
));
345 state
= VB2_BUF_STATE_DONE
;
348 mutex_unlock(&f54
->data_mutex
);
350 vb
->timestamp
= ktime_get_ns();
351 vbuf
->field
= V4L2_FIELD_NONE
;
352 vbuf
->sequence
= f54
->sequence
++;
353 vb2_buffer_done(vb
, state
);
354 mutex_unlock(&f54
->status_mutex
);
357 static void rmi_f54_stop_streaming(struct vb2_queue
*q
)
359 struct f54_data
*f54
= vb2_get_drv_priv(q
);
364 /* V4L2 structures */
365 static const struct vb2_ops rmi_f54_queue_ops
= {
366 .queue_setup
= rmi_f54_queue_setup
,
367 .buf_queue
= rmi_f54_buffer_queue
,
368 .stop_streaming
= rmi_f54_stop_streaming
,
369 .wait_prepare
= vb2_ops_wait_prepare
,
370 .wait_finish
= vb2_ops_wait_finish
,
373 static const struct vb2_queue rmi_f54_queue
= {
374 .type
= V4L2_BUF_TYPE_VIDEO_CAPTURE
,
375 .io_modes
= VB2_MMAP
| VB2_USERPTR
| VB2_DMABUF
| VB2_READ
,
376 .buf_struct_size
= sizeof(struct vb2_v4l2_buffer
),
377 .ops
= &rmi_f54_queue_ops
,
378 .mem_ops
= &vb2_vmalloc_memops
,
379 .timestamp_flags
= V4L2_BUF_FLAG_TIMESTAMP_MONOTONIC
,
382 static int rmi_f54_vidioc_querycap(struct file
*file
, void *priv
,
383 struct v4l2_capability
*cap
)
385 struct f54_data
*f54
= video_drvdata(file
);
387 strlcpy(cap
->driver
, F54_NAME
, sizeof(cap
->driver
));
388 strlcpy(cap
->card
, SYNAPTICS_INPUT_DEVICE_NAME
, sizeof(cap
->card
));
389 snprintf(cap
->bus_info
, sizeof(cap
->bus_info
),
390 "rmi4:%s", dev_name(&f54
->fn
->dev
));
395 static int rmi_f54_vidioc_enum_input(struct file
*file
, void *priv
,
396 struct v4l2_input
*i
)
398 struct f54_data
*f54
= video_drvdata(file
);
399 enum rmi_f54_report_type reptype
;
401 reptype
= rmi_f54_get_reptype(f54
, i
->index
);
402 if (reptype
== F54_REPORT_NONE
)
405 i
->type
= V4L2_INPUT_TYPE_TOUCH
;
407 strlcpy(i
->name
, rmi_f54_report_type_names
[reptype
], sizeof(i
->name
));
411 static int rmi_f54_set_input(struct f54_data
*f54
, unsigned int i
)
413 struct rmi_device
*rmi_dev
= f54
->fn
->rmi_dev
;
414 struct rmi_driver_data
*drv_data
= dev_get_drvdata(&rmi_dev
->dev
);
415 u8 rx
= drv_data
->num_rx_electrodes
? : f54
->num_rx_electrodes
;
416 u8 tx
= drv_data
->num_tx_electrodes
? : f54
->num_tx_electrodes
;
417 struct v4l2_pix_format
*f
= &f54
->format
;
418 enum rmi_f54_report_type reptype
;
421 reptype
= rmi_f54_get_reptype(f54
, i
);
422 if (reptype
== F54_REPORT_NONE
)
425 ret
= rmi_f54_get_pixel_fmt(reptype
, &f
->pixelformat
);
433 f
->field
= V4L2_FIELD_NONE
;
434 f
->colorspace
= V4L2_COLORSPACE_RAW
;
435 f
->bytesperline
= f
->width
* sizeof(u16
);
436 f
->sizeimage
= f
->width
* f
->height
* sizeof(u16
);
441 static int rmi_f54_vidioc_s_input(struct file
*file
, void *priv
, unsigned int i
)
443 return rmi_f54_set_input(video_drvdata(file
), i
);
446 static int rmi_f54_vidioc_g_input(struct file
*file
, void *priv
,
449 struct f54_data
*f54
= video_drvdata(file
);
456 static int rmi_f54_vidioc_fmt(struct file
*file
, void *priv
,
457 struct v4l2_format
*f
)
459 struct f54_data
*f54
= video_drvdata(file
);
461 f
->fmt
.pix
= f54
->format
;
466 static int rmi_f54_vidioc_enum_fmt(struct file
*file
, void *priv
,
467 struct v4l2_fmtdesc
*fmt
)
469 struct f54_data
*f54
= video_drvdata(file
);
471 if (fmt
->type
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
)
477 fmt
->pixelformat
= f54
->format
.pixelformat
;
482 static int rmi_f54_vidioc_g_parm(struct file
*file
, void *fh
,
483 struct v4l2_streamparm
*a
)
485 if (a
->type
!= V4L2_BUF_TYPE_VIDEO_CAPTURE
)
488 a
->parm
.capture
.readbuffers
= 1;
489 a
->parm
.capture
.timeperframe
.numerator
= 1;
490 a
->parm
.capture
.timeperframe
.denominator
= 10;
494 static const struct v4l2_ioctl_ops rmi_f54_video_ioctl_ops
= {
495 .vidioc_querycap
= rmi_f54_vidioc_querycap
,
497 .vidioc_enum_fmt_vid_cap
= rmi_f54_vidioc_enum_fmt
,
498 .vidioc_s_fmt_vid_cap
= rmi_f54_vidioc_fmt
,
499 .vidioc_g_fmt_vid_cap
= rmi_f54_vidioc_fmt
,
500 .vidioc_try_fmt_vid_cap
= rmi_f54_vidioc_fmt
,
501 .vidioc_g_parm
= rmi_f54_vidioc_g_parm
,
503 .vidioc_enum_input
= rmi_f54_vidioc_enum_input
,
504 .vidioc_g_input
= rmi_f54_vidioc_g_input
,
505 .vidioc_s_input
= rmi_f54_vidioc_s_input
,
507 .vidioc_reqbufs
= vb2_ioctl_reqbufs
,
508 .vidioc_create_bufs
= vb2_ioctl_create_bufs
,
509 .vidioc_querybuf
= vb2_ioctl_querybuf
,
510 .vidioc_qbuf
= vb2_ioctl_qbuf
,
511 .vidioc_dqbuf
= vb2_ioctl_dqbuf
,
512 .vidioc_expbuf
= vb2_ioctl_expbuf
,
514 .vidioc_streamon
= vb2_ioctl_streamon
,
515 .vidioc_streamoff
= vb2_ioctl_streamoff
,
518 static const struct video_device rmi_f54_video_device
= {
519 .name
= "Synaptics RMI4",
520 .fops
= &rmi_f54_video_fops
,
521 .ioctl_ops
= &rmi_f54_video_ioctl_ops
,
522 .release
= video_device_release_empty
,
523 .device_caps
= V4L2_CAP_VIDEO_CAPTURE
| V4L2_CAP_TOUCH
|
524 V4L2_CAP_READWRITE
| V4L2_CAP_STREAMING
,
527 static void rmi_f54_work(struct work_struct
*work
)
529 struct f54_data
*f54
= container_of(work
, struct f54_data
, work
.work
);
530 struct rmi_function
*fn
= f54
->fn
;
537 report_size
= rmi_f54_get_report_size(f54
);
538 if (report_size
== 0) {
539 dev_err(&fn
->dev
, "Bad report size, report type=%d\n",
542 goto error
; /* retry won't help */
545 mutex_lock(&f54
->data_mutex
);
548 * Need to check if command has completed.
549 * If not try again later.
551 error
= rmi_read(fn
->rmi_dev
, f54
->fn
->fd
.command_base_addr
,
554 dev_err(&fn
->dev
, "Failed to read back command\n");
557 if (command
& F54_GET_REPORT
) {
558 if (time_after(jiffies
, f54
->timeout
)) {
559 dev_err(&fn
->dev
, "Get report command timed out\n");
566 rmi_dbg(RMI_DEBUG_FN
, &fn
->dev
, "Get report command completed, reading data\n");
568 for (i
= 0; i
< report_size
; i
+= F54_REPORT_DATA_SIZE
) {
569 int size
= min(F54_REPORT_DATA_SIZE
, report_size
- i
);
573 error
= rmi_write_block(fn
->rmi_dev
,
574 fn
->fd
.data_base_addr
+ F54_FIFO_OFFSET
,
577 dev_err(&fn
->dev
, "Failed to set fifo start offset\n");
581 error
= rmi_read_block(fn
->rmi_dev
, fn
->fd
.data_base_addr
+
582 F54_REPORT_DATA_OFFSET
,
583 f54
->report_data
+ i
, size
);
585 dev_err(&fn
->dev
, "%s: read [%d bytes] returned %d\n",
586 __func__
, size
, error
);
592 f54
->report_size
= error
? 0 : report_size
;
597 if (report_size
== 0 && !error
) {
598 queue_delayed_work(f54
->workqueue
, &f54
->work
,
599 msecs_to_jiffies(1));
601 f54
->is_busy
= false;
602 complete(&f54
->cmd_done
);
605 mutex_unlock(&f54
->data_mutex
);
608 static int rmi_f54_config(struct rmi_function
*fn
)
610 struct rmi_driver
*drv
= fn
->rmi_dev
->driver
;
612 drv
->clear_irq_bits(fn
->rmi_dev
, fn
->irq_mask
);
617 static int rmi_f54_detect(struct rmi_function
*fn
)
620 struct f54_data
*f54
;
623 f54
= dev_get_drvdata(&fn
->dev
);
625 error
= rmi_read_block(fn
->rmi_dev
, fn
->fd
.query_base_addr
,
628 dev_err(&fn
->dev
, "%s: Failed to query F54 properties\n",
633 f54
->num_rx_electrodes
= buf
[0];
634 f54
->num_tx_electrodes
= buf
[1];
635 f54
->capabilities
= buf
[2];
636 f54
->clock_rate
= buf
[3] | (buf
[4] << 8);
637 f54
->family
= buf
[5];
639 rmi_dbg(RMI_DEBUG_FN
, &fn
->dev
, "F54 num_rx_electrodes: %d\n",
640 f54
->num_rx_electrodes
);
641 rmi_dbg(RMI_DEBUG_FN
, &fn
->dev
, "F54 num_tx_electrodes: %d\n",
642 f54
->num_tx_electrodes
);
643 rmi_dbg(RMI_DEBUG_FN
, &fn
->dev
, "F54 capabilities: 0x%x\n",
645 rmi_dbg(RMI_DEBUG_FN
, &fn
->dev
, "F54 clock rate: 0x%x\n",
647 rmi_dbg(RMI_DEBUG_FN
, &fn
->dev
, "F54 family: 0x%x\n",
650 f54
->is_busy
= false;
655 static int rmi_f54_probe(struct rmi_function
*fn
)
657 struct f54_data
*f54
;
661 f54
= devm_kzalloc(&fn
->dev
, sizeof(struct f54_data
), GFP_KERNEL
);
666 dev_set_drvdata(&fn
->dev
, f54
);
668 ret
= rmi_f54_detect(fn
);
672 mutex_init(&f54
->data_mutex
);
673 mutex_init(&f54
->status_mutex
);
675 rx
= f54
->num_rx_electrodes
;
676 tx
= f54
->num_tx_electrodes
;
677 f54
->report_data
= devm_kzalloc(&fn
->dev
,
678 array3_size(tx
, rx
, sizeof(u16
)),
680 if (f54
->report_data
== NULL
)
683 INIT_DELAYED_WORK(&f54
->work
, rmi_f54_work
);
685 f54
->workqueue
= create_singlethread_workqueue("rmi4-poller");
689 rmi_f54_create_input_map(f54
);
690 rmi_f54_set_input(f54
, 0);
692 /* register video device */
693 strlcpy(f54
->v4l2
.name
, F54_NAME
, sizeof(f54
->v4l2
.name
));
694 ret
= v4l2_device_register(&fn
->dev
, &f54
->v4l2
);
696 dev_err(&fn
->dev
, "Unable to register video dev.\n");
700 /* initialize the queue */
701 mutex_init(&f54
->lock
);
702 f54
->queue
= rmi_f54_queue
;
703 f54
->queue
.drv_priv
= f54
;
704 f54
->queue
.lock
= &f54
->lock
;
705 f54
->queue
.dev
= &fn
->dev
;
707 ret
= vb2_queue_init(&f54
->queue
);
711 f54
->vdev
= rmi_f54_video_device
;
712 f54
->vdev
.v4l2_dev
= &f54
->v4l2
;
713 f54
->vdev
.lock
= &f54
->lock
;
714 f54
->vdev
.vfl_dir
= VFL_DIR_RX
;
715 f54
->vdev
.queue
= &f54
->queue
;
716 video_set_drvdata(&f54
->vdev
, f54
);
718 ret
= video_register_device(&f54
->vdev
, VFL_TYPE_TOUCH
, -1);
720 dev_err(&fn
->dev
, "Unable to register video subdevice.");
727 v4l2_device_unregister(&f54
->v4l2
);
729 cancel_delayed_work_sync(&f54
->work
);
730 flush_workqueue(f54
->workqueue
);
731 destroy_workqueue(f54
->workqueue
);
735 static void rmi_f54_remove(struct rmi_function
*fn
)
737 struct f54_data
*f54
= dev_get_drvdata(&fn
->dev
);
739 video_unregister_device(&f54
->vdev
);
740 v4l2_device_unregister(&f54
->v4l2
);
741 destroy_workqueue(f54
->workqueue
);
744 struct rmi_function_handler rmi_f54_handler
= {
749 .probe
= rmi_f54_probe
,
750 .config
= rmi_f54_config
,
751 .remove
= rmi_f54_remove
,