From: Sergei Shtylyov <sshtylyov@mvista.com>
To: Kukjin Kim <kgene.kim@samsung.com>
Cc: linux-arm-kernel@lists.infradead.org,
linux-samsung-soc@vger.kernel.org, linux-ide@vger.kernel.org,
ben-linux@fluff.org, jgarzik@redhat.com, sshtylyov@mvista.com,
Abhilash Kesavan <a.kesavan@samsung.com>
Subject: Re: [PATCH v6] libata: pata_samsung: Add Samsung PATA controller driver
Date: Mon, 12 Jul 2010 13:33:40 +0400 [thread overview]
Message-ID: <4C3AE174.7090509@mvista.com> (raw)
In-Reply-To: <1278904780-20592-1-git-send-email-kgene.kim@samsung.com>
Hello.
Kukjin Kim wrote:
> From: Abhilash Kesavan <a.kesavan@samsung.com>
> Adds support for the Samsung PATA controller. This driver is based on the
> Libata subsystem and references the earlier patches sent for IDE subsystem.
> Signed-off-by: Abhilash Kesavan <a.kesavan@samsung.com>
> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
> Cc: Ben Dooks <ben-linux@fluff.org>
There's probably still a place for improvement... sorry that I dind't
notice before. Other than that:
Acked-by: Sergei Shtylyov <sshtylyov@mvista.com>
[...]
> diff --git a/drivers/ata/pata_samsung_cf.c b/drivers/ata/pata_samsung_cf.c
> new file mode 100644
> index 0000000..5718220
> --- /dev/null
> +++ b/drivers/ata/pata_samsung_cf.c
> @@ -0,0 +1,727 @@
[...]
> +/*
> + * pata_s3c_wait_after_reset - wait for devices to become ready after reset
> + */
> +static int pata_s3c_wait_after_reset(struct ata_link *link,
> + unsigned int devmask, unsigned long deadline)
> +{
> + struct ata_port *ap = link->ap;
> + struct ata_ioports *ioaddr = &ap->ioaddr;
> + unsigned int dev0 = devmask & (1 << 0);
> + unsigned int dev1 = devmask & (1 << 1);
> + int rc, ret = 0;
> +
> + msleep(ATA_WAIT_AFTER_RESET);
> +
> + /* always check readiness of the master device */
> + rc = ata_sff_wait_ready(link, deadline);
> + /* -ENODEV means the odd clown forgot the D7 pulldown resistor
> + * and TF status is 0xff, bail out on it too.
> + */
> + if (rc)
> + return rc;
> +
> + /* if device 1 was found in ata_devchk, wait for register
> + * access briefly, then wait for BSY to clear.
> + */
You don't call pata_s3c_devchk() for device 1, so in principle you can
drop the following block:
> + if (dev1) {
> + int i;
> +
> + pata_s3c_dev_select(ap, 1);
> +
> + /* Wait for register access. Some ATAPI devices fail
> + * to set nsect/lbal after reset, so don't waste too
> + * much time on it. We're gonna wait for !BSY anyway.
> + */
> + for (i = 0; i < 2; i++) {
> + u8 nsect, lbal;
> +
> + nsect = ata_inb(ap->host, ioaddr->nsect_addr);
> + lbal = ata_inb(ap->host, ioaddr->lbal_addr);
> + if ((nsect == 1) && (lbal == 1))
> + break;
> + msleep(50); /* give drive a breather */
> + }
> +
> + rc = ata_sff_wait_ready(link, deadline);
> + if (rc) {
> + if (rc != -ENODEV)
> + return rc;
> + ret = rc;
> + }
> + }
> +
> + /* is all this really necessary? */
> + pata_s3c_dev_select(ap, 0);
> + if (dev1)
> + pata_s3c_dev_select(ap, 1);
This too...
> + if (dev0)
> + pata_s3c_dev_select(ap, 0);
> +
> + return ret;
> +}
> +
[...]
> +static int pata_s3c_resume(struct device *dev)
> +{
> + struct platform_device *pdev = to_platform_device(dev);
> + struct ata_host *host = platform_get_drvdata(pdev);
> + struct s3c_ide_platdata *pdata = pdev->dev.platform_data;
> + struct s3c_ide_info *info;
> +
> + info = host->private_data;
Could be initializer...
MBR, Sergei
WARNING: multiple messages have this Message-ID (diff)
From: sshtylyov@mvista.com (Sergei Shtylyov)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v6] libata: pata_samsung: Add Samsung PATA controller driver
Date: Mon, 12 Jul 2010 13:33:40 +0400 [thread overview]
Message-ID: <4C3AE174.7090509@mvista.com> (raw)
In-Reply-To: <1278904780-20592-1-git-send-email-kgene.kim@samsung.com>
Hello.
Kukjin Kim wrote:
> From: Abhilash Kesavan <a.kesavan@samsung.com>
> Adds support for the Samsung PATA controller. This driver is based on the
> Libata subsystem and references the earlier patches sent for IDE subsystem.
> Signed-off-by: Abhilash Kesavan <a.kesavan@samsung.com>
> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
> Cc: Ben Dooks <ben-linux@fluff.org>
There's probably still a place for improvement... sorry that I dind't
notice before. Other than that:
Acked-by: Sergei Shtylyov <sshtylyov@mvista.com>
[...]
> diff --git a/drivers/ata/pata_samsung_cf.c b/drivers/ata/pata_samsung_cf.c
> new file mode 100644
> index 0000000..5718220
> --- /dev/null
> +++ b/drivers/ata/pata_samsung_cf.c
> @@ -0,0 +1,727 @@
[...]
> +/*
> + * pata_s3c_wait_after_reset - wait for devices to become ready after reset
> + */
> +static int pata_s3c_wait_after_reset(struct ata_link *link,
> + unsigned int devmask, unsigned long deadline)
> +{
> + struct ata_port *ap = link->ap;
> + struct ata_ioports *ioaddr = &ap->ioaddr;
> + unsigned int dev0 = devmask & (1 << 0);
> + unsigned int dev1 = devmask & (1 << 1);
> + int rc, ret = 0;
> +
> + msleep(ATA_WAIT_AFTER_RESET);
> +
> + /* always check readiness of the master device */
> + rc = ata_sff_wait_ready(link, deadline);
> + /* -ENODEV means the odd clown forgot the D7 pulldown resistor
> + * and TF status is 0xff, bail out on it too.
> + */
> + if (rc)
> + return rc;
> +
> + /* if device 1 was found in ata_devchk, wait for register
> + * access briefly, then wait for BSY to clear.
> + */
You don't call pata_s3c_devchk() for device 1, so in principle you can
drop the following block:
> + if (dev1) {
> + int i;
> +
> + pata_s3c_dev_select(ap, 1);
> +
> + /* Wait for register access. Some ATAPI devices fail
> + * to set nsect/lbal after reset, so don't waste too
> + * much time on it. We're gonna wait for !BSY anyway.
> + */
> + for (i = 0; i < 2; i++) {
> + u8 nsect, lbal;
> +
> + nsect = ata_inb(ap->host, ioaddr->nsect_addr);
> + lbal = ata_inb(ap->host, ioaddr->lbal_addr);
> + if ((nsect == 1) && (lbal == 1))
> + break;
> + msleep(50); /* give drive a breather */
> + }
> +
> + rc = ata_sff_wait_ready(link, deadline);
> + if (rc) {
> + if (rc != -ENODEV)
> + return rc;
> + ret = rc;
> + }
> + }
> +
> + /* is all this really necessary? */
> + pata_s3c_dev_select(ap, 0);
> + if (dev1)
> + pata_s3c_dev_select(ap, 1);
This too...
> + if (dev0)
> + pata_s3c_dev_select(ap, 0);
> +
> + return ret;
> +}
> +
[...]
> +static int pata_s3c_resume(struct device *dev)
> +{
> + struct platform_device *pdev = to_platform_device(dev);
> + struct ata_host *host = platform_get_drvdata(pdev);
> + struct s3c_ide_platdata *pdata = pdev->dev.platform_data;
> + struct s3c_ide_info *info;
> +
> + info = host->private_data;
Could be initializer...
MBR, Sergei
next prev parent reply other threads:[~2010-07-12 9:34 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-07-12 3:19 [PATCH v6] libata: pata_samsung: Add Samsung PATA controller driver Kukjin Kim
2010-07-12 3:19 ` Kukjin Kim
2010-07-12 9:33 ` Sergei Shtylyov [this message]
2010-07-12 9:33 ` Sergei Shtylyov
2010-07-13 4:28 ` Kukjin Kim
2010-07-13 4:28 ` Kukjin Kim
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=4C3AE174.7090509@mvista.com \
--to=sshtylyov@mvista.com \
--cc=a.kesavan@samsung.com \
--cc=ben-linux@fluff.org \
--cc=jgarzik@redhat.com \
--cc=kgene.kim@samsung.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-ide@vger.kernel.org \
--cc=linux-samsung-soc@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.