From: Jonathan Cameron <jic23@kernel.org>
To: linux-iio@vger.kernel.org,
Andy Shevchenko <andy.shevchenko@gmail.com>,
Peter Rosin <peda@axentia.se>
Cc: Michael Hennerich <michael.hennerich@analog.com>,
Lars-Peter Clausen <lars@metafoo.de>,
Vincent Whitchurch <vincent.whitchurch@axis.com>,
Jonathan Cameron <Jonathan.Cameron@huawei.com>
Subject: [PATCH v2 17/17] RFC: iio: cdc: ad7746: Add roadtest
Date: Sun, 19 Jun 2022 19:58:39 +0100 [thread overview]
Message-ID: <20220619185839.1363503-18-jic23@kernel.org> (raw)
In-Reply-To: <20220619185839.1363503-1-jic23@kernel.org>
From: Jonathan Cameron <Jonathan.Cameron@huawei.com>
The recent work to cleanup and migrate this driver out of staging
relied on using roadtest to verify that the various refactoring
and fixes did not cause any regressions.
Note I am far from an experienced python coder so a large part of
this exercise was to establish if roadtest was useful / usable
without that particular skill set. Conclusion yes it is :)
Apologies for the code!
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
---
.../roadtest/tests/iio/cdc/__init__.py | 0
.../roadtest/roadtest/tests/iio/cdc/config | 1 +
.../roadtest/tests/iio/cdc/test_ad7746.py | 323 ++++++++++++++++++
3 files changed, 324 insertions(+)
diff --git a/tools/testing/roadtest/roadtest/tests/iio/cdc/__init__.py b/tools/testing/roadtest/roadtest/tests/iio/cdc/__init__.py
new file mode 100644
index 000000000000..e69de29bb2d1
diff --git a/tools/testing/roadtest/roadtest/tests/iio/cdc/config b/tools/testing/roadtest/roadtest/tests/iio/cdc/config
new file mode 100644
index 000000000000..6e9397325918
--- /dev/null
+++ b/tools/testing/roadtest/roadtest/tests/iio/cdc/config
@@ -0,0 +1 @@
+CONFIG_AD7746=m
diff --git a/tools/testing/roadtest/roadtest/tests/iio/cdc/test_ad7746.py b/tools/testing/roadtest/roadtest/tests/iio/cdc/test_ad7746.py
new file mode 100644
index 000000000000..60d75c0f4fe8
--- /dev/null
+++ b/tools/testing/roadtest/roadtest/tests/iio/cdc/test_ad7746.py
@@ -0,0 +1,323 @@
+# SPDX-License-Identifier: GPL-2.0-only
+# Based on test_vncl4010 Copyright Axis Communications AB
+# TODO
+# - Test read temperatures
+# - Test read capacitance
+#
+
+from typing import Any, Final
+
+from roadtest.backend.i2c import SMBusModel
+from roadtest.core.devicetree import DtFragment, DtVar
+from roadtest.core.hardware import Hardware
+from roadtest.core.suite import UMLTestCase
+from roadtest.core.modules import insmod, rmmod
+from roadtest.core.sysfs import (
+ I2CDriver,
+ read_float,
+ read_int,
+ read_str,
+ write_int,
+ write_str,
+)
+
+REG_STATUS: Final = 0x00
+REG_CAP_DATA_H: Final = 0x01
+REG_CAP_DATA_M: Final = 0x02
+REG_CAP_DATA_L: Final = 0x03
+REG_VT_DATA_H: Final = 0x04
+REG_VT_DATA_M: Final = 0x05
+REG_VT_DATA_L: Final = 0x06
+REG_CAP_SETUP: Final = 0x07
+REG_VT_SETUP: Final = 0x08
+REG_EXC_SETUP: Final = 0x09
+REG_CONFIG: Final = 0x0a
+REG_CAP_DAC_A: Final = 0x0b
+REG_CAP_DAC_B: Final = 0x0c
+REG_CAP_OFFSET_H: Final = 0x0d
+REG_CAP_OFFSET_L: Final = 0x0e
+REG_CAP_GAIN_H: Final = 0x0f
+REG_CAP_GAIN_L: Final = 0x10
+REG_VOLT_GAIN_H: Final = 0x11
+REG_VOLT_GAIN_L: Final = 0x12
+
+class AD7746(SMBusModel):
+ def __init__(self, **kwargs: Any) -> None:
+ super().__init__(regbytes=1, **kwargs)
+ self.regs = {
+ REG_STATUS: 0x07,
+ REG_CAP_DATA_H: 0x00,
+ REG_CAP_DATA_M: 0x00,
+ REG_CAP_DATA_L: 0x00,
+ REG_VT_DATA_H: 0x00,
+ REG_VT_DATA_M: 0x00,
+ REG_VT_DATA_L: 0x00,
+ REG_CAP_SETUP: 0x00,
+ REG_VT_SETUP: 0x00,
+ REG_EXC_SETUP: 0x03,
+ REG_CONFIG: 0xa0,
+ REG_CAP_DAC_A: 0x00,
+ REG_CAP_DAC_B: 0x00,
+ REG_CAP_OFFSET_H: 0x80,
+ REG_CAP_OFFSET_L: 0x00,
+ REG_CAP_GAIN_H: 0x00,
+ REG_CAP_GAIN_L: 0x00,
+ REG_VOLT_GAIN_H: 0x00,
+ REG_VOLT_GAIN_L: 0x00,
+ }
+
+ def reg_read(self, addr: int) -> int:
+ val = self.regs[addr]
+ return val;
+
+ def reg_write(self, addr: int, val: int) -> None:
+ assert addr in self.regs
+ assert addr not in ( REG_STATUS,
+ REG_CAP_DATA_H, REG_CAP_DATA_M, REG_CAP_DATA_L,
+ REG_VT_DATA_H, REG_VT_DATA_M, REG_VT_DATA_L )
+
+ self.regs[addr] = val
+
+ def inject(self, addr: int, val: int, mask : int = ~0) -> None:
+ old = self.regs[addr] & ~mask
+ new = old | (val & mask)
+ self.regs[addr] = new
+
+class TestAD7746(UMLTestCase):
+ dts = DtFragment(
+ src="""
+&i2c {
+ cdc@$addr$ {
+ compatible = "adi,ad7746";
+ reg = <0x$addr$>;
+ };
+};
+ """,
+ variables={
+ "addr": DtVar.I2C_ADDR,
+ },
+ )
+
+ @classmethod
+ def setUpClass(cls) -> None:
+ insmod("ad7746")
+
+ @classmethod
+ def tearDownClass(cls) -> None:
+ rmmod("ad7746")
+
+ def setUp(self) -> None:
+ self.driver = I2CDriver("ad7746")
+ self.hw = Hardware("i2c")
+ self.hw.load_model(AD7746)
+
+ def tearDown(self) -> None:
+ self.hw.close()
+
+ def read_attr(self, dev, type, attr, index, extend_name=None, default_val=0) -> float:
+ name_start = "iio:device0/in_" + type;
+ if extend_name is None:
+ try:
+ scale = read_float(dev.path / (name_start + str(index) + "_" + attr))
+ except:
+ try:
+ scale = read_float(dev.path / (name_start + "_" + attr))
+ except:
+ scale = default_val
+ if extend_name is not None:
+ try:
+ scale = read_float(dev.path / (name_start + str(index) + "_" + extend_name + "_" + attr))
+ except:
+ try:
+ scale = read_float(dev.path / (name_start + str(index) + "_" + attr))
+ except:
+ try:
+ scale = read_float(dev.path / (name_start + "_" + attr))
+ except:
+ scale = default_val
+
+ return scale
+
+ def test_scales(self) -> None:
+ with self.driver.bind(self.dts["addr"]) as dev:
+ scale = self.read_attr(dev, "voltage", "scale", 0, default_val=1.0)
+ self.assertAlmostEqual(scale, 1170 / (1 << 23))
+ scale = self.read_attr(dev, "voltage", "scale", 1, "supply", default_val=1.0)
+ self.assertAlmostEqual(scale, 1170 * 6 / ( 1 << 23))
+ scale = self.read_attr(dev, "capacitance", "scale", 0, default_val=1.0)
+ self.assertEqual(scale, 0.000000488)
+
+ def test_read_avail(self) -> None:
+ with self.driver.bind(self.dts["addr"]) as dev:
+ test = read_str(dev.path / "iio:device0/in_capacitance_sampling_frequency_available")
+ assert test == "91 84 50 26 16 13 11 9"
+ test = read_str(dev.path / "iio:device0/in_voltage_sampling_frequency_available")
+ assert test == "50 31 16 8", test
+
+ def test_read_channels(self) -> None:
+ with self.driver.bind(self.dts["addr"]) as dev:
+ testscale = 1170.0 / (1 << 23)
+ # Test endpoints and each of the bytes
+ testvals = (( 0x0, 0x0, 0x0, (-0x800000) * testscale),
+ ( 0x0, 0x40, 0x0, (-0x800000 + 0x004000) * testscale),
+ ( 0x80, 0x0, 0x0, (0x0) * testscale),
+ ( 0x80, 0x0, 0x1, (0x1) * testscale),
+ ( 0xff, 0xff, 0xff, (0x0 + 0x7fffff) * testscale),
+ )
+ scale = self.read_attr(dev, "voltage", "scale", 0, default_val=1.0)
+ offset = self.read_attr(dev, "voltage", "offset", 0, default_val=0.0)
+
+ # Should really be testing that the voltage after application of
+ # scale and offset is correct, not raw values.
+ for h, m, l, testval in testvals:
+ # Sequence matters as we will only write registers if the change.
+ # Hence always proceed a vt read with a cap read and visa versa
+ read_int(dev.path / "iio:device0/in_capacitance0_raw")
+ # value is 24 bit and driver offsets it by -0x800000.
+ self.hw.inject(REG_VT_DATA_H, h)
+ self.hw.inject(REG_VT_DATA_M, m)
+ self.hw.inject(REG_VT_DATA_L, l)
+ value = read_int(dev.path / "iio:device0/in_voltage0_raw")
+ self.assertAlmostEqual((value + offset) * scale, testval, 4)
+ mock = self.hw.update_mock()
+ mock.assert_last_reg_write(self, REG_VT_SETUP, 0x80 | 0x60)
+ #verify capacitance read disabled
+ cap_setup = mock.get_last_reg_write(REG_CAP_SETUP)
+ assert(not (cap_setup & 0x80))
+ mock.reset_mock()
+ testscale = 1170 * 6 / (1 << 23)
+ # Test endpoints and each of the bytes
+ testvals = (( 0x0, 0x0, 0x0, (-0x800000) * testscale),
+ ( 0x0, 0x40, 0x0, (-0x800000 + 0x004000) * testscale),
+ ( 0x80, 0x0, 0x0, (0x0) * testscale),
+ ( 0x80, 0x0, 0x1, (0x1) * testscale),
+ ( 0xff, 0xff, 0xff, (0x0 + 0x7fffff) * testscale),
+ )
+ scale = self.read_attr(dev, "voltage", "scale", 1, "supply", default_val = 1.0)
+ for h, m, l, testval in testvals:
+ read_int(dev.path / "iio:device0/in_capacitance0_raw")
+ self.hw.inject(REG_VT_DATA_H, h)
+ self.hw.inject(REG_VT_DATA_M, m)
+ self.hw.inject(REG_VT_DATA_L, l)
+ value = read_int(dev.path/ "iio:device0/in_voltage1_supply_raw")
+ # Supply voltage channel is attenuated by x6
+ self.assertAlmostEqual((value + offset) * scale, testval, 4)
+ mock = self.hw.update_mock()
+ mock.assert_last_reg_write(self, REG_VT_SETUP, 0x80 | 0x40)
+ #verify capacitance read disabled
+ cap_setup = mock.get_last_reg_write(REG_CAP_SETUP)
+ assert(not (cap_setup & 0x80))
+ mock.reset_mock()
+
+ # Only bother testing one of the temperature channels. They are very similar.
+ testvals = (( 0x0, 0x0, 0x0, (0/2048.0 - 4096) * 1000),
+ ( 0x0, 0x40, 0x0, (0x004000/2048.0 - 4096) * 1000),
+ ( 0x80, 0x0, 0x0, (0x800000/2048.0 - 4096) * 1000),
+ ( 0x80, 0x0, 0x1, (0x800001/2048.0 - 4096) * 1000),
+ ( 0xff, 0xff, 0xff, (0xffffff/2048.0 - 4096) * 1000),
+ )
+ scale = self.read_attr(dev, "temp", "scale", 0, default_val = 1.0)
+ for h, m, l, testval in testvals:
+ read_int(dev.path / "iio:device0/in_capacitance0_raw")
+ self.hw.inject(REG_VT_DATA_H, h)
+ self.hw.inject(REG_VT_DATA_M, m)
+ self.hw.inject(REG_VT_DATA_L, l)
+ value = read_int(dev.path/ "iio:device0/in_temp0_raw")
+ self.assertAlmostEqual(value * scale, testval, 4)
+ mock = self.hw.update_mock()
+ mock.assert_last_reg_write(self, REG_VT_SETUP, 0x80 | 0x00)
+ #verify capacitance read disabled
+ cap_setup = mock.get_last_reg_write(REG_CAP_SETUP)
+ assert(not (cap_setup & 0x80))
+ mock.reset_mock()
+
+ testscale = 0.000000488
+ # Test endpoints and each of the bytes
+ testvals = (( 0x0, 0x0, 0x0, (-0x800000) * testscale),
+ ( 0x0, 0x40, 0x0, (-0x800000 + 0x004000) * testscale),
+ ( 0x80, 0x0, 0x0, (0x0) * testscale),
+ ( 0x80, 0x0, 0x1, (0x1) * testscale),
+ ( 0xff, 0xff, 0xff, (0x0 + 0x7fffff) * testscale),
+ )
+
+ scale = self.read_attr(dev, "capacitance", "scale", 0, default_val=1.0)
+ offset = 0.0 #self.read_attr(dev, "capacitance", "offset", 0, default_val=0.0)
+
+ # Should really be testing that the voltage after application of
+ # scale and offset is correct, not raw values.
+ for h, m, l, testval in testvals:
+ # Sequence matters as we will only write registers if the change.
+ # Hence always proceed a vt read with a cap read and visa versa
+ read_int(dev.path / "iio:device0/in_voltage0_raw")
+ # value is 24 bit and driver offsets it by -0x800000.
+ self.hw.inject(REG_CAP_DATA_H, h)
+ self.hw.inject(REG_CAP_DATA_M, m)
+ self.hw.inject(REG_CAP_DATA_L, l)
+ value = read_int(dev.path / "iio:device0/in_capacitance0_raw")
+ self.assertAlmostEqual((value + offset) * scale, testval, 9)
+ mock = self.hw.update_mock()
+ mock.assert_last_reg_write(self, REG_CAP_SETUP, 0x80)
+ #verify capacitance read disabled
+ vt_setup = mock.get_last_reg_write(REG_VT_SETUP)
+ assert(not (vt_setup & 0x80))
+ mock.reset_mock()
+
+ scale = self.read_attr(dev, "capacitance", "scale", 1, default_val=1.0)
+ offset = 0.0 #self.read_attr(dev, "capacitance", "offset", 0, default_val=0.0)
+
+ # Should really be testing that the voltage after application of
+ # scale and offset is correct, not raw values.
+ for h, m, l, testval in testvals:
+ # Sequence matters as we will only write registers if the change.
+ # Hence always proceed a vt read with a cap read and visa versa
+ read_int(dev.path / "iio:device0/in_voltage0_raw")
+ # value is 24 bit and driver offsets it by -0x800000.
+ self.hw.inject(REG_CAP_DATA_H, h)
+ self.hw.inject(REG_CAP_DATA_M, m)
+ self.hw.inject(REG_CAP_DATA_L, l)
+ value = read_int(dev.path / "iio:device0/in_capacitance1_raw")
+ self.assertAlmostEqual((value + offset) * scale, testval, 9)
+ mock = self.hw.update_mock()
+ mock.assert_last_reg_write(self, REG_CAP_SETUP, 0x80 | 0x40)
+ #verify capacitance read disabled
+ vt_setup = mock.get_last_reg_write(REG_VT_SETUP)
+ assert(not (vt_setup & 0x80))
+ mock.reset_mock()
+
+ # Should really be testing that the voltage after application of
+ # scale and offset is correct, not raw values.
+ for h, m, l, testval in testvals:
+ # Sequence matters as we will only write registers if the change.
+ # Hence always proceed a vt read with a cap read and visa versa
+ read_int(dev.path / "iio:device0/in_voltage0_raw")
+ # value is 24 bit and driver offsets it by -0x800000.
+ self.hw.inject(REG_CAP_DATA_H, h)
+ self.hw.inject(REG_CAP_DATA_M, m)
+ self.hw.inject(REG_CAP_DATA_L, l)
+ value = read_int(dev.path / "iio:device0/in_capacitance0-capacitance2_raw")
+ self.assertAlmostEqual((value + offset) * scale, testval, 9)
+ mock = self.hw.update_mock()
+ mock.assert_last_reg_write(self, REG_CAP_SETUP, 0x80 | 0x20)
+ #verify capacitance read disabled
+ vt_setup = mock.get_last_reg_write(REG_VT_SETUP)
+ assert(not (vt_setup & 0x80))
+ mock.reset_mock()
+
+ # Should really be testing that the voltage after application of
+ # scale and offset is correct, not raw values.
+ for h, m, l, testval in testvals:
+ # Sequence matters as we will only write registers if the change.
+ # Hence always proceed a vt read with a cap read and visa versa
+ read_int(dev.path / "iio:device0/in_voltage0_raw")
+ # value is 24 bit and driver offsets it by -0x800000.
+ self.hw.inject(REG_CAP_DATA_H, h)
+ self.hw.inject(REG_CAP_DATA_M, m)
+ self.hw.inject(REG_CAP_DATA_L, l)
+ value = read_int(dev.path / "iio:device0/in_capacitance1-capacitance3_raw")
+ self.assertAlmostEqual((value + offset) * scale, testval, 9)
+ mock = self.hw.update_mock()
+ mock.assert_last_reg_write(self, REG_CAP_SETUP, 0x80 | 0x60)
+ #verify capacitance read disabled
+ vt_setup = mock.get_last_reg_write(REG_VT_SETUP)
+ assert(not (vt_setup & 0x80))
+ mock.reset_mock()
--
2.36.1
next prev parent reply other threads:[~2022-06-19 18:59 UTC|newest]
Thread overview: 39+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-06-19 18:58 [PATCH v2 00/17] staging/iio: Clean up AD7746 CDC driver and move from staging Jonathan Cameron
2022-06-19 18:58 ` [PATCH v2 01/17] iio: core: Increase precision of IIO_VAL_FRACTIONAL_LOG2 when possible Jonathan Cameron
2022-06-19 18:58 ` [PATCH v2 02/17] iio: ABI: Fix wrong format of differential capacitance channel ABI Jonathan Cameron
2022-06-19 22:58 ` Andy Shevchenko
2022-06-20 17:50 ` Jonathan Cameron
2022-06-19 18:58 ` [PATCH v2 03/17] staging: iio: cdc: ad7746: Use explicit be24 handling Jonathan Cameron
2022-06-19 18:58 ` [PATCH v2 04/17] staging: iio: cdc: ad7746: Push handling of supply voltage scale to userspace Jonathan Cameron
2022-06-19 18:58 ` [PATCH v2 05/17] staging: iio: cdc: ad7746: Use local buffer for multi byte reads Jonathan Cameron
2022-06-19 23:00 ` Andy Shevchenko
2022-06-20 16:42 ` Jonathan Cameron
2022-06-20 18:23 ` Jonathan Cameron
2022-06-19 18:58 ` [PATCH v2 06/17] staging: iio: cdc: ad7746: Factor out ad7746_read_channel() Jonathan Cameron
2022-06-19 18:58 ` [PATCH v2 07/17] staging: iio: cdc: ad7764: Push locking down into case statements in read/write_raw Jonathan Cameron
2022-06-19 18:58 ` [PATCH v2 08/17] staging: iio: cdc: ad7746: Break up use of chan->address and use FIELD_PREP etc Jonathan Cameron
2022-06-19 18:58 ` [PATCH v2 09/17] staging: iio: cdc: ad7746: Drop usused i2c_set_clientdata() Jonathan Cameron
2022-06-19 18:58 ` [PATCH v2 10/17] staging: iio: cdc: ad7746: Use _raw and _scale for temperature channels Jonathan Cameron
2022-06-19 18:58 ` [PATCH v2 11/17] iio: core: Introduce _inputoffset for differential channels Jonathan Cameron
2022-06-19 23:20 ` Andy Shevchenko
2022-06-20 18:13 ` Jonathan Cameron
2022-06-20 18:35 ` Andy Shevchenko
2022-06-20 20:01 ` Jonathan Cameron
2022-06-20 19:57 ` Jonathan Cameron
2022-06-19 18:58 ` [PATCH v2 12/17] staging: iio: cdc: ad7746: Switch from _offset to " Jonathan Cameron
2022-06-19 18:58 ` [PATCH v2 13/17] staging: iio: cdc: ad7746: Use read_avail() rather than opencoding Jonathan Cameron
2022-06-19 18:58 ` [PATCH v2 14/17] staging: iio: ad7746: White space cleanup Jonathan Cameron
2022-06-19 18:58 ` [PATCH v2 15/17] iio: cdc: ad7746: Add device specific ABI documentation Jonathan Cameron
2022-06-19 18:58 ` [PATCH v2 16/17] iio: cdc: ad7746: Move driver out of staging Jonathan Cameron
2022-06-19 23:11 ` Andy Shevchenko
2022-06-20 16:40 ` Jonathan Cameron
2022-06-20 18:30 ` Jonathan Cameron
2022-06-20 18:40 ` Andy Shevchenko
2022-06-20 19:53 ` Jonathan Cameron
2022-06-20 20:01 ` Andy Shevchenko
2022-06-19 18:58 ` Jonathan Cameron [this message]
2022-06-19 23:23 ` [PATCH v2 00/17] staging/iio: Clean up AD7746 CDC driver and move from staging Andy Shevchenko
2022-06-20 18:07 ` Jonathan Cameron
2022-06-21 14:34 ` Joe Simmons-Talbott
2022-06-22 13:07 ` Vincent Whitchurch
2022-06-26 11:07 ` Jonathan Cameron
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20220619185839.1363503-18-jic23@kernel.org \
--to=jic23@kernel.org \
--cc=Jonathan.Cameron@huawei.com \
--cc=andy.shevchenko@gmail.com \
--cc=lars@metafoo.de \
--cc=linux-iio@vger.kernel.org \
--cc=michael.hennerich@analog.com \
--cc=peda@axentia.se \
--cc=vincent.whitchurch@axis.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).