dt-bindings: clocks: qcom,gcc-msm8998: Reflect actually referenced clks

Some of these clocks are not referenced by the driver at all whereas
aud_ref_clk and core_bi_pll_test_se are but were missing from the
bindings.  These clocks are optional (and not currently provided
anywhere) while "xo" and "sleep_clk" are mandatory.

Note that none of these clocks were used beforehand as the driver
referenced them by their global name.

Signed-off-by: Marijn Suijten <marijn.suijten@somainline.org>
Link: https://lore.kernel.org/r/20210911121340.261920-7-marijn.suijten@somainline.org
Signed-off-by: Stephen Boyd <sboyd@kernel.org>
This commit is contained in:
Marijn Suijten 2021-09-11 14:13:38 +02:00 коммит произвёл Stephen Boyd
Родитель 9ee049ebb3
Коммит 606003976f
1 изменённых файлов: 8 добавлений и 18 удалений

Просмотреть файл

@ -25,21 +25,17 @@ properties:
items: items:
- description: Board XO source - description: Board XO source
- description: Sleep clock source - description: Sleep clock source
- description: USB 3.0 phy pipe clock - description: Audio reference clock (Optional clock)
- description: UFS phy rx symbol clock for pipe 0 - description: PLL test clock source (Optional clock)
- description: UFS phy rx symbol clock for pipe 1 minItems: 2
- description: UFS phy tx symbol clock
- description: PCIE phy pipe clock
clock-names: clock-names:
items: items:
- const: xo - const: xo
- const: sleep_clk - const: sleep_clk
- const: usb3_pipe - const: aud_ref_clk # Optional clock
- const: ufs_rx_symbol0 - const: core_bi_pll_test_se # Optional clock
- const: ufs_rx_symbol1 minItems: 2
- const: ufs_tx_symbol0
- const: pcie0_pipe
'#clock-cells': '#clock-cells':
const: 1 const: 1
@ -80,16 +76,10 @@ examples:
clocks = <&rpmcc RPM_SMD_XO_CLK_SRC>, clocks = <&rpmcc RPM_SMD_XO_CLK_SRC>,
<&sleep>, <&sleep>,
<0>, <0>,
<0>,
<0>,
<0>,
<0>; <0>;
clock-names = "xo", clock-names = "xo",
"sleep_clk", "sleep_clk",
"usb3_pipe", "aud_ref_clk",
"ufs_rx_symbol0", "core_bi_pll_test_se";
"ufs_rx_symbol1",
"ufs_tx_symbol0",
"pcie0_pipe";
}; };
... ...