|
@@ -28,13 +28,8 @@
|
|
|
#include "wlan_dsc_test.h"
|
|
|
#include "wlan_hdd_unit_test.h"
|
|
|
#include "wlan_hdd_debugfs_unit_test.h"
|
|
|
-#include "wlan_module_ids.h"
|
|
|
#include "wma.h"
|
|
|
|
|
|
-/* strlen("5 1 1") + 1(\n) */
|
|
|
-#define MIN_USER_COMMAND_SIZE_UNIT_TEST_TARGET 6
|
|
|
-#define MAX_USER_COMMAND_SIZE_UNIT_TEST_TARGET 256
|
|
|
-
|
|
|
#ifdef WLAN_UNIT_TEST
|
|
|
/* strlen("all") + 1(\n) */
|
|
|
#define MIN_USER_COMMAND_SIZE_UNIT_TEST_HOST 4
|
|
@@ -140,161 +135,3 @@ int wlan_hdd_debugfs_unit_test_host_create(struct hdd_context *hdd_ctx)
|
|
|
return 0;
|
|
|
}
|
|
|
#endif /* WLAN_UNIT_TEST */
|
|
|
-
|
|
|
-/**
|
|
|
- * __wlan_hdd_write_unit_test_target_debugfs()
|
|
|
- * - target unit test debugfs handler
|
|
|
- *
|
|
|
- * @net_dev: net_device context used to register the debugfs file
|
|
|
- * @buf: text being written to the debugfs
|
|
|
- * @count: size of @buf
|
|
|
- * @ppos: (unused) offset into the virtual file system
|
|
|
- *
|
|
|
- * Return: number of bytes processed
|
|
|
- */
|
|
|
-static ssize_t __wlan_hdd_write_unit_test_target_debugfs(
|
|
|
- struct net_device *net_dev,
|
|
|
- const char __user *buf, size_t count,
|
|
|
- loff_t *ppos)
|
|
|
-{
|
|
|
- struct hdd_adapter *adapter = WLAN_HDD_GET_PRIV_PTR(net_dev);
|
|
|
- struct hdd_context *hdd_ctx;
|
|
|
- char buf_local[MAX_USER_COMMAND_SIZE_UNIT_TEST_TARGET + 1];
|
|
|
- char *sptr, *token;
|
|
|
- uint32_t apps_args[WMA_MAX_NUM_ARGS];
|
|
|
- int module_id, args_num, ret, i;
|
|
|
- QDF_STATUS status;
|
|
|
-
|
|
|
- if (hdd_validate_adapter(adapter)) {
|
|
|
- hdd_err_rl("adapter validate fail");
|
|
|
- return -EINVAL;
|
|
|
- }
|
|
|
-
|
|
|
- hdd_ctx = WLAN_HDD_GET_CTX(adapter);
|
|
|
- ret = wlan_hdd_validate_context(hdd_ctx);
|
|
|
- if (ret != 0)
|
|
|
- return ret;
|
|
|
-
|
|
|
- if (!wlan_hdd_validate_modules_state(hdd_ctx))
|
|
|
- return -EINVAL;
|
|
|
-
|
|
|
- if (count < MIN_USER_COMMAND_SIZE_UNIT_TEST_TARGET ||
|
|
|
- count > MAX_USER_COMMAND_SIZE_UNIT_TEST_TARGET) {
|
|
|
- hdd_err_rl("Command length (%zu) is invalid, expected [%d, %d]",
|
|
|
- count,
|
|
|
- MIN_USER_COMMAND_SIZE_UNIT_TEST_TARGET,
|
|
|
- MAX_USER_COMMAND_SIZE_UNIT_TEST_TARGET);
|
|
|
- return -EINVAL;
|
|
|
- }
|
|
|
-
|
|
|
- /* Get command from user */
|
|
|
- if (copy_from_user(buf_local, buf, count))
|
|
|
- return -EFAULT;
|
|
|
- /* default 'echo' cmd takes new line character to here*/
|
|
|
- if (buf_local[count - 1] == '\n')
|
|
|
- buf_local[count - 1] = '\0';
|
|
|
- else
|
|
|
- buf_local[count] = '\0';
|
|
|
-
|
|
|
- sptr = buf_local;
|
|
|
- hdd_nofl_info("unit_test: count %zu buf_local:(%s) net_devname %s",
|
|
|
- count, buf_local, net_dev->name);
|
|
|
-
|
|
|
- /* Get module_id */
|
|
|
- token = strsep(&sptr, " ");
|
|
|
- if (!token)
|
|
|
- return -EINVAL;
|
|
|
- if (kstrtou32(token, 0, &module_id))
|
|
|
- return -EINVAL;
|
|
|
-
|
|
|
- /* Get args_num */
|
|
|
- token = strsep(&sptr, " ");
|
|
|
- if (!token)
|
|
|
- return -EINVAL;
|
|
|
- if (kstrtou32(token, 0, &args_num))
|
|
|
- return -EINVAL;
|
|
|
-
|
|
|
- if (module_id < WLAN_MODULE_ID_MIN ||
|
|
|
- module_id >= WLAN_MODULE_ID_MAX) {
|
|
|
- hdd_err_rl("Invalid MODULE ID %d", module_id);
|
|
|
- return -EINVAL;
|
|
|
- }
|
|
|
- if (args_num > WMA_MAX_NUM_ARGS) {
|
|
|
- hdd_err_rl("Too many args %d", args_num);
|
|
|
- return -EINVAL;
|
|
|
- }
|
|
|
-
|
|
|
- for (i = 0; i < args_num; i++) {
|
|
|
- token = strsep(&sptr, " ");
|
|
|
- if (!token) {
|
|
|
- hdd_err_rl("not enough args(%d), expected args_num:%d",
|
|
|
- i, args_num);
|
|
|
- return -EINVAL;
|
|
|
- }
|
|
|
- if (kstrtou32(token, 0, &apps_args[i]))
|
|
|
- return -EINVAL;
|
|
|
- }
|
|
|
-
|
|
|
- status = sme_send_unit_test_cmd(adapter->vdev_id,
|
|
|
- module_id,
|
|
|
- args_num,
|
|
|
- &apps_args[0]);
|
|
|
- if (status != QDF_STATUS_SUCCESS) {
|
|
|
- hdd_err_rl("sme_send_unit_test_cmd returned %d", status);
|
|
|
- return -EINVAL;
|
|
|
- }
|
|
|
-
|
|
|
- return count;
|
|
|
-}
|
|
|
-
|
|
|
-/**
|
|
|
- * wlan_hdd_write_unit_test_target_debugfs()
|
|
|
- * - wrapper for __wlan_hdd_write_unit_test_target_debugfs
|
|
|
- *
|
|
|
- * @file: file pointer
|
|
|
- * @buf: buffer
|
|
|
- * @count: count
|
|
|
- * @ppos: position pointer
|
|
|
- *
|
|
|
- * Return: number of bytes processed or errno
|
|
|
- */
|
|
|
-static ssize_t wlan_hdd_write_unit_test_target_debugfs(
|
|
|
- struct file *file,
|
|
|
- const char __user *buf,
|
|
|
- size_t count, loff_t *ppos)
|
|
|
-{
|
|
|
- struct net_device *net_dev = file_inode(file)->i_private;
|
|
|
- struct osif_vdev_sync *vdev_sync;
|
|
|
- ssize_t errno_size;
|
|
|
-
|
|
|
- errno_size = osif_vdev_sync_op_start(net_dev, &vdev_sync);
|
|
|
- if (errno_size)
|
|
|
- return errno_size;
|
|
|
-
|
|
|
- errno_size = __wlan_hdd_write_unit_test_target_debugfs(
|
|
|
- net_dev, buf, count, ppos);
|
|
|
- if (errno_size < 0)
|
|
|
- hdd_err_rl("errno_size %zd", errno_size);
|
|
|
-
|
|
|
- osif_vdev_sync_op_stop(vdev_sync);
|
|
|
-
|
|
|
- return errno_size;
|
|
|
-}
|
|
|
-
|
|
|
-static const struct file_operations fops_unit_test_target_debugfs = {
|
|
|
- .write = wlan_hdd_write_unit_test_target_debugfs,
|
|
|
- .owner = THIS_MODULE,
|
|
|
- .llseek = default_llseek,
|
|
|
-};
|
|
|
-
|
|
|
-int wlan_hdd_debugfs_unit_test_target_create(struct hdd_adapter *adapter)
|
|
|
-{
|
|
|
- struct net_device *net_dev = adapter->dev;
|
|
|
-
|
|
|
- if (!debugfs_create_file("unit_test_target", 00400 | 00200,
|
|
|
- adapter->debugfs_phy,
|
|
|
- net_dev, &fops_unit_test_target_debugfs))
|
|
|
- return -EINVAL;
|
|
|
-
|
|
|
- return 0;
|
|
|
-}
|