From: Jeff Garzik <jgarzik@pobox.com>
To: Tejun Heo <htejun@gmail.com>
Cc: alan@lxorguk.ukuu.org.uk, mlord@pobox.com, albertcc@tw.ibm.com,
uchang@tw.ibm.com, forrest.zhao@intel.com, brking@us.ibm.com,
linux-ide@vger.kernel.org
Subject: Re: [PATCH 5/20] libata: implement several LLD init helpers
Date: Tue, 19 Sep 2006 01:16:01 -0400 [thread overview]
Message-ID: <450F7D11.7030007@pobox.com> (raw)
In-Reply-To: <11559779712708-git-send-email-htejun@gmail.com>
Tejun Heo wrote:
> +struct ata_host *ata_host_alloc_pinfo(struct device *dev,
> + const struct ata_port_info *pinfo,
> + int n_ports)
> +{
> + struct ata_host *host;
> +
> + if (!n_ports)
> + return NULL;
> +
> + host = ata_host_alloc(dev, pinfo->sht, n_ports);
> + if (host)
> + __ata_host_init_pinfo(host, &pinfo, n_ports, 0);
> + return host;
> +}
> +
> +/**
> + * ata_host_alloc_pinfo_ar - alloc host and init with port_info ar
> + * @dev: generic device this host is associated with
> + * @pinfo_ar: array of ATA port_info to initialize host with
> + * @n_ports: number of ATA ports attached to this host
> + *
> + * Allocate ATA host and initialize with info from @pinfo_ar.
> + *
> + * RETURNS:
> + * Allocate ATA host on success, NULL on failure.
> + *
> + * LOCKING:
> + * Inherited from calling layer (may sleep).
> + */
> +struct ata_host *ata_host_alloc_pinfo_ar(struct device *dev,
> + const struct ata_port_info **pinfo_ar,
> + int n_ports)
> +{
> + struct ata_host *host;
> +
> + if (!n_ports)
> + return NULL;
> +
> + host = ata_host_alloc(dev, pinfo_ar[0]->sht, n_ports);
> + if (host)
> + __ata_host_init_pinfo(host, pinfo_ar, n_ports, 1);
> + return host;
> +}
> +
> +/**
> + * ata_host_add_ports_pinfo - add ports and init with port_info
> + * @host: target ATA host
> + * @pinfo: ATA port_info to initialize host with
> + * @n_ports: number of ATA ports attached to this host
> + *
> + * Add @n_ports ports to @host and initialize @host with
> + * info from @pinfo.
> + *
> + * RETURNS:
> + * 0 on success, -errno otherwise.
> + *
> + * LOCKING:
> + * Inherited from calling layer (may sleep).
> + */
> +int ata_host_add_ports_pinfo(struct ata_host *host,
> + const struct ata_port_info *pinfo, int n_ports)
> +{
> + int rc;
> +
> + rc = ata_host_add_ports(host, pinfo->sht, n_ports);
> + if (rc == 0)
> + __ata_host_init_pinfo(host, &pinfo, n_ports, 0);
> + return rc;
> +}
> +
> +/**
> + * ata_host_add_ports_pinfo_ar - add ports and init with port_info ar
> + * @host: target ATA host
> + * @pinfo_ar: array of ATA port_info to initialize host with
> + * @n_ports: number of ATA ports attached to this host
> + *
> + * Add @n_ports ports to @host and initialize @host with
> + * info from @pinfo_ar.
> + *
> + * RETURNS:
> + * 0 on success, -errno otherwise.
> + *
> + * LOCKING:
> + * Inherited from calling layer (may sleep).
> + */
> +int ata_host_add_ports_pinfo_ar(struct ata_host *host,
> + const struct ata_port_info **pinfo_ar,
> + int n_ports)
> +{
> + int rc;
> +
> + rc = ata_host_add_ports(host, pinfo_ar[0]->sht, n_ports);
> + if (rc == 0)
> + __ata_host_init_pinfo(host, pinfo_ar, n_ports, 1);
> + return rc;
> +}
Just implement a single version for each case (array and non-array).
The LLDD can pass in an indication of whether or not to copy the first
element into succeeding elements.
> @@ -5494,6 +5643,7 @@ void ata_host_init(struct ata_host *host
> host->dev = dev;
> host->flags = flags;
> host->ops = ops;
> + INIT_LIST_HEAD(&host->irq_list);
> }
>
> /**
> @@ -5541,6 +5691,108 @@ int ata_host_start(struct ata_host *host
> }
>
> /**
> + * ata_host_request_irq_marker - request IRQ helper
> + * @host: ATA host requesting IRQ for
> + * @irq: IRQ to request
> + * @handler: IRQ handler
> + * @irq_flags: IRQ flags
> + * @dev_id: IRQ dev_id
> + * @marker: marker
> + * @p_reason: out arg for error message (can be NULL)
> + *
> + * Freeze all ports and request IRQ with given parameters.
> + * devname for the IRQ will be the name of the associated LLD.
> + *
> + * LOCKING:
> + * Inherited from calling layer (may sleep).
> + *
> + * RETURNS:
> + * Return value of request_irq().
> + */
> +int ata_host_request_irq_marker(struct ata_host *host, unsigned int irq,
> + irqreturn_t (*handler)(int, void *, struct pt_regs *),
> + unsigned int irq_flags, void *dev_id, void *marker,
> + const char **p_reason)
> +{
> + struct ata_irq *airq = NULL;
> + const char *reason;
> + int i, rc;
> +
> + /* make sure ports are started */
> + rc = ata_host_start(host);
> + if (rc) {
> + reason = "failed to start host";
> + goto err;
> + }
> +
> + /* freeze before requesting IRQ */
> + for (i = 0; i < host->n_ports; i++) {
> + struct ata_port *ap = host->ports[i];
> +
> + if (!(ap->pflags & ATA_PFLAG_FROZEN)) {
> + ata_chk_status(ap);
> + host->ops->irq_clear(ap);
> + ata_eh_freeze_port(ap);
> + }
> + }
> +
> + /* request irq */
> + airq = kzalloc(sizeof(*airq), GFP_KERNEL);
> + if (!airq) {
> + reason = "failed to allocate ata_irq";
> + rc = -ENOMEM;
> + goto err;
> + }
> +
> + rc = request_irq(irq, handler, irq_flags, DRV_NAME, dev_id);
> + if (rc) {
> + reason = "failed to request IRQ";
> + goto err;
> + }
> +
> + airq->irq = irq;
> + airq->dev_id = dev_id;
> + airq->marker = marker;
> + list_add_tail(&airq->node, &host->irq_list);
> +
> + return rc;
> +
> + err:
> + kfree(airq);
> + if (p_reason)
> + *p_reason = reason;
> + return rc;
> +}
> +
> +/**
> + * ata_host_request_irq - request IRQ helper
> + * @host: ATA host requesting IRQ for
> + * @irq: IRQ to request
> + * @handler: IRQ handler
> + * @irq_flags: IRQ flags
> + * @dev_id: IRQ dev_id
> + * @p_reason: out arg for error message (can be NULL)
> + *
> + * Freeze all ports and request IRQ with given parameters.
> + * devname for the IRQ will be the name of the associated LLD.
> + *
> + * LOCKING:
> + * Inherited from calling layer (may sleep).
> + *
> + * RETURNS:
> + * Return value of request_irq().
> + */
> +int ata_host_request_irq(struct ata_host *host, unsigned int irq,
> + irqreturn_t (*handler)(int, void *, struct pt_regs *),
> + unsigned int irq_flags, void *dev_id,
> + const char **p_reason)
> +{
> + return ata_host_request_irq_marker(host, irq, handler, irq_flags,
> + dev_id, ata_host_request_irq,
> + p_reason);
> +}
> +
> +/**
> * ata_host_attach - attach initialized ATA host
> * @host: ATA host to attach
> *
> @@ -5886,6 +6138,48 @@ void ata_host_stop(struct ata_host *host
> }
> }
>
> +static void __ata_host_free_irqs(struct ata_host *host, void **markerp)
> +{
> + struct ata_irq *airq, *tmp;
> +
> + list_for_each_entry_safe(airq, tmp, &host->irq_list, node) {
> + if (!markerp || airq->marker == *markerp) {
> + list_del(&airq->node);
> + free_irq(airq->irq, airq->dev_id);
> + kfree(airq);
> + }
> + }
> +}
Ugh, I just don't like this at all. I would much rather have a hook or
entry point where the LLDD is given the capability to call request_irq()
itself, in some exotic situations. Then, helpers provided by libata can
handle the common cases. That's much more modular than the above.
Jeff
next prev parent reply other threads:[~2006-09-19 5:16 UTC|newest]
Thread overview: 50+ messages / expand[flat|nested] mbox.gz Atom feed top
2006-08-19 8:57 [PATCHSET] libata: implement new initialization model w/ iomap support, take 2 Tejun Heo
2006-08-19 8:59 ` [PATCH 2/20] libata: implement ata_host_start/stop() Tejun Heo
2006-08-19 8:59 ` [PATCH 1/20] libata: kill ata_host_stop() Tejun Heo
2006-08-19 14:51 ` Jeff Garzik
2006-08-19 15:29 ` Tejun Heo
2006-09-19 4:46 ` Jeff Garzik
2006-09-19 4:50 ` Tejun Heo
2006-08-19 8:59 ` [PATCH 4/20] libata: separate out ata_host_alloc() and ata_host_attach() Tejun Heo
2006-09-19 5:08 ` Jeff Garzik
2006-09-19 5:48 ` Tejun Heo
2006-08-19 8:59 ` [PATCH 6/20] libata: implement legacy ATA init helpers Tejun Heo
2006-09-19 5:26 ` Jeff Garzik
2006-08-19 8:59 ` [PATCH 7/20] libata: implement PCI " Tejun Heo
2006-09-19 5:29 ` Jeff Garzik
2006-08-19 8:59 ` [PATCH 3/20] libata: implement ata_host_detach() and ata_host_free() Tejun Heo
2006-09-19 4:59 ` Jeff Garzik
2006-08-19 8:59 ` [PATCH 5/20] libata: implement several LLD init helpers Tejun Heo
2006-08-22 22:11 ` Brian King
2006-08-27 9:52 ` Tejun Heo
2006-08-30 21:16 ` Brian King
2006-09-19 5:16 ` Jeff Garzik [this message]
2006-09-19 5:57 ` Tejun Heo
2006-08-19 8:59 ` [PATCH 12/20] libata: kill old " Tejun Heo
2006-08-19 8:59 ` [PATCH 13/20] libata: kill unused ->host_stop() operation and related functions Tejun Heo
2006-09-19 5:42 ` Jeff Garzik
2006-08-19 8:59 ` [PATCH 11/20] libata: use remove_one() for deinit instead of ->host_stop() Tejun Heo
2006-09-19 5:42 ` Jeff Garzik
2006-08-19 8:59 ` [PATCH 8/20] libata: reimplement ata_pci_init_one() using new init helpers Tejun Heo
2006-09-19 5:32 ` Jeff Garzik
2006-09-19 6:04 ` Tejun Heo
2006-09-19 6:09 ` Jeff Garzik
2006-08-19 8:59 ` [PATCH 10/20] libata: reimplement ata_pci_remove_one() using new PCI " Tejun Heo
2006-08-19 8:59 ` [PATCH 16/20] libata: make ata_host_alloc() take care of hpriv alloc/free Tejun Heo
2006-09-19 5:45 ` Jeff Garzik
2006-08-19 8:59 ` [PATCH 15/20] libata: move ->irq_handler from port_ops to port_info Tejun Heo
2006-09-19 5:43 ` Jeff Garzik
2006-08-19 8:59 ` [PATCH 19/20] libata: kill unused ATA_FLAG_MMIO Tejun Heo
2006-08-19 8:59 ` [PATCH 17/20] libata: make ata_pci_acquire_resources() handle iomap Tejun Heo
2006-09-19 5:47 ` Jeff Garzik
2006-09-19 6:27 ` Tejun Heo
2006-09-19 6:32 ` Jeff Garzik
2006-08-19 8:59 ` [PATCH 14/20] libata: use LLD name where possible Tejun Heo
2006-09-19 5:43 ` Jeff Garzik
2006-08-19 8:59 ` [PATCH 20/20] libata: move scattered PCI ATA functions into liata-pci.c Tejun Heo
2006-09-19 5:50 ` Jeff Garzik
2006-08-22 22:10 ` [PATCHSET] libata: implement new initialization model w/ iomap support, take 2 Brian King
2006-08-27 10:12 ` Tejun Heo
2006-08-30 20:58 ` Brian King
2006-09-01 13:45 ` Tejun Heo
2006-09-07 13:22 ` Brian King
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=450F7D11.7030007@pobox.com \
--to=jgarzik@pobox.com \
--cc=alan@lxorguk.ukuu.org.uk \
--cc=albertcc@tw.ibm.com \
--cc=brking@us.ibm.com \
--cc=forrest.zhao@intel.com \
--cc=htejun@gmail.com \
--cc=linux-ide@vger.kernel.org \
--cc=mlord@pobox.com \
--cc=uchang@tw.ibm.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 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.