Openbmc archive mirror
 help / color / mirror / Atom feed
From: Dmitriy Sharikhin <d.sharikhin@yadro.com>
To: "openbmc@lists.ozlabs.org" <openbmc@lists.ozlabs.org>
Cc: Alexander Amelkin <a.amelkin@yadro.com>,
	Igor Kononenko <i.kononenko@yadro.com>,
	"Alexander A. Filippov" <a.filippov@yadro.com>
Subject: [PATCH u-boot, v2019.04-aspeed-openbmc v1 1/3] pinctrl: aspeed: append SGPM nodes
Date: Wed, 15 May 2024 16:05:27 +0000	[thread overview]
Message-ID: <8ab964639d8516ebeef7035b657bb4df7ed08bdd.camel@yadro.com> (raw)

For correct SGPIO operation we need SGPM pinctrl function.
Declare it according to datasheet for AST2400/AST2500/AST2600

Signed-off-by: Dmitrii Sharikhin <d.sharikhin@yadro.com>
---
 drivers/pinctrl/aspeed/pinctrl_ast2400.c |  5 +++++
 drivers/pinctrl/aspeed/pinctrl_ast2500.c |  5 +++++
 drivers/pinctrl/aspeed/pinctrl_ast2600.c | 13 +++++++++++++
 3 files changed, 23 insertions(+)

diff --git a/drivers/pinctrl/aspeed/pinctrl_ast2400.c b/drivers/pinctrl/aspeed/pinctrl_ast2400.c
index 531e116c79..193fbbc24e 100644
--- a/drivers/pinctrl/aspeed/pinctrl_ast2400.c
+++ b/drivers/pinctrl/aspeed/pinctrl_ast2400.c
@@ -117,6 +117,10 @@ static struct aspeed_sig_desc sdio2_link[] = {
 	{ 0x90, BIT(1), 0	},
 };
 
+static struct aspeed_sig_desc sgpm_link[] = {
+	{ 0x84, GENMASK(11, 8), 0},
+};
+
 static struct aspeed_sig_desc spi1cs1_link[] = {
 	{ 0x80, BIT(15), 0},
 };
@@ -160,6 +164,7 @@ static const struct aspeed_group_config ast2400_groups[] = {
 	{ "I2C14", 1, i2c14_link },
 	{ "SD2", 1, sdio2_link },
 	{ "SD1", 1, sdio1_link },
+	{ "SGPM", 1, sgpm_link},
 	{ "SPI1", 1, spi1_link},
 	{ "SPI1CS1", 1, spi1cs1_link},
 	{ "TXD3", 1, txd3_link },
diff --git a/drivers/pinctrl/aspeed/pinctrl_ast2500.c b/drivers/pinctrl/aspeed/pinctrl_ast2500.c
index 395aa2080f..3c0ae7b454 100644
--- a/drivers/pinctrl/aspeed/pinctrl_ast2500.c
+++ b/drivers/pinctrl/aspeed/pinctrl_ast2500.c
@@ -121,6 +121,10 @@ static struct aspeed_sig_desc sdio2_link[] = {
 	{ 0x90, BIT(1), 0	},
 };
 
+static struct aspeed_sig_desc sgpm_link[] = {
+	{ 0x84, GENMASK(11, 8), 0},
+};
+
 static struct aspeed_sig_desc spi1cs1_link[] = {
 	{ 0x80, BIT(15), 0},
 };
@@ -157,6 +161,7 @@ static const struct aspeed_group_config ast2500_groups[] = {
 	{ "I2C14", 1, i2c14_link },
 	{ "SD2", 1, sdio2_link },
 	{ "SD1", 1, sdio1_link },
+	{ "SGPM", 1, sgpm_link },
 	{ "SPI1", 1, spi1_link},
 	{ "SPI1CS1", 1, spi1cs1_link},
 	{ "USB2AH", 1, usb2ah_link },
diff --git a/drivers/pinctrl/aspeed/pinctrl_ast2600.c b/drivers/pinctrl/aspeed/pinctrl_ast2600.c
index c10b3c08ac..148109482c 100644
--- a/drivers/pinctrl/aspeed/pinctrl_ast2600.c
+++ b/drivers/pinctrl/aspeed/pinctrl_ast2600.c
@@ -300,6 +300,17 @@ static struct aspeed_sig_desc fmcquad_link[] = {
 	{ 0x438, GENMASK(5, 4), 0 },
 };
 
+static struct aspeed_sig_desc sgpm1_link[] = {
+	{ 0x414, GENMASK(27, 24), 0 },
+};
+
+static struct aspeed_sig_desc sgpm2_link[] = {
+	{ 0x410, GENMASK(7, 4), 1 },
+	{ 0x4b0, GENMASK(7, 4), 1 },
+	{ 0x690, GENMASK(7, 4), 1 },
+	{ 0x6d0, GENMASK(7, 4), 0 },
+};
+
 static struct aspeed_sig_desc spi1_link[] = {
 	{ 0x438, GENMASK(13, 11), 0 },
 };
@@ -428,6 +439,8 @@ static const struct aspeed_group_config ast2600_groups[] = {
 	{ "EMMC", ARRAY_SIZE(emmc_link), emmc_link },
 	{ "EMMCG8", ARRAY_SIZE(emmcg8_link), emmcg8_link },
 	{ "FMCQUAD", ARRAY_SIZE(fmcquad_link), fmcquad_link },
+	{ "SGPM1", ARRAY_SIZE(sgpm1_link), sgpm1_link },
+	{ "SGPM2", ARRAY_SIZE(sgpm2_link), sgpm2_link },
 	{ "SPI1", ARRAY_SIZE(spi1_link), spi1_link },
 	{ "SPI1ABR", ARRAY_SIZE(spi1abr_link), spi1abr_link },
 	{ "SPI1CS1", ARRAY_SIZE(spi1cs1_link), spi1cs1_link },
-- 
2.39.2


                 reply	other threads:[~2024-05-15 16:15 UTC|newest]

Thread overview: [no followups] expand[flat|nested]  mbox.gz  Atom feed

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=8ab964639d8516ebeef7035b657bb4df7ed08bdd.camel@yadro.com \
    --to=d.sharikhin@yadro.com \
    --cc=a.amelkin@yadro.com \
    --cc=a.filippov@yadro.com \
    --cc=i.kononenko@yadro.com \
    --cc=openbmc@lists.ozlabs.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;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).