[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-ID: <e0f74bdc-3a4b-596a-5ec7-83054377813e@linaro.org>
Date: Sat, 17 Jun 2023 15:07:21 +0200
From: Krzysztof Kozlowski <krzysztof.kozlowski@...aro.org>
To: Shiji Yang <yangshiji66@...look.com>, sergio.paracuellos@...il.com
Cc: arinc.unal@...nc9.com, devicetree@...r.kernel.org,
john@...ozen.org, krzysztof.kozlowski+dt@...aro.org,
linux-clk@...r.kernel.org, linux-kernel@...r.kernel.org,
linux-mips@...r.kernel.org, matthias.bgg@...il.com,
mturquette@...libre.com, p.zabel@...gutronix.de,
robh+dt@...nel.org, sboyd@...nel.org, tsbogend@...ha.franken.de
Subject: Re: [PATCH v3 2/9] clk: ralink: add clock and reset driver for MTMIPS
SoCs
On 17/06/2023 14:54, Shiji Yang wrote:
>> void __init plat_time_init(void)
>> {
>> + struct of_phandle_args clkspec;
>> struct clk *clk;
>> + int cpu_clk_idx;
>>
>> ralink_of_remap();
>>
>> - ralink_clk_init();
>> - clk = clk_get_sys("cpu", NULL);
>> + cpu_clk_idx = clk_cpu_index();
>> + if (cpu_clk_idx == -1)
>> + panic("unable to get CPU clock index");
>> +
>> + of_clk_init(NULL);
>> + clkspec.np = of_find_node_by_name(NULL, "sysc");
>
> The node name should be "syscon" as the example node name in the
> dt-bindings document is "syscon".
NAK for both.
Node names must not be an ABI, unless you talk about child of some
device node. I don't think this is the case here. Look by phandle (for a
device context) or by compatible (looks the case here).
Best regards,
Krzysztof
Powered by blists - more mailing lists