All of lore.kernel.org
 help / color / mirror / Atom feed
From: Brad Bishop <bradleyb@fuzziesquirrel.com>
To: joel@jms.id.au
Cc: openbmc@lists.ozlabs.org
Subject: [PATCH v2 linux dev-5.3 2/4] ARM: aspeed-g6: lpc: add compatible strings
Date: Thu, 19 Sep 2019 11:23:33 -0400	[thread overview]
Message-ID: <20190919152340.23133-3-bradleyb@fuzziesquirrel.com> (raw)
In-Reply-To: <20190919152340.23133-1-bradleyb@fuzziesquirrel.com>

Assume the AST2600 SoC contains the same LPC devices as the AST2500.

Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
---
v2:
  - removed DT binding documentation changes
---
 drivers/char/ipmi/bt-bmc.c            | 1 +
 drivers/char/ipmi/kcs_bmc_aspeed.c    | 1 +
 drivers/reset/reset-simple.c          | 1 +
 drivers/soc/aspeed/aspeed-lpc-ctrl.c  | 1 +
 drivers/soc/aspeed/aspeed-lpc-snoop.c | 2 ++
 5 files changed, 6 insertions(+)

diff --git a/drivers/char/ipmi/bt-bmc.c b/drivers/char/ipmi/bt-bmc.c
index 40b9927c072c..0e600449931b 100644
--- a/drivers/char/ipmi/bt-bmc.c
+++ b/drivers/char/ipmi/bt-bmc.c
@@ -513,6 +513,7 @@ static int bt_bmc_remove(struct platform_device *pdev)
 static const struct of_device_id bt_bmc_match[] = {
 	{ .compatible = "aspeed,ast2400-ibt-bmc" },
 	{ .compatible = "aspeed,ast2500-ibt-bmc" },
+	{ .compatible = "aspeed,ast2600-ibt-bmc" },
 	{ },
 };
 
diff --git a/drivers/char/ipmi/kcs_bmc_aspeed.c b/drivers/char/ipmi/kcs_bmc_aspeed.c
index 3c955946e647..a0a8bb89c9b3 100644
--- a/drivers/char/ipmi/kcs_bmc_aspeed.c
+++ b/drivers/char/ipmi/kcs_bmc_aspeed.c
@@ -301,6 +301,7 @@ static int aspeed_kcs_remove(struct platform_device *pdev)
 static const struct of_device_id ast_kcs_bmc_match[] = {
 	{ .compatible = "aspeed,ast2400-kcs-bmc" },
 	{ .compatible = "aspeed,ast2500-kcs-bmc" },
+	{ .compatible = "aspeed,ast2600-kcs-bmc" },
 	{ }
 };
 MODULE_DEVICE_TABLE(of, ast_kcs_bmc_match);
diff --git a/drivers/reset/reset-simple.c b/drivers/reset/reset-simple.c
index 1154f7b1f4dd..2fe9c889a75a 100644
--- a/drivers/reset/reset-simple.c
+++ b/drivers/reset/reset-simple.c
@@ -125,6 +125,7 @@ static const struct of_device_id reset_simple_dt_ids[] = {
 		.data = &reset_simple_active_low },
 	{ .compatible = "aspeed,ast2400-lpc-reset" },
 	{ .compatible = "aspeed,ast2500-lpc-reset" },
+	{ .compatible = "aspeed,ast2600-lpc-reset" },
 	{ .compatible = "bitmain,bm1880-reset",
 		.data = &reset_simple_active_low },
 	{ /* sentinel */ },
diff --git a/drivers/soc/aspeed/aspeed-lpc-ctrl.c b/drivers/soc/aspeed/aspeed-lpc-ctrl.c
index 01ed21e8bfee..12e4421dee37 100644
--- a/drivers/soc/aspeed/aspeed-lpc-ctrl.c
+++ b/drivers/soc/aspeed/aspeed-lpc-ctrl.c
@@ -291,6 +291,7 @@ static int aspeed_lpc_ctrl_remove(struct platform_device *pdev)
 static const struct of_device_id aspeed_lpc_ctrl_match[] = {
 	{ .compatible = "aspeed,ast2400-lpc-ctrl" },
 	{ .compatible = "aspeed,ast2500-lpc-ctrl" },
+	{ .compatible = "aspeed,ast2600-lpc-ctrl" },
 	{ },
 };
 
diff --git a/drivers/soc/aspeed/aspeed-lpc-snoop.c b/drivers/soc/aspeed/aspeed-lpc-snoop.c
index 48f7ac238861..c7b4ac066b40 100644
--- a/drivers/soc/aspeed/aspeed-lpc-snoop.c
+++ b/drivers/soc/aspeed/aspeed-lpc-snoop.c
@@ -325,6 +325,8 @@ static const struct of_device_id aspeed_lpc_snoop_match[] = {
 	  .data = &ast2400_model_data },
 	{ .compatible = "aspeed,ast2500-lpc-snoop",
 	  .data = &ast2500_model_data },
+	{ .compatible = "aspeed,ast2600-lpc-snoop",
+	  .data = &ast2500_model_data },
 	{ },
 };
 
-- 
2.21.0

  parent reply	other threads:[~2019-09-19 15:23 UTC|newest]

Thread overview: 24+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-09-19 15:23 [PATCH v2 linux dev-5.3 0/5] ARM: dts: aspeed-g6 lpc, rainier Brad Bishop
2019-09-19 15:23 ` [PATCH v2 linux dev-5.3 1/4] dt-bindings: lpc: add aspeed-g6 compatible strings Brad Bishop
2019-09-19 15:23 ` Brad Bishop [this message]
2019-09-20  6:31   ` [PATCH v2 linux dev-5.3 2/4] ARM: aspeed-g6: lpc: add " Andrew Jeffery
2019-09-24 19:50     ` Brad Bishop
2019-09-19 15:23 ` [PATCH v2 linux dev-5.3 3/4] ARM: dts: aspeed-g6: Add lpc devices Brad Bishop
2019-09-20  6:37   ` Andrew Jeffery
2019-09-24 19:51     ` Brad Bishop
2019-09-19 15:23 ` [PATCH v2 linux dev-5.3 4/4] ARM: dts: aspeed: add Rainier system Brad Bishop
2019-09-20  7:25   ` Andrew Jeffery
2019-09-24 19:53     ` Brad Bishop
2019-09-19 15:23 ` [PATCH v2 linux dev-5.3 0/5] ARM: dts: aspeed-g6 lpc, rainier Brad Bishop
2019-09-19 15:23 ` [PATCH v2 linux dev-5.3 1/4] dt-bindings: lpc: add aspeed-g6 compatible strings Brad Bishop
2019-09-19 16:25   ` Eddie James
2019-09-20  6:30     ` Andrew Jeffery
2019-09-24 19:49       ` Brad Bishop
2019-09-19 15:23 ` [PATCH v2 linux dev-5.3 2/4] ARM: aspeed-g6: lpc: add " Brad Bishop
2019-09-19 16:26   ` Eddie James
2019-09-19 15:23 ` [PATCH v2 linux dev-5.3 3/4] ARM: dts: aspeed-g6: Add lpc devices Brad Bishop
2019-09-19 16:29   ` Eddie James
2019-09-20  8:04   ` Andrew Jeffery
2019-09-19 15:23 ` [PATCH v2 linux dev-5.3 4/4] ARM: dts: aspeed: add Rainier system Brad Bishop
2019-09-19 16:31   ` Eddie James
2019-09-19 15:32 ` [PATCH v2 linux dev-5.3 0/5] ARM: dts: aspeed-g6 lpc, rainier Brad Bishop

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=20190919152340.23133-3-bradleyb@fuzziesquirrel.com \
    --to=bradleyb@fuzziesquirrel.com \
    --cc=joel@jms.id.au \
    --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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.