From: Simon Wunderlich <sw@simonwunderlich.de>
To: Michal Kazior <michal.kazior@tieto.com>
Cc: Mathias Kretschmer <mathias.kretschmer@fokus.fraunhofer.de>,
"Giori, Kathy" <kgiori@qca.qualcomm.com>,
linux-wireless <linux-wireless@vger.kernel.org>,
Sven Eckelmann <sven@narfation.org>,
"ath10k@lists.infradead.org" <ath10k@lists.infradead.org>
Subject: Re: [PATCH 2/2] ath10k: add spectral scan feature
Date: Mon, 21 Jul 2014 14:13:29 +0200 [thread overview]
Message-ID: <201407211413.29392.sw@simonwunderlich.de> (raw)
In-Reply-To: <CA+BoTQnCLDJYzGDLA-zHcaddY-cyuC48dMwTnoHJP+KYG2tN_Q@mail.gmail.com>
> >> > + arvif = ath10k_get_spectral_vdev(ar);
> >> > + if (!arvif)
> >> > + return -ENODEV;
> >> > + vdev_id = arvif->vdev_id;
> >> > +
> >> > + if (ar->spectral_mode == SPECTRAL_DISABLED)
> >> > + return 0;
> >> > +
> >> > + res = ath10k_wmi_vdev_spectral_enable(ar, vdev_id,
> >> > +
> >> > WMI_SPECTRAL_TRIGGER_CMD_CLEAR, +
> >> >
> >> > WMI_SPECTRAL_ENABLE_CMD_ENABLE); + if (res < 0)
> >> >
> >> > + return res;
> >> > +
> >> > + res = ath10k_wmi_vdev_spectral_enable(ar, vdev_id,
> >> > +
> >> > WMI_SPECTRAL_TRIGGER_CMD_TRIGGER, +
> >> >
> >> > WMI_SPECTRAL_ENABLE_CMD_ENABLE); + if (res < 0)
> >> >
> >> > + return res;
> >> > +
> >> > + return 0;
> >> > +}
> >> > +static int ath10k_spectral_scan_config(struct ath10k *ar,
> >> > + enum ath10k_spectral_mode mode)
> >> > +{
> >> > + struct wmi_vdev_spectral_conf_arg arg;
> >> > + struct ath10k_vif *arvif;
> >> > + int vdev_id, count, res = 0;
> >> > +
> >>
> >> Ditto. lockdep_assert_held().
> >
> > Actually both functions are calling ath10k_get_spectral_vdev() which
> > already has that assert, but it doesn't hurt to put it here as well.
> > Will do. :)
>
> True but those functions (scan_config, scan_trigger) also access
> conf_mutex protected data themselves directly. If
> ath10k_get_spectral_vdev() was to be changed to not require conf_mutex
> you'd have to remember to move lockdep_assert_held() up the call
> stack.
Ah, that's right. I'll add that anyway. :)
>
> >> Did you test this against a firmware crash while spectral scan is
> >> enabled? ar->spectral_mode will be left as-is when restart is
> >> performed but no spectral scan will be actually configured. You either
> >> need to restart spectral scan (better from user perspective) or clear
> >> out the old mode (easier to code, but bad from user perspective
> >> because suddenly spectral scan would be stopped implicitly by device
> >> crash).
> >
> > No, I didn't test that against a firmware crash yet ...
>
> There's 'simulate_fw_crash' in debugfs. I suggest 'hard' method.
> 'soft' works only with fw 636 now. Watch out for possible host lockups
> though.
>
Thanks, the hard firmware crash worked for me.
> > Restarting spectral
> > would probably a good idea in endless mode, but not if "count" has been
> > set.
>
> Hmm good point, but then what if you have count=20 and fw crashes in
> the middle of performing the spectral scan run (e.g. at iteration 10)?
>
> But then this is just a debug interface (or is it?). I don't know if
> it's worth it going to great lengths to provide a super smooth user
> experience.
Well yeah, it's in debugfs so its a debug interface. ;) Since we don't really
keep track whether a scan was triggered or not, and the firmware takes some
time to recover, I don't think it's worth the hassle - without creating more
confusion. I'll reset the spectral mode in any case so users at least see that
its disabled.
I'll send the next round of patches in some minutes. :)
Thanks!
Simon
_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k
WARNING: multiple messages have this Message-ID (diff)
From: Simon Wunderlich <sw@simonwunderlich.de>
To: Michal Kazior <michal.kazior@tieto.com>
Cc: "ath10k@lists.infradead.org" <ath10k@lists.infradead.org>,
Mathias Kretschmer <mathias.kretschmer@fokus.fraunhofer.de>,
"Giori, Kathy" <kgiori@qca.qualcomm.com>,
"linux-wireless" <linux-wireless@vger.kernel.org>,
Sven Eckelmann <sven@narfation.org>
Subject: Re: [PATCH 2/2] ath10k: add spectral scan feature
Date: Mon, 21 Jul 2014 14:13:29 +0200 [thread overview]
Message-ID: <201407211413.29392.sw@simonwunderlich.de> (raw)
In-Reply-To: <CA+BoTQnCLDJYzGDLA-zHcaddY-cyuC48dMwTnoHJP+KYG2tN_Q@mail.gmail.com>
> >> > + arvif = ath10k_get_spectral_vdev(ar);
> >> > + if (!arvif)
> >> > + return -ENODEV;
> >> > + vdev_id = arvif->vdev_id;
> >> > +
> >> > + if (ar->spectral_mode == SPECTRAL_DISABLED)
> >> > + return 0;
> >> > +
> >> > + res = ath10k_wmi_vdev_spectral_enable(ar, vdev_id,
> >> > +
> >> > WMI_SPECTRAL_TRIGGER_CMD_CLEAR, +
> >> >
> >> > WMI_SPECTRAL_ENABLE_CMD_ENABLE); + if (res < 0)
> >> >
> >> > + return res;
> >> > +
> >> > + res = ath10k_wmi_vdev_spectral_enable(ar, vdev_id,
> >> > +
> >> > WMI_SPECTRAL_TRIGGER_CMD_TRIGGER, +
> >> >
> >> > WMI_SPECTRAL_ENABLE_CMD_ENABLE); + if (res < 0)
> >> >
> >> > + return res;
> >> > +
> >> > + return 0;
> >> > +}
> >> > +static int ath10k_spectral_scan_config(struct ath10k *ar,
> >> > + enum ath10k_spectral_mode mode)
> >> > +{
> >> > + struct wmi_vdev_spectral_conf_arg arg;
> >> > + struct ath10k_vif *arvif;
> >> > + int vdev_id, count, res = 0;
> >> > +
> >>
> >> Ditto. lockdep_assert_held().
> >
> > Actually both functions are calling ath10k_get_spectral_vdev() which
> > already has that assert, but it doesn't hurt to put it here as well.
> > Will do. :)
>
> True but those functions (scan_config, scan_trigger) also access
> conf_mutex protected data themselves directly. If
> ath10k_get_spectral_vdev() was to be changed to not require conf_mutex
> you'd have to remember to move lockdep_assert_held() up the call
> stack.
Ah, that's right. I'll add that anyway. :)
>
> >> Did you test this against a firmware crash while spectral scan is
> >> enabled? ar->spectral_mode will be left as-is when restart is
> >> performed but no spectral scan will be actually configured. You either
> >> need to restart spectral scan (better from user perspective) or clear
> >> out the old mode (easier to code, but bad from user perspective
> >> because suddenly spectral scan would be stopped implicitly by device
> >> crash).
> >
> > No, I didn't test that against a firmware crash yet ...
>
> There's 'simulate_fw_crash' in debugfs. I suggest 'hard' method.
> 'soft' works only with fw 636 now. Watch out for possible host lockups
> though.
>
Thanks, the hard firmware crash worked for me.
> > Restarting spectral
> > would probably a good idea in endless mode, but not if "count" has been
> > set.
>
> Hmm good point, but then what if you have count=20 and fw crashes in
> the middle of performing the spectral scan run (e.g. at iteration 10)?
>
> But then this is just a debug interface (or is it?). I don't know if
> it's worth it going to great lengths to provide a super smooth user
> experience.
Well yeah, it's in debugfs so its a debug interface. ;) Since we don't really
keep track whether a scan was triggered or not, and the firmware takes some
time to recover, I don't think it's worth the hassle - without creating more
confusion. I'll reset the spectral mode in any case so users at least see that
its disabled.
I'll send the next round of patches in some minutes. :)
Thanks!
Simon
next prev parent reply other threads:[~2014-07-21 12:13 UTC|newest]
Thread overview: 22+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-07-18 13:26 [PATCH 0/2] ath10k spectral scan support Simon Wunderlich
2014-07-18 13:26 ` Simon Wunderlich
2014-07-18 13:26 ` [PATCH 1/2] ath: Move spectral debugfs structs to shared header Simon Wunderlich
2014-07-18 13:26 ` Simon Wunderlich
2014-07-18 13:26 ` [PATCH 2/2] ath10k: add spectral scan feature Simon Wunderlich
2014-07-18 13:26 ` Simon Wunderlich
2014-07-21 4:15 ` Yeoh Chun-Yeow
2014-07-21 4:15 ` Yeoh Chun-Yeow
2014-07-21 9:43 ` Simon Wunderlich
2014-07-21 9:43 ` Simon Wunderlich
2014-07-22 4:59 ` Yeoh Chun-Yeow
2014-07-22 4:59 ` Yeoh Chun-Yeow
2014-07-22 5:02 ` Yeoh Chun-Yeow
2014-07-22 5:02 ` Yeoh Chun-Yeow
2014-07-21 6:56 ` Michal Kazior
2014-07-21 6:56 ` Michal Kazior
2014-07-21 9:59 ` Simon Wunderlich
2014-07-21 9:59 ` Simon Wunderlich
2014-07-21 10:15 ` Michal Kazior
2014-07-21 10:15 ` Michal Kazior
2014-07-21 12:13 ` Simon Wunderlich [this message]
2014-07-21 12:13 ` Simon Wunderlich
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=201407211413.29392.sw@simonwunderlich.de \
--to=sw@simonwunderlich.de \
--cc=ath10k@lists.infradead.org \
--cc=kgiori@qca.qualcomm.com \
--cc=linux-wireless@vger.kernel.org \
--cc=mathias.kretschmer@fokus.fraunhofer.de \
--cc=michal.kazior@tieto.com \
--cc=sven@narfation.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.