From: Jonathan Cameron <jic23@kernel.org>
To: Lothar Rubusch <l.rubusch@gmail.com>
Cc: lars@metafoo.de, Michael.Hennerich@analog.com,
linux-iio@vger.kernel.org, linux-kernel@vger.kernel.org,
eraretuya@gmail.com
Subject: Re: [PATCH v2 22/22] iio: accel: adxl345: add debug printout
Date: Sun, 24 Nov 2024 19:11:27 +0000 [thread overview]
Message-ID: <20241124191127.455c0a8b@jic23-huawei> (raw)
In-Reply-To: <20241117182651.115056-23-l.rubusch@gmail.com>
On Sun, 17 Nov 2024 18:26:51 +0000
Lothar Rubusch <l.rubusch@gmail.com> wrote:
> Add debug prints to allow to debug the sensor based on dynamic debug.
>
> Signed-off-by: Lothar Rubusch <l.rubusch@gmail.com>
We have infrastructure to read registers stuff in debugfs. Use that not
prints to the kernel log.
For the others stuff only keep stuff that we can get via ftrace
or similar if we really want to know the fine detail of what ran.
Jonathan
> ---
> drivers/iio/accel/adxl345_core.c | 95 ++++++++++++++++++++++++++++++++
> 1 file changed, 95 insertions(+)
>
> diff --git a/drivers/iio/accel/adxl345_core.c b/drivers/iio/accel/adxl345_core.c
> index c79f0f5e3b..8d2166a057 100644
> --- a/drivers/iio/accel/adxl345_core.c
> +++ b/drivers/iio/accel/adxl345_core.c
> @@ -26,6 +26,9 @@
>
> #include "adxl345.h"
>
> +/* debugging registers */
> +#define DEBUG_ADXL345 0
> +
> /* ADXL345 register map */
> #define ADXL345_REG_DEVID 0x00 /* r Device ID */
> #define ADXL345_REG_THRESH_TAP 0x1D /* r/w Tap Threshold */
> @@ -181,6 +184,78 @@ static const struct iio_chan_spec adxl34x_channels[] = {
> ADXL34x_CHANNEL(2, chan_z, Z),
> };
>
> +/*
> + * Debugging
> + */
> +
> +__maybe_unused
> +static void adxl345_debug_registers(const char *func, struct adxl34x_state *st)
> +{
> +#if DEBUG_ADXL345 == 1
> + struct regmap *regmap = st->regmap;
> + unsigned int regval = 0;
> +
> + regmap_read(regmap, ADXL345_REG_THRESH_TAP, ®val);
> + pr_debug("%s(): DEBUG - 0x%02X\t- ADXL345_REG_THRESH_TAP\n",
> + func, 0xff & regval);
> +
> + regmap_read(regmap, ADXL345_REG_DUR, ®val);
> + pr_debug("%s(): DEBUG - 0x%02X\t- ADXL345_REG_DUR\n",
> + func, 0xff & regval);
> +
> + regmap_read(regmap, ADXL345_REG_LATENT, ®val);
> + pr_debug("%s(): DEBUG - 0x%02X\t- ADXL345_REG_LATENT\n",
> + func, 0xff & regval);
> +
> + regmap_read(regmap, ADXL345_REG_WINDOW, ®val);
> + pr_debug("%s(): DEBUG - 0x%02X\t- ADXL345_REG_WINDOW\n",
> + func, 0xff & regval);
> +
> + regmap_read(regmap, ADXL345_REG_ACT_TAP_STATUS, ®val);
> + pr_debug("%s(): DEBUG - 0x%02X\t- ADXL345_REG_ACT_TAP_STATUS\n",
> + func, 0xff & regval);
> +
> + regmap_read(regmap, ADXL345_REG_POWER_CTL, ®val);
> + pr_debug("%s(): DEBUG - 0x%02X\t- ADXL345_REG_POWER_CTL\n",
> + func, 0xff & regval);
> +
> + regmap_read(regmap, ADXL345_REG_INT_ENABLE, ®val);
> + pr_debug("%s(): DEBUG - 0x%02X\t- ADXL345_REG_INT_ENABLE\n",
> + func, 0xff & regval);
> +
> + regmap_read(regmap, ADXL345_REG_INT_MAP, ®val);
> + pr_debug("%s(): DEBUG - 0x%02X\t- ADXL345_REG_INT_MAP\n",
> + func, 0xff & regval);
> +
> + regmap_read(regmap, ADXL345_REG_INT_SOURCE, ®val);
> + pr_debug("%s(): DEBUG - 0x%02X\t- ADXL345_REG_INT_SOURCE\n",
> + func, 0xff & regval);
> +
> + regmap_read(regmap, ADXL345_REG_FIFO_CTL, ®val);
> + pr_debug("%s(): DEBUG - 0x%02X\t- ADXL345_REG_FIFO_CTL\n",
> + func, 0xff & regval);
> +
> + regmap_read(regmap, ADXL345_REG_FIFO_STATUS, ®val);
> + pr_debug("%s(): DEBUG - 0x%02X\t- ADXL345_REG_FIFO_STATUS\n",
> + func, 0xff & regval);
> +# endif
> +}
> +
> +__maybe_unused
> +static void adxl345_debug_fifo(const char *func, s16 *fifo_buf, int entries_line)
> +{
> +#if DEBUG_ADXL345 == 1
> + s16 xval, yval, zval;
> +
> + xval = fifo_buf[0 + entries_line];
> + yval = fifo_buf[1 + entries_line];
> + zval = fifo_buf[2 + entries_line];
> +
> + pr_debug("%s(): FIFO[%d] - x=%d, y=%d, z=%d\n",
> + func, entries_line/3, xval, yval, zval);
> +#endif
> +}
> +
> static int adxl345_set_interrupts(struct adxl34x_state *st)
> {
> int ret;
> @@ -528,6 +603,8 @@ static int adxl345_read_fifo_elements(struct adxl34x_state *st, int fifo_entries
> size_t count, ndirs = 3;
> int i, ret;
>
> + pr_debug("%s(): fifo_entries = %d\n", __func__, fifo_entries);
> +
> count = 2 * ndirs; /* 2 byte per direction */
> for (i = 0; i < fifo_entries; i++) {
> ret = regmap_noinc_read(st->regmap, ADXL345_REG_XYZ_BASE,
> @@ -537,6 +614,7 @@ static int adxl345_read_fifo_elements(struct adxl34x_state *st, int fifo_entries
> return -EFAULT;
> }
> }
> + adxl345_debug_registers(__func__, st);
>
> return 0;
> }
> @@ -656,6 +734,7 @@ static int adxl345_push_fifo_data(struct iio_dev *indio_dev,
> if (st->fifo_delay && (fifo_entries > 1))
> udelay(3);
>
> + adxl345_debug_fifo(__func__, st->fifo_buf, i);
> iio_push_to_buffers(indio_dev, &st->fifo_buf[i]);
> }
>
> @@ -683,6 +762,7 @@ static int adxl345_trig_dready(struct iio_trigger *trig, bool state)
> __func__, st->int_map);
> }
>
> + adxl345_debug_registers(__func__, st);
> return 0;
> }
>
> @@ -713,6 +793,7 @@ static irqreturn_t adxl345_trigger_handler(int irq, void *p)
> int fifo_entries;
> int ret;
>
> + pr_debug("%s(): IRQ caught!\n", __func__);
> ret = adxl345_get_status(st, &int_stat);
> if (ret < 0)
> goto err;
> @@ -747,6 +828,7 @@ static irqreturn_t adxl345_trigger_handler(int irq, void *p)
>
> goto done;
> err:
> + pr_debug("%s(): error termination\n", __func__);
> iio_trigger_notify_done(indio_dev->trig);
> adxl345_set_measure_en(st, false);
> adxl345_empty_fifo(st);
> @@ -754,6 +836,7 @@ static irqreturn_t adxl345_trigger_handler(int irq, void *p)
> return IRQ_NONE;
>
> done:
> + pr_debug("%s(): regular termination\n", __func__);
> return IRQ_HANDLED;
> }
>
> @@ -804,6 +887,9 @@ int adxl345_core_probe(struct device *dev, struct regmap *regmap,
> st = iio_priv(indio_dev);
> st->regmap = regmap;
>
> + dev_dbg(dev, "irq '%d'\n", irq);
> + if (!irq) /* fall back to bypass mode w/o IRQ */
> + dev_dbg(dev, "no IRQ, FIFO mode will stay in BYPASS_MODE\n");
> st->irq = irq;
> st->info = device_get_match_data(dev);
> if (!st->info)
> @@ -831,7 +917,11 @@ int adxl345_core_probe(struct device *dev, struct regmap *regmap,
> indio_dev->channels = adxl34x_channels;
> indio_dev->num_channels = ARRAY_SIZE(adxl34x_channels);
>
> + dev_dbg(dev, "setting up indio_dev ok\n");
> +
> if (setup) {
> + dev_dbg(dev, "setup() was provided\n");
> +
> /* Perform optional initial bus specific configuration */
> ret = setup(dev, st->regmap);
> if (ret)
> @@ -846,6 +936,8 @@ int adxl345_core_probe(struct device *dev, struct regmap *regmap,
> "Failed to set data range\n");
>
> } else {
> + dev_dbg(dev, "No setup() provided\n");
> +
> /* Enable full-resolution mode (init all data_format bits) */
> ret = regmap_write(st->regmap, ADXL345_REG_DATA_FORMAT,
> ADXL345_DATA_FORMAT_FULL_RES);
> @@ -854,6 +946,7 @@ int adxl345_core_probe(struct device *dev, struct regmap *regmap,
> "Failed to set data range\n");
> }
>
> + dev_dbg(dev, "Retrieving DEVID\n");
> ret = regmap_read(st->regmap, ADXL345_REG_DEVID, ®val);
> if (ret < 0)
> return dev_err_probe(dev, ret, "Error reading device ID\n");
> @@ -861,7 +954,9 @@ int adxl345_core_probe(struct device *dev, struct regmap *regmap,
> if (regval != ADXL345_DEVID)
> return dev_err_probe(dev, -ENODEV, "Invalid device ID: %x, expected %x\n",
> regval, ADXL345_DEVID);
> + dev_dbg(dev, "Retrieving DEVID ok\n");
>
> + dev_dbg(dev, "Registering power down function\n");
> ret = devm_add_action_or_reset(dev, adxl345_powerdown, st);
> if (ret < 0)
> return dev_err_probe(dev, ret, "Failed to add action or reset\n");
prev parent reply other threads:[~2024-11-24 19:11 UTC|newest]
Thread overview: 49+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-11-17 18:26 [PATCH v2 00/22] iio: accel: adxl345: add FIFO operating with IRQ triggered watermark events Lothar Rubusch
2024-11-17 18:26 ` [PATCH v2 01/22] iio: accel: adxl345: fix comment on probe Lothar Rubusch
2024-11-24 17:57 ` Jonathan Cameron
2024-11-17 18:26 ` [PATCH v2 02/22] iio: accel: adxl345: rename variable data to st Lothar Rubusch
2024-11-17 18:26 ` [PATCH v2 03/22] iio: accel: adxl345: rename struct adxl34x_state Lothar Rubusch
2024-11-24 18:01 ` Jonathan Cameron
2024-11-17 18:26 ` [PATCH v2 04/22] iio: accel: adxl345: rename to adxl34x_channels Lothar Rubusch
2024-11-24 18:02 ` Jonathan Cameron
2024-11-17 18:26 ` [PATCH v2 05/22] iio: accel: adxl345: measure right-justified Lothar Rubusch
2024-11-24 18:07 ` Jonathan Cameron
2024-11-26 13:51 ` Lothar Rubusch
2024-11-26 17:44 ` Jonathan Cameron
2024-11-17 18:26 ` [PATCH v2 06/22] iio: accel: adxl345: add function to switch measuring Lothar Rubusch
2024-11-24 18:10 ` Jonathan Cameron
2024-11-17 18:26 ` [PATCH v2 07/22] iio: accel: adxl345: initialize IRQ number Lothar Rubusch
2024-11-24 18:14 ` Jonathan Cameron
2024-11-26 16:16 ` Lothar Rubusch
2024-11-26 17:49 ` Jonathan Cameron
2024-11-17 18:26 ` [PATCH v2 08/22] iio: accel: adxl345: initialize FIFO delay value for SPI Lothar Rubusch
2024-11-24 18:16 ` Jonathan Cameron
2024-11-17 18:26 ` [PATCH v2 09/22] iio: accel: adxl345: unexpose private defines Lothar Rubusch
2024-11-24 18:22 ` Jonathan Cameron
2024-11-17 18:26 ` [PATCH v2 10/22] iio: accel: adxl345: set interrupt line to INT1 Lothar Rubusch
2024-11-24 18:23 ` Jonathan Cameron
2024-11-17 18:26 ` [PATCH v2 11/22] iio: accel: adxl345: import adxl345 general data Lothar Rubusch
2024-11-24 18:31 ` Jonathan Cameron
2024-11-17 18:26 ` [PATCH v2 12/22] iio: accel: adxl345: elaborate iio channel definition Lothar Rubusch
2024-11-24 18:34 ` Jonathan Cameron
2024-11-17 18:26 ` [PATCH v2 13/22] iio: accel: adxl345: add trigger handler Lothar Rubusch
2024-11-24 18:46 ` Jonathan Cameron
2024-11-17 18:26 ` [PATCH v2 14/22] iio: accel: adxl345: read FIFO entries Lothar Rubusch
2024-11-24 18:49 ` Jonathan Cameron
2024-11-17 18:26 ` [PATCH v2 15/22] iio: accel: adxl345: reset the FIFO on error Lothar Rubusch
2024-11-24 18:54 ` Jonathan Cameron
2024-11-26 21:53 ` Lothar Rubusch
2024-11-17 18:26 ` [PATCH v2 16/22] iio: accel: adxl345: register trigger ops Lothar Rubusch
2024-11-24 18:56 ` Jonathan Cameron
2024-11-17 18:26 ` [PATCH v2 17/22] iio: accel: adxl345: push FIFO data to iio Lothar Rubusch
2024-11-24 18:58 ` Jonathan Cameron
2024-11-17 18:26 ` [PATCH v2 18/22] iio: accel: adxl345: start measure at buffer en/disable Lothar Rubusch
2024-11-24 19:00 ` Jonathan Cameron
2024-11-17 18:26 ` [PATCH v2 19/22] iio: accel: adxl345: prepare FIFO watermark handling Lothar Rubusch
2024-11-24 19:05 ` Jonathan Cameron
2024-11-17 18:26 ` [PATCH v2 20/22] iio: accel: adxl345: use FIFO with watermark IRQ Lothar Rubusch
2024-11-24 19:08 ` Jonathan Cameron
2024-11-17 18:26 ` [PATCH v2 21/22] iio: accel: adxl345: sync FIFO reading with sensor Lothar Rubusch
2024-11-24 19:09 ` Jonathan Cameron
2024-11-17 18:26 ` [PATCH v2 22/22] iio: accel: adxl345: add debug printout Lothar Rubusch
2024-11-24 19:11 ` Jonathan Cameron [this message]
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=20241124191127.455c0a8b@jic23-huawei \
--to=jic23@kernel.org \
--cc=Michael.Hennerich@analog.com \
--cc=eraretuya@gmail.com \
--cc=l.rubusch@gmail.com \
--cc=lars@metafoo.de \
--cc=linux-iio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
/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