mirror of
https://github.com/torvalds/linux.git
synced 2024-11-21 19:46:16 +00:00
02e2af20f4
Here is the big set of char/misc and other small driver subsystem updates for 5.18-rc1. Included in here are merges from driver subsystems which contain: - iio driver updates and new drivers - fsi driver updates - fpga driver updates - habanalabs driver updates and support for new hardware - soundwire driver updates and new drivers - phy driver updates and new drivers - coresight driver updates - icc driver updates Individual changes include: - mei driver updates - interconnect driver updates - new PECI driver subsystem added - vmci driver updates - lots of tiny misc/char driver updates There will be two merge conflicts with your tree, one in MAINTAINERS which is obvious to fix up, and one in drivers/phy/freescale/Kconfig which also should be easy to resolve. All of these have been in linux-next for a while with no reported problems. Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org> -----BEGIN PGP SIGNATURE----- iG0EABECAC0WIQT0tgzFv3jCIUoxPcsxR9QN2y37KQUCYkG3fQ8cZ3JlZ0Brcm9h aC5jb20ACgkQMUfUDdst+ykNEgCfaRG8CRxewDXOO4+GSeA3NGK+AIoAnR89donC R4bgCjfg8BWIBcVVXg3/ =WWXC -----END PGP SIGNATURE----- Merge tag 'char-misc-5.18-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc Pull char/misc and other driver updates from Greg KH: "Here is the big set of char/misc and other small driver subsystem updates for 5.18-rc1. Included in here are merges from driver subsystems which contain: - iio driver updates and new drivers - fsi driver updates - fpga driver updates - habanalabs driver updates and support for new hardware - soundwire driver updates and new drivers - phy driver updates and new drivers - coresight driver updates - icc driver updates Individual changes include: - mei driver updates - interconnect driver updates - new PECI driver subsystem added - vmci driver updates - lots of tiny misc/char driver updates All of these have been in linux-next for a while with no reported problems" * tag 'char-misc-5.18-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/gregkh/char-misc: (556 commits) firmware: google: Properly state IOMEM dependency kgdbts: fix return value of __setup handler firmware: sysfb: fix platform-device leak in error path firmware: stratix10-svc: add missing callback parameter on RSU arm64: dts: qcom: add non-secure domain property to fastrpc nodes misc: fastrpc: Add dma handle implementation misc: fastrpc: Add fdlist implementation misc: fastrpc: Add helper function to get list and page misc: fastrpc: Add support to secure memory map dt-bindings: misc: add fastrpc domain vmid property misc: fastrpc: check before loading process to the DSP misc: fastrpc: add secure domain support dt-bindings: misc: add property to support non-secure DSP misc: fastrpc: Add support to get DSP capabilities misc: fastrpc: add support for FASTRPC_IOCTL_MEM_MAP/UNMAP misc: fastrpc: separate fastrpc device from channel context dt-bindings: nvmem: brcm,nvram: add basic NVMEM cells dt-bindings: nvmem: make "reg" property optional nvmem: brcm_nvram: parse NVRAM content into NVMEM cells nvmem: dt-bindings: Fix the error of dt-bindings check ...
172 lines
4.0 KiB
C
172 lines
4.0 KiB
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* AD5592R Digital <-> Analog converters driver
|
|
*
|
|
* Copyright 2015-2016 Analog Devices Inc.
|
|
* Author: Paul Cercueil <paul.cercueil@analog.com>
|
|
*/
|
|
|
|
#include "ad5592r-base.h"
|
|
|
|
#include <linux/bitops.h>
|
|
#include <linux/module.h>
|
|
#include <linux/mod_devicetable.h>
|
|
#include <linux/spi/spi.h>
|
|
|
|
#define AD5592R_GPIO_READBACK_EN BIT(10)
|
|
#define AD5592R_LDAC_READBACK_EN BIT(6)
|
|
|
|
static int ad5592r_spi_wnop_r16(struct ad5592r_state *st, __be16 *buf)
|
|
{
|
|
struct spi_device *spi = container_of(st->dev, struct spi_device, dev);
|
|
struct spi_transfer t = {
|
|
.tx_buf = &st->spi_msg_nop,
|
|
.rx_buf = buf,
|
|
.len = 2
|
|
};
|
|
|
|
st->spi_msg_nop = 0; /* NOP */
|
|
|
|
return spi_sync_transfer(spi, &t, 1);
|
|
}
|
|
|
|
static int ad5592r_write_dac(struct ad5592r_state *st, unsigned chan, u16 value)
|
|
{
|
|
struct spi_device *spi = container_of(st->dev, struct spi_device, dev);
|
|
|
|
st->spi_msg = cpu_to_be16(BIT(15) | (chan << 12) | value);
|
|
|
|
return spi_write(spi, &st->spi_msg, sizeof(st->spi_msg));
|
|
}
|
|
|
|
static int ad5592r_read_adc(struct ad5592r_state *st, unsigned chan, u16 *value)
|
|
{
|
|
struct spi_device *spi = container_of(st->dev, struct spi_device, dev);
|
|
int ret;
|
|
|
|
st->spi_msg = cpu_to_be16((AD5592R_REG_ADC_SEQ << 11) | BIT(chan));
|
|
|
|
ret = spi_write(spi, &st->spi_msg, sizeof(st->spi_msg));
|
|
if (ret)
|
|
return ret;
|
|
|
|
/*
|
|
* Invalid data:
|
|
* See Figure 40. Single-Channel ADC Conversion Sequence
|
|
*/
|
|
ret = ad5592r_spi_wnop_r16(st, &st->spi_msg);
|
|
if (ret)
|
|
return ret;
|
|
|
|
ret = ad5592r_spi_wnop_r16(st, &st->spi_msg);
|
|
if (ret)
|
|
return ret;
|
|
|
|
*value = be16_to_cpu(st->spi_msg);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int ad5592r_reg_write(struct ad5592r_state *st, u8 reg, u16 value)
|
|
{
|
|
struct spi_device *spi = container_of(st->dev, struct spi_device, dev);
|
|
|
|
st->spi_msg = cpu_to_be16((reg << 11) | value);
|
|
|
|
return spi_write(spi, &st->spi_msg, sizeof(st->spi_msg));
|
|
}
|
|
|
|
static int ad5592r_reg_read(struct ad5592r_state *st, u8 reg, u16 *value)
|
|
{
|
|
struct spi_device *spi = container_of(st->dev, struct spi_device, dev);
|
|
int ret;
|
|
|
|
st->spi_msg = cpu_to_be16((AD5592R_REG_LDAC << 11) |
|
|
AD5592R_LDAC_READBACK_EN | (reg << 2));
|
|
|
|
ret = spi_write(spi, &st->spi_msg, sizeof(st->spi_msg));
|
|
if (ret)
|
|
return ret;
|
|
|
|
ret = ad5592r_spi_wnop_r16(st, &st->spi_msg);
|
|
if (ret)
|
|
return ret;
|
|
|
|
*value = be16_to_cpu(st->spi_msg);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int ad5592r_gpio_read(struct ad5592r_state *st, u8 *value)
|
|
{
|
|
int ret;
|
|
|
|
ret = ad5592r_reg_write(st, AD5592R_REG_GPIO_IN_EN,
|
|
AD5592R_GPIO_READBACK_EN | st->gpio_in);
|
|
if (ret)
|
|
return ret;
|
|
|
|
ret = ad5592r_spi_wnop_r16(st, &st->spi_msg);
|
|
if (ret)
|
|
return ret;
|
|
|
|
*value = (u8) be16_to_cpu(st->spi_msg);
|
|
|
|
return 0;
|
|
}
|
|
|
|
static const struct ad5592r_rw_ops ad5592r_rw_ops = {
|
|
.write_dac = ad5592r_write_dac,
|
|
.read_adc = ad5592r_read_adc,
|
|
.reg_write = ad5592r_reg_write,
|
|
.reg_read = ad5592r_reg_read,
|
|
.gpio_read = ad5592r_gpio_read,
|
|
};
|
|
|
|
static int ad5592r_spi_probe(struct spi_device *spi)
|
|
{
|
|
const struct spi_device_id *id = spi_get_device_id(spi);
|
|
|
|
return ad5592r_probe(&spi->dev, id->name, &ad5592r_rw_ops);
|
|
}
|
|
|
|
static void ad5592r_spi_remove(struct spi_device *spi)
|
|
{
|
|
ad5592r_remove(&spi->dev);
|
|
}
|
|
|
|
static const struct spi_device_id ad5592r_spi_ids[] = {
|
|
{ .name = "ad5592r", },
|
|
{}
|
|
};
|
|
MODULE_DEVICE_TABLE(spi, ad5592r_spi_ids);
|
|
|
|
static const struct of_device_id ad5592r_of_match[] = {
|
|
{ .compatible = "adi,ad5592r", },
|
|
{},
|
|
};
|
|
MODULE_DEVICE_TABLE(of, ad5592r_of_match);
|
|
|
|
static const struct acpi_device_id ad5592r_acpi_match[] = {
|
|
{"ADS5592", },
|
|
{ },
|
|
};
|
|
MODULE_DEVICE_TABLE(acpi, ad5592r_acpi_match);
|
|
|
|
static struct spi_driver ad5592r_spi_driver = {
|
|
.driver = {
|
|
.name = "ad5592r",
|
|
.of_match_table = ad5592r_of_match,
|
|
.acpi_match_table = ad5592r_acpi_match,
|
|
},
|
|
.probe = ad5592r_spi_probe,
|
|
.remove = ad5592r_spi_remove,
|
|
.id_table = ad5592r_spi_ids,
|
|
};
|
|
module_spi_driver(ad5592r_spi_driver);
|
|
|
|
MODULE_AUTHOR("Paul Cercueil <paul.cercueil@analog.com>");
|
|
MODULE_DESCRIPTION("Analog Devices AD5592R multi-channel converters");
|
|
MODULE_LICENSE("GPL v2");
|
|
MODULE_IMPORT_NS(IIO_AD5592R);
|