All of lore.kernel.org
 help / color / mirror / Atom feed
From: Matthew Wilcox <matthew@wil.cx>
To: Roland Dreier <rolandd@cisco.com>
Cc: gregkh@suse.de, linux-kernel@vger.kernel.org,
	linux-pci@atrey.karlin.mff.cuni.cz
Subject: Re: [PATCH/v2] PCI: add pci_find_next_capability()
Date: Fri, 28 Oct 2005 18:51:19 -0600	[thread overview]
Message-ID: <20051029005119.GD21871@parisc-linux.org> (raw)
In-Reply-To: <52u0f1p3c9.fsf@cisco.com>

On Fri, Oct 28, 2005 at 05:35:34PM -0700, Roland Dreier wrote:
> Signed-off-by: Roland Dreier <rolandd@cisco.com>

Signed-off-by: Matthew Wilcox <matthew@wil.cx>

> 
> ---
> 
> diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c
> index 259d247..b852959 100644
> --- a/drivers/pci/pci.c
> +++ b/drivers/pci/pci.c
> @@ -62,11 +62,38 @@ pci_max_busnr(void)
>  	return max;
>  }
>  
> +static int __pci_find_next_cap(struct pci_bus *bus, unsigned int devfn, u8 pos, int cap)
> +{
> +	u8 id;
> +	int ttl = 48;
> +
> +	while (ttl--) {
> +		pci_bus_read_config_byte(bus, devfn, pos, &pos);
> +		if (pos < 0x40)
> +			break;
> +		pos &= ~3;
> +		pci_bus_read_config_byte(bus, devfn, pos + PCI_CAP_LIST_ID,
> +					 &id);
> +		if (id == 0xff)
> +			break;
> +		if (id == cap)
> +			return pos;
> +		pos += PCI_CAP_LIST_NEXT;
> +	}
> +	return 0;
> +}
> +
> +int pci_find_next_capability(struct pci_dev *dev, u8 pos, int cap)
> +{
> +	return __pci_find_next_cap(dev->bus, dev->devfn,
> +				   pos + PCI_CAP_LIST_NEXT, cap);
> +}
> +EXPORT_SYMBOL(pci_find_next_capability);
> +
>  static int __pci_bus_find_cap(struct pci_bus *bus, unsigned int devfn, u8 hdr_type, int cap)
>  {
>  	u16 status;
> -	u8 pos, id;
> -	int ttl = 48;
> +	u8 pos;
>  
>  	pci_bus_read_config_word(bus, devfn, PCI_STATUS, &status);
>  	if (!(status & PCI_STATUS_CAP_LIST))
> @@ -75,24 +102,15 @@ static int __pci_bus_find_cap(struct pci
>  	switch (hdr_type) {
>  	case PCI_HEADER_TYPE_NORMAL:
>  	case PCI_HEADER_TYPE_BRIDGE:
> -		pci_bus_read_config_byte(bus, devfn, PCI_CAPABILITY_LIST, &pos);
> +		pos = PCI_CAPABILITY_LIST;
>  		break;
>  	case PCI_HEADER_TYPE_CARDBUS:
> -		pci_bus_read_config_byte(bus, devfn, PCI_CB_CAPABILITY_LIST, &pos);
> +		pos = PCI_CB_CAPABILITY_LIST;
>  		break;
>  	default:
>  		return 0;
>  	}
> -	while (ttl-- && pos >= 0x40) {
> -		pos &= ~3;
> -		pci_bus_read_config_byte(bus, devfn, pos + PCI_CAP_LIST_ID, &id);
> -		if (id == 0xff)
> -			break;
> -		if (id == cap)
> -			return pos;
> -		pci_bus_read_config_byte(bus, devfn, pos + PCI_CAP_LIST_NEXT, &pos);
> -	}
> -	return 0;
> +	return __pci_find_next_cap(bus, devfn, pos, cap);
>  }
>  
>  /**
> diff --git a/include/linux/pci.h b/include/linux/pci.h
> index 7349058..8016d14 100644
> --- a/include/linux/pci.h
> +++ b/include/linux/pci.h
> @@ -337,6 +337,7 @@ struct pci_dev *pci_find_device (unsigne
>  struct pci_dev *pci_find_device_reverse (unsigned int vendor, unsigned int device, const struct pci_dev *from);
>  struct pci_dev *pci_find_slot (unsigned int bus, unsigned int devfn);
>  int pci_find_capability (struct pci_dev *dev, int cap);
> +int pci_find_next_capability (struct pci_dev *dev, u8 pos, int cap);
>  int pci_find_ext_capability (struct pci_dev *dev, int cap);
>  struct pci_bus * pci_find_next_bus(const struct pci_bus *from);
>  
> @@ -546,6 +547,7 @@ static inline int pci_assign_resource(st
>  static inline int pci_register_driver(struct pci_driver *drv) { return 0;}
>  static inline void pci_unregister_driver(struct pci_driver *drv) { }
>  static inline int pci_find_capability (struct pci_dev *dev, int cap) {return 0; }
> +static inline int pci_find_next_capability (struct pci_dev *dev, u8 post, int cap) {return 0; }
>  static inline int pci_find_ext_capability (struct pci_dev *dev, int cap) {return 0; }
>  static inline const struct pci_device_id *pci_match_device(const struct pci_device_id *ids, const struct pci_dev *dev) { return NULL; }
>  

  reply	other threads:[~2005-10-29  0:51 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2005-10-29  0:35 [PATCH/v2] PCI: add pci_find_next_capability() Roland Dreier
2005-10-29  0:51 ` Matthew Wilcox [this message]
2005-10-29  3:19 ` Greg KH

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=20051029005119.GD21871@parisc-linux.org \
    --to=matthew@wil.cx \
    --cc=gregkh@suse.de \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-pci@atrey.karlin.mff.cuni.cz \
    --cc=rolandd@cisco.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.