linux-ide.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Finn Thain <fthain@telegraphics.com.au>
To: Geert Uytterhoeven <geert@linux-m68k.org>
Cc: "David S. Miller" <davem@davemloft.net>,
	Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>,
	Joshua Thompson <funaho@jurai.org>,
	linux-m68k <linux-m68k@lists.linux-m68k.org>,
	Linux Kernel Mailing List <linux-kernel@vger.kernel.org>,
	linux-ide@vger.kernel.org
Subject: Re: [PATCH v2] ide/macide: Convert Mac IDE driver to platform driver
Date: Tue, 15 Sep 2020 11:17:43 +1000 (AEST)	[thread overview]
Message-ID: <alpine.LNX.2.23.453.2009150945480.6@nippy.intranet> (raw)
In-Reply-To: <CAMuHMdUOdOkBE72ouk0W_bXnoSTFqLsLKag+2LSRz+Qox6MoxQ@mail.gmail.com>

On Mon, 14 Sep 2020, Geert Uytterhoeven wrote:

> Hi Finn,
> 
> On Mon, Sep 14, 2020 at 4:47 AM Finn Thain <fthain@telegraphics.com.au> wrote:
> > Add platform devices for the Mac IDE controller variants. Convert the
> > macide module into a platform driver to support two of those variants.
> > For the third, use a generic "pata_platform" driver instead.
> > This enables automatic loading of the appropriate module and begins
> > the process of replacing the driver with libata alternatives.
> >
> > Cc: Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
> > Cc: Geert Uytterhoeven <geert@linux-m68k.org>
> > Cc: Joshua Thompson <funaho@jurai.org>
> > References: commit 5ed0794cde593 ("m68k/atari: Convert Falcon IDE drivers to platform drivers")
> > References: commit 7ad19a99ad431 ("ide: officially deprecated the legacy IDE driver")
> > Tested-by: Stan Johnson <userm57@yahoo.com>
> > Signed-off-by: Finn Thain <fthain@telegraphics.com.au>
> > ---
> > This patch was tested successfully on a Powerbook 190 (MAC_IDE_BABOON)
> > using both pata_platform and ide_platform drivers.
> > The next step will be to try using these generic drivers with the other
> > IDE controller variants (MAC_IDE_QUADRA or MAC_IDE_PB) so that the macide
> > driver can be entirely replaced with libata drivers.
> >
> > Changed since v1:
> >  - Adopted DEFINE_RES_MEM and DEFINE_RES_IRQ macros.
> >  - Dropped IORESOURCE_IRQ_SHAREABLE flag as it is ignored by pata_platform.c
> >    and IRQF_SHARED makes no difference in this case.
> >  - Removed redundant release_mem_region() call.
> >  - Enabled CONFIG_BLK_DEV_PLATFORM in mac_defconfig. We might also enable
> >    CONFIG_PATA_PLATFORM but IMO migration to libata should be a separate
> >    patch (as this patch has some unrelated benefits).
> 
> Thanks for the update!
> 
> BTW, who do you envision taking this (or the next version)? IDE or m68k?
> 

It's unclear from the diff stat. But the focus is on the platform which 
probably means it is more interesting to you, as the arch maintainer.

> > --- a/arch/m68k/configs/mac_defconfig
> > +++ b/arch/m68k/configs/mac_defconfig
> > @@ -317,6 +317,7 @@ CONFIG_DUMMY_IRQ=m
> >  CONFIG_IDE=y
> >  CONFIG_IDE_GD_ATAPI=y
> >  CONFIG_BLK_DEV_IDECD=y
> > +CONFIG_BLK_DEV_PLATFORM=y
> 
> I guess we want this in multi_defconfig, too?
> 

Right. I'll add that in v3.

> >  CONFIG_BLK_DEV_MAC_IDE=y
> >  CONFIG_RAID_ATTRS=m
> >  CONFIG_SCSI=y
> 
> > --- a/drivers/ide/macide.c
> > +++ b/drivers/ide/macide.c
> 
> > @@ -109,42 +110,61 @@ static const char *mac_ide_name[] =
> >   * Probe for a Macintosh IDE interface
> >   */
> >
> > -static int __init macide_init(void)
> > +static int mac_ide_probe(struct platform_device *pdev)
> >  {
> 
> >         printk(KERN_INFO "ide: Macintosh %s IDE controller\n",
> >                          mac_ide_name[macintosh_config->ide_type - 1]);
> >
> > -       macide_setup_ports(&hw, base, irq);
> > +       macide_setup_ports(&hw, mem->start, irq->start);
> >
> > -       return ide_host_add(&d, hws, 1, NULL);
> > +       rc = ide_host_add(&d, hws, 1, &host);
> > +       if (rc)
> > +               return rc;
> > +
> > +       platform_set_drvdata(pdev, host);
> 
> Move one up, to play it safe?
> 

You mean, before calling ide_host_add? The 'host' pointer is uninitialized 
prior to that call.

> > +       return 0;
> >  }
> >
> > -module_init(macide_init);
> > +static int mac_ide_remove(struct platform_device *pdev)
> > +{
> > +       struct ide_host *host = dev_get_drvdata(&pdev->dev);
> 
> As you use platform_set_drvdata() above, you might as well use the
> platform_get_drvdata() helper here, for symmetry.
> 

Will do.

Thanks for your review.

> Gr{oetje,eeting}s,
> 
>                         Geert

  reply	other threads:[~2020-09-15  1:17 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-09-14  2:42 [PATCH v2] ide/macide: Convert Mac IDE driver to platform driver Finn Thain
2020-09-14 11:42 ` Geert Uytterhoeven
2020-09-15  1:17   ` Finn Thain [this message]
2020-09-15  7:15     ` Geert Uytterhoeven
2020-09-15 22:56       ` Finn Thain
2020-09-24  1:07         ` Finn Thain
2020-09-24  1:29           ` Michael Schmitz
2020-09-24  7:21           ` Geert Uytterhoeven

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=alpine.LNX.2.23.453.2009150945480.6@nippy.intranet \
    --to=fthain@telegraphics.com.au \
    --cc=b.zolnierkie@samsung.com \
    --cc=davem@davemloft.net \
    --cc=funaho@jurai.org \
    --cc=geert@linux-m68k.org \
    --cc=linux-ide@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-m68k@lists.linux-m68k.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).