From: Andy Shevchenko <andriy.shevchenko@linux.intel.com>
To: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com>
Cc: Mauro Carvalho Chehab <mchehab@kernel.org>,
Sakari Ailus <sakari.ailus@linux.intel.com>,
Hans Verkuil <hverkuil-cisco@xs4all.nl>,
Jai Luthra <jai.luthra@ideasonboard.com>,
linux-media@vger.kernel.org, linux-kernel@vger.kernel.org
Subject: Re: [PATCH v3 07/15] media: i2c: ds90ub960: Add support for I2C_RX_ID
Date: Thu, 5 Dec 2024 10:31:42 +0200 [thread overview]
Message-ID: <Z1Fk7jRVQJZzsTQp@smile.fi.intel.com> (raw)
In-Reply-To: <20241204-ub9xx-fixes-v3-7-a933c109b323@ideasonboard.com>
On Wed, Dec 04, 2024 at 01:05:21PM +0200, Tomi Valkeinen wrote:
> Normally the driver accesses both the RX and the TX port registers via a
> paging mechanism: one register is used to select the page (i.e. the
> port), which dictates the port used when accessing the port specific
> registers.
>
> The downside to this is that while debugging it's almost impossible to
> access the port specific registers from the userspace, as the driver can
> change the page at any moment.
>
> The hardware supports another access mechanism: using the I2C_RX_ID
> registers (one for each RX port), i2c addresses can be chosen which,
> when accessed, will always use the specific port's registers, skipping
> the paging mechanism.
>
> The support is only for the RX port, but it has proven very handy while
> debugging and testing. So let's add the code for this, but hide it
> behind a disabled define.
...
> #define MHZ(v) ((u32)((v) * 1000000U))
Missed HZ_PER_MHZ from previous patch?
...
> +#ifdef UB960_DEBUG_I2C_RX_ID
> + for (unsigned int i = 0; i < 4; i++)
Should it use _MAX_RX_NPORTS instead of 4?
> + ub960_write(priv, UB960_SR_I2C_RX_ID(i),
> + (UB960_DEBUG_I2C_RX_ID + i) << 1);
> +#endif
--
With Best Regards,
Andy Shevchenko
next prev parent reply other threads:[~2024-12-05 8:31 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-12-04 11:05 [PATCH v3 00/15] media: i2c: ds90ub9xx: Misc fixes and improvements Tomi Valkeinen
2024-12-04 11:05 ` [PATCH v3 01/15] media: i2c: ds90ub9x3: Fix extra fwnode_handle_put() Tomi Valkeinen
2024-12-09 9:09 ` Sakari Ailus
2024-12-09 9:46 ` Tomi Valkeinen
2024-12-09 9:53 ` Sakari Ailus
2024-12-04 11:05 ` [PATCH v3 02/15] media: i2c: ds90ub960: Fix UB9702 refclk register access Tomi Valkeinen
2024-12-04 11:05 ` [PATCH v3 03/15] media: i2c: ds90ub960: Fix use of non-existing registers on UB9702 Tomi Valkeinen
2024-12-04 11:05 ` [PATCH v3 04/15] media: i2c: ds90ub960: Fix logging SP & EQ status only for UB9702 Tomi Valkeinen
2024-12-04 11:05 ` [PATCH v3 05/15] media: i2c: ds90ub960: Fix UB9702 VC map Tomi Valkeinen
2024-12-04 11:05 ` [PATCH v3 06/15] media: i2c: ds90ub960: Use HZ_PER_MHZ Tomi Valkeinen
2024-12-04 11:05 ` [PATCH v3 07/15] media: i2c: ds90ub960: Add support for I2C_RX_ID Tomi Valkeinen
2024-12-05 8:31 ` Andy Shevchenko [this message]
2024-12-05 12:00 ` Jai Luthra
2024-12-05 14:02 ` Tomi Valkeinen
2024-12-05 13:59 ` Tomi Valkeinen
2024-12-05 19:36 ` Andy Shevchenko
2024-12-06 7:24 ` Tomi Valkeinen
2024-12-04 11:05 ` [PATCH v3 08/15] media: i2c: ds90ub960: Add RGB24, RAW8 and RAW10 formats Tomi Valkeinen
2024-12-04 11:05 ` [PATCH v3 09/15] media: i2c: ds90ub953: Clear CRC errors in ub953_log_status() Tomi Valkeinen
2024-12-04 11:05 ` [PATCH v3 10/15] media: i2c: ds90ub960: Drop unused indirect block define Tomi Valkeinen
2024-12-04 11:05 ` [PATCH v3 11/15] media: i2c: ds90ub960: Reduce sleep in ub960_rxport_wait_locks() Tomi Valkeinen
2024-12-04 11:05 ` [PATCH v3 12/15] media: i2c: ds90ub960: Handle errors in ub960_log_status_ub960_sp_eq() Tomi Valkeinen
2024-12-05 8:33 ` Andy Shevchenko
2024-12-04 11:05 ` [PATCH v3 13/15] media: i2c: ds90ub913: Add error handling to ub913_hw_init() Tomi Valkeinen
2024-12-04 11:05 ` [PATCH v3 14/15] media: i2c: ds90ub953: Add error handling for i2c reads/writes Tomi Valkeinen
2024-12-05 8:34 ` Andy Shevchenko
2024-12-04 11:05 ` [PATCH v3 15/15] media: i2c: ds90ub960: Fix shadowing of local variables Tomi Valkeinen
2024-12-05 13:50 ` [PATCH v3 00/15] media: i2c: ds90ub9xx: Misc fixes and improvements Jai Luthra
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=Z1Fk7jRVQJZzsTQp@smile.fi.intel.com \
--to=andriy.shevchenko@linux.intel.com \
--cc=hverkuil-cisco@xs4all.nl \
--cc=jai.luthra@ideasonboard.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-media@vger.kernel.org \
--cc=mchehab@kernel.org \
--cc=sakari.ailus@linux.intel.com \
--cc=tomi.valkeinen@ideasonboard.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