mail archive of the barebox mailing list
 help / color / mirror / Atom feed
From: Antony Pavlov <antonynpavlov@gmail.com>
To: Lucas Stach <dev@lynxeye.de>
Cc: barebox@lists.infradead.org
Subject: Re: [PATCH 1/2] PCI: rework BAR size calculation
Date: Wed, 24 Jun 2015 10:55:05 +0300	[thread overview]
Message-ID: <20150624105505.fa8de50f52b6f76dbfd7008a@gmail.com> (raw)
In-Reply-To: <1435087839-15939-1-git-send-email-dev@lynxeye.de>

On Tue, 23 Jun 2015 21:30:38 +0200
Lucas Stach <dev@lynxeye.de> wrote:

> The probe code now does a much better job at detecting bad BARs.
> Also make sure to preserve any previous content of the BAR
> registers if we don't relocate them.
>
> Signed-off-by: Lucas Stach <dev@lynxeye.de>
> ---
> I hope this fixes the problems seen with new versions of QEMU on
> MIPS malta.

I have just tested this patchseries. The qemu problems are fixed, thanks!

> ---
>  drivers/pci/pci.c | 39 ++++++++++++++++++++++++++++++++++-----
>  1 file changed, 34 insertions(+), 5 deletions(-)
> 
> diff --git a/drivers/pci/pci.c b/drivers/pci/pci.c
> index 3a0e7a5..1e45907 100644
> --- a/drivers/pci/pci.c
> +++ b/drivers/pci/pci.c
> @@ -129,10 +129,24 @@ static struct pci_dev *alloc_pci_dev(void)
>  	return dev;
>  }
>  
> +static u32 pci_size(u32 base, u32 maxbase, u32 mask)
> +{
> +	u32 size = maxbase & mask;
> +	if (!size)
> +		return 0;
> +
> +	size = (size & ~(size-1)) - 1;
> +
> +	if (base == maxbase && ((base | size) & mask) != mask)
> +		return 0;
> +
> +	return size + 1;
> +}
> +
> +
>  static void setup_device(struct pci_dev *dev, int max_bar)
>  {
> -	int bar, size;
> -	u32 mask;
> +	int bar;
>  	u8 cmd;
>  
>  	pci_read_config_byte(dev, PCI_COMMAND, &cmd);
> @@ -141,9 +155,12 @@ static void setup_device(struct pci_dev *dev, int max_bar)
>  
>  	for (bar = 0; bar < max_bar; bar++) {
>  		resource_size_t last_addr;
> +		u32 orig, mask, size;
>  
> +		pci_read_config_dword(dev, PCI_BASE_ADDRESS_0 + bar * 4, &orig);
>  		pci_write_config_dword(dev, PCI_BASE_ADDRESS_0 + bar * 4, 0xfffffffe);
>  		pci_read_config_dword(dev, PCI_BASE_ADDRESS_0 + bar * 4, &mask);
> +		pci_write_config_dword(dev, PCI_BASE_ADDRESS_0 + bar * 4, orig);
>  
>  		if (mask == 0 || mask == 0xffffffff) {
>  			pr_debug("pbar%d set bad mask\n", bar);
> @@ -151,7 +168,11 @@ static void setup_device(struct pci_dev *dev, int max_bar)
>  		}
>  
>  		if (mask & 0x01) { /* IO */
> -			size = ((~(mask & 0xfffffffe)) & 0xffff) + 1;
> +			size = pci_size(orig, mask, 0xfffffffe);
> +			if (!size) {
> +				pr_debug("pbar%d bad IO mask\n", bar);
> +				continue;
> +			}
>  			pr_debug("pbar%d: mask=%08x io %d bytes\n", bar, mask, size);
>  			if (last_io + size >
>  			    dev->bus->resource[PCI_BUS_RESOURCE_IO]->end) {
> @@ -164,7 +185,11 @@ static void setup_device(struct pci_dev *dev, int max_bar)
>  			last_io += size;
>  		} else if ((mask & PCI_BASE_ADDRESS_MEM_PREFETCH) &&
>  		           last_mem_pref) /* prefetchable MEM */ {
> -			size = (~(mask & 0xfffffff0)) + 1;
> +			size = pci_size(orig, mask, 0xfffffff0);
> +			if (!size) {
> +				pr_debug("pbar%d bad P-MEM mask\n", bar);
> +				continue;
> +			}
>  			pr_debug("pbar%d: mask=%08x P memory %d bytes\n",
>  			    bar, mask, size);
>  			if (last_mem_pref + size >
> @@ -178,7 +203,11 @@ static void setup_device(struct pci_dev *dev, int max_bar)
>  			last_addr = last_mem_pref;
>  			last_mem_pref += size;
>  		} else { /* non-prefetch MEM */
> -			size = (~(mask & 0xfffffff0)) + 1;
> +			size = pci_size(orig, mask, 0xfffffff0);
> +			if (!size) {
> +				pr_debug("pbar%d bad NP-MEM mask\n", bar);
> +				continue;
> +			}
>  			pr_debug("pbar%d: mask=%08x NP memory %d bytes\n",
>  			    bar, mask, size);
>  			if (last_mem + size >
> -- 
> 2.1.0
> 


-- 
-- 
Best regards,
  Antony Pavlov

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

  parent reply	other threads:[~2015-06-24  7:49 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-06-23 19:30 Lucas Stach
2015-06-23 19:30 ` [PATCH 2/2] PCI: remove bogus host bridge setup skipping Lucas Stach
2015-06-24  7:55 ` Antony Pavlov [this message]
2015-06-25  6:38 ` [PATCH 1/2] PCI: rework BAR size calculation Sascha Hauer

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=20150624105505.fa8de50f52b6f76dbfd7008a@gmail.com \
    --to=antonynpavlov@gmail.com \
    --cc=barebox@lists.infradead.org \
    --cc=dev@lynxeye.de \
    /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