From: Ben Dooks <ben.dooks@sifive.com>
To: Jeremy Kerr <jk@codeconstruct.com.au>, linux-i3c@lists.infradead.org
Cc: devicetree@vger.kernel.org,
Matt Johnston <matt@codeconstruct.com.au>,
Vitor Soares <ivitro@gmail.com>,
Alexandre Belloni <alexandre.belloni@bootlin.com>,
Jack Chen <zenghuchen@google.com>,
Billy Tsai <billy_tsai@aspeedtech.com>,
Dylan Hung <dylan_hung@aspeedtech.com>,
Joel Stanley <joel@jms.id.au>, Andrew Jeffery <andrew@aj.id.au>
Subject: Re: [PATCH v2 3/3] i3c: ast2600: Add AST2600 platform-specific driver
Date: Thu, 30 Mar 2023 20:22:17 +0100 [thread overview]
Message-ID: <b6d88196-aafc-4880-9de3-7725e253cfa7@sifive.com> (raw)
In-Reply-To: <d4424535a88f529ca8efa67246ee25a5d810c6c1.1680160851.git.jk@codeconstruct.com.au>
On 30/03/2023 08:22, Jeremy Kerr wrote:
> Now that we have platform-specific infrastructure for the dw i3c driver,
> add platform support for the ASPEED AST2600 SoC.
>
> The AST2600 has a small set of "i3c global" registers, providing
> platform-level i3c configuration outside of the i3c core.
>
> For the ast2600, we need a couple of extra setup operations:
>
> - on probe: find the i3c global register set and parse the SDA pullup
> resistor values
>
> - on init: set the pullups accordingly, and set the i3c instance IDs
>
> Signed-off-by: Jeremy Kerr <jk@codeconstruct.com.au>
>
> ---
> v2:
> - use new dw platform infrastructure
> ---
> MAINTAINERS | 6 +
> drivers/i3c/master/Kconfig | 14 ++
> drivers/i3c/master/Makefile | 1 +
> drivers/i3c/master/ast2600-i3c-master.c | 169 ++++++++++++++++++++++++
> 4 files changed, 190 insertions(+)
> create mode 100644 drivers/i3c/master/ast2600-i3c-master.c
>
> diff --git a/MAINTAINERS b/MAINTAINERS
> index bd8ebc25afcf..ecadd5ccf771 100644
> --- a/MAINTAINERS
> +++ b/MAINTAINERS
> @@ -9714,6 +9714,12 @@ S: Orphan
> F: Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.yaml
> F: drivers/i3c/master/dw*
>
> +I3C DRIVER FOR ASPEED AST2600
> +M: Jeremy Kerr <jk@codeconstruct.com.au>
> +S: Maintained
> +F: Documentation/devicetree/bindings/i3c/aspeed,ast2600-i3c.yaml
> +F: drivers/i3c/master/ast2600-i3c-master.c
> +
> I3C SUBSYSTEM
> M: Alexandre Belloni <alexandre.belloni@bootlin.com>
> L: linux-i3c@lists.infradead.org (moderated for non-subscribers)
> diff --git a/drivers/i3c/master/Kconfig b/drivers/i3c/master/Kconfig
> index 3b8f95916f46..90dee3ec5520 100644
> --- a/drivers/i3c/master/Kconfig
> +++ b/drivers/i3c/master/Kconfig
> @@ -22,6 +22,20 @@ config DW_I3C_MASTER
> This driver can also be built as a module. If so, the module
> will be called dw-i3c-master.
>
> +config AST2600_I3C_MASTER
> + tristate "ASPEED AST2600 I3C master driver"
> + depends on DW_I3C_MASTER
> + depends on ARCH_ASPEED || COMPILE_TEST
> + select MFD_SYSCON
> + help
> + Support for ASPEED AST2600 I3C Controller.
> +
> + This hardware is an instance of the DW I3C controller; this
> + driver adds platform- specific support for AST2600 hardware.
> +
> + This driver can also be built as a module. If so, the module
> + will be called ast2600-i3c-master.
> +
> config SVC_I3C_MASTER
> tristate "Silvaco I3C Dual-Role Master driver"
> depends on I3C
> diff --git a/drivers/i3c/master/Makefile b/drivers/i3c/master/Makefile
> index b3fee0f690b2..3e97960160bc 100644
> --- a/drivers/i3c/master/Makefile
> +++ b/drivers/i3c/master/Makefile
> @@ -1,5 +1,6 @@
> # SPDX-License-Identifier: GPL-2.0-only
> obj-$(CONFIG_CDNS_I3C_MASTER) += i3c-master-cdns.o
> obj-$(CONFIG_DW_I3C_MASTER) += dw-i3c-master.o
> +obj-$(CONFIG_AST2600_I3C_MASTER) += ast2600-i3c-master.o
> obj-$(CONFIG_SVC_I3C_MASTER) += svc-i3c-master.o
> obj-$(CONFIG_MIPI_I3C_HCI) += mipi-i3c-hci/
> diff --git a/drivers/i3c/master/ast2600-i3c-master.c b/drivers/i3c/master/ast2600-i3c-master.c
> new file mode 100644
> index 000000000000..d3d7b7d19f22
> --- /dev/null
> +++ b/drivers/i3c/master/ast2600-i3c-master.c
> @@ -0,0 +1,169 @@
> +// SPDX-License-Identifier: GPL-2.0
> +/*
> + * Copyright (c) 2023 Code Construct
> + *
> + * Author: Jeremy Kerr <jk@codeconstruct.com.au>
> + */
> +
> +#include <linux/mfd/syscon.h>
> +#include <linux/module.h>
> +#include <linux/of.h>
> +#include <linux/of_device.h>
> +#include <linux/platform_device.h>
> +#include <linux/regmap.h>
> +
> +#include "dw-i3c-master.h"
> +
> +/* AST2600-specific global register set */
> +#define AST2600_I3CG_REG0(idx) (((idx) * 4 * 4) + 0x10)
> +#define AST2600_I3CG_REG1(idx) (((idx) * 4 * 4) + 0x14)
> +
> +#define AST2600_I3CG_REG0_SDA_PULLUP_EN_MASK GENMASK(29, 28)
> +#define AST2600_I3CG_REG0_SDA_PULLUP_EN_2K (0x0 << 28)
> +#define AST2600_I3CG_REG0_SDA_PULLUP_EN_750 (0x2 << 28)
> +
> +#define AST2600_I3CG_REG1_I2C_MODE BIT(0)
> +#define AST2600_I3CG_REG1_TEST_MODE BIT(1)
> +#define AST2600_I3CG_REG1_ACT_MODE_MASK GENMASK(3, 2)
> +#define AST2600_I3CG_REG1_ACT_MODE(x) (((x) << 2) & AST2600_I3CG_REG1_ACT_MODE_MASK)
> +#define AST2600_I3CG_REG1_PENDING_INT_MASK GENMASK(7, 4)
> +#define AST2600_I3CG_REG1_PENDING_INT(x) (((x) << 4) & AST2600_I3CG_REG1_PENDING_INT_MASK)
> +#define AST2600_I3CG_REG1_SA_MASK GENMASK(14, 8)
> +#define AST2600_I3CG_REG1_SA(x) (((x) << 8) & AST2600_I3CG_REG1_SA_MASK)
> +#define AST2600_I3CG_REG1_SA_EN BIT(15)
> +#define AST2600_I3CG_REG1_INST_ID_MASK GENMASK(19, 16)
> +#define AST2600_I3CG_REG1_INST_ID(x) (((x) << 16) & AST2600_I3CG_REG1_INST_ID_MASK)
> +
> +#define AST2600_DEFAULT_SDA_PULLUP_OHMS 2000
> +
> +struct ast2600_i3c_platform_data {
> + struct regmap *global_regs;
> + unsigned int global_idx;
> + unsigned int sda_pullup;
> +};
> +
> +static int ast2600_i3c_pullup_to_reg(unsigned int ohms, u32 *regp)
> +{
> + u32 reg;
> +
> + switch (ohms) {
> + case 2000:
> + reg = AST2600_I3CG_REG0_SDA_PULLUP_EN_2K;
> + break;
> + case 750:
> + reg = AST2600_I3CG_REG0_SDA_PULLUP_EN_750;
> + break;
> + case 545:
> + reg = AST2600_I3CG_REG0_SDA_PULLUP_EN_2K |
> + AST2600_I3CG_REG0_SDA_PULLUP_EN_750;
> + break;
> + default:
> + return -EINVAL;
> + }
> +
> + if (regp)
> + *regp = reg;
> +
> + return 0;
> +}
> +
> +static int ast2600_i3c_init(struct dw_i3c_master *master)
> +{
> + struct ast2600_i3c_platform_data *pdata = master->platform_data;
> + u32 reg = 0;
> + int rc;
> +
> + /* reg0: set SDA pullup values */
> + rc = ast2600_i3c_pullup_to_reg(pdata->sda_pullup, ®);
> + if (rc)
> + return rc;
> +
> + rc = regmap_write(pdata->global_regs,
> + AST2600_I3CG_REG0(pdata->global_idx), reg);
> + if (rc)
> + return rc;
> +
> + /* reg1: set up the instance id, but leave everything else disabled,
> + * as it's all for client mode
> + */
> + reg = AST2600_I3CG_REG1_INST_ID(pdata->global_idx);
> + rc = regmap_write(pdata->global_regs,
> + AST2600_I3CG_REG1(pdata->global_idx), reg);
> +
> + return rc;
> +}
> +
> +const struct dw_i3c_platform_ops ast2600_i3c_ops = {
> + .init = ast2600_i3c_init,
> +};
> +
> +static int ast2600_i3c_probe(struct platform_device *pdev)
> +{
> + struct device_node *np = pdev->dev.of_node;
> + struct ast2600_i3c_platform_data *pdata;
> + struct of_phandle_args gspec;
> + struct dw_i3c_master *dw_i3c;
> + int rc;
> +
> + dw_i3c = devm_kzalloc(&pdev->dev, sizeof(*dw_i3c) + sizeof(*pdata),
> + GFP_KERNEL);
> + if (!dw_i3c)
> + return -ENOMEM;
How about wrapping the dw_i3c_master struct in an as2600_master struct
and then you can use container of, and simply do sizeof(struct
ast2600_master) ?
Also removes the need below to set pdata at-all
> + pdata = (void *)(dw_i3c + 1);
> +
> + rc = of_parse_phandle_with_fixed_args(np, "aspeed,global-regs", 1, 0,
> + &gspec);
> + if (rc)
> + return -ENODEV;
> +
> + pdata->global_regs = syscon_node_to_regmap(gspec.np);
> + of_node_put(gspec.np);
> +
> + if (IS_ERR(pdata->global_regs))
> + return PTR_ERR(pdata->global_regs);
> +
> + pdata->global_idx = gspec.args[0];
> +
> + rc = of_property_read_u32(np, "sda-pullup-ohms", &pdata->sda_pullup);
> + if (rc)
> + pdata->sda_pullup = AST2600_DEFAULT_SDA_PULLUP_OHMS;
> +
> + rc = ast2600_i3c_pullup_to_reg(pdata->sda_pullup, NULL);
> + if (rc)
> + dev_err(&dw_i3c->base.dev, "invalid sda-pullup value %d\n",
> + pdata->sda_pullup);
> +
> + dw_i3c->platform_ops = &ast2600_i3c_ops;
> + dw_i3c->platform_data = pdata;
> + rc = dw_i3c_common_probe(dw_i3c, pdev);
> +
> + return rc;
> +}
> +
> +static int ast2600_i3c_remove(struct platform_device *pdev)
> +{
> + struct dw_i3c_master *dw_i3c = platform_get_drvdata(pdev);
> +
> + return dw_i3c_common_remove(dw_i3c);
> +}
> +
> +static const struct of_device_id ast2600_i3c_master_of_match[] = {
> + { .compatible = "aspeed,ast2600-i3c", },
> + {},
> +};
> +MODULE_DEVICE_TABLE(of, ast2600_i3c_master_of_match);
> +
> +static struct platform_driver ast2600_i3c_driver = {
> + .probe = ast2600_i3c_probe,
> + .remove = ast2600_i3c_remove,
> + .driver = {
> + .name = "ast2600-i3c-master",
> + .of_match_table = of_match_ptr(ast2600_i3c_master_of_match),
given this is probably an of-device only, of_match_ptr not needed here?
> + },
> +};
> +module_platform_driver(ast2600_i3c_driver);
> +
> +MODULE_AUTHOR("Jeremy Kerr <jk@codeconstruct.com.au>");
> +MODULE_DESCRIPTION("ASPEED AST2600 I3C driver");
> +MODULE_LICENSE("GPL");
--
linux-i3c mailing list
linux-i3c@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-i3c
next prev parent reply other threads:[~2023-03-30 19:22 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2023-03-30 7:22 [PATCH v2 0/3] i3c dw,ast2600: Add a driver for the AST2600 i3c controller Jeremy Kerr
2023-03-30 7:22 ` [PATCH v2 1/3] i3c: dw: Add infrastructure for platform-specific implementations Jeremy Kerr
2023-03-30 7:22 ` [PATCH v2 2/3] dt-bindings: i3c: Add AST2600 i3c controller Jeremy Kerr
2023-03-30 10:02 ` Krzysztof Kozlowski
2023-03-30 7:22 ` [PATCH v2 3/3] i3c: ast2600: Add AST2600 platform-specific driver Jeremy Kerr
2023-03-30 19:22 ` Ben Dooks [this message]
2023-03-31 2:04 ` Jeremy Kerr
2023-03-30 14:43 ` [PATCH v2 0/3] i3c dw,ast2600: Add a driver for the AST2600 i3c controller Jack Chen
2023-03-31 2:33 ` Jeremy Kerr
2023-03-31 7:44 ` Alexandre Belloni
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=b6d88196-aafc-4880-9de3-7725e253cfa7@sifive.com \
--to=ben.dooks@sifive.com \
--cc=alexandre.belloni@bootlin.com \
--cc=andrew@aj.id.au \
--cc=billy_tsai@aspeedtech.com \
--cc=devicetree@vger.kernel.org \
--cc=dylan_hung@aspeedtech.com \
--cc=ivitro@gmail.com \
--cc=jk@codeconstruct.com.au \
--cc=joel@jms.id.au \
--cc=linux-i3c@lists.infradead.org \
--cc=matt@codeconstruct.com.au \
--cc=zenghuchen@google.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