-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dt-bindings: soc: tegra-pmc: Add Tegra PMC clock bindings
Tegra PMC has 3 clocks clk_out_1, clk_out_2, and clk_out_3. This patch documents PMC clock bindings and adds a header defining Tegra PMC clock ids. Tested-by: Dmitry Osipenko <digetx@gmail.com> Reviewed-by: Dmitry Osipenko <digetx@gmail.com> Reviewed-by: Rob Herring <robh@kernel.org> Signed-off-by: Sowjanya Komatineni <skomatineni@nvidia.com> Signed-off-by: Thierry Reding <treding@nvidia.com>
- Loading branch information
Sowjanya Komatineni
authored and
Thierry Reding
committed
Feb 17, 2020
1 parent
39faeba
commit f85fa31
Showing
2 changed files
with
27 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
/* SPDX-License-Identifier: GPL-2.0-only */ | ||
/* | ||
* Copyright (c) 2019-2020, NVIDIA CORPORATION. All rights reserved. | ||
*/ | ||
|
||
#ifndef _DT_BINDINGS_SOC_TEGRA_PMC_H | ||
#define _DT_BINDINGS_SOC_TEGRA_PMC_H | ||
|
||
#define TEGRA_PMC_CLK_OUT_1 0 | ||
#define TEGRA_PMC_CLK_OUT_2 1 | ||
#define TEGRA_PMC_CLK_OUT_3 2 | ||
|
||
#define TEGRA_PMC_CLK_MAX 3 | ||
|
||
#endif /* _DT_BINDINGS_SOC_TEGRA_PMC_H */ |