From: Jan Dakinevich <jan.dakinevich@salutedevices.com>
To: Conor Dooley <conor+dt@kernel.org>, <devicetree@vger.kernel.org>,
Jerome Brunet <jbrunet@baylibre.com>,
Kevin Hilman <khilman@baylibre.com>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
<linux-amlogic@lists.infradead.org>,
<linux-arm-kernel@lists.infradead.org>,
<linux-clk@vger.kernel.org>, <linux-kernel@vger.kernel.org>,
Martin Blumenstingl <martin.blumenstingl@googlemail.com>,
Michael Turquette <mturquette@baylibre.com>,
Neil Armstrong <neil.armstrong@linaro.org>,
Rob Herring <robh@kernel.org>, Stephen Boyd <sboyd@kernel.org>
Subject: Re: [PATCH v6 1/4] clk: meson: axg: share the set of audio helper macros
Date: Sun, 9 Mar 2025 21:01:44 +0300 [thread overview]
Message-ID: <5a5353e0-e49a-4b6b-b007-ea6cfcb2f827@salutedevices.com> (raw)
In-Reply-To: <20250309175838.1322014-1-jan.dakinevich@salutedevices.com>
Please, ignore the series.
On 3/9/25 20:58, Jan Dakinevich wrote:
> - These macros will be used in upcoming audio clock controller
> for A1 SoC;
>
> - AUD_PCLK_GATE() macro got an extra parameter to be more flexible.
>
> Signed-off-by: Jan Dakinevich <jan.dakinevich@salutedevices.com>
> ---
> drivers/clk/meson/axg-audio.c | 215 ++++++--------------------------
> drivers/clk/meson/meson-audio.h | 156 +++++++++++++++++++++++
> 2 files changed, 191 insertions(+), 180 deletions(-)
> create mode 100644 drivers/clk/meson/meson-audio.h
>
> diff --git a/drivers/clk/meson/axg-audio.c b/drivers/clk/meson/axg-audio.c
> index 3948f5d0faca..7c4b0c722a94 100644
> --- a/drivers/clk/meson/axg-audio.c
> +++ b/drivers/clk/meson/axg-audio.c
> @@ -16,6 +16,7 @@
> #include <linux/slab.h>
>
> #include "meson-clkc-utils.h"
> +#include "meson-audio.h"
> #include "axg-audio.h"
> #include "clk-regmap.h"
> #include "clk-phase.h"
> @@ -23,155 +24,9 @@
>
> #include <dt-bindings/clock/axg-audio-clkc.h>
>
> -#define AUD_GATE(_name, _reg, _bit, _pname, _iflags) { \
> - .data = &(struct clk_regmap_gate_data){ \
> - .offset = (_reg), \
> - .bit_idx = (_bit), \
> - }, \
> - .hw.init = &(struct clk_init_data) { \
> - .name = "aud_"#_name, \
> - .ops = &clk_regmap_gate_ops, \
> - .parent_names = (const char *[]){ #_pname }, \
> - .num_parents = 1, \
> - .flags = CLK_DUTY_CYCLE_PARENT | (_iflags), \
> - }, \
> -}
> -
> -#define AUD_MUX(_name, _reg, _mask, _shift, _dflags, _pdata, _iflags) { \
> - .data = &(struct clk_regmap_mux_data){ \
> - .offset = (_reg), \
> - .mask = (_mask), \
> - .shift = (_shift), \
> - .flags = (_dflags), \
> - }, \
> - .hw.init = &(struct clk_init_data){ \
> - .name = "aud_"#_name, \
> - .ops = &clk_regmap_mux_ops, \
> - .parent_data = _pdata, \
> - .num_parents = ARRAY_SIZE(_pdata), \
> - .flags = CLK_DUTY_CYCLE_PARENT | (_iflags), \
> - }, \
> -}
> -
> -#define AUD_DIV(_name, _reg, _shift, _width, _dflags, _pname, _iflags) { \
> - .data = &(struct clk_regmap_div_data){ \
> - .offset = (_reg), \
> - .shift = (_shift), \
> - .width = (_width), \
> - .flags = (_dflags), \
> - }, \
> - .hw.init = &(struct clk_init_data){ \
> - .name = "aud_"#_name, \
> - .ops = &clk_regmap_divider_ops, \
> - .parent_names = (const char *[]){ #_pname }, \
> - .num_parents = 1, \
> - .flags = (_iflags), \
> - }, \
> -}
> -
> -#define AUD_PCLK_GATE(_name, _reg, _bit) { \
> - .data = &(struct clk_regmap_gate_data){ \
> - .offset = (_reg), \
> - .bit_idx = (_bit), \
> - }, \
> - .hw.init = &(struct clk_init_data) { \
> - .name = "aud_"#_name, \
> - .ops = &clk_regmap_gate_ops, \
> - .parent_names = (const char *[]){ "aud_top" }, \
> - .num_parents = 1, \
> - }, \
> -}
> -
> -#define AUD_SCLK_DIV(_name, _reg, _div_shift, _div_width, \
> - _hi_shift, _hi_width, _pname, _iflags) { \
> - .data = &(struct meson_sclk_div_data) { \
> - .div = { \
> - .reg_off = (_reg), \
> - .shift = (_div_shift), \
> - .width = (_div_width), \
> - }, \
> - .hi = { \
> - .reg_off = (_reg), \
> - .shift = (_hi_shift), \
> - .width = (_hi_width), \
> - }, \
> - }, \
> - .hw.init = &(struct clk_init_data) { \
> - .name = "aud_"#_name, \
> - .ops = &meson_sclk_div_ops, \
> - .parent_names = (const char *[]){ #_pname }, \
> - .num_parents = 1, \
> - .flags = (_iflags), \
> - }, \
> -}
> -
> -#define AUD_TRIPHASE(_name, _reg, _width, _shift0, _shift1, _shift2, \
> - _pname, _iflags) { \
> - .data = &(struct meson_clk_triphase_data) { \
> - .ph0 = { \
> - .reg_off = (_reg), \
> - .shift = (_shift0), \
> - .width = (_width), \
> - }, \
> - .ph1 = { \
> - .reg_off = (_reg), \
> - .shift = (_shift1), \
> - .width = (_width), \
> - }, \
> - .ph2 = { \
> - .reg_off = (_reg), \
> - .shift = (_shift2), \
> - .width = (_width), \
> - }, \
> - }, \
> - .hw.init = &(struct clk_init_data) { \
> - .name = "aud_"#_name, \
> - .ops = &meson_clk_triphase_ops, \
> - .parent_names = (const char *[]){ #_pname }, \
> - .num_parents = 1, \
> - .flags = CLK_DUTY_CYCLE_PARENT | (_iflags), \
> - }, \
> -}
> -
> -#define AUD_PHASE(_name, _reg, _width, _shift, _pname, _iflags) { \
> - .data = &(struct meson_clk_phase_data) { \
> - .ph = { \
> - .reg_off = (_reg), \
> - .shift = (_shift), \
> - .width = (_width), \
> - }, \
> - }, \
> - .hw.init = &(struct clk_init_data) { \
> - .name = "aud_"#_name, \
> - .ops = &meson_clk_phase_ops, \
> - .parent_names = (const char *[]){ #_pname }, \
> - .num_parents = 1, \
> - .flags = (_iflags), \
> - }, \
> -}
> -
> -#define AUD_SCLK_WS(_name, _reg, _width, _shift_ph, _shift_ws, _pname, \
> - _iflags) { \
> - .data = &(struct meson_sclk_ws_inv_data) { \
> - .ph = { \
> - .reg_off = (_reg), \
> - .shift = (_shift_ph), \
> - .width = (_width), \
> - }, \
> - .ws = { \
> - .reg_off = (_reg), \
> - .shift = (_shift_ws), \
> - .width = (_width), \
> - }, \
> - }, \
> - .hw.init = &(struct clk_init_data) { \
> - .name = "aud_"#_name, \
> - .ops = &meson_clk_phase_ops, \
> - .parent_names = (const char *[]){ #_pname }, \
> - .num_parents = 1, \
> - .flags = (_iflags), \
> - }, \
> -}
> +static const struct clk_parent_data pclk_parent_data[] = {
> + { .name = "aud_top" },
> +};
>
> /* Audio Master Clocks */
> static const struct clk_parent_data mst_mux_parent_data[] = {
> @@ -325,45 +180,45 @@ static const struct clk_parent_data lrclk_pad_ctrl_parent_data[] = {
>
> /* Common Clocks */
> static struct clk_regmap ddr_arb =
> - AUD_PCLK_GATE(ddr_arb, AUDIO_CLK_GATE_EN, 0);
> + AUD_PCLK_GATE(ddr_arb, AUDIO_CLK_GATE_EN, 0, pclk_parent_data);
> static struct clk_regmap pdm =
> - AUD_PCLK_GATE(pdm, AUDIO_CLK_GATE_EN, 1);
> + AUD_PCLK_GATE(pdm, AUDIO_CLK_GATE_EN, 1, pclk_parent_data);
> static struct clk_regmap tdmin_a =
> - AUD_PCLK_GATE(tdmin_a, AUDIO_CLK_GATE_EN, 2);
> + AUD_PCLK_GATE(tdmin_a, AUDIO_CLK_GATE_EN, 2, pclk_parent_data);
> static struct clk_regmap tdmin_b =
> - AUD_PCLK_GATE(tdmin_b, AUDIO_CLK_GATE_EN, 3);
> + AUD_PCLK_GATE(tdmin_b, AUDIO_CLK_GATE_EN, 3, pclk_parent_data);
> static struct clk_regmap tdmin_c =
> - AUD_PCLK_GATE(tdmin_c, AUDIO_CLK_GATE_EN, 4);
> + AUD_PCLK_GATE(tdmin_c, AUDIO_CLK_GATE_EN, 4, pclk_parent_data);
> static struct clk_regmap tdmin_lb =
> - AUD_PCLK_GATE(tdmin_lb, AUDIO_CLK_GATE_EN, 5);
> + AUD_PCLK_GATE(tdmin_lb, AUDIO_CLK_GATE_EN, 5, pclk_parent_data);
> static struct clk_regmap tdmout_a =
> - AUD_PCLK_GATE(tdmout_a, AUDIO_CLK_GATE_EN, 6);
> + AUD_PCLK_GATE(tdmout_a, AUDIO_CLK_GATE_EN, 6, pclk_parent_data);
> static struct clk_regmap tdmout_b =
> - AUD_PCLK_GATE(tdmout_b, AUDIO_CLK_GATE_EN, 7);
> + AUD_PCLK_GATE(tdmout_b, AUDIO_CLK_GATE_EN, 7, pclk_parent_data);
> static struct clk_regmap tdmout_c =
> - AUD_PCLK_GATE(tdmout_c, AUDIO_CLK_GATE_EN, 8);
> + AUD_PCLK_GATE(tdmout_c, AUDIO_CLK_GATE_EN, 8, pclk_parent_data);
> static struct clk_regmap frddr_a =
> - AUD_PCLK_GATE(frddr_a, AUDIO_CLK_GATE_EN, 9);
> + AUD_PCLK_GATE(frddr_a, AUDIO_CLK_GATE_EN, 9, pclk_parent_data);
> static struct clk_regmap frddr_b =
> - AUD_PCLK_GATE(frddr_b, AUDIO_CLK_GATE_EN, 10);
> + AUD_PCLK_GATE(frddr_b, AUDIO_CLK_GATE_EN, 10, pclk_parent_data);
> static struct clk_regmap frddr_c =
> - AUD_PCLK_GATE(frddr_c, AUDIO_CLK_GATE_EN, 11);
> + AUD_PCLK_GATE(frddr_c, AUDIO_CLK_GATE_EN, 11, pclk_parent_data);
> static struct clk_regmap toddr_a =
> - AUD_PCLK_GATE(toddr_a, AUDIO_CLK_GATE_EN, 12);
> + AUD_PCLK_GATE(toddr_a, AUDIO_CLK_GATE_EN, 12, pclk_parent_data);
> static struct clk_regmap toddr_b =
> - AUD_PCLK_GATE(toddr_b, AUDIO_CLK_GATE_EN, 13);
> + AUD_PCLK_GATE(toddr_b, AUDIO_CLK_GATE_EN, 13, pclk_parent_data);
> static struct clk_regmap toddr_c =
> - AUD_PCLK_GATE(toddr_c, AUDIO_CLK_GATE_EN, 14);
> + AUD_PCLK_GATE(toddr_c, AUDIO_CLK_GATE_EN, 14, pclk_parent_data);
> static struct clk_regmap loopback =
> - AUD_PCLK_GATE(loopback, AUDIO_CLK_GATE_EN, 15);
> + AUD_PCLK_GATE(loopback, AUDIO_CLK_GATE_EN, 15, pclk_parent_data);
> static struct clk_regmap spdifin =
> - AUD_PCLK_GATE(spdifin, AUDIO_CLK_GATE_EN, 16);
> + AUD_PCLK_GATE(spdifin, AUDIO_CLK_GATE_EN, 16, pclk_parent_data);
> static struct clk_regmap spdifout =
> - AUD_PCLK_GATE(spdifout, AUDIO_CLK_GATE_EN, 17);
> + AUD_PCLK_GATE(spdifout, AUDIO_CLK_GATE_EN, 17, pclk_parent_data);
> static struct clk_regmap resample =
> - AUD_PCLK_GATE(resample, AUDIO_CLK_GATE_EN, 18);
> + AUD_PCLK_GATE(resample, AUDIO_CLK_GATE_EN, 18, pclk_parent_data);
> static struct clk_regmap power_detect =
> - AUD_PCLK_GATE(power_detect, AUDIO_CLK_GATE_EN, 19);
> + AUD_PCLK_GATE(power_detect, AUDIO_CLK_GATE_EN, 19, pclk_parent_data);
>
> static struct clk_regmap spdifout_clk_sel =
> AUD_MST_MCLK_MUX(spdifout_clk, AUDIO_CLK_SPDIFOUT_CTRL);
> @@ -631,11 +486,11 @@ static struct clk_regmap g12a_tdmout_c_sclk =
> AUD_TDM_SCLK_WS(out_c, AUDIO_CLK_TDMOUT_C_CTRL);
>
> static struct clk_regmap toram =
> - AUD_PCLK_GATE(toram, AUDIO_CLK_GATE_EN, 20);
> + AUD_PCLK_GATE(toram, AUDIO_CLK_GATE_EN, 20, pclk_parent_data);
> static struct clk_regmap spdifout_b =
> - AUD_PCLK_GATE(spdifout_b, AUDIO_CLK_GATE_EN, 21);
> + AUD_PCLK_GATE(spdifout_b, AUDIO_CLK_GATE_EN, 21, pclk_parent_data);
> static struct clk_regmap eqdrc =
> - AUD_PCLK_GATE(eqdrc, AUDIO_CLK_GATE_EN, 22);
> + AUD_PCLK_GATE(eqdrc, AUDIO_CLK_GATE_EN, 22, pclk_parent_data);
>
> /* SM1 Clocks */
> static struct clk_regmap sm1_clk81_en = {
> @@ -740,21 +595,21 @@ static struct clk_regmap sm1_aud_top = {
> };
>
> static struct clk_regmap resample_b =
> - AUD_PCLK_GATE(resample_b, AUDIO_CLK_GATE_EN, 26);
> + AUD_PCLK_GATE(resample_b, AUDIO_CLK_GATE_EN, 26, pclk_parent_data);
> static struct clk_regmap tovad =
> - AUD_PCLK_GATE(tovad, AUDIO_CLK_GATE_EN, 27);
> + AUD_PCLK_GATE(tovad, AUDIO_CLK_GATE_EN, 27, pclk_parent_data);
> static struct clk_regmap locker =
> - AUD_PCLK_GATE(locker, AUDIO_CLK_GATE_EN, 28);
> + AUD_PCLK_GATE(locker, AUDIO_CLK_GATE_EN, 28, pclk_parent_data);
> static struct clk_regmap spdifin_lb =
> - AUD_PCLK_GATE(spdifin_lb, AUDIO_CLK_GATE_EN, 29);
> + AUD_PCLK_GATE(spdifin_lb, AUDIO_CLK_GATE_EN, 29, pclk_parent_data);
> static struct clk_regmap frddr_d =
> - AUD_PCLK_GATE(frddr_d, AUDIO_CLK_GATE_EN1, 0);
> + AUD_PCLK_GATE(frddr_d, AUDIO_CLK_GATE_EN1, 0, pclk_parent_data);
> static struct clk_regmap toddr_d =
> - AUD_PCLK_GATE(toddr_d, AUDIO_CLK_GATE_EN1, 1);
> + AUD_PCLK_GATE(toddr_d, AUDIO_CLK_GATE_EN1, 1, pclk_parent_data);
> static struct clk_regmap loopback_b =
> - AUD_PCLK_GATE(loopback_b, AUDIO_CLK_GATE_EN1, 2);
> + AUD_PCLK_GATE(loopback_b, AUDIO_CLK_GATE_EN1, 2, pclk_parent_data);
> static struct clk_regmap earcrx =
> - AUD_PCLK_GATE(earcrx, AUDIO_CLK_GATE_EN1, 6);
> + AUD_PCLK_GATE(earcrx, AUDIO_CLK_GATE_EN1, 6, pclk_parent_data);
>
>
> static struct clk_regmap sm1_mst_a_mclk_sel =
> diff --git a/drivers/clk/meson/meson-audio.h b/drivers/clk/meson/meson-audio.h
> new file mode 100644
> index 000000000000..16dd044d52bd
> --- /dev/null
> +++ b/drivers/clk/meson/meson-audio.h
> @@ -0,0 +1,156 @@
> +/* SPDX-License-Identifier: (GPL-2.0 OR MIT) */
> +
> +#ifndef __MESON_AUDIO_H__
> +#define __MESON_AUDIO_H__
> +
> +#define AUD_PCLK_GATE(_name, _reg, _bit, _pdata) { \
> + .data = &(struct clk_regmap_gate_data){ \
> + .offset = (_reg), \
> + .bit_idx = (_bit), \
> + }, \
> + .hw.init = &(struct clk_init_data) { \
> + .name = "aud_"#_name, \
> + .ops = &clk_regmap_gate_ops, \
> + .parent_data = (_pdata), \
> + .num_parents = 1, \
> + }, \
> +}
> +
> +#define AUD_GATE(_name, _reg, _bit, _pname, _iflags) { \
> + .data = &(struct clk_regmap_gate_data){ \
> + .offset = (_reg), \
> + .bit_idx = (_bit), \
> + }, \
> + .hw.init = &(struct clk_init_data) { \
> + .name = "aud_"#_name, \
> + .ops = &clk_regmap_gate_ops, \
> + .parent_names = (const char *[]){ #_pname }, \
> + .num_parents = 1, \
> + .flags = CLK_DUTY_CYCLE_PARENT | (_iflags), \
> + }, \
> +}
> +
> +#define AUD_MUX(_name, _reg, _mask, _shift, _dflags, _pdata, _iflags) { \
> + .data = &(struct clk_regmap_mux_data){ \
> + .offset = (_reg), \
> + .mask = (_mask), \
> + .shift = (_shift), \
> + .flags = (_dflags), \
> + }, \
> + .hw.init = &(struct clk_init_data){ \
> + .name = "aud_"#_name, \
> + .ops = &clk_regmap_mux_ops, \
> + .parent_data = _pdata, \
> + .num_parents = ARRAY_SIZE(_pdata), \
> + .flags = CLK_DUTY_CYCLE_PARENT | (_iflags), \
> + }, \
> +}
> +
> +#define AUD_DIV(_name, _reg, _shift, _width, _dflags, _pname, _iflags) { \
> + .data = &(struct clk_regmap_div_data){ \
> + .offset = (_reg), \
> + .shift = (_shift), \
> + .width = (_width), \
> + .flags = (_dflags), \
> + }, \
> + .hw.init = &(struct clk_init_data){ \
> + .name = "aud_"#_name, \
> + .ops = &clk_regmap_divider_ops, \
> + .parent_names = (const char *[]){ #_pname }, \
> + .num_parents = 1, \
> + .flags = (_iflags), \
> + }, \
> +}
> +
> +#define AUD_SCLK_DIV(_name, _reg, _div_shift, _div_width, \
> + _hi_shift, _hi_width, _pname, _iflags) { \
> + .data = &(struct meson_sclk_div_data) { \
> + .div = { \
> + .reg_off = (_reg), \
> + .shift = (_div_shift), \
> + .width = (_div_width), \
> + }, \
> + .hi = { \
> + .reg_off = (_reg), \
> + .shift = (_hi_shift), \
> + .width = (_hi_width), \
> + }, \
> + }, \
> + .hw.init = &(struct clk_init_data) { \
> + .name = "aud_"#_name, \
> + .ops = &meson_sclk_div_ops, \
> + .parent_names = (const char *[]){ #_pname }, \
> + .num_parents = 1, \
> + .flags = (_iflags), \
> + }, \
> +}
> +
> +#define AUD_TRIPHASE(_name, _reg, _width, _shift0, _shift1, _shift2, \
> + _pname, _iflags) { \
> + .data = &(struct meson_clk_triphase_data) { \
> + .ph0 = { \
> + .reg_off = (_reg), \
> + .shift = (_shift0), \
> + .width = (_width), \
> + }, \
> + .ph1 = { \
> + .reg_off = (_reg), \
> + .shift = (_shift1), \
> + .width = (_width), \
> + }, \
> + .ph2 = { \
> + .reg_off = (_reg), \
> + .shift = (_shift2), \
> + .width = (_width), \
> + }, \
> + }, \
> + .hw.init = &(struct clk_init_data) { \
> + .name = "aud_"#_name, \
> + .ops = &meson_clk_triphase_ops, \
> + .parent_names = (const char *[]){ #_pname }, \
> + .num_parents = 1, \
> + .flags = CLK_DUTY_CYCLE_PARENT | (_iflags), \
> + }, \
> +}
> +
> +#define AUD_PHASE(_name, _reg, _width, _shift, _pname, _iflags) { \
> + .data = &(struct meson_clk_phase_data) { \
> + .ph = { \
> + .reg_off = (_reg), \
> + .shift = (_shift), \
> + .width = (_width), \
> + }, \
> + }, \
> + .hw.init = &(struct clk_init_data) { \
> + .name = "aud_"#_name, \
> + .ops = &meson_clk_phase_ops, \
> + .parent_names = (const char *[]){ #_pname }, \
> + .num_parents = 1, \
> + .flags = (_iflags), \
> + }, \
> +}
> +
> +#define AUD_SCLK_WS(_name, _reg, _width, _shift_ph, _shift_ws, _pname, \
> + _iflags) { \
> + .data = &(struct meson_sclk_ws_inv_data) { \
> + .ph = { \
> + .reg_off = (_reg), \
> + .shift = (_shift_ph), \
> + .width = (_width), \
> + }, \
> + .ws = { \
> + .reg_off = (_reg), \
> + .shift = (_shift_ws), \
> + .width = (_width), \
> + }, \
> + }, \
> + .hw.init = &(struct clk_init_data) { \
> + .name = "aud_"#_name, \
> + .ops = &meson_clk_phase_ops, \
> + .parent_names = (const char *[]){ #_pname }, \
> + .num_parents = 1, \
> + .flags = (_iflags), \
> + }, \
> +}
> +
> +#endif /* __MESON_AUDIO_H__ */
--
Best regards
Jan Dakinevich
_______________________________________________
linux-amlogic mailing list
linux-amlogic@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-amlogic
next prev parent reply other threads:[~2025-03-09 18:20 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2025-03-09 17:58 [PATCH v6 1/4] clk: meson: axg: share the set of audio helper macros Jan Dakinevich
2025-03-09 17:58 ` [PATCH v6 2/4] dt-bindings: clock: axg-audio: document A1 SoC audio clock controller driver Jan Dakinevich
2025-03-09 17:58 ` [PATCH v6 3/4] clk: meson: a1: add the " Jan Dakinevich
2025-03-09 17:58 ` [PATCH v6 4/4] arm64: dts: meson: a1: add the audio clock controller Jan Dakinevich
2025-03-09 18:01 ` Jan Dakinevich [this message]
-- strict thread matches above, loose matches on Subject: below --
2025-03-09 18:09 [PATCH v6 0/4] Add A1 Soc audio clock controller driver Jan Dakinevich
2025-03-09 18:09 ` [PATCH v6 1/4] clk: meson: axg: share the set of audio helper macros Jan Dakinevich
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=5a5353e0-e49a-4b6b-b007-ea6cfcb2f827@salutedevices.com \
--to=jan.dakinevich@salutedevices.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=jbrunet@baylibre.com \
--cc=khilman@baylibre.com \
--cc=krzk+dt@kernel.org \
--cc=linux-amlogic@lists.infradead.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-clk@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=martin.blumenstingl@googlemail.com \
--cc=mturquette@baylibre.com \
--cc=neil.armstrong@linaro.org \
--cc=robh@kernel.org \
--cc=sboyd@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox