xen-devel.lists.xenproject.org archive mirror
 help / color / mirror / Atom feed
From: Keir Fraser <keir.xen@gmail.com>
To: Jan Beulich <JBeulich@suse.com>, xen-devel <xen-devel@lists.xen.org>
Cc: Konrad Rzeszutek Wilk <konrad.wilk@oracle.com>
Subject: Re: [PATCH] ns16550: adjust suspend/resume logic
Date: Mon, 07 May 2012 16:47:34 +0100	[thread overview]
Message-ID: <CBCDAD26.327FF%keir.xen@gmail.com> (raw)
In-Reply-To: <4FA8067302000078000820E4@nat28.tlf.novell.com>

On 07/05/2012 16:29, "Jan Beulich" <JBeulich@suse.com> wrote:

> - no need to read BAR during suspend
> - command register is 16-bits rather than 32
> - BAR and command register must be restored before trying to access
>   the device
> - use ps_bdf[] for storing the device coordinates (pb_bdf[] is used to
>   store the bridge's ones)

Looks good to me.

Acked-by: Keir Fraser <keir@xen.org>

> --- a/xen/drivers/char/ns16550.c
> +++ b/xen/drivers/char/ns16550.c
> @@ -49,7 +49,9 @@ static struct ns16550 {
>      unsigned int ps_bdf[3]; /* pci serial port BDF */
>      bool_t pb_bdf_enable;   /* if =1, pb-bdf effective, port behind bridge */
>      bool_t ps_bdf_enable;   /* if =1, ps_bdf effective, port on pci card */
> -    int bar, cr, bar_idx;
> +    u32 bar;
> +    u16 cr;
> +    u8 bar_idx;
>  } ns16550_com[2] = { { 0 } };
>  
>  /* Register offsets */
> @@ -324,30 +326,24 @@ static void ns16550_suspend(struct seria
>      stop_timer(&uart->timer);
>  
>      if ( uart->bar )
> -    {
> -       uart->bar = pci_conf_read32(
> -           0, uart->pb_bdf[0], uart->pb_bdf[1], uart->pb_bdf[2],
> -           PCI_BASE_ADDRESS_0 + uart->bar_idx*4);
> -       uart->cr = pci_conf_read32(
> -           0, uart->pb_bdf[0], uart->pb_bdf[1], uart->pb_bdf[2],
> -           PCI_COMMAND);
> -    }
> +       uart->cr = pci_conf_read16(0, uart->ps_bdf[0], uart->ps_bdf[1],
> +                                  uart->ps_bdf[2], PCI_COMMAND);
>  }
>  
>  static void ns16550_resume(struct serial_port *port)
>  {
>      struct ns16550 *uart = port->uart;
>  
> -    ns16550_setup_preirq(port->uart);
> -    ns16550_setup_postirq(port->uart);
> -
>      if ( uart->bar )
>      {
> -       pci_conf_write32(0, uart->pb_bdf[0], uart->pb_bdf[1], uart->pb_bdf[2],
> +       pci_conf_write32(0, uart->ps_bdf[0], uart->ps_bdf[1], uart->ps_bdf[2],
>                          PCI_BASE_ADDRESS_0 + uart->bar_idx*4, uart->bar);
> -       pci_conf_write32(0, uart->pb_bdf[0], uart->pb_bdf[1], uart->pb_bdf[2],
> +       pci_conf_write16(0, uart->ps_bdf[0], uart->ps_bdf[1], uart->ps_bdf[2],
>                          PCI_COMMAND, uart->cr);
>      }
> +
> +    ns16550_setup_preirq(port->uart);
> +    ns16550_setup_postirq(port->uart);
>  }
>  
>  #ifdef CONFIG_X86
> @@ -483,9 +479,9 @@ pci_uart_config (struct ns16550 *uart, i
>                  if ( (len & 0xffff) != 0xfff9 )
>                      continue;
>  
> -                uart->pb_bdf[0] = b;
> -                uart->pb_bdf[1] = d;
> -                uart->pb_bdf[2] = f;
> +                uart->ps_bdf[0] = b;
> +                uart->ps_bdf[1] = d;
> +                uart->ps_bdf[2] = f;
>                  uart->bar = bar;
>                  uart->bar_idx = bar_idx;
>                  uart->io_base = bar & 0xfffe;
> 
> 
> _______________________________________________
> Xen-devel mailing list
> Xen-devel@lists.xen.org
> http://lists.xen.org/xen-devel

      reply	other threads:[~2012-05-07 15:47 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-05-07 15:29 [PATCH] ns16550: adjust suspend/resume logic Jan Beulich
2012-05-07 15:47 ` Keir Fraser [this message]

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=CBCDAD26.327FF%keir.xen@gmail.com \
    --to=keir.xen@gmail.com \
    --cc=JBeulich@suse.com \
    --cc=konrad.wilk@oracle.com \
    --cc=xen-devel@lists.xen.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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).