Re: [PATCH v3 01/22] drm: Include ddc adapter pointer in struct drm_connector

From: Andrzej Hajda
Date: Fri Jul 05 2019 - 05:45:09 EST


On 01.07.2019 16:41, Thomas Zimmermann wrote:
> Hi
>
> Am 01.07.19 um 15:27 schrieb Andrzej Pietrasiewicz:
>> Hi Thomas,
>>
>> Thank you for your comments. Please see inline.
>>
>> W dniu 30.06.2019 oÂ10:12, Thomas Zimmermann pisze:
>>> Hi
>>>
>>> I like the idea, but would prefer a more structured approach.
>>>
>>> Setting connector->ddc before calling drm_sysfs_connector_add() seems
>>> error prone. The dependency is not really clear from the code or
>>> interfaces.
>>>
>>> The other thing is that drivers I mostly work on, ast and mgag200, have
>>> code like this:
>>>
>>> ÂÂ struct ast_i2c_chan {
>>> ÂÂÂÂstruct i2c_adapter adapter;
>>> ÂÂÂÂstruct drm_device *dev;
>>> ÂÂÂÂstruct i2c_algo_bit_data bit;
>>> ÂÂ };
>>>
>>> ÂÂ struct ast_connector {
>>> ÂÂÂÂstruct drm_connector base;
>>> ÂÂÂÂstruct ast_i2c_chan *i2c;
>>> ÂÂ };
>>>
>>> It already encodes the connection between connector and ddc adapter.
>>>
>>> I suggest to introduce struct drm_i2c_adapter
>>>
>>> ÂÂ struct drm_i2c_adapter {
>>> ÂÂÂÂstruct i2c_adapter base;
>>> ÂÂÂÂstruct drm_connector *connector;
>>> ÂÂ };
>>>
>>> and convert drivers over to it. Ast would look like this:
>>>
>>> ÂÂ struct ast_i2c_chan {
>>> ÂÂÂÂstruct drm_i2c_adapter adapter;
>>> ÂÂÂÂstruct i2c_algo_bit_data bit;
>>> ÂÂ };
>>>
>> There are few flavors of these drivers. In some of them
>> the i2c_adapter for ddc is allocated and initialized by
>> the driver, which must provide a place in memory to hold
>> the adapter. ast is an example of this approach.
>>
>> But there are others, such as for example exynos_hdmi.c.
>> It gets its ddc adapter with of_find_i2c_adapter_by_node()
>> and merely stores a pointer to it, while not managing the
>> memory needed to hold the i2c_adapter.
> I see.
>
>> Do you have any idea how to accommodate these various
>> flavors of drivers in the scheme you propose?
> Something like
>
> struct drm_i2c_adapter {
> struct i2c_adapter *adapter;
> struct drm_connector *connector;
> };
>
> with adapter either being allocated dynamically or acquired via
> of_find_i2c_adapter_by_node(); with separate init and finish functions
> for each variant. But it looks like over-abstraction to me. Without
> prototyping the idea, I cannot say if it's worth the effort.
>
> For something more simple, maybe just have a function to attach an i2c
> adapter to a connector:
>
> drm_connector_attach_i2c_adapter(connector, i2c_adapter)
>
> which sets the connector's ddc pointer and creates the sysfs entry if
> the connector's entry is already present.


I am not sure if such function is really necessary. Assigning ddc field
before connector registration seems to be much simpler and quite
standard - many fields are initialized this way.


Reviewed-by: Andrzej Hajda <a.hajda@xxxxxxxxxxx>

Â--
Regards
Andrzej



> Best regards
> Thomas
>
>> Andrzej
>>
>>