From: Tomasz Kazimierz Motyl <tomasz.motyl@xxxxxx> This is ADC driver that can be found in the Renesas RZ/N1D SoC https://www.renesas.com/us/en/document/man/rzn1d-group-rzn1s-group-rzn1l-group-users-manual-peripherals-0?language=en&r=1054561 ADC Core Features - Up to 2 units - Resolution 12-bit - Sampling rate from 0.0625 MSPS to 1 MSPS - Successive approximation - Maximal conversion time 21 ADC_CLK - Analog inputs 8 channels per core (5 standard channels + 3 channels with sample/hold) - Each channel has his own input trigger to start the conversion, the triggers are managed by the ADC Controller - Power down mode - ADC clock frequency from 4 MHz to 20 MHz Signed-off-by: Tomasz Kazimierz Motyl <tomasz.motyl@xxxxxx> Signed-off-by: Frederic Loreaud <frederic.loreaud@xxxxxx> Signed-off-by: Pierre Castellan <pierre.castellan@xxxxxxxxxx> --- .../devicetree/bindings/iio/adc/rzn1-adc.txt | 64 ++++ drivers/iio/adc/Kconfig | 9 + drivers/iio/adc/Makefile | 1 + drivers/iio/adc/rzn1-adc.c | 325 ++++++++++++++++++ 4 files changed, 399 insertions(+) create mode 100644 Documentation/devicetree/bindings/iio/adc/rzn1-adc.txt create mode 100644 drivers/iio/adc/rzn1-adc.c diff --git a/Documentation/devicetree/bindings/iio/adc/rzn1-adc.txt b/Documentation/devicetree/bindings/iio/adc/rzn1-adc.txt new file mode 100644 index 000000000000..ff5b277fb470 --- /dev/null +++ b/Documentation/devicetree/bindings/iio/adc/rzn1-adc.txt @@ -0,0 +1,64 @@ +ADC for the Renesas RZ/N1D (R9A06G032). +Specifications on the converters can be found at: +https://www.renesas.com/us/en/document/man/rzn1d-group-rzn1s-group-rzn1l-group-users-manual-peripherals-0?language=en&r=1054561 + +Required properties: + +- compatible: Must be "iio,rzn1-adc", "rzn1-adc" +- reg: Offset and length of the register set for the device +- clocks: phandle to the master clock (all_adc) + see: Documentation/devicetree/bindings/clock/clock-bindings.txt +- clock-names: Must be "rzn1_adc_clk". + +Optional properties: +channels: +label: A channel label that is used as channel's extended name part i.e.: + A label = "temp1" for channel1@1 results in a following entry in the sysfs: + /sys/bus/iio/devices/iio:device0/in_voltage1_temp1_raw . + If the label would not be specified the resulting sysfs entry would be as follows: + /sys/bus/iio/devices/iio:device0/in_voltage1_raw . + + +Whenever specified incorrectly or unspecified an entry gets skipped and driver falls back to hard-coded defaults. + +Example: + + rzn1_adc: rzn1-adc@0x40065000 { + #address-cells = <1>; + #size-cells = <1>; + compatible = "renesas,r9a06g032-adc", "iio,rzn1-adc", "rzn1-adc"; + reg = <0x40065000 0x1000>; + clocks = <&sysctrl R9A06G032_CLK_ADC>; + clock-names = "rzn1_adc_clk"; + status = "okay"; + + channels { + #address-cells = <1>; + #size-cells = <0>; + + chan0@0 { /* Channel 0 placeholder */ + reg = <0>; + label = "adc1_in0"; + }; + + chan1@1 { /* Channel 1 placeholder */ + reg = <1>; + label = "adc1_in1"; + }; + + chan2@2 { /* Channel 2 placeholder */ + reg = <2>; + label = "adc1_in2"; + }; + + chan3@3 { /* Channel 3 placeholder */ + reg = <3>; + label = "adc1_in3"; + }; + + chan4@4 { /* Channel 4 placeholder */ + reg = <4>; + label = "adc1_in4"; + }; + }; /* channels */ + }; /* rzn1-adc */ diff --git a/drivers/iio/adc/Kconfig b/drivers/iio/adc/Kconfig index f0af3a42f53c..d4d1af3e6ba2 100644 --- a/drivers/iio/adc/Kconfig +++ b/drivers/iio/adc/Kconfig @@ -746,6 +746,15 @@ config ROCKCHIP_SARADC To compile this driver as a module, choose M here: the module will be called rockchip_saradc. +config RZN1_ADC + tristate "Renesas ADC driver" + help + Say yes here to build support for the ADCs found in SoCs from + Renesas. + + To compile this driver as a module, choose M here: the + module will be called rzn1_adc. + config SC27XX_ADC tristate "Spreadtrum SC27xx series PMICs ADC" depends on MFD_SC27XX_PMIC || COMPILE_TEST diff --git a/drivers/iio/adc/Makefile b/drivers/iio/adc/Makefile index ef9cc485fb67..562d3ac3c7be 100644 --- a/drivers/iio/adc/Makefile +++ b/drivers/iio/adc/Makefile @@ -70,6 +70,7 @@ obj-$(CONFIG_QCOM_SPMI_VADC) += qcom-spmi-vadc.o obj-$(CONFIG_QCOM_PM8XXX_XOADC) += qcom-pm8xxx-xoadc.o obj-$(CONFIG_RCAR_GYRO_ADC) += rcar-gyroadc.o obj-$(CONFIG_ROCKCHIP_SARADC) += rockchip_saradc.o +obj-$(CONFIG_RZN1_ADC) += rzn1-adc.o obj-$(CONFIG_SC27XX_ADC) += sc27xx_adc.o obj-$(CONFIG_SPEAR_ADC) += spear_adc.o obj-$(CONFIG_STX104) += stx104.o diff --git a/drivers/iio/adc/rzn1-adc.c b/drivers/iio/adc/rzn1-adc.c new file mode 100644 index 000000000000..3f5fbb1fd9aa --- /dev/null +++ b/drivers/iio/adc/rzn1-adc.c @@ -0,0 +1,325 @@ +// SPDX-License-Identifier: GPL-2.0+ +/* Driver for Renesas RZN1 SoC built-in ADC + * + * Authors: + * Tomasz Kazimierz Motyl + * Frédéric Loreaud + * Pierre Castellan + * + * Copyright (C) 2021 Schneider-Electric + */ + +#include <linux/kernel.h> +#include <linux/slab.h> +#include <linux/module.h> +#include <linux/platform_device.h> +#include <linux/interrupt.h> +#include <linux/mutex.h> +#include <linux/completion.h> +#include <linux/iio/iio.h> +#include <linux/iio/machine.h> +#include <linux/iio/driver.h> +#include <linux/io.h> +#include <linux/clk.h> +#include <linux/firmware/lces_monitor.h> +#include <linux/delay.h> +#include <linux/bits.h> + +static const uint32_t RZN1_ADC_SET_FORCE_REG_OFFSET = 13 * sizeof(uint32_t); // force conversion register + +static const uint32_t RZN1_ADC_CONFIG_REG_OFFSET = 16 * sizeof(uint32_t); // configuration register +static const uint32_t RZN1_ADC_CONFIG_POWER_DOWN_BIT = BIT(3); // configuration register's power down bit + +static const uint32_t RZN1_ADC_VIRTUAL_CHANNNELS_REGS_OFFSET = 48 * sizeof(uint32_t); // virtual channels 0..15 control registers +static const uint32_t RZN1_ADC_VIRTUAL_CHANNEL_ADC1_SELECTION_MASK = GENMASK(2, 0); // control registers' virtual channels' bits +static const uint32_t RZN1_ADC_VIRTUAL_CHANNEL_ADC1_ENABLE_BIT = BIT(15); // control registers' enable bit + +static const uint32_t RZN1_ADC_VIRTUAL_CHANNEL_ADC1_CONVERSION_DATA_REGS_OFFSET = 64 * sizeof(uint32_t); // ADC 1 virtual channels conversion data register + +static const uint32_t RZN1_ADC_READ_DATA_VALUE_MASK = GENMASK(11, 0); // read data register's bits +static const uint32_t RZN1_ADC_READ_DATA_UPDATE_BIT = BIT(31); // read data register's update bit + +#define RZN1_ADC_CHANNEL(index, bits, _shift, _info_mask_sep, name) { \ + .type = IIO_VOLTAGE, \ + .indexed = 1, \ + .channel = index, \ + .info_mask_separate = _info_mask_sep, \ + .info_mask_shared_by_type = BIT(IIO_CHAN_INFO_SCALE), \ + .scan_type = { \ + .sign = 'u', \ + .realbits = (bits), \ + .storagebits = 16, \ + .shift = (_shift), \ + .endianness = IIO_BE, \ + }, \ + .extend_name = name, \ +} + +#define RZN1_ADC_NUM_CHANNELS 8 // RZN1 ADC has 8 channels + +static struct iio_chan_spec rzn1_adc_channels[RZN1_ADC_NUM_CHANNELS] = { + RZN1_ADC_CHANNEL(0, 12, 0, BIT(IIO_CHAN_INFO_RAW), NULL), + RZN1_ADC_CHANNEL(1, 12, 0, BIT(IIO_CHAN_INFO_RAW), NULL), + RZN1_ADC_CHANNEL(2, 12, 0, BIT(IIO_CHAN_INFO_RAW), NULL), + RZN1_ADC_CHANNEL(3, 12, 0, BIT(IIO_CHAN_INFO_RAW), NULL), + RZN1_ADC_CHANNEL(4, 12, 0, BIT(IIO_CHAN_INFO_RAW), NULL), + RZN1_ADC_CHANNEL(5, 12, 0, BIT(IIO_CHAN_INFO_RAW), NULL), + RZN1_ADC_CHANNEL(6, 12, 0, BIT(IIO_CHAN_INFO_RAW), NULL), + RZN1_ADC_CHANNEL(7, 12, 0, BIT(IIO_CHAN_INFO_RAW), NULL) +}; + +// Device's private data +struct rzn1_adc { + struct device *dev; + + struct mutex lock; + struct completion complete; + void __iomem *registers; + resource_size_t phys_base; + struct clk *clk; +}; + +static inline uint32_t rzn1_adc_read32(struct rzn1_adc *const adc, const uint32_t reg_off) +{ +#if defined(CONFIG_LCES_SECURE_MONITOR) + return __monitor_readl(adc->phys_base + reg_off); +#else + void __iomem *addr = adc->registers + reg_off; + + return ioread32(addr); +#endif +} + +static inline void rzn1_adc_write32(struct rzn1_adc *const adc, const uint32_t reg_off, const uint32_t val) +{ +#if defined(CONFIG_LCES_SECURE_MONITOR) + __monitor_masked_writel(val, adc->phys_base + reg_off, ~0UL); +#else + iowrite32(val, adc->registers + reg_off); +#endif +} + +static bool interrupt_status(struct rzn1_adc *const adc, const int virtual_channel) +{ + bool ret = false; + + if ((virtual_channel >= 0) && (virtual_channel < RZN1_ADC_NUM_CHANNELS)) { + // interrupt 0 status register has a 0 offset in register table + uint32_t status = rzn1_adc_read32(adc, 0); + + if (status & BIT(virtual_channel)) + ret = true; + } + + return ret; +} + +static int rzn1_adc_read_raw(struct iio_dev *indio_dev, struct iio_chan_spec const *chan, int *val, int *val2, long mask) +{ + int ret = IIO_VAL_INT; + + struct rzn1_adc *adc = iio_priv(indio_dev); + int virtual_channel = chan->channel; + uint32_t virtual_channel_control_offset = RZN1_ADC_VIRTUAL_CHANNNELS_REGS_OFFSET + 4 * virtual_channel; + uint32_t virtual_channel_control = RZN1_ADC_VIRTUAL_CHANNEL_ADC1_ENABLE_BIT | (RZN1_ADC_VIRTUAL_CHANNEL_ADC1_SELECTION_MASK & virtual_channel); + uint32_t read_data = 0; + + (void)mask; + (void)val2; + + if ((virtual_channel >= 0) && (virtual_channel < RZN1_ADC_NUM_CHANNELS)) { + mutex_lock(&adc->lock); + + // disable power down mode, disable DMA and Sample & Hold mode + rzn1_adc_write32(adc, RZN1_ADC_CONFIG_REG_OFFSET, 0x00000000); + + // map virtual to physical channels 1:1 + rzn1_adc_write32(adc, virtual_channel_control_offset, virtual_channel_control); + + // force conversion on vc[chan_idx] channel + rzn1_adc_write32(adc, RZN1_ADC_SET_FORCE_REG_OFFSET, BIT(virtual_channel)); + + // Wait for maximum conversion duration of 21 ADC clock periods + // ADC clock frequency is 20 MHz hence period is 50 ns + // Add one more period for safety + ndelay(22 * 50); + + read_data = rzn1_adc_read32(adc, RZN1_ADC_VIRTUAL_CHANNEL_ADC1_CONVERSION_DATA_REGS_OFFSET + 4 * virtual_channel); + + if ((read_data & RZN1_ADC_READ_DATA_UPDATE_BIT) + && (interrupt_status(adc, virtual_channel) == true)) + *val = read_data & RZN1_ADC_READ_DATA_VALUE_MASK; + else + ret = -EINVAL; // error reading input value + + // enable power down mode, keep DMA and Sample & Hold mode disabled + rzn1_adc_write32(adc, RZN1_ADC_CONFIG_REG_OFFSET, RZN1_ADC_CONFIG_POWER_DOWN_BIT); + + mutex_unlock(&adc->lock); + } else { + dev_err(adc->dev, "virtual channel index (%i) is greater than 16\n", virtual_channel); + } + + return ret; +} + +static const struct iio_info rzn1_adc_info = { + .read_raw = &rzn1_adc_read_raw +}; + +static int rzn1_adc_parse_channels_of(struct rzn1_adc *adc, struct device_node *dn, const int num_channels) +{ + int ret = 0; + + struct device_node *channels = NULL; + struct device_node *channel = NULL; + + channels = of_get_child_by_name(dn, "channels"); + if (channels == NULL) { + dev_err(adc->dev, "no channels child node found\n"); + ret = -EINVAL; + } else { + for_each_available_child_of_node(channels, channel) { + // Stop parsing channels if any error occured + if (!ret) { + uint32_t reg = 0; + + ret = of_property_read_u32(channel, "reg", ®); + if (ret) { + dev_err(adc->dev, "no reg child node found\n"); + } else { + if (reg >= num_channels) { + dev_err(adc->dev, "wrong reg child node value %i\n", reg); + ret = -EINVAL; + } else { + struct iio_chan_spec *chanp = &rzn1_adc_channels[reg]; + chanp->extend_name = of_get_property(channel, "label", NULL); + } + } + } + } + } + + return ret; +} + +static int setup_channel_names(struct rzn1_adc *adc, struct iio_dev *const indio_dev) +{ + //struct iio_chan_spec rzn1_adc_channels + struct device_node *dn = indio_dev->dev.of_node; + int err = rzn1_adc_parse_channels_of(adc, dn, indio_dev->num_channels); + + if (err < 0) + dev_warn(adc->dev, "unable to parse channels!\n"); + + return err; +} + +static int rzn1_adc_probe(struct platform_device *pdev) +{ + struct device *dev = &pdev->dev; + struct iio_dev *indio_dev = NULL; + struct rzn1_adc *adc = NULL; + struct resource *res = NULL; + int ret = 0; + + indio_dev = devm_iio_device_alloc(dev, sizeof(*adc)); + + if (indio_dev == NULL) { + dev_err(&pdev->dev, "Failed to allocate memory for an IIO device!\n"); + ret = -ENOMEM; + } else { + platform_set_drvdata(pdev, indio_dev); + + adc = iio_priv(indio_dev); + + res = platform_get_resource(pdev, IORESOURCE_MEM, 0); + // initilize private physical address for RZN1 secure monitor calls + adc->phys_base = res->start; + adc->registers = devm_ioremap_resource(dev, res); + + if (IS_ERR(adc->registers)) { + dev_err(dev, "Unable to acquire memory mapping for the registers!\n"); + ret = PTR_ERR(adc->registers); + } else { + platform_set_drvdata(pdev, indio_dev); + adc->dev = dev; + + // Enabling clock for the ADC + adc->clk = devm_clk_get(&pdev->dev, "rzn1_adc_clk"); + + if (IS_ERR(adc->clk)) { + dev_err(dev, "Failed to get the clock!\n"); + ret = PTR_ERR(adc->clk); + } else { + ret = clk_prepare_enable(adc->clk); + if (ret) { + dev_err(dev, "Could not prepare or enable the clock!\n"); + } else { + dev_info(dev, "ADC clock rate: %lu Hz\n", clk_get_rate(adc->clk)); + + mutex_init(&adc->lock); + init_completion(&adc->complete); + + indio_dev->name = dev_name(dev); + indio_dev->dev.parent = dev; + indio_dev->dev.of_node = pdev->dev.of_node; + indio_dev->info = &rzn1_adc_info; + indio_dev->modes = INDIO_DIRECT_MODE; + indio_dev->channels = rzn1_adc_channels; + indio_dev->num_channels = ARRAY_SIZE(rzn1_adc_channels); + + if (setup_channel_names(adc, indio_dev) < 0) + dev_warn(dev, "Invalid channels information - using defaults.\n"); + + ret = iio_device_register(indio_dev); + if (ret) { + dev_err(dev, "Failed to register IIO device %s': %d\n", indio_dev->name, ret); + } + } + } + } + } + + return ret; +} + +static int rzn1_adc_remove(struct platform_device *pdev) +{ + struct iio_dev *indio_dev = platform_get_drvdata(pdev); + + iio_device_unregister(indio_dev); + iio_map_array_unregister(indio_dev); + + return 0; +} + +static const struct platform_device_id rzn1_adc_ids[] = { + { .name = "rzn1-adc", }, + { }, +}; + +MODULE_DEVICE_TABLE(platform, rzn1_adc_ids); + +static const struct of_device_id rzn1_adc_dt_ids[] = { + { .compatible = "rzn1-adc", }, + { }, +}; + +MODULE_DEVICE_TABLE(of, rzn1_adc_dt_ids); + +static struct platform_driver rzn1_adc_driver = { + .driver = { + .name = "rzn1-adc", + .of_match_table = of_match_ptr(rzn1_adc_dt_ids), + }, + .probe = rzn1_adc_probe, + .remove = rzn1_adc_remove, + .id_table = rzn1_adc_ids, +}; + +module_platform_driver(rzn1_adc_driver); + +MODULE_DESCRIPTION("RZN1 ADC Driver for LCES2"); +MODULE_AUTHOR("Tomasz Kazimierz Motyl <Tomasz.Motyl@xxxxxxxxxxxxxxxxxxxxxx>"); +MODULE_LICENSE("GPL"); -- 2.30.1