* [PATCH v2] memory: tegra: Add support for DBB clock on Tegra264
@ 2026-01-16 12:37 Thierry Reding
2026-01-16 13:15 ` Jon Hunter
2026-02-24 11:01 ` Krzysztof Kozlowski
0 siblings, 2 replies; 4+ messages in thread
From: Thierry Reding @ 2026-01-16 12:37 UTC (permalink / raw)
To: Krzysztof Kozlowski; +Cc: Thierry Reding, Jon Hunter, linux-tegra, linux-kernel
From: Thierry Reding <treding@nvidia.com>
The DBB clock is needed by many IP blocks in order to access system
memory via the data backbone. The memory controller and external memory
controllers are the central place where these accesses are managed, so
make sure that the clock can be controlled from the corresponding
driver.
Note that not all drivers fully register bandwidth requests, and hence
the EMC driver doesn't have enough information to know when it's safe to
switch the clock off, so for now it will be kept on permanently.
Signed-off-by: Thierry Reding <treding@nvidia.com>
---
Changes in v2:
- convert to dev_err_probe() (Krzysztof)
drivers/memory/tegra/tegra186-emc.c | 8 ++++++++
1 file changed, 8 insertions(+)
diff --git a/drivers/memory/tegra/tegra186-emc.c b/drivers/memory/tegra/tegra186-emc.c
index dfddceecdd1a..03ebab6fbe68 100644
--- a/drivers/memory/tegra/tegra186-emc.c
+++ b/drivers/memory/tegra/tegra186-emc.c
@@ -22,6 +22,7 @@ struct tegra186_emc {
struct tegra_bpmp *bpmp;
struct device *dev;
struct clk *clk;
+ struct clk *clk_dbb;
struct tegra186_emc_dvfs *dvfs;
unsigned int num_dvfs;
@@ -328,6 +329,13 @@ static int tegra186_emc_probe(struct platform_device *pdev)
goto put_bpmp;
}
+ emc->clk_dbb = devm_clk_get_optional_enabled(&pdev->dev, "dbb");
+ if (IS_ERR(emc->clk_dbb)) {
+ err = dev_err_probe(&pdev->dev, PTR_ERR(emc->clk_dbb),
+ "failed to get DBB clock\n");
+ goto put_bpmp;
+ }
+
platform_set_drvdata(pdev, emc);
emc->dev = &pdev->dev;
--
2.52.0
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH v2] memory: tegra: Add support for DBB clock on Tegra264
2026-01-16 12:37 [PATCH v2] memory: tegra: Add support for DBB clock on Tegra264 Thierry Reding
@ 2026-01-16 13:15 ` Jon Hunter
2026-01-18 18:13 ` Krzysztof Kozlowski
2026-02-24 11:01 ` Krzysztof Kozlowski
1 sibling, 1 reply; 4+ messages in thread
From: Jon Hunter @ 2026-01-16 13:15 UTC (permalink / raw)
To: Thierry Reding, Krzysztof Kozlowski; +Cc: linux-tegra, linux-kernel
On 16/01/2026 12:37, Thierry Reding wrote:
> From: Thierry Reding <treding@nvidia.com>
>
> The DBB clock is needed by many IP blocks in order to access system
> memory via the data backbone. The memory controller and external memory
> controllers are the central place where these accesses are managed, so
> make sure that the clock can be controlled from the corresponding
> driver.
>
> Note that not all drivers fully register bandwidth requests, and hence
> the EMC driver doesn't have enough information to know when it's safe to
> switch the clock off, so for now it will be kept on permanently.
>
> Signed-off-by: Thierry Reding <treding@nvidia.com>
> ---
> Changes in v2:
> - convert to dev_err_probe() (Krzysztof)
>
> drivers/memory/tegra/tegra186-emc.c | 8 ++++++++
> 1 file changed, 8 insertions(+)
>
> diff --git a/drivers/memory/tegra/tegra186-emc.c b/drivers/memory/tegra/tegra186-emc.c
> index dfddceecdd1a..03ebab6fbe68 100644
> --- a/drivers/memory/tegra/tegra186-emc.c
> +++ b/drivers/memory/tegra/tegra186-emc.c
> @@ -22,6 +22,7 @@ struct tegra186_emc {
> struct tegra_bpmp *bpmp;
> struct device *dev;
> struct clk *clk;
> + struct clk *clk_dbb;
>
> struct tegra186_emc_dvfs *dvfs;
> unsigned int num_dvfs;
> @@ -328,6 +329,13 @@ static int tegra186_emc_probe(struct platform_device *pdev)
> goto put_bpmp;
> }
>
> + emc->clk_dbb = devm_clk_get_optional_enabled(&pdev->dev, "dbb");
> + if (IS_ERR(emc->clk_dbb)) {
> + err = dev_err_probe(&pdev->dev, PTR_ERR(emc->clk_dbb),
> + "failed to get DBB clock\n");
> + goto put_bpmp;
> + }
> +
> platform_set_drvdata(pdev, emc);
> emc->dev = &pdev->dev;
>
Looks good to me!
Reviewed-by: Jon Hunter <jonathanh@nvidia.com>
Cheers
Jon
--
nvpublic
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v2] memory: tegra: Add support for DBB clock on Tegra264
2026-01-16 13:15 ` Jon Hunter
@ 2026-01-18 18:13 ` Krzysztof Kozlowski
0 siblings, 0 replies; 4+ messages in thread
From: Krzysztof Kozlowski @ 2026-01-18 18:13 UTC (permalink / raw)
To: Jon Hunter, Thierry Reding; +Cc: linux-tegra, linux-kernel
On 16/01/2026 14:15, Jon Hunter wrote:
>
> On 16/01/2026 12:37, Thierry Reding wrote:
>> From: Thierry Reding <treding@nvidia.com>
>>
>> The DBB clock is needed by many IP blocks in order to access system
>> memory via the data backbone. The memory controller and external memory
>> controllers are the central place where these accesses are managed, so
>> make sure that the clock can be controlled from the corresponding
>> driver.
>>
>> Note that not all drivers fully register bandwidth requests, and hence
>> the EMC driver doesn't have enough information to know when it's safe to
>> switch the clock off, so for now it will be kept on permanently.
>>
>> Signed-off-by: Thierry Reding <treding@nvidia.com>
>> ---
>> Changes in v2:
>> - convert to dev_err_probe() (Krzysztof)
>>
>> drivers/memory/tegra/tegra186-emc.c | 8 ++++++++
>> 1 file changed, 8 insertions(+)
>>
>> diff --git a/drivers/memory/tegra/tegra186-emc.c b/drivers/memory/tegra/tegra186-emc.c
>> index dfddceecdd1a..03ebab6fbe68 100644
>> --- a/drivers/memory/tegra/tegra186-emc.c
>> +++ b/drivers/memory/tegra/tegra186-emc.c
>> @@ -22,6 +22,7 @@ struct tegra186_emc {
>> struct tegra_bpmp *bpmp;
>> struct device *dev;
>> struct clk *clk;
>> + struct clk *clk_dbb;
>>
>> struct tegra186_emc_dvfs *dvfs;
>> unsigned int num_dvfs;
>> @@ -328,6 +329,13 @@ static int tegra186_emc_probe(struct platform_device *pdev)
>> goto put_bpmp;
>> }
>>
>> + emc->clk_dbb = devm_clk_get_optional_enabled(&pdev->dev, "dbb");
This looks like new clock and I don't see it in the bindings. Are you
sure this is not an undocumented ABI? In case this was asked last time,
commit msg or changelog should briefly mention it, to avoid exactly that
question.
Best regards,
Krzysztof
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH v2] memory: tegra: Add support for DBB clock on Tegra264
2026-01-16 12:37 [PATCH v2] memory: tegra: Add support for DBB clock on Tegra264 Thierry Reding
2026-01-16 13:15 ` Jon Hunter
@ 2026-02-24 11:01 ` Krzysztof Kozlowski
1 sibling, 0 replies; 4+ messages in thread
From: Krzysztof Kozlowski @ 2026-02-24 11:01 UTC (permalink / raw)
To: Thierry Reding; +Cc: Jon Hunter, linux-tegra, linux-kernel
On Fri, 16 Jan 2026 13:37:32 +0100, Thierry Reding wrote:
> The DBB clock is needed by many IP blocks in order to access system
> memory via the data backbone. The memory controller and external memory
> controllers are the central place where these accesses are managed, so
> make sure that the clock can be controlled from the corresponding
> driver.
>
> Note that not all drivers fully register bandwidth requests, and hence
> the EMC driver doesn't have enough information to know when it's safe to
> switch the clock off, so for now it will be kept on permanently.
>
> [...]
Applied, thanks!
[1/1] memory: tegra: Add support for DBB clock on Tegra264
https://git.kernel.org/krzk/linux-mem-ctrl/c/f3ca1719b114bb3a64592de266f8ff9ce64f311b
Best regards,
--
Krzysztof Kozlowski <krzk@kernel.org>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2026-02-24 11:01 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2026-01-16 12:37 [PATCH v2] memory: tegra: Add support for DBB clock on Tegra264 Thierry Reding
2026-01-16 13:15 ` Jon Hunter
2026-01-18 18:13 ` Krzysztof Kozlowski
2026-02-24 11:01 ` Krzysztof Kozlowski
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox