[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <06512ea8-9124-42b4-beb0-f302539aedeb@amd.com>
Date: Fri, 24 Nov 2023 12:59:33 +0100
From: Michal Simek <michal.simek@....com>
To: Krzysztof Kozlowski <krzysztof.kozlowski@...aro.org>,
"Sayyed, Mubin" <mubin.sayyed@....com>
Cc: "linux-arm-kernel@...ts.infradead.org"
<linux-arm-kernel@...ts.infradead.org>,
"linux-kernel@...r.kernel.org" <linux-kernel@...r.kernel.org>,
"devicetree@...r.kernel.org" <devicetree@...r.kernel.org>,
"linux-pwm@...r.kernel.org" <linux-pwm@...r.kernel.org>,
"git (AMD-Xilinx)" <git@....com>,
"mubin10@...il.com" <mubin10@...il.com>,
"krzysztof.kozlowski+dt@...aro.org"
<krzysztof.kozlowski+dt@...aro.org>,
"u.kleine-koenig@...gutronix.de" <u.kleine-koenig@...gutronix.de>,
"thierry.reding@...il.com" <thierry.reding@...il.com>,
"robh+dt@...nel.org" <robh+dt@...nel.org>,
"conor+dt@...nel.org" <conor+dt@...nel.org>,
"tglx@...utronix.de" <tglx@...utronix.de>,
"daniel.lezcano@...aro.org" <daniel.lezcano@...aro.org>
Subject: Re: [LINUX PATCH v2 1/3] clocksource: timer-cadence-ttc: Do not probe
TTC device configured as PWM
On 11/24/23 12:35, Krzysztof Kozlowski wrote:
> On 24/11/2023 12:03, Sayyed, Mubin wrote:
>> Hi Krzysztof,
>>
>>> -----Original Message-----
>>> From: Krzysztof Kozlowski <krzysztof.kozlowski@...aro.org>
>>> Sent: Wednesday, November 15, 2023 5:41 PM
>>> To: Sayyed, Mubin <mubin.sayyed@....com>
>>> Cc: linux-arm-kernel@...ts.infradead.org; linux-kernel@...r.kernel.org;
>>> devicetree@...r.kernel.org; linux-pwm@...r.kernel.org; git (AMD-Xilinx)
>>> <git@....com>; mubin10@...il.com; krzysztof.kozlowski+dt@...aro.org;
>>> u.kleine-koenig@...gutronix.de; thierry.reding@...il.com;
>>> robh+dt@...nel.org; conor+dt@...nel.org; tglx@...utronix.de;
>>> daniel.lezcano@...aro.org; Simek, Michal <michal.simek@....com>
>>> Subject: Re: [LINUX PATCH v2 1/3] clocksource: timer-cadence-ttc: Do not probe
>>> TTC device configured as PWM
>>>
>>> On 15/11/2023 06:55, Sayyed, Mubin wrote:
>>>>>> + /*
>>>>>> + * If pwm-cells property is present in TTC node,
>>>>>> + * it would be treated as PWM device.
>>>>>> + */
>>>>>> + if (of_property_read_bool(timer, "#pwm-cells"))
>>>>>> + return -ENODEV;
>>>>>
>>>>> You will introduce dmesg errors, so regressions.
>>>>>
>>>> [Mubin]: I will change it to "return 0" to avoid dmesg errors.
>>>
>>> No, because solution is wrong.
>>>
>>>>
>>>>> This does not look right. What you want is to bind one device driver
>>>>> and choose different functionality based on properties.
>>>> [Mubin]: I am doing it based on earlier discussion related to AXI Timer PWM
>>> driver. It was suggested to use #pwm-cells property for identifying role of
>>> device(PWM/clocksource) https://lore.kernel.org/linux-
>>> devicetree/20210513021631.GA878860@...h.at.kernel.org/.
>>>
>>> You are mixing bindings with driver. I said here about driver and yes - you must
>>> use pwm-cells to differentiate that. It's obvious.
>>>
>>> So again, one driver binding.
>> [Mubin]: I will explore whether mfd framework can be used to handle this.
>
> You do not need MFD for this, because you do not have a really MFD. This
> is just one device, so I expect here one driver. Why do you need
> multiple drivers (which also would solve that problem but why?)?
this driver is following pattern which is xps-timer (soff IP)
Documentation/devicetree/bindings/timer/xlnx,xps-timer.yaml
which has two drivers in the kernel.
On for clocksource
arch/microblaze/kernel/timer.c
and pwm one
drivers/pwm/pwm-xilinx.c
clocksource driver will be at some point moved to drivers/clocksource because
that's what will be used in connection to MicroBlaze V.
I have looked at TTC and functionality wise it is related to
Documentation/devicetree/bindings/mfd/st,stm32-timers.yaml
or
Documentation/devicetree/bindings/mfd/st,stm32-lptimer.yaml
which are based on MFD.
Timer there is only clockevent not clocksource but it shouldn't really matter.
The biggest issue what I see is that ttc clocksource driver is used on arm32
Zynq family for a lot of years. It means moving to different binding based on
mfd would require keeping support for old dt binding too.
That would be from my point of view thing to start with. What do you think what
would be the best way forward?
But I need to do my homework first to see what functionality that IP has but I
am quite sure there could be at least multiple PMWs.
Thanks,
Michal
Powered by blists - more mailing lists