openbmc.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
From: Billy Tsai <billy_tsai@aspeedtech.com>
To: Iwona Winiarska <iwona.winiarska@intel.com>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
	"openbmc@lists.ozlabs.org" <openbmc@lists.ozlabs.org>,
	Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: "linux-hwmon@vger.kernel.org" <linux-hwmon@vger.kernel.org>,
	"devicetree@vger.kernel.org" <devicetree@vger.kernel.org>,
	Jae Hyun Yoo <jae.hyun.yoo@linux.intel.com>,
	Jean Delvare <jdelvare@suse.com>,
	Randy Dunlap <rdunlap@infradead.org>,
	Arnd Bergmann <arnd@arndb.de>,
	"linux-aspeed@lists.ozlabs.org" <linux-aspeed@lists.ozlabs.org>,
	Jonathan Corbet <corbet@lwn.net>,
	Andrew Jeffery <andrew@aj.id.au>,
	"linux-doc@vger.kernel.org" <linux-doc@vger.kernel.org>,
	Pierre-Louis Bossart <pierre-louis.bossart@linux.intel.com>,
	Dave Hansen <dave.hansen@intel.com>,
	Rob Herring <robh+dt@kernel.org>, Borislav Petkov <bp@alien8.de>,
	"linux-arm-kernel@lists.infradead.org"
	<linux-arm-kernel@lists.infradead.org>,
	Tony Luck <tony.luck@intel.com>, Olof Johansson <olof@lixom.net>,
	Dan Williams <dan.j.williams@intel.com>,
	Andy Shevchenko <andriy.shevchenko@linux.intel.com>,
	Guenter Roeck <linux@roeck-us.net>,
	Zev Weiss <zweiss@equinix.com>
Subject: Re: [PATCH v4 05/13] peci: Add peci-aspeed controller driver
Date: Mon, 6 Dec 2021 05:27:43 +0000	[thread overview]
Message-ID: <71D27F36-8BB7-4C30-99C5-CCA4F9A30945@aspeedtech.com> (raw)
In-Reply-To: <20211123140706.2945700-6-iwona.winiarska@intel.com>

Hi,

After reviewing the patch, I have some suggestions for you. Please see the reply inline.

On 2021/11/23, 10:11 PM, "openbmc on behalf of Iwona Winiarska" <openbmc-bounces+billy_tsai=aspeedtech.com@lists.ozlabs.org on behalf of iwona.winiarska@intel.com> wrote:

    >   From: Jae Hyun Yoo <jae.hyun.yoo@linux.intel.com>
Add the define for the bus frequency
        #define ASPEED_PECI_BUS_FREQUENCY_MIN		2000
        #define ASPEED_PECI_BUS_FREQUENCY_DEFAULT	2000
        #define ASPEED_PECI_BUS_FREQUENCY_MAX		1000000

   >   +struct aspeed_peci {
    >   +	struct peci_controller *controller;
    >   +	struct device *dev;
    >   +	void __iomem *base;
    >   +	struct clk *clk;
    >   +	struct reset_control *rst;
    >   +	int irq;
    >   +	spinlock_t lock; /* to sync completion status handling */
    >   +	struct completion xfer_complete;
    >   +	u32 status;
    >   +	u32 cmd_timeout_ms;
    >   +	u32 msg_timing;
    >   +	u32 addr_timing;
    >   +	u32 rd_sampling_point;
    >   +	u32 clk_div;

Add the paremeter to store the bus_freq from the dts property
        u32 bus_freq;

    >   +};
    >   +
    >   +static void aspeed_peci_init_regs(struct aspeed_peci *priv)
    >   +{
    >   +	u32 val;
    >   +
    >   +	val = FIELD_PREP(ASPEED_PECI_CTRL_CLK_DIV_MASK, ASPEED_PECI_CLK_DIV_DEFAULT);
    >   +	val |= ASPEED_PECI_CTRL_PECI_CLK_EN;
    >   +	writel(val, priv->base + ASPEED_PECI_CTRL);
    >   +	/*
    >   +	 * Timing negotiation period setting.
    >   +	 * The unit of the programmed value is 4 times of PECI clock period.
    >   +	 */
    >   +	val = FIELD_PREP(ASPEED_PECI_T_NEGO_MSG_MASK, priv->msg_timing);
    >   +	val |= FIELD_PREP(ASPEED_PECI_T_NEGO_ADDR_MASK, priv->addr_timing);
    >   +	writel(val, priv->base + ASPEED_PECI_TIMING_NEGOTIATION);
    >   +
    >   +	/* Clear interrupts */
    >   +	val = readl(priv->base + ASPEED_PECI_INT_STS) | ASPEED_PECI_INT_MASK;
    >   +	writel(val, priv->base + ASPEED_PECI_INT_STS);
    >   +
    >   +	/* Set timing negotiation mode and enable interrupts */
    >   +	val = FIELD_PREP(ASPEED_PECI_TIMING_NEGO_SEL_MASK, ASPEED_PECI_1ST_BIT_OF_ADDR_NEGO);
    >   +	val |= ASPEED_PECI_INT_MASK;
    >   +	writel(val, priv->base + ASPEED_PECI_INT_CTRL);
    >   +
    >   +	val = FIELD_PREP(ASPEED_PECI_CTRL_SAMPLING_MASK, priv->rd_sampling_point);
    >   +	val |= FIELD_PREP(ASPEED_PECI_CTRL_CLK_DIV_MASK, priv->clk_div);
    >   +	val |= ASPEED_PECI_CTRL_PECI_EN;
    >   +	val |= ASPEED_PECI_CTRL_PECI_CLK_EN;
    >   +	writel(val, priv->base + ASPEED_PECI_CTRL);
    >   +}
    >   +
    >   +static inline int aspeed_peci_check_idle(struct aspeed_peci *priv)
    >   +{
    >   +	u32 cmd_sts = readl(priv->base + ASPEED_PECI_CMD);
    >   +
    >   +	if (FIELD_GET(ASPEED_PECI_CMD_STS_MASK, cmd_sts) == ASPEED_PECI_CMD_STS_ADDR_T_NEGO)
    >   +		aspeed_peci_init_regs(priv);

As long as the state is not idle, the controller need to reinitialize the PECI register for solving the PECI controller hang.
Before ast2600A3, the controller should assert/de-assert the reset for solving the hang issue.
For backward compatible, I suggest to add the reset assert/de-assert in this place.
        if (FIELD_GET(ASPEED_PECI_CMD_STS_MASK, cmd_sts)) {
                        reset_control_assert(priv->rst);
                        reset_control_deassert(priv->rst);
                        aspeed_peci_init_regs(priv);
        }

    >   +	return readl_poll_timeout(priv->base + ASPEED_PECI_CMD,
    >   +				  cmd_sts,
    >   +				  !(cmd_sts & ASPEED_PECI_CMD_IDLE_MASK),
    >   +				  ASPEED_PECI_IDLE_CHECK_INTERVAL_US,
    >   +				  ASPEED_PECI_IDLE_CHECK_TIMEOUT_US);
    >   +}
    >   +
    >   +static int aspeed_peci_xfer(struct peci_controller *controller,
    >   +			    u8 addr, struct peci_request *req)
    >   +{
    >   +	struct aspeed_peci *priv = dev_get_drvdata(controller->dev.parent);
    >   +	unsigned long timeout = msecs_to_jiffies(priv->cmd_timeout_ms);
    >   +	u32 peci_head;
    >   +	int ret;
    >   +
    >   +	if (req->tx.len > ASPEED_PECI_DATA_BUF_SIZE_MAX ||
    >   +	    req->rx.len > ASPEED_PECI_DATA_BUF_SIZE_MAX)
    >   +		return -EINVAL;
    >   +
    >   +	/* Check command sts and bus idle state */
    >   +	ret = aspeed_peci_check_idle(priv);
    >   +	if (ret)
    >   +		return ret; /* -ETIMEDOUT */
    >   +
    >   +	spin_lock_irq(&priv->lock);
    >   +	reinit_completion(&priv->xfer_complete);
    >   +
    >   +	peci_head = FIELD_PREP(ASPEED_PECI_TARGET_ADDR_MASK, addr) |
    >   +		    FIELD_PREP(ASPEED_PECI_WR_LEN_MASK, req->tx.len) |
    >   +		    FIELD_PREP(ASPEED_PECI_RD_LEN_MASK, req->rx.len);
    >   +
    >   +	writel(peci_head, priv->base + ASPEED_PECI_RW_LENGTH);
    >   +
    >   +	memcpy_toio(priv->base + ASPEED_PECI_WR_DATA0, req->tx.buf, min_t(u8, req->tx.len, 16));
    >   +	if (req->tx.len > 16)
    >   +		memcpy_toio(priv->base + ASPEED_PECI_WR_DATA4, req->tx.buf + 16,
    >   +			    req->tx.len - 16);
    >   +
    >   +#if IS_ENABLED(CONFIG_DYNAMIC_DEBUG)
    >   +	dev_dbg(priv->dev, "HEAD : %#08x\n", peci_head);
    >   +	print_hex_dump_bytes("TX : ", DUMP_PREFIX_NONE, req->tx.buf, req->tx.len);
    >   +#endif
    >   +	priv->status = 0;
    >   +	writel(ASPEED_PECI_CMD_FIRE, priv->base + ASPEED_PECI_CMD);
    >   +	spin_unlock_irq(&priv->lock);
    >   +
    >   +	ret = wait_for_completion_interruptible_timeout(&priv->xfer_complete, timeout);
    >   +	if (ret < 0)
    >   +		return ret;
    >   +
    >   +	if (ret == 0) {
    >   +		dev_dbg(priv->dev, "Timeout waiting for a response!\n");
dev_err?
    >   +		return -ETIMEDOUT;
    >   +	}
    >   +
    >   +	spin_lock_irq(&priv->lock);
    >   +
    >   +	if (priv->status != ASPEED_PECI_INT_CMD_DONE) {
    >   +		spin_unlock_irq(&priv->lock);
    >   +		dev_dbg(priv->dev, "No valid response, status: %#02x\n", priv->status);
dev_err?
    >   +		return -EIO;
    >   +	}
    >   +
    >   +	spin_unlock_irq(&priv->lock);
    >   +
    >   +	memcpy_fromio(req->rx.buf, priv->base + ASPEED_PECI_RD_DATA0, min_t(u8, req->rx.len, 16));
    >   +	if (req->rx.len > 16)
    >   +		memcpy_fromio(req->rx.buf + 16, priv->base + ASPEED_PECI_RD_DATA4,
    >   +			      req->rx.len - 16);
    >   +
    >   +#if IS_ENABLED(CONFIG_DYNAMIC_DEBUG)
    >   +	print_hex_dump_bytes("RX : ", DUMP_PREFIX_NONE, req->rx.buf, req->rx.len);
    >   +#endif
    >   +	return 0;
    >   +}
    >   +
    >   +static irqreturn_t aspeed_peci_irq_handler(int irq, void *arg)
    >   +{
    >   +	struct aspeed_peci *priv = arg;
    >   +	u32 status;
    >   +
    >   +	spin_lock(&priv->lock);
    >   +	status = readl(priv->base + ASPEED_PECI_INT_STS);
    >   +	writel(status, priv->base + ASPEED_PECI_INT_STS);
    >   +	priv->status |= (status & ASPEED_PECI_INT_MASK);
    >   +
    >   +	/*
    >   +	 * All commands should be ended up with a ASPEED_PECI_INT_CMD_DONE bit
    >   +	 * set even in an error case.
    >   +	 */
    >   +	if (status & ASPEED_PECI_INT_CMD_DONE)
    >   +		complete(&priv->xfer_complete);
    >   +
    >   +	writel(0, priv->base + ASPEED_PECI_CMD);
    >   +
    >   +	spin_unlock(&priv->lock);
    >   +
    >   +	return IRQ_HANDLED;
    >   +}
    >   +
    >   +static void aspeed_peci_property_sanitize(struct device *dev, const char *propname,
    >   +					  u32 min, u32 max, u32 default_val, u32 *propval)
    >   +{
    >   +	u32 val;
    >   +	int ret;
    >   +
    >   +	ret = device_property_read_u32(dev, propname, &val);
    >   +	if (ret) {
    >   +		val = default_val;
    >   +	} else if (val > max || val < min) {
    >   +		dev_warn(dev, "Invalid %s: %u, falling back to: %u\n",
    >   +			 propname, val, default_val);
    >   +
    >   +		val = default_val;
    >   +	}
    >   +
    >   +	*propval = val;
    >   +}
    >   +
    >   +static void aspeed_peci_property_setup(struct aspeed_peci *priv)
    >   +{
    >   +	aspeed_peci_property_sanitize(priv->dev, "aspeed,clock-divider",
    >   +				      0, ASPEED_PECI_CLK_DIV_MAX,
    >   +				      ASPEED_PECI_CLK_DIV_DEFAULT, &priv->clk_div);
    >   +	aspeed_peci_property_sanitize(priv->dev, "aspeed,msg-timing",
    >   +				      0, ASPEED_PECI_MSG_TIMING_MAX,
    >   +				      ASPEED_PECI_MSG_TIMING_DEFAULT, &priv->msg_timing);
    >   +	aspeed_peci_property_sanitize(priv->dev, "aspeed,addr-timing",
    >   +				      0, ASPEED_PECI_ADDR_TIMING_MAX,
    >   +				      ASPEED_PECI_ADDR_TIMING_DEFAULT, &priv->addr_timing);

Use the bus-frequency to replace the property above:
        aspeed_peci_property_sanitize(priv->dev, "bus-frequency",
				ASPEED_PECI_BUS_FREQUENCY_MIN, ASPEED_PECI_BUS_FREQUENCY_MAX,
				ASPEED_PECI_BUS_FREQUENCY_DEFAULT, &priv->bus_freq);

    >   +	aspeed_peci_property_sanitize(priv->dev, "aspeed,rd-sampling-point",
    >   +				      0, ASPEED_PECI_RD_SAMPLING_POINT_MAX,
    >   +				      ASPEED_PECI_RD_SAMPLING_POINT_DEFAULT,
    >   +				      &priv->rd_sampling_point);
    >   +	aspeed_peci_property_sanitize(priv->dev, "cmd-timeout-ms",
    >   +				      1, ASPEED_PECI_CMD_TIMEOUT_MS_MAX,
    >   +				      ASPEED_PECI_CMD_TIMEOUT_MS_DEFAULT, &priv->cmd_timeout_ms);
    >   +}
Add the function of automatically calculating the settings to adapt to the bus frequency.
        static void aspeed_peci_bus_freq_setup(struct aspeed_peci *priv)
        {
                unsigned long src_clk_rate;
                int delta_value, delta_tmp, clk_divisor, clk_divisor_tmp;
                u32 msg_timing, clk_div;

                src_clk_rate = clk_get_rate(priv->clk);

                /*
                 * PECI bus freq  = (source clk rate) / (4 * (PECI04[15:8]*4+1) * (1 << PECI00[10:8]))
                 * (1 << PECI00[10:8]) * (PECI04[15:8]*4+1) = (source clk rate) / (4 * PECI bus freq )
                 */
                clk_divisor = src_clk_rate / (4 * priv->bus_freq);
                delta_value = clk_divisor;
                /* Find the closest divisor for bus-frequency */
                for (msg_timing = 1; msg_timing <= 255; msg_timing++)
                        for (clk_div = 0; clk_div < 7;
                                clk_div++) {
                                clk_divisor_tmp = (1 << clk_div) *
                                                (msg_timing * 4 + 1);
                                delta_tmp = abs(clk_divisor - clk_divisor_tmp);
                                if (delta_tmp < delta_value) {
                                        delta_value = delta_tmp;
                                        priv->msg_timing = msg_timing;
                                        priv->addr_timing = priv->msg_timing;
                                        priv->clk_div = clk_div;
                                }
                        }
        }

    >   +
    >   +static struct peci_controller_ops aspeed_ops = {
    >   +	.xfer = aspeed_peci_xfer,
    >   +};
    >   +
    >   +static void aspeed_peci_reset_control_release(void *data)
    >   +{
    >   +	reset_control_assert(data);
    >   +}
    >   +
    >   +static int devm_aspeed_peci_reset_control_deassert(struct device *dev, struct reset_control *rst)
    >   +{
    >   +	int ret;
    >   +
    >   +	ret = reset_control_deassert(rst);
    >   +	if (ret)
    >   +		return ret;
    >   +
    >   +	return devm_add_action_or_reset(dev, aspeed_peci_reset_control_release, rst);
    >   +}
    >   +
    >   +static void aspeed_peci_clk_release(void *data)
    >   +{
    >   +	clk_disable_unprepare(data);
    >   +}
    >   +
    >   +static int devm_aspeed_peci_clk_enable(struct device *dev, struct clk *clk)
    >   +{
    >   +	int ret;
    >   +
    >   +	ret = clk_prepare_enable(clk);
    >   +	if (ret)
    >   +		return ret;
    >   +
    >   +	return devm_add_action_or_reset(dev, aspeed_peci_clk_release, clk);
    >   +}
    >   +
    >   +static int aspeed_peci_probe(struct platform_device *pdev)
    >   +{
    >   +	struct peci_controller *controller;
    >   +	struct aspeed_peci *priv;
    >   +	int ret;
    >   +
    >   +	priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL);
    >   +	if (!priv)
    >   +		return -ENOMEM;
    >   +
    >   +	priv->dev = &pdev->dev;
    >   +	dev_set_drvdata(priv->dev, priv);
    >   +
    >   +	priv->base = devm_platform_ioremap_resource(pdev, 0);
    >   +	if (IS_ERR(priv->base))
    >   +		return PTR_ERR(priv->base);
    >   +
    >   +	priv->irq = platform_get_irq(pdev, 0);
    >   +	if (!priv->irq)
    >   +		return priv->irq;
    >   +
    >   +	ret = devm_request_irq(&pdev->dev, priv->irq, aspeed_peci_irq_handler,
    >   +			       0, "peci-aspeed", priv);
    >   +	if (ret)
    >   +		return ret;
    >   +
    >   +	init_completion(&priv->xfer_complete);
    >   +	spin_lock_init(&priv->lock);
    >   +
    >   +	priv->rst = devm_reset_control_get(&pdev->dev, NULL);
    >   +	if (IS_ERR(priv->rst))
    >   +		return dev_err_probe(priv->dev, PTR_ERR(priv->rst),
    >   +				     "failed to get reset control\n");
    >   +
    >   +	ret = devm_aspeed_peci_reset_control_deassert(priv->dev, priv->rst);
    >   +	if (ret)
    >   +		return dev_err_probe(priv->dev, ret, "cannot deassert reset control\n");
    >   +
    >   +	priv->clk = devm_clk_get(priv->dev, NULL);
    >   +	if (IS_ERR(priv->clk))
    >   +		return dev_err_probe(priv->dev, PTR_ERR(priv->clk), "failed to get clk\n");
    >   +
    >   +	ret = devm_aspeed_peci_clk_enable(priv->dev, priv->clk);
    >   +	if (ret)
    >   +		return dev_err_probe(priv->dev, ret, "failed to enable clock\n");
    >   +
    >   +	aspeed_peci_property_setup(priv);

        aspeed_peci_bus_freq_setup(priv);

    >   +
    >   +	aspeed_peci_init_regs(priv);
    >   +
    >   +	controller = devm_peci_controller_add(priv->dev, &aspeed_ops);
    >   +	if (IS_ERR(controller))
    >   +		return dev_err_probe(priv->dev, PTR_ERR(controller),
    >   +				     "failed to add aspeed peci controller\n");
    >   +
    >   +	priv->controller = controller;
    >   +
    >   +	return 0;
    >   +}
    >   +
    >   +static const struct of_device_id aspeed_peci_of_table[] = {
    >   +	{ .compatible = "aspeed,ast2400-peci", },
    >   +	{ .compatible = "aspeed,ast2500-peci", },
    >   +	{ .compatible = "aspeed,ast2600-peci", },
    >   +	{ }
    >   +};
    >   +MODULE_DEVICE_TABLE(of, aspeed_peci_of_table);
    >   +
    >   +static struct platform_driver aspeed_peci_driver = {
    >   +	.probe  = aspeed_peci_probe,
    >   +	.driver = {
    >   +		.name           = "peci-aspeed",
    >   +		.of_match_table = aspeed_peci_of_table,
    >   +	},
    >   +};
    >   +module_platform_driver(aspeed_peci_driver);
    >   +
    >   +MODULE_AUTHOR("Ryan Chen <ryan_chen@aspeedtech.com>");
    >   +MODULE_AUTHOR("Jae Hyun Yoo <jae.hyun.yoo@linux.intel.com>");
    >   +MODULE_DESCRIPTION("ASPEED PECI driver");
    >   +MODULE_LICENSE("GPL");
    >   +MODULE_IMPORT_NS(PECI);
    >   -- 
    >   2.31.1




  reply	other threads:[~2021-12-06  5:29 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-11-23 14:06 [PATCH v4 00/13] Introduce PECI subsystem Iwona Winiarska
2021-11-23 14:06 ` [PATCH v4 01/13] dt-bindings: Add generic bindings for PECI Iwona Winiarska
2021-11-23 14:06 ` [PATCH v4 02/13] dt-bindings: Add bindings for peci-aspeed Iwona Winiarska
2021-12-01 10:38   ` Billy Tsai
2021-12-02  1:54     ` Zev Weiss
2021-12-02  2:31       ` Billy Tsai
2021-12-07 18:15         ` Winiarska, Iwona
2021-12-08  2:23           ` Billy Tsai
2021-11-23 14:06 ` [PATCH v4 03/13] ARM: dts: aspeed: Add PECI controller nodes Iwona Winiarska
2021-11-23 14:06 ` [PATCH v4 04/13] peci: Add core infrastructure Iwona Winiarska
2021-11-23 14:06 ` [PATCH v4 05/13] peci: Add peci-aspeed controller driver Iwona Winiarska
2021-12-06  5:27   ` Billy Tsai [this message]
2021-12-07 18:09     ` Winiarska, Iwona
2021-11-23 14:06 ` [PATCH v4 06/13] peci: Add device detection Iwona Winiarska
2021-11-23 14:07 ` [PATCH v4 07/13] peci: Add sysfs interface for PECI bus Iwona Winiarska
2021-11-23 14:07 ` [PATCH v4 08/13] peci: Add support for PECI device drivers Iwona Winiarska
2021-11-23 14:07 ` [PATCH v4 09/13] peci: Add peci-cpu driver Iwona Winiarska
2021-11-23 14:07 ` [PATCH v4 10/13] hwmon: peci: Add cputemp driver Iwona Winiarska
2021-11-23 15:51   ` Guenter Roeck
2021-11-23 14:07 ` [PATCH v4 11/13] hwmon: peci: Add dimmtemp driver Iwona Winiarska
2021-11-23 14:07 ` [PATCH v4 12/13] docs: hwmon: Document PECI drivers Iwona Winiarska
2021-11-23 15:57   ` Guenter Roeck
2021-11-23 14:07 ` [PATCH v4 13/13] docs: Add PECI documentation Iwona Winiarska
2021-12-14 13:52 ` [PATCH v4 00/13] Introduce PECI subsystem Tomer Maimon

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=71D27F36-8BB7-4C30-99C5-CCA4F9A30945@aspeedtech.com \
    --to=billy_tsai@aspeedtech.com \
    --cc=andrew@aj.id.au \
    --cc=andriy.shevchenko@linux.intel.com \
    --cc=arnd@arndb.de \
    --cc=bp@alien8.de \
    --cc=corbet@lwn.net \
    --cc=dan.j.williams@intel.com \
    --cc=dave.hansen@intel.com \
    --cc=devicetree@vger.kernel.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=iwona.winiarska@intel.com \
    --cc=jae.hyun.yoo@linux.intel.com \
    --cc=jdelvare@suse.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-aspeed@lists.ozlabs.org \
    --cc=linux-doc@vger.kernel.org \
    --cc=linux-hwmon@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux@roeck-us.net \
    --cc=olof@lixom.net \
    --cc=openbmc@lists.ozlabs.org \
    --cc=pierre-louis.bossart@linux.intel.com \
    --cc=rdunlap@infradead.org \
    --cc=robh+dt@kernel.org \
    --cc=tony.luck@intel.com \
    --cc=zweiss@equinix.com \
    /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;
as well as URLs for NNTP newsgroup(s).