From: Arend van Spriel <arend@broadcom.com>
To: Kalle Valo <kvalo@qca.qualcomm.com>
Cc: linux-wireless@vger.kernel.org, ath10k@lists.infradead.org
Subject: Re: [PATCH v2 2/2] ath10k: add testmode
Date: Thu, 28 Aug 2014 12:05:18 +0200 [thread overview]
Message-ID: <53FEFEDE.5030505@broadcom.com> (raw)
In-Reply-To: <878um9ujn1.fsf@kamboji.qca.qualcomm.com>
On 08/28/14 10:02, Kalle Valo wrote:
> Kalle Valo<kvalo@qca.qualcomm.com> writes:
>
>> Add testmode interface for starting and using UTF firmware which is used to run
>> factory tests. This is implemented by adding new state ATH10K_STATE_UTF and user
>> space can enable this state with ATH10K_TM_CMD_UTF_START command. To go back to
>> normal mode user space can send ATH10K_TM_CMD_UTF_STOP.
>>
>> Signed-off-by: Kalle Valo<kvalo@qca.qualcomm.com>
>
> [...]
>
>> +/* "API" level of the ath10k testmode interface. Bump it after every
>> + * incompatible interface change. */
>> +#define ATH10K_TESTMODE_VERSION_MAJOR 1
>> +
>> +/* Bump this after every _compatible_ interface change, for example
>> + * addition of a new command or an attribute. */
>> +#define ATH10K_TESTMODE_VERSION_MINOR 0
>> +
>> +#define ATH10K_TM_DATA_MAX_LEN 5000
>> +
>> +enum ath10k_tm_attr {
>> + __ATH10K_TM_ATTR_INVALID = 0,
>> + ATH10K_TM_ATTR_CMD = 1,
>> + ATH10K_TM_ATTR_DATA = 2,
>> + ATH10K_TM_ATTR_WMI_CMDID = 3,
>> + ATH10K_TM_ATTR_VERSION_MAJOR = 4,
>> + ATH10K_TM_ATTR_VERSION_MINOR = 5,
>> +
>> + /* keep last */
>> + __ATH10K_TM_ATTR_AFTER_LAST,
>> + ATH10K_TM_ATTR_MAX = __ATH10K_TM_ATTR_AFTER_LAST - 1,
>> +};
>> +
>> +/* All ath10k testmode interface commands specified in
>> + * ATH10K_TM_ATTR_CMD */
>> +enum ath10k_tm_cmd {
>> + /* Returns the supported ath10k testmode interface version in
>> + * ATH10K_TM_ATTR_VERSION. Always guaranteed to work. User space
>> + * uses this to verify it's using the correct version of the
>> + * testmode interface */
>> + ATH10K_TM_CMD_GET_VERSION = 0,
>> +
>> + /* Boots the UTF firmware, the netdev interface must be down at the
>> + * time. */
>> + ATH10K_TM_CMD_UTF_START = 1,
>> +
>> + /* Shuts down the UTF firmware and puts the driver back into OFF
>> + * state. */
>> + ATH10K_TM_CMD_UTF_STOP = 2,
>> +
>> + /* The command used to transmit a WMI command to the firmware and
>> + * the event to receive WMI events from the firmware. Without
>> + * struct wmi_cmd_hdr header, only the WMI payload. Command id is
>> + * provided with ATH10K_TM_ATTR_WMI_CMDID and payload in
>> + * ATH10K_TM_ATTR_DATA.*/
>> + ATH10K_TM_CMD_WMI = 3,
>> +};
>
> Johannes suggested to put this to a separate file as that way it's
> easier for the user space. In v3 I'm planning to create testmode_uapi.h
> for this.
I suppose that file will/should end up in include/uapi/... so wouldn't
it be better to call it ath10k_testmode.h?
Regards,
Arend
_______________________________________________
ath10k mailing list
ath10k@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/ath10k
WARNING: multiple messages have this Message-ID (diff)
From: Arend van Spriel <arend@broadcom.com>
To: Kalle Valo <kvalo@qca.qualcomm.com>
Cc: <ath10k@lists.infradead.org>, <linux-wireless@vger.kernel.org>
Subject: Re: [PATCH v2 2/2] ath10k: add testmode
Date: Thu, 28 Aug 2014 12:05:18 +0200 [thread overview]
Message-ID: <53FEFEDE.5030505@broadcom.com> (raw)
In-Reply-To: <878um9ujn1.fsf@kamboji.qca.qualcomm.com>
On 08/28/14 10:02, Kalle Valo wrote:
> Kalle Valo<kvalo@qca.qualcomm.com> writes:
>
>> Add testmode interface for starting and using UTF firmware which is used to run
>> factory tests. This is implemented by adding new state ATH10K_STATE_UTF and user
>> space can enable this state with ATH10K_TM_CMD_UTF_START command. To go back to
>> normal mode user space can send ATH10K_TM_CMD_UTF_STOP.
>>
>> Signed-off-by: Kalle Valo<kvalo@qca.qualcomm.com>
>
> [...]
>
>> +/* "API" level of the ath10k testmode interface. Bump it after every
>> + * incompatible interface change. */
>> +#define ATH10K_TESTMODE_VERSION_MAJOR 1
>> +
>> +/* Bump this after every _compatible_ interface change, for example
>> + * addition of a new command or an attribute. */
>> +#define ATH10K_TESTMODE_VERSION_MINOR 0
>> +
>> +#define ATH10K_TM_DATA_MAX_LEN 5000
>> +
>> +enum ath10k_tm_attr {
>> + __ATH10K_TM_ATTR_INVALID = 0,
>> + ATH10K_TM_ATTR_CMD = 1,
>> + ATH10K_TM_ATTR_DATA = 2,
>> + ATH10K_TM_ATTR_WMI_CMDID = 3,
>> + ATH10K_TM_ATTR_VERSION_MAJOR = 4,
>> + ATH10K_TM_ATTR_VERSION_MINOR = 5,
>> +
>> + /* keep last */
>> + __ATH10K_TM_ATTR_AFTER_LAST,
>> + ATH10K_TM_ATTR_MAX = __ATH10K_TM_ATTR_AFTER_LAST - 1,
>> +};
>> +
>> +/* All ath10k testmode interface commands specified in
>> + * ATH10K_TM_ATTR_CMD */
>> +enum ath10k_tm_cmd {
>> + /* Returns the supported ath10k testmode interface version in
>> + * ATH10K_TM_ATTR_VERSION. Always guaranteed to work. User space
>> + * uses this to verify it's using the correct version of the
>> + * testmode interface */
>> + ATH10K_TM_CMD_GET_VERSION = 0,
>> +
>> + /* Boots the UTF firmware, the netdev interface must be down at the
>> + * time. */
>> + ATH10K_TM_CMD_UTF_START = 1,
>> +
>> + /* Shuts down the UTF firmware and puts the driver back into OFF
>> + * state. */
>> + ATH10K_TM_CMD_UTF_STOP = 2,
>> +
>> + /* The command used to transmit a WMI command to the firmware and
>> + * the event to receive WMI events from the firmware. Without
>> + * struct wmi_cmd_hdr header, only the WMI payload. Command id is
>> + * provided with ATH10K_TM_ATTR_WMI_CMDID and payload in
>> + * ATH10K_TM_ATTR_DATA.*/
>> + ATH10K_TM_CMD_WMI = 3,
>> +};
>
> Johannes suggested to put this to a separate file as that way it's
> easier for the user space. In v3 I'm planning to create testmode_uapi.h
> for this.
I suppose that file will/should end up in include/uapi/... so wouldn't
it be better to call it ath10k_testmode.h?
Regards,
Arend
next prev parent reply other threads:[~2014-08-28 10:05 UTC|newest]
Thread overview: 18+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-08-28 7:30 [PATCH v2 0/2] ath10k: testmode support Kalle Valo
2014-08-28 7:30 ` Kalle Valo
2014-08-28 7:30 ` [PATCH v2 1/2] ath10k: make ath10k_wmi_cmd_send() public Kalle Valo
2014-08-28 7:30 ` Kalle Valo
2014-08-28 7:30 ` [PATCH v2 2/2] ath10k: add testmode Kalle Valo
2014-08-28 7:30 ` Kalle Valo
2014-08-28 8:02 ` Kalle Valo
2014-08-28 8:02 ` Kalle Valo
2014-08-28 10:05 ` Arend van Spriel [this message]
2014-08-28 10:05 ` Arend van Spriel
2014-08-29 6:03 ` Kalle Valo
2014-08-29 6:03 ` Kalle Valo
2014-08-29 14:37 ` Arend van Spriel
2014-08-29 14:37 ` Arend van Spriel
2014-08-28 10:35 ` Michal Kazior
2014-08-28 10:35 ` Michal Kazior
2014-08-29 6:54 ` Kalle Valo
2014-08-29 6:54 ` Kalle Valo
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=53FEFEDE.5030505@broadcom.com \
--to=arend@broadcom.com \
--cc=ath10k@lists.infradead.org \
--cc=kvalo@qca.qualcomm.com \
--cc=linux-wireless@vger.kernel.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.