Commit acdbb897 authored by Christian Gromm's avatar Christian Gromm Committed by Greg Kroah-Hartman

staging: most: allow speculative configuration

This patch makes the driver accept a link configuration eventhough no
device is attached to the bus. Instead the configuration is being applied
as soon as a device is being registered with the core.
Signed-off-by: default avatarChristian Gromm <christian.gromm@microchip.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@linuxfoundation.org>
parent a1ee286d
...@@ -14,6 +14,7 @@ ...@@ -14,6 +14,7 @@
struct mdev_link { struct mdev_link {
struct config_item item; struct config_item item;
struct list_head list;
bool create_link; bool create_link;
u16 num_buffers; u16 num_buffers;
u16 buffer_size; u16 buffer_size;
...@@ -29,6 +30,8 @@ struct mdev_link { ...@@ -29,6 +30,8 @@ struct mdev_link {
char comp_params[PAGE_SIZE]; char comp_params[PAGE_SIZE];
}; };
struct list_head mdev_link_list;
static int set_cfg_buffer_size(struct mdev_link *link) static int set_cfg_buffer_size(struct mdev_link *link)
{ {
if (!link->buffer_size) if (!link->buffer_size)
...@@ -106,33 +109,41 @@ static ssize_t mdev_link_create_link_show(struct config_item *item, char *page) ...@@ -106,33 +109,41 @@ static ssize_t mdev_link_create_link_show(struct config_item *item, char *page)
to_mdev_link(item)->create_link); to_mdev_link(item)->create_link);
} }
static int set_config_and_add_link(struct mdev_link *mdev_link)
{
int i;
int ret;
for (i = 0; i < ARRAY_SIZE(set_config_val); i++) {
ret = set_config_val[i](mdev_link);
if (ret < 0 && ret != -ENODEV) {
pr_err("Config failed\n");
return ret;
}
}
return most_add_link(mdev_link->device, mdev_link->channel,
mdev_link->comp, mdev_link->name,
mdev_link->comp_params);
}
static ssize_t mdev_link_create_link_store(struct config_item *item, static ssize_t mdev_link_create_link_store(struct config_item *item,
const char *page, size_t count) const char *page, size_t count)
{ {
struct mdev_link *mdev_link = to_mdev_link(item); struct mdev_link *mdev_link = to_mdev_link(item);
bool tmp; bool tmp;
int ret; int ret;
int i;
ret = kstrtobool(page, &tmp); ret = kstrtobool(page, &tmp);
if (ret) if (ret)
return ret; return ret;
if (!tmp)
for (i = 0; i < ARRAY_SIZE(set_config_val); i++) { return most_remove_link(mdev_link->device, mdev_link->channel,
ret = set_config_val[i](mdev_link); mdev_link->comp);
if (ret < 0) ret = set_config_and_add_link(mdev_link);
return ret; if (ret && ret != -ENODEV)
}
if (tmp)
ret = most_add_link(mdev_link->device, mdev_link->channel,
mdev_link->comp, mdev_link->name,
mdev_link->comp_params);
else
ret = most_remove_link(mdev_link->device, mdev_link->channel,
mdev_link->comp);
if (ret)
return ret; return ret;
list_add_tail(&mdev_link->list, &mdev_link_list);
mdev_link->create_link = tmp; mdev_link->create_link = tmp;
return count; return count;
} }
...@@ -594,6 +605,22 @@ int most_register_configfs_subsys(struct core_component *c) ...@@ -594,6 +605,22 @@ int most_register_configfs_subsys(struct core_component *c)
} }
EXPORT_SYMBOL_GPL(most_register_configfs_subsys); EXPORT_SYMBOL_GPL(most_register_configfs_subsys);
void most_interface_register_notify(const char *mdev)
{
bool register_snd_card = false;
struct mdev_link *mdev_link;
list_for_each_entry(mdev_link, &mdev_link_list, list) {
if (!strcmp(mdev_link->device, mdev)) {
set_config_and_add_link(mdev_link);
if (!strcmp(mdev_link->comp, "sound"))
register_snd_card = true;
}
}
if (register_snd_card)
most_cfg_complete("sound");
}
void most_deregister_configfs_subsys(struct core_component *c) void most_deregister_configfs_subsys(struct core_component *c)
{ {
if (!strcmp(c->name, "cdev")) if (!strcmp(c->name, "cdev"))
...@@ -622,6 +649,7 @@ int __init configfs_init(void) ...@@ -622,6 +649,7 @@ int __init configfs_init(void)
mutex_init(&most_sound_subsys.subsys.su_mutex); mutex_init(&most_sound_subsys.subsys.su_mutex);
INIT_LIST_HEAD(&most_sound_subsys.soundcard_list); INIT_LIST_HEAD(&most_sound_subsys.soundcard_list);
INIT_LIST_HEAD(&mdev_link_list);
return 0; return 0;
} }
...@@ -720,19 +720,10 @@ int most_cfg_complete(char *comp_name) ...@@ -720,19 +720,10 @@ int most_cfg_complete(char *comp_name)
int most_add_link(char *mdev, char *mdev_ch, char *comp_name, char *link_name, int most_add_link(char *mdev, char *mdev_ch, char *comp_name, char *link_name,
char *comp_param) char *comp_param)
{ {
struct most_channel *c; struct most_channel *c = get_channel(mdev, mdev_ch);
struct core_component *comp; struct core_component *comp = match_component(comp_name);
char buf[STRING_SIZE];
comp = match_component(comp_name); if (!c || !comp)
if (!comp)
return -ENODEV;
if (!comp_param || *comp_param == 0) {
snprintf(buf, sizeof(buf), "%s-%s", mdev, mdev_ch);
comp_param = buf;
}
c = get_channel(mdev, mdev_ch);
if (!c)
return -ENODEV; return -ENODEV;
return link_channel_to_component(c, comp, link_name, comp_param); return link_channel_to_component(c, comp, link_name, comp_param);
...@@ -1462,6 +1453,7 @@ int most_register_interface(struct most_interface *iface) ...@@ -1462,6 +1453,7 @@ int most_register_interface(struct most_interface *iface)
} }
pr_info("registered new device mdev%d (%s)\n", pr_info("registered new device mdev%d (%s)\n",
id, iface->description); id, iface->description);
most_interface_register_notify(iface->description);
return 0; return 0;
err_free_most_channel: err_free_most_channel:
......
...@@ -334,4 +334,5 @@ int most_set_cfg_datatype(char *mdev, char *mdev_ch, char *buf); ...@@ -334,4 +334,5 @@ int most_set_cfg_datatype(char *mdev, char *mdev_ch, char *buf);
int most_set_cfg_direction(char *mdev, char *mdev_ch, char *buf); int most_set_cfg_direction(char *mdev, char *mdev_ch, char *buf);
int most_set_cfg_packets_xact(char *mdev, char *mdev_ch, u16 val); int most_set_cfg_packets_xact(char *mdev, char *mdev_ch, u16 val);
int most_cfg_complete(char *comp_name); int most_cfg_complete(char *comp_name);
void most_interface_register_notify(const char *mdev_name);
#endif /* MOST_CORE_H_ */ #endif /* MOST_CORE_H_ */
...@@ -20,6 +20,7 @@ ...@@ -20,6 +20,7 @@
#include <most/core.h> #include <most/core.h>
#define DRIVER_NAME "sound" #define DRIVER_NAME "sound"
#define STRING_SIZE 80
static struct core_component comp; static struct core_component comp;
...@@ -582,6 +583,7 @@ static int audio_probe_channel(struct most_interface *iface, int channel_id, ...@@ -582,6 +583,7 @@ static int audio_probe_channel(struct most_interface *iface, int channel_id,
int direction; int direction;
u16 ch_num; u16 ch_num;
char *sample_res; char *sample_res;
char arg_list_cpy[STRING_SIZE];
if (!iface) if (!iface)
return -EINVAL; return -EINVAL;
...@@ -590,8 +592,8 @@ static int audio_probe_channel(struct most_interface *iface, int channel_id, ...@@ -590,8 +592,8 @@ static int audio_probe_channel(struct most_interface *iface, int channel_id,
pr_err("Incompatible channel type\n"); pr_err("Incompatible channel type\n");
return -EINVAL; return -EINVAL;
} }
strlcpy(arg_list_cpy, arg_list, STRING_SIZE);
ret = split_arg_list(arg_list, &ch_num, &sample_res); ret = split_arg_list(arg_list_cpy, &ch_num, &sample_res);
if (ret < 0) if (ret < 0)
return ret; return ret;
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment