All of lore.kernel.org
 help / color / mirror / Atom feed
From: Stanislaw Gruszka <sgruszka@redhat.com>
To: ath9k-devel@lists.ath9k.org
Subject: [ath9k-devel] [RFC/RFT 6/6] ath9k: always initialize hw registers related to PCIe PM
Date: Mon, 25 Jul 2011 11:29:30 +0200	[thread overview]
Message-ID: <20110725092929.GB2608@redhat.com> (raw)
In-Reply-To: <20110723051129.GC828@vmraj-lnx.users.atheros.com>

On Sat, Jul 23, 2011 at 10:41:30AM +0530, Rajkumar Manoharan wrote:
> > +	/* initalize PCIe PM registers if device introduce itself as PCIe */
> > +	if (ah->is_pciexpress)
> > +		ath9k_hw_ops(ah)->config_pci_powersave(ah, false);
> > +
> Use ath9k_hw_configpcipowersave wrapper instead.
I changed wrapper to check ah->aspm_enabled, so if I would use it here
it will not setup registers. I think I should comment that. 

> And ensure that there is no
> sideeffect by changing SERDES config from __ath9k_hw_init to pci_probe.
Hmm, not sure if I understand what I have to do :-(

We have something like that:

ath_pci_probe
  ath9k_init_device
    ath9k_init_softc
      ath9k_hw_init
	__ath9k_hw_init
            ath9k_hw_configpcipowersave();

I changed it this way:

ath_pci_probe
  ath9k_init_device
    ath9k_init_softc
      ath9k_hw_init
	__ath9k_hw_init

      ath9k_init_queues
      ath9k_init_btcoex
   some other inits
     
  ath9k_hw_configpcipowersave();

Can this cause some side effects?

WARNING: multiple messages have this Message-ID (diff)
From: Stanislaw Gruszka <sgruszka@redhat.com>
To: Rajkumar Manoharan <rmanohar@qca.qualcomm.com>
Cc: linux-wireless <linux-wireless@vger.kernel.org>,
	ath9k-devel@venema.h4ckr.net, camilo@mesias.co.uk,
	Jonathan Nieder <jrnieder@gmail.com>,
	Tony Houghton <h@realh.co.uk>, Adrian Chadd <adrian@freebsd.org>
Subject: Re: [RFC/RFT 6/6] ath9k: always initialize hw registers related to PCIe PM
Date: Mon, 25 Jul 2011 11:29:30 +0200	[thread overview]
Message-ID: <20110725092929.GB2608@redhat.com> (raw)
In-Reply-To: <20110723051129.GC828@vmraj-lnx.users.atheros.com>

On Sat, Jul 23, 2011 at 10:41:30AM +0530, Rajkumar Manoharan wrote:
> > +	/* initalize PCIe PM registers if device introduce itself as PCIe */
> > +	if (ah->is_pciexpress)
> > +		ath9k_hw_ops(ah)->config_pci_powersave(ah, false);
> > +
> Use ath9k_hw_configpcipowersave wrapper instead.
I changed wrapper to check ah->aspm_enabled, so if I would use it here
it will not setup registers. I think I should comment that. 

> And ensure that there is no
> sideeffect by changing SERDES config from __ath9k_hw_init to pci_probe.
Hmm, not sure if I understand what I have to do :-(

We have something like that:

ath_pci_probe
  ath9k_init_device
    ath9k_init_softc
      ath9k_hw_init
	__ath9k_hw_init
            ath9k_hw_configpcipowersave();

I changed it this way:

ath_pci_probe
  ath9k_init_device
    ath9k_init_softc
      ath9k_hw_init
	__ath9k_hw_init

      ath9k_init_queues
      ath9k_init_btcoex
   some other inits
     
  ath9k_hw_configpcipowersave();

Can this cause some side effects?

  reply	other threads:[~2011-07-25  9:29 UTC|newest]

Thread overview: 32+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2011-07-22 13:31 [ath9k-devel] [RFC/RFT 0/6] ath9k: ASPM fixes Stanislaw Gruszka
2011-07-22 13:31 ` Stanislaw Gruszka
2011-07-22 13:31 ` [ath9k-devel] [RFC/RFT 1/6] ath9k: skip ->config_pci_powersave() if PCIe port has ASPM disabled Stanislaw Gruszka
2011-07-22 13:31   ` Stanislaw Gruszka
2011-07-22 13:31 ` [ath9k-devel] [RFC/RFT 2/6] ath9k: remove ->config_pci_powersave() redundant argument Stanislaw Gruszka
2011-07-22 13:31   ` Stanislaw Gruszka
2011-07-22 13:31 ` [ath9k-devel] [RFC/RFT 3/6] ath9k: merge common ->config_pci_powersave() checks Stanislaw Gruszka
2011-07-22 13:31   ` Stanislaw Gruszka
2011-07-22 13:31 ` [ath9k-devel] [RFC/RFT 4/6] ath9k: use common PCIe ASPM definces instead of custom ones Stanislaw Gruszka
2011-07-22 13:31   ` Stanislaw Gruszka
2011-07-23  4:46   ` [ath9k-devel] " Rajkumar Manoharan
2011-07-23  4:46     ` Rajkumar Manoharan
2011-07-25  9:30     ` [ath9k-devel] " Stanislaw Gruszka
2011-07-25  9:30       ` Stanislaw Gruszka
2011-07-22 13:31 ` [ath9k-devel] [RFC/RFT 5/6] ath9k: do btcoex ASPM disabling at initialization time Stanislaw Gruszka
2011-07-22 13:31   ` Stanislaw Gruszka
2011-07-23  4:51   ` [ath9k-devel] " Rajkumar Manoharan
2011-07-23  4:51     ` Rajkumar Manoharan
2011-07-25  9:16     ` [ath9k-devel] " Stanislaw Gruszka
2011-07-25  9:16       ` Stanislaw Gruszka
2011-07-26 17:36       ` [ath9k-devel] " Adrian Chadd
2011-07-26 17:36         ` Adrian Chadd
2011-07-22 13:31 ` [ath9k-devel] [RFC/RFT 6/6] ath9k: always initialize hw registers related to PCIe PM Stanislaw Gruszka
2011-07-22 13:31   ` Stanislaw Gruszka
2011-07-23  5:11   ` [ath9k-devel] " Rajkumar Manoharan
2011-07-23  5:11     ` Rajkumar Manoharan
2011-07-25  9:29     ` Stanislaw Gruszka [this message]
2011-07-25  9:29       ` Stanislaw Gruszka
2011-07-25 14:01       ` [ath9k-devel] " Stanislaw Gruszka
2011-07-25 14:01         ` Stanislaw Gruszka
2011-07-26  7:31         ` [ath9k-devel] " Rajkumar Manoharan
2011-07-26  7:31           ` Rajkumar Manoharan

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=20110725092929.GB2608@redhat.com \
    --to=sgruszka@redhat.com \
    --cc=ath9k-devel@lists.ath9k.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 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.