From: Sergei Shtylyov <sshtylyov@ru.mvista.com>
To: Bartlomiej Zolnierkiewicz <bzolnier@gmail.com>
Cc: linux-ide@vger.kernel.org,
Mikhail Cherkashin <mcherkashin@ru.mvista.com>
Subject: Re: [PATCH 2/8] ide: add ide_set_irq() inline helper
Date: Fri, 11 Jul 2008 13:28:38 +0400 [thread overview]
Message-ID: <487727C6.7040008@ru.mvista.com> (raw)
In-Reply-To: <200807112320.04264.bzolnier@gmail.com>
Hello.
Bartlomiej Zolnierkiewicz wrote:
>>>>> Index: b/drivers/ide/ide-iops.c
>>>>> ===================================================================
>>>>> --- a/drivers/ide/ide-iops.c
>>>>> +++ b/drivers/ide/ide-iops.c
>>>>> @@ -688,8 +688,7 @@ int ide_driveid_update(ide_drive_t *driv
>>>>> */
>>>>>
>>>>> SELECT_MASK(drive, 1);
>>>>> - if (IDE_CONTROL_REG)
>>>>> - hwif->OUTB(drive->ctl,IDE_CONTROL_REG);
>>>>> + ide_set_irq(drive, 1);
>>>>>
>>>> If we're going to execute the command using polling, isn't it logical to
>>>> *disable* drive's interrupt instead of enabling it which this code is
>>>> currently doing? This looks like it might work only for the drivers having
>>>> the maskproc() method (of which hpt366.c is the only one that I've ever dealt
>>>> with).
>>>>
>>> Yes, this needs fixing.
>>>
>> But should we honor drive->quirk_list here? What its different values
>> mean? I'm seeing either 1 or 2 is used to decide whether to set nIEN or not...
>>
>
> I did some research on ->quirk_list in the past but I couldn't exactly
> figure it out. I also wasn't able to trace this code to its author
> (not that I tried very hard)...
>
> Anyway my current findings/theories are the following:
>
> - the diff between hpt366 and pdc202xx_{new,old} quirky devices:
>
> --- hpt366.c 2008-04-12 22:03:54.000000000 +0200
> +++ pdc202xx_new.c 2008-04-12 22:04:03.000000000 +0200
> @@ -1,7 +1,11 @@
> -static const char *quirk_drives[] = {
> +static const char *pdc_quirk_drives[] = {
> "QUANTUM FIREBALLlct08 08",
> "QUANTUM FIREBALLP KA6.4",
> + "QUANTUM FIREBALLP KA9.1",
> "QUANTUM FIREBALLP LM20.4",
> + "QUANTUM FIREBALLP KX13.6",
> + "QUANTUM FIREBALLP KX20.5",
> + "QUANTUM FIREBALLP KX27.3",
> "QUANTUM FIREBALLP LM20.5",
> NULL
> };
>
> indicates that pdc202xx_{new,old} lists lack few devices that were added
> only to hpt366 and need fixing
>
You surely meant to say the hpt366's list lacks few devices. ;-)
> - the problem most likely is not limited to hpt366/pdc202xx_{new,old}
> so we should move its handling to core IDE code
>
Agreed.
> - we should make sure that all SELECT_MASK() users also call ide_set_irq()
> (then sgiioc4's ->maskproc can be removed since it is a copy of ->set_irq)
>
I've kind of made sure about that already, hence I've already created
a patch doing that...
> - we may want to make SELECT_MASK() call enable/disable_irq() for
> ->quirk_list device if there is no >maskproc method
>
Agreed.
> - we need to be a bit careful with hpt366's ->maskproc because it checks
> for ->quirk_list internally
... and falls back to manipuating nIEN if not -- which is not its
business.
> (so either we need to mask/unmask for all devices on hpt366
>
I looked at that masking code and didn't like it at all -- since the
interrupts are disabled for *both* channels as there's only *one* bit
controlling that. :-/
So, masking interrupt for all drives is not really desirable...
> or limit masking/unmasking to ->quirk_list on icside)
>
But you just said that in the icside driver this code controls some
kind of IRQ routinng...
> - we should merge SELECT_MASK() with ide_set_irq() and consider skipping
> ide_set_irq() for ->quirk_list devices
>
... you mean where it's not already done?
> There is an added bonus in fixing the above issues as it would result in
> (finally) having sane API for IRQ (un)masking, namely:
>
> * ->set_irq in struct ide_tp_ops for device's side
>
> * ->maskproc in struct ide_port_ops for controller's side
>
> As usual, I'll be glad to help with any patches.
>
Unfortunately, I'm very time-limited currently.
> Thanks,
> Bart
>
MBR, Sergei
next prev parent reply other threads:[~2008-07-11 9:28 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2007-11-29 0:04 [PATCH 2/8] ide: add ide_set_irq() inline helper Bartlomiej Zolnierkiewicz
2008-07-07 15:47 ` Sergei Shtylyov
2008-07-07 17:00 ` Sergei Shtylyov
2008-07-07 18:05 ` Bartlomiej Zolnierkiewicz
2008-07-08 9:13 ` Sergei Shtylyov
2008-07-07 18:00 ` Bartlomiej Zolnierkiewicz
2008-07-08 9:10 ` Sergei Shtylyov
2008-07-11 21:20 ` Bartlomiej Zolnierkiewicz
2008-07-11 9:28 ` Sergei Shtylyov [this message]
2008-07-11 12:57 ` Sergei Shtylyov
2008-07-12 10:30 ` Bartlomiej Zolnierkiewicz
2008-07-10 12:11 ` Dubious IRQ masking in ide_config_drive_speed() Sergei Shtylyov
2008-07-11 19:39 ` Bartlomiej Zolnierkiewicz
2008-07-10 21:21 ` Sergei Shtylyov
2008-07-11 21:44 ` Bartlomiej Zolnierkiewicz
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=487727C6.7040008@ru.mvista.com \
--to=sshtylyov@ru.mvista.com \
--cc=bzolnier@gmail.com \
--cc=linux-ide@vger.kernel.org \
--cc=mcherkashin@ru.mvista.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;
as well as URLs for NNTP newsgroup(s).