From: Martyn Welch <martyn.welch@ge.com>
To: Manohar Vanga <manohar.vanga@cern.ch>
Cc: gregkh@suse.de, cota@braap.org, devel@driverdev.osuosl.org,
linux-kernel@vger.kernel.org, Dan Carpenter <error27@gmail.com>
Subject: Re: [PATCH 2/6] staging: vme: make [alloc|free]_consistent bridge specific
Date: Wed, 10 Aug 2011 11:04:38 +0100 [thread overview]
Message-ID: <4E4257B6.6080109@ge.com> (raw)
In-Reply-To: <1312968830-13377-3-git-send-email-manohar.vanga@cern.ch>
On 10/08/11 10:33, Manohar Vanga wrote:
> Make PCI dependent functions ([alloc|free]_consistent() in
> 'vme.c') bridge specific. By removing the dependency of the
> VME bridge framework on PCI, this patch allows for addition of
> non-PCI based VME bridges.
>
> Signed-off-by: Manohar Vanga <manohar.vanga@cern.ch>
This appears to be resolving the issue raised by Dan. Assuming he's happy with
this:
Acked-by: Martyn Welch <martyn.welch@ge.com>
> ---
> drivers/staging/vme/bridges/vme_ca91cx42.c | 24 ++++++++++++++++++
> drivers/staging/vme/bridges/vme_tsi148.c | 24 ++++++++++++++++++
> drivers/staging/vme/vme.c | 36 ++++++++++++++++-----------
> drivers/staging/vme/vme_bridge.h | 10 +++++--
> 4 files changed, 76 insertions(+), 18 deletions(-)
>
> diff --git a/drivers/staging/vme/bridges/vme_ca91cx42.c b/drivers/staging/vme/bridges/vme_ca91cx42.c
> index c378819..15a0b19 100644
> --- a/drivers/staging/vme/bridges/vme_ca91cx42.c
> +++ b/drivers/staging/vme/bridges/vme_ca91cx42.c
> @@ -1507,6 +1507,28 @@ static int ca91cx42_slot_get(struct vme_bridge *ca91cx42_bridge)
>
> }
>
> +void *ca91cx42_alloc_consistent(struct device *parent, size_t size,
> + dma_addr_t *dma)
> +{
> + struct pci_dev *pdev;
> +
> + /* Find pci_dev container of dev */
> + pdev = container_of(parent, struct pci_dev, dev);
> +
> + return pci_alloc_consistent(pdev, size, dma);
> +}
> +
> +void ca91cx42_free_consistent(struct device *parent, size_t size, void *vaddr,
> + dma_addr_t dma)
> +{
> + struct pci_dev *pdev;
> +
> + /* Find pci_dev container of dev */
> + pdev = container_of(parent, struct pci_dev, dev);
> +
> + pci_free_consistent(pdev, size, vaddr, dma);
> +}
> +
> static int __init ca91cx42_init(void)
> {
> return pci_register_driver(&ca91cx42_driver);
> @@ -1776,6 +1798,8 @@ static int ca91cx42_probe(struct pci_dev *pdev, const struct pci_device_id *id)
> ca91cx42_bridge->lm_attach = ca91cx42_lm_attach;
> ca91cx42_bridge->lm_detach = ca91cx42_lm_detach;
> ca91cx42_bridge->slot_get = ca91cx42_slot_get;
> + ca91cx42_bridge->alloc_consistent = ca91cx42_alloc_consistent;
> + ca91cx42_bridge->free_consistent = ca91cx42_free_consistent;
>
> data = ioread32(ca91cx42_device->base + MISC_CTL);
> dev_info(&pdev->dev, "Board is%s the VME system controller\n",
> diff --git a/drivers/staging/vme/bridges/vme_tsi148.c b/drivers/staging/vme/bridges/vme_tsi148.c
> index e3f021e..5c147d6 100644
> --- a/drivers/staging/vme/bridges/vme_tsi148.c
> +++ b/drivers/staging/vme/bridges/vme_tsi148.c
> @@ -2122,6 +2122,28 @@ static int tsi148_slot_get(struct vme_bridge *tsi148_bridge)
> return (int)slot;
> }
>
> +void *tsi148_alloc_consistent(struct device *parent, size_t size,
> + dma_addr_t *dma)
> +{
> + struct pci_dev *pdev;
> +
> + /* Find pci_dev container of dev */
> + pdev = container_of(parent, struct pci_dev, dev);
> +
> + return pci_alloc_consistent(pdev, size, dma);
> +}
> +
> +void tsi148_free_consistent(struct device *parent, size_t size, void *vaddr,
> + dma_addr_t dma)
> +{
> + struct pci_dev *pdev;
> +
> + /* Find pci_dev container of dev */
> + pdev = container_of(parent, struct pci_dev, dev);
> +
> + pci_free_consistent(pdev, size, vaddr, dma);
> +}
> +
> static int __init tsi148_init(void)
> {
> return pci_register_driver(&tsi148_driver);
> @@ -2451,6 +2473,8 @@ static int tsi148_probe(struct pci_dev *pdev, const struct pci_device_id *id)
> tsi148_bridge->lm_attach = tsi148_lm_attach;
> tsi148_bridge->lm_detach = tsi148_lm_detach;
> tsi148_bridge->slot_get = tsi148_slot_get;
> + tsi148_bridge->alloc_consistent = tsi148_alloc_consistent;
> + tsi148_bridge->free_consistent = tsi148_free_consistent;
>
> data = ioread32be(tsi148_device->base + TSI148_LCSR_VSTAT);
> dev_info(&pdev->dev, "Board is%s the VME system controller\n",
> diff --git a/drivers/staging/vme/vme.c b/drivers/staging/vme/vme.c
> index 330a4ff..15a6161 100644
> --- a/drivers/staging/vme/vme.c
> +++ b/drivers/staging/vme/vme.c
> @@ -83,15 +83,11 @@ static struct vme_bridge *find_bridge(struct vme_resource *resource)
> /*
> * Allocate a contiguous block of memory for use by the driver. This is used to
> * create the buffers for the slave windows.
> - *
> - * XXX VME bridges could be available on buses other than PCI. At the momment
> - * this framework only supports PCI devices.
> */
> void *vme_alloc_consistent(struct vme_resource *resource, size_t size,
> dma_addr_t *dma)
> {
> struct vme_bridge *bridge;
> - struct pci_dev *pdev;
>
> if (resource == NULL) {
> printk(KERN_ERR "No resource\n");
> @@ -104,28 +100,29 @@ void *vme_alloc_consistent(struct vme_resource *resource, size_t size,
> return NULL;
> }
>
> - /* Find pci_dev container of dev */
> if (bridge->parent == NULL) {
> - printk(KERN_ERR "Dev entry NULL\n");
> + printk(KERN_ERR "Dev entry NULL for"
> + " bridge %s\n", bridge->name);
> + return NULL;
> + }
> +
> + if (bridge->alloc_consistent == NULL) {
> + printk(KERN_ERR "alloc_consistent not supported by"
> + " bridge %s\n", bridge->name);
> return NULL;
> }
> - pdev = container_of(bridge->parent, struct pci_dev, dev);
>
> - return pci_alloc_consistent(pdev, size, dma);
> + return bridge->alloc_consistent(bridge->parent, size, dma);
> }
> EXPORT_SYMBOL(vme_alloc_consistent);
>
> /*
> * Free previously allocated contiguous block of memory.
> - *
> - * XXX VME bridges could be available on buses other than PCI. At the momment
> - * this framework only supports PCI devices.
> */
> void vme_free_consistent(struct vme_resource *resource, size_t size,
> void *vaddr, dma_addr_t dma)
> {
> struct vme_bridge *bridge;
> - struct pci_dev *pdev;
>
> if (resource == NULL) {
> printk(KERN_ERR "No resource\n");
> @@ -138,10 +135,19 @@ void vme_free_consistent(struct vme_resource *resource, size_t size,
> return;
> }
>
> - /* Find pci_dev container of dev */
> - pdev = container_of(bridge->parent, struct pci_dev, dev);
> + if (bridge->parent == NULL) {
> + printk(KERN_ERR "Dev entry NULL for"
> + " bridge %s\n", bridge->name);
> + return;
> + }
> +
> + if (bridge->free_consistent == NULL) {
> + printk(KERN_ERR "free_consistent not supported by"
> + " bridge %s\n", bridge->name);
> + return;
> + }
>
> - pci_free_consistent(pdev, size, vaddr, dma);
> + bridge->free_consistent(bridge->parent, size, vaddr, dma);
> }
> EXPORT_SYMBOL(vme_free_consistent);
>
> diff --git a/drivers/staging/vme/vme_bridge.h b/drivers/staging/vme/vme_bridge.h
> index 4c6ec31..a9084f0 100644
> --- a/drivers/staging/vme/vme_bridge.h
> +++ b/drivers/staging/vme/vme_bridge.h
> @@ -98,8 +98,6 @@ struct vme_irq {
> /* This structure stores all the information about one bridge
> * The structure should be dynamically allocated by the driver and one instance
> * of the structure should be present for each VME chip present in the system.
> - *
> - * Currently we assume that all chips are PCI-based
> */
> struct vme_bridge {
> char name[VMENAMSIZ];
> @@ -112,7 +110,7 @@ struct vme_bridge {
> struct list_head vme_errors; /* List for errors generated on VME */
>
> /* Bridge Info - XXX Move to private structure? */
> - struct device *parent; /* Generic device struct (pdev->dev for PCI) */
> + struct device *parent; /* Parent device (eg. pdev->dev for PCI) */
> void *driver_priv; /* Private pointer for the bridge driver */
>
> struct device dev[VME_SLOTS_MAX]; /* Device registered with
> @@ -165,6 +163,12 @@ struct vme_bridge {
>
> /* CR/CSR space functions */
> int (*slot_get) (struct vme_bridge *);
> +
> + /* Bridge parent interface */
> + void *(*alloc_consistent)(struct device *dev, size_t size,
> + dma_addr_t *dma);
> + void (*free_consistent)(struct device *dev, size_t size,
> + void *vaddr, dma_addr_t dma);
> };
>
> void vme_irq_handler(struct vme_bridge *, int, int);
--
Martyn Welch (Principal Software Engineer) | Registered in England and
GE Intelligent Platforms | Wales (3828642) at 100
T +44(0)127322748 | Barbirolli Square, Manchester,
E martyn.welch@ge.com | M2 3AB VAT:GB 927559189
next prev parent reply other threads:[~2011-08-10 10:04 UTC|newest]
Thread overview: 25+ messages / expand[flat|nested] mbox.gz Atom feed top
2011-08-10 9:33 [PATCH 0/6] [RESEND] VME framework fixes Manohar Vanga
2011-08-10 9:33 ` [PATCH 1/6] staging: vme: allow explicit assignment of bus numbers Manohar Vanga
2011-08-10 10:02 ` Martyn Welch
2011-08-10 10:41 ` Manohar Vanga
2011-08-10 12:50 ` Martyn Welch
2011-08-23 22:06 ` Greg KH
2011-08-10 9:33 ` [PATCH 2/6] staging: vme: make [alloc|free]_consistent bridge specific Manohar Vanga
2011-08-10 10:04 ` Martyn Welch [this message]
2011-08-10 13:24 ` Dan Carpenter
2011-08-10 13:12 ` Joe Perches
2011-08-10 13:34 ` Martyn Welch
2011-08-10 13:51 ` Joe Perches
2011-08-10 13:55 ` Martyn Welch
2011-08-10 14:30 ` Joe Perches
2011-08-10 14:33 ` Martyn Welch
2011-08-10 9:33 ` [PATCH 3/6] staging: vme: keep track of registered buses Manohar Vanga
2011-08-10 10:06 ` Martyn Welch
2011-08-10 9:33 ` [PATCH 4/6] staging: vme: add functions for bridge module refcounting Manohar Vanga
2011-08-10 10:09 ` Martyn Welch
2011-08-10 19:14 ` Emilio G. Cota
2011-08-10 9:33 ` [PATCH 5/6] staging: vme: add struct vme_dev for VME devices Manohar Vanga
2011-08-10 10:14 ` Martyn Welch
2011-08-10 10:33 ` Manohar Vanga
2011-08-10 9:33 ` [PATCH 6/6] staging: vme: make match() driver specific to improve non-VME64x support Manohar Vanga
2011-08-10 10:18 ` Martyn Welch
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=4E4257B6.6080109@ge.com \
--to=martyn.welch@ge.com \
--cc=cota@braap.org \
--cc=devel@driverdev.osuosl.org \
--cc=error27@gmail.com \
--cc=gregkh@suse.de \
--cc=linux-kernel@vger.kernel.org \
--cc=manohar.vanga@cern.ch \
/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