driver: ir: import picasso-r-oss changes

This commit is contained in:
spakkkk 2021-02-04 22:01:18 +00:00
parent 2fb6b3e281
commit d882cc2dab

View File

@ -1,164 +1,281 @@
// SPDX-License-Identifier: GPL-2.0
// SPI driven IR LED device driver
//
// Copyright (c) 2016 Samsung Electronics Co., Ltd.
// Copyright (c) Andi Shyti <andi@etezian.org>
/*
* Copyright (c) 2016 Samsung Electronics Co., Ltd.
* Copyright (C) 2021 XiaoMi, Inc.
* Author: Andi Shyti <andi.shyti@samsung.it>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* SPI driven IR LED device driver
*/
#include <linux/init.h>
#include <linux/device.h>
#include <linux/err.h>
#include <linux/list.h>
#include <linux/errno.h>
#include <linux/compat.h>
#include <linux/delay.h>
#include <linux/kthread.h>
#include <linux/mm.h>
#include <linux/slab.h>
#include <linux/types.h>
#ifdef CONFIG_OF
#include <linux/of_device.h>
#include <linux/of.h>
#endif
#include <linux/gpio.h>
#include <asm/delay.h>
#include <linux/fs.h>
#include <linux/module.h>
#include <linux/mutex.h>
#include <linux/of_gpio.h>
#include <linux/regulator/consumer.h>
#include <linux/spi/spi.h>
#include <media/rc-core.h>
#include <linux/miscdevice.h>
#include <uapi/linux/lirc.h>
#include <asm/uaccess.h>
#define IR_SPI_DRIVER_NAME "ir-spi"
#define IR_SPI_DEFAULT_FREQUENCY 38000
#define IR_SPI_MAX_BUFSIZE 4096
#define IR_SPI_DEFAULT_FREQUENCY 1920000
#define IR_SPI_BIT_PER_WORD 32
#define IR_SPI_DATA_BUFFER 150000
struct ir_spi_data *ir_spi_data_g;
struct ir_spi_data {
u32 freq;
bool negated;
u16 nusers;
int power_gpio;
int buffer_size;
u16 tx_buf[IR_SPI_MAX_BUFSIZE];
u16 pulse;
u16 space;
u8 *buffer;
struct rc_dev *rc;
dev_t devt;
struct spi_device *spi;
struct spi_transfer xfer;
struct mutex mutex;
struct regulator *regulator;
};
static int ir_spi_tx(struct rc_dev *dev,
unsigned int *buffer, unsigned int count)
static ssize_t ir_spi_chardev_write(struct file *file,
const char __user *buffer,
size_t length, loff_t *offset)
{
int i;
int ret;
unsigned int len = 0;
struct ir_spi_data *idata = dev->priv;
struct spi_transfer xfer;
struct ir_spi_data *idata = file->private_data;
bool please_free = false;
int ret = 0;
/* convert the pulse/space signal to raw binary signal */
for (i = 0; i < count; i++) {
unsigned int periods;
int j;
u16 val;
periods = DIV_ROUND_CLOSEST(buffer[i] * idata->freq, 1000000);
if (len + periods >= IR_SPI_MAX_BUFSIZE)
if (idata->xfer.len && (idata->xfer.len != length))
return -EINVAL;
/*
* the first value in buffer is a pulse, so that 0, 2, 4, ...
* contain a pulse duration. On the contrary, 1, 3, 5, ...
* contain a space duration.
*/
val = (i % 2) ? idata->space : idata->pulse;
for (j = 0; j < periods; j++)
idata->tx_buf[len++] = val;
mutex_lock(&idata->mutex);
if (!idata->xfer.len) {
idata->buffer = kmalloc(length, GFP_DMA);
if (!idata->buffer) {
ret = -ENOMEM;
goto out_unlock;
}
memset(&xfer, 0, sizeof(xfer));
idata->xfer.len = length;
please_free = true;
}
xfer.speed_hz = idata->freq * 16;
xfer.len = len * sizeof(*idata->tx_buf);
xfer.tx_buf = idata->tx_buf;
if (copy_from_user(idata->buffer, buffer, length)) {
ret = -EFAULT;
goto out_free;
}
idata->xfer.tx_buf = idata->buffer;
dev_warn(&idata->spi->dev, "xfer.len%d buffer_size %d\n",(int)idata->xfer.len,idata->buffer_size);
ret = spi_sync_transfer(idata->spi, &idata->xfer, 1);
if (ret)
dev_err(&idata->spi->dev, "unable to deliver the signal\n");
out_free:
if (please_free) {
kfree(idata->buffer);
idata->xfer.len = 0;
idata->buffer = NULL;
}
ret = regulator_enable(idata->regulator);
out_unlock:
mutex_unlock(&idata->mutex);
return ret ? ret : length;
}
static int ir_spi_chardev_open(struct inode *inode, struct file *file)
{
struct ir_spi_data *idata;
idata = ir_spi_data_g;
if (unlikely(idata->nusers >= SHRT_MAX)) {
dev_err(&idata->spi->dev, "device busy\n");
return -EBUSY;
}
file->private_data = idata;
mutex_lock(&idata->mutex);
idata->nusers++;
mutex_unlock(&idata->mutex);
return 0;
}
static int ir_spi_chardev_close(struct inode *inode, struct file *file)
{
struct ir_spi_data *idata;
idata = ir_spi_data_g;
mutex_lock(&idata->mutex);
idata->nusers--;
/*
* check if someone else is using the driver,
* if not, then:
*
* - reset length and frequency values to default
* - shut down the LED
* - free the buffer (NULL or ZERO_SIZE_PTR are noop)
*/
if (!idata->nusers) {
idata->xfer.len = 0;
idata->xfer.speed_hz = IR_SPI_DEFAULT_FREQUENCY;
}
mutex_unlock(&idata->mutex);
return 0;
}
static long ir_spi_chardev_ioctl(struct file *file, unsigned int cmd,
unsigned long arg)
{
__u32 p;
s32 ret;
struct ir_spi_data *idata = file->private_data;
switch (cmd) {
case LIRC_SET_SEND_MODE: {
void *new;
ret = get_user(p, (__u32 __user *) arg);
if (ret)
return ret;
ret = spi_sync_transfer(idata->spi, &xfer, 1);
if (ret)
dev_err(&idata->spi->dev, "unable to deliver the signal\n");
/*
* the user is trying to set the same
* length of the current value
*/
if (idata->xfer.len == p)
return 0;
regulator_disable(idata->regulator);
/*
* multiple users should use the driver with the
* length, otherwise return EPERM same data
*/
if (idata->nusers > 1)
return -EPERM;
return ret ? ret : count;
/*
* if the buffer is already allocated, reallocate it with the
* desired value. If the desired value is 0, then the buffer is
* freed from krealloc()
*/
if (idata->xfer.len){
new = krealloc(idata->buffer, p, GFP_DMA);
}
else{
if ((p>idata->buffer_size) || (idata->buffer == NULL)){
printk ("IR new malloc %d",(int)idata->xfer.len);
if (idata->buffer != NULL)
{
kfree (idata->buffer);
idata->buffer = NULL;
}
new = kmalloc(p, GFP_DMA);
if (!new)
return -ENOMEM;
idata->buffer = new;
idata->buffer_size = p;
}
}
static int ir_spi_set_tx_carrier(struct rc_dev *dev, u32 carrier)
{
struct ir_spi_data *idata = dev->priv;
mutex_lock(&idata->mutex);
idata->xfer.len = p;
mutex_unlock(&idata->mutex);
return 0;
}
}
if (!carrier)
return -EINVAL;
idata->freq = carrier;
return 0;
}
static int ir_spi_set_duty_cycle(struct rc_dev *dev, u32 duty_cycle)
{
struct ir_spi_data *idata = dev->priv;
int bits = (duty_cycle * 15) / 100;
static const struct file_operations ir_spi_fops = {
.owner = THIS_MODULE,
.write = ir_spi_chardev_write,
.open = ir_spi_chardev_open,
.release = ir_spi_chardev_close,
.llseek = noop_llseek,
.unlocked_ioctl = ir_spi_chardev_ioctl,
.compat_ioctl = ir_spi_chardev_ioctl,
};
idata->pulse = GENMASK(bits, 0);
if (idata->negated) {
idata->pulse = ~idata->pulse;
idata->space = 0xffff;
} else {
idata->space = 0;
}
return 0;
}
static struct miscdevice ir_spi_dev_drv = {
.minor = MISC_DYNAMIC_MINOR,
.name = "ir_spi",
.fops = &ir_spi_fops,
.nodename = "ir_spi",
.mode = 0666,
};
static int ir_spi_probe(struct spi_device *spi)
{
int ret;
u8 dc;
struct ir_spi_data *idata;
u8 *buffer = NULL;
idata = devm_kzalloc(&spi->dev, sizeof(*idata), GFP_KERNEL);
if (!idata)
return -ENOMEM;
idata->regulator = devm_regulator_get(&spi->dev, "irda_regulator");
if (IS_ERR(idata->regulator))
return PTR_ERR(idata->regulator);
mutex_init(&idata->mutex);
idata->rc = devm_rc_allocate_device(&spi->dev, RC_DRIVER_IR_RAW_TX);
if (!idata->rc)
return -ENOMEM;
idata->rc->tx_ir = ir_spi_tx;
idata->rc->s_tx_carrier = ir_spi_set_tx_carrier;
idata->rc->s_tx_duty_cycle = ir_spi_set_duty_cycle;
idata->rc->device_name = "IR SPI";
idata->rc->driver_name = IR_SPI_DRIVER_NAME;
idata->rc->priv = idata;
idata->spi = spi;
spi_set_drvdata(spi, idata);
ir_spi_data_g = idata;
idata->negated = of_property_read_bool(spi->dev.of_node,
"led-active-low");
ret = of_property_read_u8(spi->dev.of_node, "duty-cycle", &dc);
if (ret)
dc = 50;
/* ir_spi_set_duty_cycle cannot fail,
* it returns int to be compatible with the
* rc->s_tx_duty_cycle function
*/
ir_spi_set_duty_cycle(idata->rc, dc);
idata->freq = IR_SPI_DEFAULT_FREQUENCY;
return devm_rc_register_device(&spi->dev, idata->rc);
idata->xfer.bits_per_word = IR_SPI_BIT_PER_WORD;
idata->xfer.speed_hz = IR_SPI_DEFAULT_FREQUENCY;
buffer = kmalloc(IR_SPI_DATA_BUFFER, GFP_DMA);
if (!buffer)
{
return -ENOMEM;
}
idata->buffer = buffer;
idata->buffer_size = IR_SPI_DATA_BUFFER;
misc_register(&ir_spi_dev_drv);
return 0;
}
static int ir_spi_remove(struct spi_device *spi)
{
struct ir_spi_data *idata = spi_get_drvdata(spi);
if (idata->buffer != NULL){
kfree(idata->buffer);
idata->buffer = NULL;
}
misc_deregister(&ir_spi_dev_drv);
return 0;
}
static const struct of_device_id ir_spi_of_match[] = {
{ .compatible = "ir-spi-led" },
{ .compatible = "ir-spi" },
{},
};
MODULE_DEVICE_TABLE(of, ir_spi_of_match);
@ -174,6 +291,6 @@ static struct spi_driver ir_spi_driver = {
module_spi_driver(ir_spi_driver);
MODULE_AUTHOR("Andi Shyti <andi@etezian.org>");
MODULE_AUTHOR("Andi Shyti <andi.shyti@samsung.com>");
MODULE_DESCRIPTION("SPI IR LED");
MODULE_LICENSE("GPL v2");