From: Chris Wilson <chris@chris-wilson.co.uk>
To: Keith Packard <keithp@keithp.com>, intel-gfx@lists.freedesktop.org
Subject: Re: [PATCH 5/5] drm/i915/gmbus: Reset the controller on initialisation
Date: Tue, 05 Apr 2011 22:26:55 +0100 [thread overview]
Message-ID: <b7da2f$r00a4i@fmsmga001.fm.intel.com> (raw)
In-Reply-To: <yunhbacfm7l.fsf@aiko.keithp.com>
On Tue, 05 Apr 2011 13:59:58 -0700, Keith Packard <keithp@keithp.com> wrote:
> On Tue, 5 Apr 2011 10:24:18 +0100, Chris Wilson <chris@chris-wilson.co.uk> wrote:
> > Toggle the Software Clear Interrupt bit which resets the controller to
> > clear any prior BUS_ERROR condition before we begin to use the
> > controller in earnest.
>
> We do this in two places now, do we want to share the code?
>
> > + int reg_offset;
> > +
> > + reg_offset = 0;
> > if (HAS_PCH_SPLIT(dev))
> > - I915_WRITE(PCH_GMBUS0, 0);
> > - else
> > - I915_WRITE(GMBUS0, 0);
> > + reg_offset = PCH_GMBUS0 - GMBUS0;
> > +
> > + /* First reset the controller by toggling the Sw Clear Interrupt. */
> > + I915_WRITE(GMBUS1 + reg_offset, GMBUS_SW_CLR_INT);
> > + I915_WRITE(GMBUS1 + reg_offset, 0);
> > +
> > + /* Then mark the controller as disabled. */
> > + I915_WRITE(GMBUS0 + reg_offset, 0);
>
> That's really ugly register addressing, but it looks like a common idiom
> in this file...
I'd change the lot for a cleaner method, the best I thought of was a
change of names for the constants/variables.
IMO,
static void i915_gmbus_write(struct drm_device *dev, int reg, int value)
{
struct drm_i915_private *dev_priv = dev->dev_private;
I915_WRITE(reg + (HAS_PCH_SPLIT(dev) ? PCH_GMBUS0 : GMBUS0), value);
}
expands to something dreadful.
But with a
#define GMBUS_WRITE(reg, value) i915_gmbus_write(dev, reg, value)
we go from
I915_WRITE(GMBUS0 + reg_offset, 0);
to
GMBUS_WRITE(0, 0);
I would still prefer GMBUS_WRITE(GMBUS0, 0); though.
As the patch only addresses a theoretical bug, we can punt the meat of the
patch till later and attack the stylistic points first. (Obviously through
-next.)
-Chris
--
Chris Wilson, Intel Open Source Technology Centre
prev parent reply other threads:[~2011-04-05 21:26 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-04-05 9:24 i915 fixes for review Chris Wilson
2011-04-05 9:24 ` [PATCH 1/5] drm/i915: Initialise g4x watermarks for disabled pipes Chris Wilson
2011-04-05 20:56 ` Keith Packard
2011-04-05 21:12 ` Chris Wilson
2011-04-06 1:02 ` Keith Packard
2011-04-06 6:59 ` Chris Wilson
2011-04-06 7:36 ` Keith Packard
2011-04-06 8:02 ` Chris Wilson
2011-04-06 15:12 ` Keith Packard
2011-04-05 9:24 ` [PATCH 2/5] drm/i915/crt: Explicitly return false if connected to a digital monitor Chris Wilson
2011-04-05 20:57 ` Keith Packard
2011-04-05 9:24 ` [PATCH 3/5] drm/i915/crt: Remove 0xa0 probe for VGA Chris Wilson
2011-04-05 9:24 ` [PATCH 4/5] drm/i915/lvds: Remove 0xA0 DDC probe for LVDS Chris Wilson
2011-04-05 9:24 ` [PATCH 5/5] drm/i915/gmbus: Reset the controller on initialisation Chris Wilson
2011-04-05 16:18 ` Ben Widawsky
2011-04-05 16:27 ` Ben Widawsky
2011-04-05 20:59 ` Keith Packard
2011-04-05 21:26 ` Chris Wilson [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='b7da2f$r00a4i@fmsmga001.fm.intel.com' \
--to=chris@chris-wilson.co.uk \
--cc=intel-gfx@lists.freedesktop.org \
--cc=keithp@keithp.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