From: Andrew Morton <akpm@linux-foundation.org>
To: Jiri Slaby <jirislaby@gmail.com>
Cc: linux-kernel@vger.kernel.org
Subject: Re: [PATCH 3/3] Misc: phantom, improved data passing
Date: Mon, 15 Oct 2007 16:31:34 -0700 [thread overview]
Message-ID: <20071015163134.3ed17496.akpm@linux-foundation.org> (raw)
In-Reply-To: <2571023650266415239@pripojeni.net>
On Mon, 15 Oct 2007 09:33:49 -0700
Jiri Slaby <jirislaby@gmail.com> wrote:
> phantom, improved data passing
>
> this new version guarantees amb_bit switch in small enough intervals, so
> that the device won't stop working in the middle of a movement anymore.
> However it preserves old (openhaptics) functionality.
>
> ...
>
> +
> + /* preserve amp bit (don't allow to change it when in NOT_OH) */
> + if (r.reg == PHN_CONTROL && (dev->status & PHB_NOT_OH))
> + dev->ctl_reg = r.value = (r.value & ~PHN_CTL_AMP) |
> + (dev->ctl_reg & PHN_CTL_AMP);
hm, is that coded as clearly and as simply as possible? Don't think so :(
> + spin_lock_irqsave(&dev->regs_lock, flags);
> + if (dev->status & PHB_NOT_OH)
> + memcpy(&dev->oregs, &rs, sizeof(rs));
> + else {
> + for (i = 0; i < min(rs.count, 8U); i++)
We evaluate min() each time around the loop. Doesn't matter much here I guess.
> + if (rs.mask & BIT(i))
> + iowrite32(rs.values[i], dev->oaddr + i);
> + ioread32(dev->iaddr); /* PCI posting */
> + }
> + spin_unlock_irqrestore(&dev->regs_lock, flags);
> break;
> case PHN_GET_REG:
> if (copy_from_user(&r, argp, sizeof(r)))
>
> ...
>
> static irqreturn_t phantom_isr(int irq, void *data)
> {
> struct phantom_device *dev = data;
> + unsigned int i;
> + u32 ctl;
>
> - if (!(ioread32(dev->iaddr + PHN_CONTROL) & PHN_CTL_IRQ))
> + spin_lock(&dev->regs_lock);
> + ctl = ioread32(dev->iaddr + PHN_CONTROL);
> + if (!(ctl & PHN_CTL_IRQ)) {
> + spin_unlock(&dev->regs_lock);
> return IRQ_NONE;
> + }
>
> iowrite32(0, dev->iaddr);
> iowrite32(0xc0, dev->iaddr);
> +
> + if (dev->status & PHB_NOT_OH)
> + for (i = 0; i < min(dev->oregs.count, 8U); i++)
But this is the interrupt handler, and there's a pointer chase as well as
the min() each time around the loop (I assume). I doubt if the world will
end, but it seems a bit lazy?
> + if (dev->oregs.mask & BIT(i))
> + iowrite32(dev->oregs.values[i], dev->oaddr + i);
> +
> + dev->ctl_reg ^= PHN_CTL_AMP;
> + iowrite32(dev->ctl_reg, dev->iaddr + PHN_CONTROL);
> + spin_unlock(&dev->regs_lock);
> +
next prev parent reply other threads:[~2007-10-15 23:31 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-10-15 16:32 [PATCH 1/3] Misc: phantom, synchronize_irq() on suspend Jiri Slaby
2007-10-15 16:33 ` [PATCH 2/3] Misc: phantom, add comment about openhaptics Jiri Slaby
2007-10-15 16:33 ` [PATCH 3/3] Misc: phantom, improved data passing Jiri Slaby
2007-10-15 23:31 ` Andrew Morton [this message]
2007-10-16 17:50 ` [PATCH 1/1] misc-phantom-improved-data-passing-fix Jiri Slaby
2007-10-15 23:23 ` [PATCH 1/3] Misc: phantom, synchronize_irq() on suspend Andrew Morton
2007-10-16 12:09 ` Common .suspend()/.resume() template for PCI devices (was: Re: [PATCH 1/3] Misc: phantom, synchronize_irq() on suspend) Rafael J. Wysocki
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=20071015163134.3ed17496.akpm@linux-foundation.org \
--to=akpm@linux-foundation.org \
--cc=jirislaby@gmail.com \
--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