Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

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

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
Loading
Loading
Loading
Loading
+44 −16
Original line number Diff line number Diff line
@@ -14,6 +14,7 @@

struct mdev_link {
	struct config_item item;
	struct list_head list;
	bool create_link;
	u16 num_buffers;
	u16 buffer_size;
@@ -29,6 +30,8 @@ struct mdev_link {
	char comp_params[PAGE_SIZE];
};

struct list_head mdev_link_list;

static int set_cfg_buffer_size(struct mdev_link *link)
{
	if (!link->buffer_size)
@@ -106,33 +109,41 @@ static ssize_t mdev_link_create_link_show(struct config_item *item, char *page)
			to_mdev_link(item)->create_link);
}

static ssize_t mdev_link_create_link_store(struct config_item *item,
					   const char *page, size_t count)
static int set_config_and_add_link(struct mdev_link *mdev_link)
{
	struct mdev_link *mdev_link = to_mdev_link(item);
	bool tmp;
	int ret;
	int i;

	ret = kstrtobool(page, &tmp);
	if (ret)
		return ret;
	int ret;

	for (i = 0; i < ARRAY_SIZE(set_config_val); i++) {
		ret = set_config_val[i](mdev_link);
		if (ret < 0)
		if (ret < 0 && ret != -ENODEV) {
			pr_err("Config failed\n");
			return ret;
		}
	}

	if (tmp)
		ret = most_add_link(mdev_link->device, mdev_link->channel,
	return 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);
}

static ssize_t mdev_link_create_link_store(struct config_item *item,
					   const char *page, size_t count)
{
	struct mdev_link *mdev_link = to_mdev_link(item);
	bool tmp;
	int ret;

	ret = kstrtobool(page, &tmp);
	if (ret)
		return ret;
	if (!tmp)
		return most_remove_link(mdev_link->device, mdev_link->channel,
					mdev_link->comp);
	ret = set_config_and_add_link(mdev_link);
	if (ret && ret != -ENODEV)
		return ret;
	list_add_tail(&mdev_link->list, &mdev_link_list);
	mdev_link->create_link = tmp;
	return count;
}
@@ -594,6 +605,22 @@ int most_register_configfs_subsys(struct core_component *c)
}
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)
{
	if (!strcmp(c->name, "cdev"))
@@ -622,6 +649,7 @@ int __init configfs_init(void)
	mutex_init(&most_sound_subsys.subsys.su_mutex);

	INIT_LIST_HEAD(&most_sound_subsys.soundcard_list);
	INIT_LIST_HEAD(&mdev_link_list);

	return 0;
}
+4 −12
Original line number Diff line number Diff line
@@ -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,
		  char *comp_param)
{
	struct most_channel *c;
	struct core_component *comp;
	char buf[STRING_SIZE];
	struct most_channel *c = get_channel(mdev, mdev_ch);
	struct core_component *comp = match_component(comp_name);

	comp = match_component(comp_name);
	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)
	if (!c || !comp)
		return -ENODEV;

	return link_channel_to_component(c, comp, link_name, comp_param);
@@ -1462,6 +1453,7 @@ int most_register_interface(struct most_interface *iface)
	}
	pr_info("registered new device mdev%d (%s)\n",
		id, iface->description);
	most_interface_register_notify(iface->description);
	return 0;

err_free_most_channel:
+1 −0
Original line number Diff line number Diff line
@@ -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_packets_xact(char *mdev, char *mdev_ch, u16 val);
int most_cfg_complete(char *comp_name);
void most_interface_register_notify(const char *mdev_name);
#endif /* MOST_CORE_H_ */
+4 −2
Original line number Diff line number Diff line
@@ -20,6 +20,7 @@
#include <most/core.h>

#define DRIVER_NAME "sound"
#define STRING_SIZE	80

static struct core_component comp;

@@ -582,6 +583,7 @@ static int audio_probe_channel(struct most_interface *iface, int channel_id,
	int direction;
	u16 ch_num;
	char *sample_res;
	char arg_list_cpy[STRING_SIZE];

	if (!iface)
		return -EINVAL;
@@ -590,8 +592,8 @@ static int audio_probe_channel(struct most_interface *iface, int channel_id,
		pr_err("Incompatible channel type\n");
		return -EINVAL;
	}

	ret = split_arg_list(arg_list, &ch_num, &sample_res);
	strlcpy(arg_list_cpy, arg_list, STRING_SIZE);
	ret = split_arg_list(arg_list_cpy, &ch_num, &sample_res);
	if (ret < 0)
		return ret;