[alsa-devel] [PATCH v2 02/13] soundwire: Add support for SoundWire stream management

Pierre-Louis Bossart pierre-louis.bossart at linux.intel.com
Fri Apr 6 17:21:05 CEST 2018


On 4/5/18 11:53 PM, Vinod Koul wrote:
> On Thu, Apr 05, 2018 at 05:34:18PM -0500, Pierre-Louis Bossart wrote:
>> On 4/5/18 11:48 AM, Vinod Koul wrote:
> 
>>> +/**
>>> + * sdw_master_runtime: Runtime stream parameters for Master
>>> + *
>>> + * @bus: Bus handle
>>> + * @stream: Stream runtime handle
>>> + * @direction: Data direction for Master
>>> + * @ch_count: Number of channels handled by the Master for
>>> + * this stream
>>
>> Didn't we say that this count could be zero for device-to-device
>> communication? 'handled by the Master' is not really correct.
> 
> Yes for device-to-device this would be zero. And master will handle no
> channels as indicated by zero value. Won't that be right?

It doesn't hurt to say that zero is an acceptable value by design.

> 
>>> + * @slave_rt_list: Slave runtime list
>>> + * @bus_node: sdw_bus m_rt_list node
>>
>> I think the intention was to progress in steps, but by omitting references
>> to the multi-master case in this series or comments explaining the next
>> steps the structure and code are not easy to follow.
> 
> We cannot have any ref to multi-master as it is not in this series. That is how
> patches would be done, you add a step and then increment with another.

The point is that the bus_node is only relevant for multi-master, so you 
have structure fields are present, not currently used but will be.
It's perfectly ok to progress in steps, but you have to be consistent. 
If you keep a structure that will only be used later, you need to tell 
this to reviewers.

> Ofcourse if you have any question feel free to ask and we can clarify, but I
> do not think it would be correct to add comments/reference here for
> multi-master. These will be updated as required when we post multi-master.
> 
>> There should be a clear explanation that
>> - a stream can be connected a least one Slave Device with one or more ports.
> 
> explained in document patch
> 
>> - a stream may be connected to zero or more Master Devices. In the former
>> case one of the Slave devices has provide TX ports.
> 
> That's multi-link/device-device not under review here

zero or more describes the single master case.

>> - the slave runtime keeps track of all the masters the stream is connected
>> to
> 
> not that is not a correct assumption

yes this is wrong, I meant "the master runtime keeps tracks off all the 
Slaves the stream is connected to"
> 
>> - the master runtime keeps track of
>> 1. all the Slaves it is physically connected to which support a stream.
> 
> Yes that is added here
> 
>> 2. all bus instances (and related masters) that support this stream.
> 
> That's again multi-link!

the statement is still correct with a single instance :-)

> Again we are not writing a spec but code and comments to explain the code.
> The above is not related to "this" series so we should not add it here. When
> we add device-device support, multi-master support these can be added
> 
> We are adding blocks in a giant building, but you are only looking at the
> giant picture but not the block in discussion!

no, you have keep mentions to multi-link that are questionable. Either 
you remove them or you state it's reserved for future use.

>>> +/**
>>> + * sdw_alloc_stream: Allocate and return stream runtime
>>> + *
>>> + * @stream_name: SoundWire stream name
>>> + *
>>> + * Allocates a SoundWire stream runtime instance.
>>> + * sdw_alloc_stream should be called only once per stream
>>
>> You should explain who the caller might be, and probably check if a stream
>> with the same name was not already allocated.
> 
> Checking name might be bit iffy as we would need to check all streams. The
> name is used for prints so if caller screws up name then it would be at his
> own peril to get confused between same stream names in logs :)

You didn't answer to the question: who is supposed to call 
sdw_alloc_steam()? the machine driver? The platform driver? the codec 
driver? How do you garantee that it's called once

>>> +static struct sdw_master_runtime
>>> +*sdw_alloc_master_rt(struct sdw_bus *bus,
>>> +			struct sdw_stream_config *stream_config,
>>> +			struct sdw_stream_runtime *stream)
>>> +{
>>> +	struct sdw_master_runtime *m_rt;
>>> +
>>> +	m_rt = stream->m_rt;
>>> +	if (m_rt)
>>> +		goto stream_config;
>>
>> I know there is a reason for this code pattern but I just can't remember it
>> and there is no comment indicated why this is valid.
> 
> If m_rt is already allocated we skip the initialization and configure it.
> As we have told you earlier, the slave runtime can be added which triggers
> master runtime to be allocated as well, so we need to check.
> 
> We do have such a comment in sdw_stream_add_slave() as you advised. Should
> we duplicate it here too?

doesn't hurt to add a comment pointing to sdw_stream_add_slave() here as 
well, the reviewers read linearly and if the comment is in 200 lines it 
doesn't help.

> 
>>> +int sdw_stream_add_master(struct sdw_bus *bus,
>>> +		struct sdw_stream_config *stream_config,
>>> +		struct sdw_stream_runtime *stream)
>>> +{
>>> +	struct sdw_master_runtime *m_rt = NULL;
>>> +	int ret;
>>> +
>>> +	if (stream->state != SDW_STREAM_ALLOCATED &&
>>> +			stream->state != SDW_STREAM_CONFIGURED) {
>>> +		dev_err(bus->dev,
>>> +			"Invalid stream state %d", stream->state);
>>> +		return -EINVAL;
>>> +	}
>>
>> Humm, this check looks like new code but I don't get it. Why would one add a
>> master in either of those two states? Why not ALLOCATED only?
> 
> So slave or master can be added to a stream in any order. Only if slave is
> called first we need master_rt to be allocated too. In ideal world we would
> do allocation and then configuration, but due to user calling in any order
> we may do allocation and configuration of slave first followed by
> configuring the master.

that makes no sense. You have a state diagram that defines a state 
transition which precludes this order between allocation and configuration.

> 
>>
>> The documentation states that:
>>
>> +SDW_STREAM_CONFIGURED
>> +~~~~~~~~~~~~~~~~~~~~~
>> +
>> +Configuration state of stream. Operations performed before entering in
>> +this state:
>> +
>> +  (1) The resources allocated for stream information in
>> SDW_STREAM_ALLOCATED
>> +      state are updated here. This includes stream parameters, Master(s)
>> +      and Slave(s) runtime information associated with current stream.
>> +
>> +  (2) All the Master(s) and Slave(s) associated with current stream provide
>> +      the port information to Bus which includes port numbers allocated by
>> +      Master(s) and Slave(s) for current stream and their channel mask.
>>
>> so how can Master ports be configured if it is added to a stream *after* the
>> CONFIGURED state?
> 
> Yes you have a valid point wrt documentation, will update it.

It's not just the documentation, I wonder if it actually works. You 
would want to make sure all masters and slaves are allocated before 
configuring them, otherwise the error handling flow is just awful to 
deal with. You could end-up in a situation where all Slaves are 
configured but the master allocation fails.

> 
>>
>>> +
>>> +	mutex_lock(&bus->bus_lock);
>>> +
>>> +	m_rt = sdw_alloc_master_rt(bus, stream_config, stream);
>>> +	if (!m_rt) {
>>> +		dev_err(bus->dev,
>>> +				"Master runtime config failed for stream:%s",
>>> +				stream->name);
>>> +		ret = -ENOMEM;
>>> +		goto error;
>>> +	}
>>> +
>>> +	ret = sdw_config_stream(bus->dev, stream, stream_config, false);
>>> +	if (ret)
>>> +		goto stream_error;
>>> +
>>> +	if (!list_empty(&m_rt->slave_rt_list) &&
>>> +			stream->state == SDW_STREAM_ALLOCATED)
>>> +		stream->state = SDW_STREAM_CONFIGURED;
>>
>> this looks also like new code, what is the idea about this configuration
>> business?
>> To me this is inconsistent with the documentation which says
>> sdw_stream_add_master is called in ALLOCATED state. Under what circumstances
>> would this routing be called from two different states?
> 
> Yes it "may" be due to sequencing in callers control.
> 
>> This may be ok but the intent is clear as mud.
> 
> Yes that is a bit unfortunate :(

You'll need to really rework this, i don't get why this major change 
comes in a v2 without the associated collateral explaining the rationale 
for this change.

> 
>>> +int sdw_stream_add_slave(struct sdw_slave *slave,
>>> +		struct sdw_stream_config *stream_config,
>>> +		struct sdw_stream_runtime *stream)
>>> +{
>>> +	struct sdw_slave_runtime *s_rt;
>>> +	struct sdw_master_runtime *m_rt;
>>> +	int ret;
>>> +
>>> +	if (stream->state != SDW_STREAM_ALLOCATED &&
>>> +			stream->state != SDW_STREAM_CONFIGURED) {
>>> +		dev_err(&slave->dev,
>>> +			"Invalid stream state %d", stream->state);
>>> +		return -EINVAL;
>>> +	}
>>
>> same as for the master, why would one call this routine from two separate
>> states?
> 
> as discussed above
> 
>>
>>> +
>>> +	mutex_lock(&slave->bus->bus_lock);
>>> +
>>> +	/*
>>> +	 * If this API is invoked by slave first then m_rt is not valid.
>>> +	 * So, allocate that and add the slave to it.
>>> +	 */
>>> +	m_rt = sdw_alloc_master_rt(slave->bus, stream_config, stream);
>>> +	if (!m_rt) {
>>> +		dev_err(&slave->dev,
>>> +				"alloc master runtime failed for stream:%s",
>>> +				stream->name);
>>> +		ret = -ENOMEM;
>>> +		goto error;
>>> +	}
>>> +
>>> +	s_rt = sdw_alloc_slave_rt(slave, stream_config, stream);
>>> +	if (!s_rt) {
>>> +		dev_err(&slave->dev,
>>> +				"Slave runtime config failed for stream:%s",
>>> +				stream->name);
>>> +		ret = -ENOMEM;
>>> +		goto stream_error;
>>> +	}
>>> +
>>> +	ret = sdw_config_stream(&slave->dev, stream, stream_config, true);
>>> +	if (ret)
>>> +		goto stream_error;
>>> +
>>> +	list_add_tail(&s_rt->m_rt_node, &m_rt->slave_rt_list);
>>
>> so you have a potential to add the same node twice from ALLOCATED and
>> CONFIGURED states? I am completely lost.
> 
> That would be the case if Slave invokes this routine erroneously twice. We expect this
> would be called only once by caller.
> 



More information about the Alsa-devel mailing list