From: Jeff Chase <jnchase@google.com>
To: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Cc: linux-media@vger.kernel.org, mchehab@kernel.org,
robh+dt@kernel.org, devicetree@vger.kernel.org
Subject: Re: [PATCH 2/2] media: cec: i2c: ch7322: Add ch7322 CEC controller driver
Date: Fri, 24 Apr 2020 15:33:41 -0400 [thread overview]
Message-ID: <CALTkaQ2dnWdkAsqYXF+msN+Jnz_1RuvbQtJd4PFwVT_Q7FTc5Q@mail.gmail.com> (raw)
In-Reply-To: <74c08463-7052-2ac4-3662-7301ecb8150d@xs4all.nl>
Hi Hans,
Thank you for the quick review.
> Is the register documentation available somewhere? I only found the product brief.
No, it's not publicly available.
> The chip can only detect OK vs NACK? There are no error states for Arbitration Lost
> or Low Drive conditions? Just checking, not all hardware has support for that.
Correct, message transmit completion just has a one-bit status.
> > +static int ch7322_cec_adap_log_addr(struct cec_adapter *adap, u8 log_addr)
> > +{
> > + struct ch7322 *ch7322 = cec_get_drvdata(adap);
> > +
> > + dev_dbg(&ch7322->i2c->dev, "cec log addr: %x\n", log_addr);
> > +
> > + return 0;
>
> This can't be right. I expect that logical addresses are set/cleared here,
> because the device needs to know that so that it can ignore messages not
> intended for it.
As far as I can tell the device doesn't filter based on logical
address. I'll have to save
the logical address to the driver and filter manually.
> > +}
> > +
> > +static int ch7322_cec_adap_transmit(struct cec_adapter *adap, u8 attempts,
> > + u32 signal_free_time, struct cec_msg *msg)
> > +{
>
> Does the hardware correctly handle Signal Free Time? If this isn't handled right
> then one CEC device can flood the CEC bus, preventing anyone else from using it.
>
> In some devices it has to be programmed, in others it is hardwired.
It must be hardwired -- I don't see a way to program it.
> > + struct ch7322 *ch7322 = cec_get_drvdata(adap);
> > + int ret;
> > +
> > + dev_dbg(&ch7322->i2c->dev, "cec transmit: %x->%x: %x\n",
> > + cec_msg_initiator(msg), cec_msg_destination(msg),
> > + cec_msg_opcode(msg));
> > +
> > + mutex_lock(&ch7322->mutex);
> > + ret = ch7322_send_message(ch7322, msg);
> > + mutex_unlock(&ch7322->mutex);
> > +
> > + return ret;
> > +}
> > +
> > +static const struct cec_adap_ops ch7322_cec_adap_ops = {
> > + .adap_enable = ch7322_cec_adap_enable,
> > + .adap_log_addr = ch7322_cec_adap_log_addr,
> > + .adap_transmit = ch7322_cec_adap_transmit,
>
> If the HW supports CEC monitoring (aka snooping), then I recommend that
> adap_monitor_all_enable is also implemented. It's very useful for debugging
> CEC in userspace. Not all HW supports it, though.
Okay, I'll add this along with the logical address filtering I mentioned above.
Thanks,
Jeff
next prev parent reply other threads:[~2020-04-24 19:33 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2020-04-24 5:38 [PATCH 1/2] dt-bindings: Add ch7322 as a trivial device Jeff Chase
2020-04-24 5:38 ` [PATCH 2/2] media: cec: i2c: ch7322: Add ch7322 CEC controller driver Jeff Chase
2020-04-24 12:24 ` Hans Verkuil
2020-04-24 19:33 ` Jeff Chase [this message]
2020-04-25 9:16 ` Hans Verkuil
2020-04-25 9:31 ` Hans Verkuil
2020-05-05 23:26 ` Jeff Chase
2020-05-06 6:42 ` Hans Verkuil
2020-04-25 9:17 ` Hans Verkuil
2020-05-11 21:20 ` [PATCH 1/2] dt-bindings: Add ch7322 as a trivial device Rob Herring
2020-05-12 23:23 ` Jeff Chase
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=CALTkaQ2dnWdkAsqYXF+msN+Jnz_1RuvbQtJd4PFwVT_Q7FTc5Q@mail.gmail.com \
--to=jnchase@google.com \
--cc=devicetree@vger.kernel.org \
--cc=hverkuil-cisco@xs4all.nl \
--cc=linux-media@vger.kernel.org \
--cc=mchehab@kernel.org \
--cc=robh+dt@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;
as well as URLs for NNTP newsgroup(s).