linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 0/2] ASPEED: Add mailbox driver for AST2700 series
@ 2025-06-04 12:55 Jammy Huang
  2025-06-04 12:55 ` [PATCH v2 1/2] dt-bindings: mailbox: Add ASPEED AST2700 series SoC Jammy Huang
                   ` (2 more replies)
  0 siblings, 3 replies; 11+ messages in thread
From: Jammy Huang @ 2025-06-04 12:55 UTC (permalink / raw)
  To: jassisinghbrar, robh, krzk+dt, conor+dt, joel, andrew,
	jammy_huang, devicetree, linux-arm-kernel, linux-aspeed,
	linux-kernel

Add mailbox controller driver for AST27XX SoCs, which provides
independent tx/rx mailbox between different processors. There are 4
channels for each tx/rx mailbox and each channel has an 32-byte FIFO.

 v2 changes:
  - Update document

Jammy Huang (2):
  dt-bindings: mailbox: Add ASPEED AST2700 series SoC
  mailbox: aspeed: add mailbox driver for AST27XX series SoC

 .../mailbox/aspeed,ast2700-mailbox.yaml       |  57 +++++
 drivers/mailbox/Kconfig                       |   8 +
 drivers/mailbox/Makefile                      |   2 +
 drivers/mailbox/ast2700-mailbox.c             | 226 ++++++++++++++++++
 4 files changed, 293 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/mailbox/aspeed,ast2700-mailbox.yaml
 create mode 100644 drivers/mailbox/ast2700-mailbox.c


base-commit: 546b1c9e93c2bb8cf5ed24e0be1c86bb089b3253
-- 
2.25.1



^ permalink raw reply	[flat|nested] 11+ messages in thread

* [PATCH v2 1/2] dt-bindings: mailbox: Add ASPEED AST2700 series SoC
  2025-06-04 12:55 [PATCH v2 0/2] ASPEED: Add mailbox driver for AST2700 series Jammy Huang
@ 2025-06-04 12:55 ` Jammy Huang
  2025-06-04 14:10   ` Krzysztof Kozlowski
                     ` (2 more replies)
  2025-06-04 12:55 ` [PATCH v2 2/2] mailbox: aspeed: add mailbox driver for AST27XX " Jammy Huang
  2025-06-04 12:57 ` [PATCH v2 0/2] ASPEED: Add mailbox driver for AST2700 series Krzysztof Kozlowski
  2 siblings, 3 replies; 11+ messages in thread
From: Jammy Huang @ 2025-06-04 12:55 UTC (permalink / raw)
  To: jassisinghbrar, robh, krzk+dt, conor+dt, joel, andrew,
	jammy_huang, devicetree, linux-arm-kernel, linux-aspeed,
	linux-kernel

Introduce the mailbox module for AST27XX series SoC, which is responsible
for interchanging messages between asymmetric processors.

Signed-off-by: Jammy Huang <jammy_huang@aspeedtech.com>
---
 .../mailbox/aspeed,ast2700-mailbox.yaml       | 57 +++++++++++++++++++
 1 file changed, 57 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/mailbox/aspeed,ast2700-mailbox.yaml

diff --git a/Documentation/devicetree/bindings/mailbox/aspeed,ast2700-mailbox.yaml b/Documentation/devicetree/bindings/mailbox/aspeed,ast2700-mailbox.yaml
new file mode 100644
index 000000000000..1ab1ba3ea44f
--- /dev/null
+++ b/Documentation/devicetree/bindings/mailbox/aspeed,ast2700-mailbox.yaml
@@ -0,0 +1,57 @@
+# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/mailbox/aspeed,ast2700-mailbox.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: ASPEED AST2700 mailbox controller
+
+maintainers:
+  - Jammy Huang <jammy_huang@aspeedtech.com>
+
+description:
+  ASPEED AST2700 has multiple processors that need to communicate with each
+  other. The mailbox controller provides a way for these processors to send
+  messages to each other. It is a hardware-based inter-processor communication
+  mechanism that allows processors to send and receive messages through
+  dedicated channels.
+  The mailbox's tx/rx are independent, meaning that one processor can send a
+  message while another processor is receiving a message simultaneously.
+  There are 4 channels available for both tx and rx operations. Each channel
+  has a FIFO buffer that can hold messages of a fixed size (32 bytes in this
+  case).
+  The mailbox controller also supports interrupt generation, allowing
+  processors to notify each other when a message is available or when an event
+  occurs.
+
+properties:
+  compatible:
+    const: aspeed,ast2700-mailbox
+
+  reg:
+    maxItems: 1
+
+  interrupts:
+    maxItems: 1
+
+  "#mbox-cells":
+    const: 1
+
+required:
+  - compatible
+  - reg
+  - interrupts
+  - "#mbox-cells"
+
+additionalProperties: false
+
+examples:
+  - |
+    #include <dt-bindings/interrupt-controller/arm-gic.h>
+
+    mailbox@12c1c200 {
+        compatible = "aspeed,ast2700-mailbox";
+        reg = <0x0 0x12c1c200 0x0 0x200>;
+        interrupts = <GIC_SPI 103 IRQ_TYPE_LEVEL_HIGH>;
+        #mbox-cells = <1>;
+    };
-- 
2.25.1



^ permalink raw reply related	[flat|nested] 11+ messages in thread

* [PATCH v2 2/2] mailbox: aspeed: add mailbox driver for AST27XX series SoC
  2025-06-04 12:55 [PATCH v2 0/2] ASPEED: Add mailbox driver for AST2700 series Jammy Huang
  2025-06-04 12:55 ` [PATCH v2 1/2] dt-bindings: mailbox: Add ASPEED AST2700 series SoC Jammy Huang
@ 2025-06-04 12:55 ` Jammy Huang
  2025-06-04 12:57 ` [PATCH v2 0/2] ASPEED: Add mailbox driver for AST2700 series Krzysztof Kozlowski
  2 siblings, 0 replies; 11+ messages in thread
From: Jammy Huang @ 2025-06-04 12:55 UTC (permalink / raw)
  To: jassisinghbrar, robh, krzk+dt, conor+dt, joel, andrew,
	jammy_huang, devicetree, linux-arm-kernel, linux-aspeed,
	linux-kernel

Add mailbox controller driver for AST27XX SoCs, which provides
independent tx/rx mailbox between different processors. There are 4
channels for each tx/rx mailbox and each channel has an 32-byte FIFO.

Signed-off-by: Jammy Huang <jammy_huang@aspeedtech.com>
---
 drivers/mailbox/Kconfig           |   8 ++
 drivers/mailbox/Makefile          |   2 +
 drivers/mailbox/ast2700-mailbox.c | 226 ++++++++++++++++++++++++++++++
 3 files changed, 236 insertions(+)
 create mode 100644 drivers/mailbox/ast2700-mailbox.c

diff --git a/drivers/mailbox/Kconfig b/drivers/mailbox/Kconfig
index 68eeed660a4a..1c38cd570091 100644
--- a/drivers/mailbox/Kconfig
+++ b/drivers/mailbox/Kconfig
@@ -340,4 +340,12 @@ config THEAD_TH1520_MBOX
 	  kernel is running, and E902 core used for power management among other
 	  things.
 
+config AST2700_MBOX
+	tristate "ASPEED AST2700 IPC driver"
+	depends on ARCH_ASPEED || COMPILE_TEST
+	help
+	  Mailbox driver implementation for ASPEED AST27XX SoCs. This driver
+	  can be used to send message between different processors in SoC.
+	  The driver provides mailbox support for sending interrupts to the
+	  clients. Say Y here if you want to build this driver.
 endif
diff --git a/drivers/mailbox/Makefile b/drivers/mailbox/Makefile
index 13a3448b3271..9a9add9a7548 100644
--- a/drivers/mailbox/Makefile
+++ b/drivers/mailbox/Makefile
@@ -72,3 +72,5 @@ obj-$(CONFIG_QCOM_CPUCP_MBOX)	+= qcom-cpucp-mbox.o
 obj-$(CONFIG_QCOM_IPCC)		+= qcom-ipcc.o
 
 obj-$(CONFIG_THEAD_TH1520_MBOX)	+= mailbox-th1520.o
+
+obj-$(CONFIG_AST2700_MBOX)	+= ast2700-mailbox.o
diff --git a/drivers/mailbox/ast2700-mailbox.c b/drivers/mailbox/ast2700-mailbox.c
new file mode 100644
index 000000000000..0ee10bd3a6e1
--- /dev/null
+++ b/drivers/mailbox/ast2700-mailbox.c
@@ -0,0 +1,226 @@
+// SPDX-License-Identifier: GPL-2.0-only
+/*
+ * Copyright Aspeed Technology Inc. (C) 2025. All rights reserved
+ */
+
+#include <linux/interrupt.h>
+#include <linux/io.h>
+#include <linux/iopoll.h>
+#include <linux/kernel.h>
+#include <linux/mailbox_controller.h>
+#include <linux/module.h>
+#include <linux/of.h>
+#include <linux/platform_device.h>
+#include <linux/slab.h>
+
+/* Each bit in the register represents an IPC ID */
+#define IPCR_TX_TRIG		0x00
+#define IPCR_TX_ENABLE		0x04
+#define IPCR_RX_ENABLE		0x104
+#define IPCR_TX_STATUS		0x08
+#define IPCR_RX_STATUS		0x108
+#define  RX_IRQ(n)		BIT(0 + 1 * (n))
+#define  RX_IRQ_MASK		0xf
+#define IPCR_TX_DATA		0x10
+#define IPCR_RX_DATA		0x110
+
+struct ast2700_mbox_data {
+	u8 num_chans;
+	u8 msg_size;
+};
+
+struct ast2700_mbox {
+	struct mbox_controller mbox;
+	const struct ast2700_mbox_data *drv_data;
+	void __iomem *regs;
+	u32 *rx_buff;
+};
+
+static inline int ch_num(struct mbox_chan *chan)
+{
+	return chan - chan->mbox->chans;
+}
+
+static inline int ast2700_mbox_tx_done(struct ast2700_mbox *mb, int idx)
+{
+	return !(readl(mb->regs + IPCR_TX_STATUS) & BIT(idx));
+}
+
+static irqreturn_t ast2700_mbox_irq(int irq, void *p)
+{
+	struct ast2700_mbox *mb = p;
+	void __iomem *data_reg;
+	int num_words;
+	u32 *word_data;
+	u32 status;
+	int n;
+
+	/* Only examine channels that are currently enabled. */
+	status = readl(mb->regs + IPCR_RX_ENABLE) &
+		 readl(mb->regs + IPCR_RX_STATUS);
+
+	if (!(status & RX_IRQ_MASK))
+		return IRQ_NONE;
+
+	for (n = 0; n < mb->mbox.num_chans; ++n) {
+		struct mbox_chan *chan = &mb->mbox.chans[n];
+
+		if (!(status & RX_IRQ(n)))
+			continue;
+
+		for (data_reg = mb->regs + IPCR_RX_DATA + mb->drv_data->msg_size * n,
+		     word_data = chan->con_priv,
+		     num_words = (mb->drv_data->msg_size / sizeof(u32));
+		     num_words; num_words--, data_reg += sizeof(u32), word_data++)
+			*word_data = readl(data_reg);
+
+		mbox_chan_received_data(chan, chan->con_priv);
+
+		/* The IRQ can be cleared only once the FIFO is empty. */
+		writel(RX_IRQ(n), mb->regs + IPCR_RX_STATUS);
+	}
+
+	return IRQ_HANDLED;
+}
+
+static int ast2700_mbox_send_data(struct mbox_chan *chan, void *data)
+{
+	struct ast2700_mbox *mb = dev_get_drvdata(chan->mbox->dev);
+	void __iomem *data_reg;
+	u32 *word_data;
+	int num_words;
+	int idx = ch_num(chan);
+
+	if (!(readl(mb->regs + IPCR_TX_ENABLE) & BIT(idx))) {
+		dev_warn(mb->mbox.dev, "%s: Ch-%d not enabled yet\n", __func__, idx);
+		return -EBUSY;
+	}
+
+	if (!(ast2700_mbox_tx_done(mb, idx))) {
+		dev_warn(mb->mbox.dev, "%s: Ch-%d last data has not finished\n", __func__, idx);
+		return -EBUSY;
+	}
+
+	for (data_reg = mb->regs + IPCR_TX_DATA + mb->drv_data->msg_size * idx,
+	     num_words = (mb->drv_data->msg_size / sizeof(u32)),
+	     word_data = (u32 *)data;
+	     num_words; num_words--, data_reg += sizeof(u32), word_data++)
+		writel(*word_data, data_reg);
+
+	writel(BIT(idx), mb->regs + IPCR_TX_TRIG);
+	dev_dbg(mb->mbox.dev, "%s: Ch-%d sent\n", __func__, idx);
+
+	return 0;
+}
+
+static int ast2700_mbox_startup(struct mbox_chan *chan)
+{
+	struct ast2700_mbox *mb = dev_get_drvdata(chan->mbox->dev);
+	int idx = ch_num(chan);
+	void __iomem *reg = mb->regs + IPCR_RX_ENABLE;
+
+	writel_relaxed(readl_relaxed(reg) | BIT(idx), reg);
+
+	return 0;
+}
+
+static void ast2700_mbox_shutdown(struct mbox_chan *chan)
+{
+	struct ast2700_mbox *mb = dev_get_drvdata(chan->mbox->dev);
+	int idx = ch_num(chan);
+	void __iomem *reg = mb->regs + IPCR_RX_ENABLE;
+
+	writel_relaxed(readl_relaxed(reg) & ~BIT(idx), reg);
+}
+
+static bool ast2700_mbox_last_tx_done(struct mbox_chan *chan)
+{
+	struct ast2700_mbox *mb = dev_get_drvdata(chan->mbox->dev);
+	int idx = ch_num(chan);
+
+	return ast2700_mbox_tx_done(mb, idx) ? true : false;
+}
+
+static const struct mbox_chan_ops ast2700_mbox_chan_ops = {
+	.send_data	= ast2700_mbox_send_data,
+	.startup	= ast2700_mbox_startup,
+	.shutdown	= ast2700_mbox_shutdown,
+	.last_tx_done	= ast2700_mbox_last_tx_done,
+};
+
+static int ast2700_mbox_probe(struct platform_device *pdev)
+{
+	struct ast2700_mbox *mb;
+	const struct ast2700_mbox_data *drv_data;
+	struct device *dev = &pdev->dev;
+	int irq, ret;
+
+	if (!pdev->dev.of_node)
+		return -ENODEV;
+
+	drv_data = (const struct ast2700_mbox_data *)device_get_match_data(&pdev->dev);
+
+	mb = devm_kzalloc(dev, sizeof(*mb), GFP_KERNEL);
+	if (!mb)
+		return -ENOMEM;
+
+	mb->mbox.chans = devm_kcalloc(&pdev->dev, drv_data->num_chans,
+				      sizeof(*mb->mbox.chans), GFP_KERNEL);
+	if (!mb->mbox.chans)
+		return -ENOMEM;
+
+	for (int i = 0; i < drv_data->num_chans; i++) {
+		mb->mbox.chans[i].con_priv = devm_kcalloc(dev, drv_data->msg_size,
+							  sizeof(u8), GFP_KERNEL);
+		if (!mb->mbox.chans[i].con_priv)
+			return -ENOMEM;
+	}
+
+	platform_set_drvdata(pdev, mb);
+
+	mb->regs = devm_platform_ioremap_resource(pdev, 0);
+	if (IS_ERR(mb->regs))
+		return PTR_ERR(mb->regs);
+
+	mb->drv_data = drv_data;
+	mb->mbox.dev = dev;
+	mb->mbox.num_chans = drv_data->num_chans;
+	mb->mbox.ops = &ast2700_mbox_chan_ops;
+	mb->mbox.txdone_irq = false;
+	mb->mbox.txdone_poll = true;
+	mb->mbox.txpoll_period = 5;
+
+	irq = platform_get_irq(pdev, 0);
+	if (irq < 0)
+		return irq;
+
+	ret = devm_request_irq(dev, irq, ast2700_mbox_irq, 0, dev_name(dev), mb);
+	if (ret)
+		return ret;
+
+	return devm_mbox_controller_register(dev, &mb->mbox);
+}
+
+static const struct ast2700_mbox_data ast2700_drv_data = {
+	.num_chans = 4,
+	.msg_size = 0x20,
+};
+
+static const struct of_device_id ast2700_mbox_of_match[] = {
+	{ .compatible = "aspeed,ast2700-mailbox", .data = &ast2700_drv_data },
+	{}
+};
+MODULE_DEVICE_TABLE(of, ast2700_mbox_of_match);
+
+static struct platform_driver ast2700_mbox_driver = {
+	.driver = {
+		.name = "ast2700-mailbox",
+		.of_match_table = ast2700_mbox_of_match,
+	},
+	.probe = ast2700_mbox_probe,
+};
+module_platform_driver(ast2700_mbox_driver);
+
+MODULE_AUTHOR("Jammy Huang <jammy_huang@aspeedtech.com>");
+MODULE_DESCRIPTION("ASPEED AST2700 IPC driver");
+MODULE_LICENSE("GPL");
-- 
2.25.1



^ permalink raw reply related	[flat|nested] 11+ messages in thread

* Re: [PATCH v2 0/2] ASPEED: Add mailbox driver for AST2700 series
  2025-06-04 12:55 [PATCH v2 0/2] ASPEED: Add mailbox driver for AST2700 series Jammy Huang
  2025-06-04 12:55 ` [PATCH v2 1/2] dt-bindings: mailbox: Add ASPEED AST2700 series SoC Jammy Huang
  2025-06-04 12:55 ` [PATCH v2 2/2] mailbox: aspeed: add mailbox driver for AST27XX " Jammy Huang
@ 2025-06-04 12:57 ` Krzysztof Kozlowski
  2025-06-04 13:07   ` Jammy Huang
  2 siblings, 1 reply; 11+ messages in thread
From: Krzysztof Kozlowski @ 2025-06-04 12:57 UTC (permalink / raw)
  To: Jammy Huang, jassisinghbrar, robh, krzk+dt, conor+dt, joel,
	andrew, devicetree, linux-arm-kernel, linux-aspeed, linux-kernel

On 04/06/2025 14:55, Jammy Huang wrote:
> Add mailbox controller driver for AST27XX SoCs, which provides
> independent tx/rx mailbox between different processors. There are 4
> channels for each tx/rx mailbox and each channel has an 32-byte FIFO.
> 
>  v2 changes:
>   - Update document

This is vague. What did you update there?

Best regards,
Krzysztof


^ permalink raw reply	[flat|nested] 11+ messages in thread

* RE: [PATCH v2 0/2] ASPEED: Add mailbox driver for AST2700 series
  2025-06-04 12:57 ` [PATCH v2 0/2] ASPEED: Add mailbox driver for AST2700 series Krzysztof Kozlowski
@ 2025-06-04 13:07   ` Jammy Huang
  2025-06-04 14:10     ` Krzysztof Kozlowski
  0 siblings, 1 reply; 11+ messages in thread
From: Jammy Huang @ 2025-06-04 13:07 UTC (permalink / raw)
  To: Krzysztof Kozlowski, jassisinghbrar@gmail.com, robh@kernel.org,
	krzk+dt@kernel.org, conor+dt@kernel.org, joel@jms.id.au,
	andrew@codeconstruct.com.au, devicetree@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org,
	linux-aspeed@lists.ozlabs.org, linux-kernel@vger.kernel.org

> On 04/06/2025 14:55, Jammy Huang wrote:
> > Add mailbox controller driver for AST27XX SoCs, which provides
> > independent tx/rx mailbox between different processors. There are 4
> > channels for each tx/rx mailbox and each channel has an 32-byte FIFO.
> >
> >  v2 changes:
> >   - Update document
> 
> This is vague. What did you update there?
Sorry, let me supply some information as below.
 1. Correct error in dts example.
 2. Drop description for mbox-cell as you suggested previously.

> 
> Best regards,
> Krzysztof

Best regards,
Jammy

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH v2 0/2] ASPEED: Add mailbox driver for AST2700 series
  2025-06-04 13:07   ` Jammy Huang
@ 2025-06-04 14:10     ` Krzysztof Kozlowski
  0 siblings, 0 replies; 11+ messages in thread
From: Krzysztof Kozlowski @ 2025-06-04 14:10 UTC (permalink / raw)
  To: Jammy Huang, jassisinghbrar@gmail.com, robh@kernel.org,
	krzk+dt@kernel.org, conor+dt@kernel.org, joel@jms.id.au,
	andrew@codeconstruct.com.au, devicetree@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org,
	linux-aspeed@lists.ozlabs.org, linux-kernel@vger.kernel.org

On 04/06/2025 15:07, Jammy Huang wrote:
>> On 04/06/2025 14:55, Jammy Huang wrote:
>>> Add mailbox controller driver for AST27XX SoCs, which provides
>>> independent tx/rx mailbox between different processors. There are 4
>>> channels for each tx/rx mailbox and each channel has an 32-byte FIFO.
>>>
>>>  v2 changes:
>>>   - Update document
>>
>> This is vague. What did you update there?
> Sorry, let me supply some information as below.
>  1. Correct error in dts example.
>  2. Drop description for mbox-cell as you suggested previously.

Then please write proper, descriptive changelogs. I am sure U asked
Aspeed that already.

Best regards,
Krzysztof


^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH v2 1/2] dt-bindings: mailbox: Add ASPEED AST2700 series SoC
  2025-06-04 12:55 ` [PATCH v2 1/2] dt-bindings: mailbox: Add ASPEED AST2700 series SoC Jammy Huang
@ 2025-06-04 14:10   ` Krzysztof Kozlowski
  2025-06-04 14:35   ` Rob Herring (Arm)
  2025-06-04 15:19   ` Krzysztof Kozlowski
  2 siblings, 0 replies; 11+ messages in thread
From: Krzysztof Kozlowski @ 2025-06-04 14:10 UTC (permalink / raw)
  To: Jammy Huang, jassisinghbrar, robh, krzk+dt, conor+dt, joel,
	andrew, devicetree, linux-arm-kernel, linux-aspeed, linux-kernel

On 04/06/2025 14:55, Jammy Huang wrote:
> Introduce the mailbox module for AST27XX series SoC, which is responsible
> for interchanging messages between asymmetric processors.
> 
> Signed-off-by: Jammy Huang <jammy_huang@aspeedtech.com>


Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>


Best regards,
Krzysztof


^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH v2 1/2] dt-bindings: mailbox: Add ASPEED AST2700 series SoC
  2025-06-04 12:55 ` [PATCH v2 1/2] dt-bindings: mailbox: Add ASPEED AST2700 series SoC Jammy Huang
  2025-06-04 14:10   ` Krzysztof Kozlowski
@ 2025-06-04 14:35   ` Rob Herring (Arm)
  2025-06-04 15:19   ` Krzysztof Kozlowski
  2 siblings, 0 replies; 11+ messages in thread
From: Rob Herring (Arm) @ 2025-06-04 14:35 UTC (permalink / raw)
  To: Jammy Huang
  Cc: devicetree, conor+dt, krzk+dt, jassisinghbrar, linux-arm-kernel,
	linux-aspeed, joel, linux-kernel, andrew


On Wed, 04 Jun 2025 20:55:57 +0800, Jammy Huang wrote:
> Introduce the mailbox module for AST27XX series SoC, which is responsible
> for interchanging messages between asymmetric processors.
> 
> Signed-off-by: Jammy Huang <jammy_huang@aspeedtech.com>
> ---
>  .../mailbox/aspeed,ast2700-mailbox.yaml       | 57 +++++++++++++++++++
>  1 file changed, 57 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/mailbox/aspeed,ast2700-mailbox.yaml
> 

My bot found errors running 'make dt_binding_check' on your patch:

yamllint warnings/errors:

dtschema/dtc warnings/errors:
/builds/robherring/dt-review-ci/linux/Documentation/devicetree/bindings/mailbox/aspeed,ast2700-mailbox.example.dtb: mailbox@12c1c200 (aspeed,ast2700-mailbox): reg: [[0, 314688000], [0, 512]] is too long
	from schema $id: http://devicetree.org/schemas/mailbox/aspeed,ast2700-mailbox.yaml#

doc reference errors (make refcheckdocs):

See https://patchwork.ozlabs.org/project/devicetree-bindings/patch/20250604125558.1614523-2-jammy_huang@aspeedtech.com

The base for the series is generally the latest rc1. A different dependency
should be noted in *this* patch.

If you already ran 'make dt_binding_check' and didn't see the above
error(s), then make sure 'yamllint' is installed and dt-schema is up to
date:

pip3 install dtschema --upgrade

Please check and re-submit after running the above command yourself. Note
that DT_SCHEMA_FILES can be set to your schema file to speed up checking
your schema. However, it must be unset to test all examples with your schema.



^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH v2 1/2] dt-bindings: mailbox: Add ASPEED AST2700 series SoC
  2025-06-04 12:55 ` [PATCH v2 1/2] dt-bindings: mailbox: Add ASPEED AST2700 series SoC Jammy Huang
  2025-06-04 14:10   ` Krzysztof Kozlowski
  2025-06-04 14:35   ` Rob Herring (Arm)
@ 2025-06-04 15:19   ` Krzysztof Kozlowski
  2025-06-05  1:44     ` Jammy Huang
  2 siblings, 1 reply; 11+ messages in thread
From: Krzysztof Kozlowski @ 2025-06-04 15:19 UTC (permalink / raw)
  To: Jammy Huang, jassisinghbrar, robh, krzk+dt, conor+dt, joel,
	andrew, devicetree, linux-arm-kernel, linux-aspeed, linux-kernel

On 04/06/2025 14:55, Jammy Huang wrote:
> +
> +examples:
> +  - |
> +    #include <dt-bindings/interrupt-controller/arm-gic.h>
> +
> +    mailbox@12c1c200 {
> +        compatible = "aspeed,ast2700-mailbox";
> +        reg = <0x0 0x12c1c200 0x0 0x200>;

Last time I asked to test, you responded you will test. What happened?
You did not test. This is just disappointing.

Best regards,
Krzysztof


^ permalink raw reply	[flat|nested] 11+ messages in thread

* RE: [PATCH v2 1/2] dt-bindings: mailbox: Add ASPEED AST2700 series SoC
  2025-06-04 15:19   ` Krzysztof Kozlowski
@ 2025-06-05  1:44     ` Jammy Huang
  2025-06-05  5:48       ` Krzysztof Kozlowski
  0 siblings, 1 reply; 11+ messages in thread
From: Jammy Huang @ 2025-06-05  1:44 UTC (permalink / raw)
  To: Krzysztof Kozlowski, jassisinghbrar@gmail.com, robh@kernel.org,
	krzk+dt@kernel.org, conor+dt@kernel.org, joel@jms.id.au,
	andrew@codeconstruct.com.au, devicetree@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org,
	linux-aspeed@lists.ozlabs.org, linux-kernel@vger.kernel.org

> On 04/06/2025 14:55, Jammy Huang wrote:
> > +
> > +examples:
> > +  - |
> > +    #include <dt-bindings/interrupt-controller/arm-gic.h>
> > +
> > +    mailbox@12c1c200 {
> > +        compatible = "aspeed,ast2700-mailbox";
> > +        reg = <0x0 0x12c1c200 0x0 0x200>;
> 
> Last time I asked to test, you responded you will test. What happened?
> You did not test. This is just disappointing.
I did test for my last patch. In the end, the errors shown as below did not include ast2700-mailbox.
So I think it is ok. I will check what's wrong on my environment.

  CHKDT   ./Documentation/devicetree/bindings
/home/osboxes/linux_torvalds/Documentation/devicetree/bindings/crypto/inside-secure,safexcel-eip93.yaml: properties:compatible:oneOf:1:items: 'oneOf' conditional failed, one must be fixed:
        [{'not': {}, 'description': 'Need a SoC specific compatible'}, {'enum': ['inside-secure,safexcel-eip93i', 'inside-secure,safexcel-eip93ie', 'inside-secure,safexcel-eip93is', 'inside-secure,safexcel-eip93iw']}] is not of type 'object'
        Additional properties are not allowed ('not' was unexpected)
        Additional properties are not allowed ('description', 'not' were unexpected)
        from schema $id: http://devicetree.org/meta-schemas/string-array.yaml#
/home/osboxes/linux_torvalds/Documentation/devicetree/bindings/display/msm/mdp4.yaml: properties:clock-names:items: 'oneOf' conditional failed, one must be fixed:
        [{'const': 'core_clk'}, {'const': 'iface_clk'}, {'const': 'bus_clk'}, {'const': 'lut_clk'}, {'const': 'hdmi_clk'}, {'const': 'tv_clk'}, {'const': 'lcdc_clk'}, {'const': 'pxo', 'description': 'XO used to drive the internal LVDS PLL'}] is not of type 'object'
        Additional properties are not allowed ('description' was unexpected)
        from schema $id: http://devicetree.org/meta-schemas/string-array.yaml#
/home/osboxes/linux_torvalds/Documentation/devicetree/bindings/crypto/marvell,orion-crypto.yaml: properties:reg-names:items: 'oneOf' conditional failed, one must be fixed:
        [{'const': 'regs'}, {'const': 'sram', 'deprecated': True}] is not of type 'object'
        Additional properties are not allowed ('deprecated' was unexpected)
        from schema $id: http://devicetree.org/meta-schemas/string-array.yaml#
/home/osboxes/linux_torvalds/Documentation/devicetree/bindings/input/touchscreen/ti,ads7843.yaml: properties:ti,x-plate-ohms: '$ref' should not be valid under {'const': '$ref'}
        hint: Standard unit suffix properties don't need a type $ref
        from schema $id: http://devicetree.org/meta-schemas/core.yaml#
/home/osboxes/linux_torvalds/Documentation/devicetree/bindings/input/touchscreen/ti,ads7843.yaml: properties:ti,y-plate-ohms: '$ref' should not be valid under {'const': '$ref'}
        hint: Standard unit suffix properties don't need a type $ref
        from schema $id: http://devicetree.org/meta-schemas/core.yaml#
/home/osboxes/linux_torvalds/Documentation/devicetree/bindings/iio/adc/adi,ad7173.yaml: oneOf: Missing additionalProperties/unevaluatedProperties constraint

/home/osboxes/linux_torvalds/Documentation/devicetree/bindings/iio/adc/adi,ad7173.yaml: oneOf: Missing additionalProperties/unevaluatedProperties constraint

/home/osboxes/linux_torvalds/Documentation/devicetree/bindings/timer/renesas,ostm.yaml: if:properties:compatible: Additional properties are not allowed ('not' was unexpected)
        from schema $id: http://devicetree.org/meta-schemas/string-array.yaml#
/home/osboxes/linux_torvalds/Documentation/devicetree/bindings/mailbox/qcom,apcs-kpss-global.yaml: oneOf: Missing additionalProperties/unevaluatedProperties constraint

/home/osboxes/linux_torvalds/Documentation/devicetree/bindings/mailbox/qcom,apcs-kpss-global.yaml: oneOf: Missing additionalProperties/unevaluatedProperties constraint

/home/osboxes/linux_torvalds/Documentation/devicetree/bindings/dma/adi,axi-dmac.yaml: properties:adi,channels:type: 'boolean' was expected
        hint: A vendor boolean property can use "type: boolean"
        from schema $id: http://devicetree.org/meta-schemas/vendor-props.yaml#
  LINT    ./Documentation/devicetree/bindings

> 
> Best regards,
> Krzysztof

^ permalink raw reply	[flat|nested] 11+ messages in thread

* Re: [PATCH v2 1/2] dt-bindings: mailbox: Add ASPEED AST2700 series SoC
  2025-06-05  1:44     ` Jammy Huang
@ 2025-06-05  5:48       ` Krzysztof Kozlowski
  0 siblings, 0 replies; 11+ messages in thread
From: Krzysztof Kozlowski @ 2025-06-05  5:48 UTC (permalink / raw)
  To: Jammy Huang, jassisinghbrar@gmail.com, robh@kernel.org,
	krzk+dt@kernel.org, conor+dt@kernel.org, joel@jms.id.au,
	andrew@codeconstruct.com.au, devicetree@vger.kernel.org,
	linux-arm-kernel@lists.infradead.org,
	linux-aspeed@lists.ozlabs.org, linux-kernel@vger.kernel.org

On 05/06/2025 03:44, Jammy Huang wrote:
>> On 04/06/2025 14:55, Jammy Huang wrote:
>>> +
>>> +examples:
>>> +  - |
>>> +    #include <dt-bindings/interrupt-controller/arm-gic.h>
>>> +
>>> +    mailbox@12c1c200 {
>>> +        compatible = "aspeed,ast2700-mailbox";
>>> +        reg = <0x0 0x12c1c200 0x0 0x200>;
>>
>> Last time I asked to test, you responded you will test. What happened?
>> You did not test. This is just disappointing.
> I did test for my last patch. In the end, the errors shown as below did not include ast2700-mailbox.
> So I think it is ok. I will check what's wrong on my environment.

No, it is not ok and with simple dt_binding_check I immediately
reproduced the issue (wrong addresses in example), thus you did not test it.

Best regards,
Krzysztof


^ permalink raw reply	[flat|nested] 11+ messages in thread

end of thread, other threads:[~2025-06-05  5:50 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-06-04 12:55 [PATCH v2 0/2] ASPEED: Add mailbox driver for AST2700 series Jammy Huang
2025-06-04 12:55 ` [PATCH v2 1/2] dt-bindings: mailbox: Add ASPEED AST2700 series SoC Jammy Huang
2025-06-04 14:10   ` Krzysztof Kozlowski
2025-06-04 14:35   ` Rob Herring (Arm)
2025-06-04 15:19   ` Krzysztof Kozlowski
2025-06-05  1:44     ` Jammy Huang
2025-06-05  5:48       ` Krzysztof Kozlowski
2025-06-04 12:55 ` [PATCH v2 2/2] mailbox: aspeed: add mailbox driver for AST27XX " Jammy Huang
2025-06-04 12:57 ` [PATCH v2 0/2] ASPEED: Add mailbox driver for AST2700 series Krzysztof Kozlowski
2025-06-04 13:07   ` Jammy Huang
2025-06-04 14:10     ` Krzysztof Kozlowski

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).