linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [3/4] ACPI: APD: Add a fmw property is_raven
@ 2020-07-28  8:40 Akshu Agrawal
  0 siblings, 0 replies; 3+ messages in thread
From: Akshu Agrawal @ 2020-07-28  8:40 UTC (permalink / raw)
  To: akshu.agrawal
  Cc: sboyd, rafael, Rafael J. Wysocki, Len Brown, open list:ACPI, open list

Since there is slight difference in AMD RV based soc in misc
clk architecture. The fmw property will help in differentiating
the SoCs.

Signed-off-by: Akshu Agrawal <akshu.agrawal@amd.com>
---
 drivers/acpi/acpi_apd.c               | 4 ++++
 include/linux/platform_data/clk-fch.h | 1 +
 2 files changed, 5 insertions(+)

diff --git a/drivers/acpi/acpi_apd.c b/drivers/acpi/acpi_apd.c
index 2d99e46add1a..d879ba28826c 100644
--- a/drivers/acpi/acpi_apd.c
+++ b/drivers/acpi/acpi_apd.c
@@ -82,6 +82,7 @@ static int misc_check_res(struct acpi_resource *ares, void *data)
 static int fch_misc_setup(struct apd_private_data *pdata)
 {
 	struct acpi_device *adev = pdata->adev;
+	const union acpi_object *obj;
 	struct platform_device *clkdev;
 	struct fch_clk_data *clk_data;
 	struct resource_entry *rentry;
@@ -98,6 +99,9 @@ static int fch_misc_setup(struct apd_private_data *pdata)
 	if (ret < 0)
 		return -ENOENT;
 
+	acpi_dev_get_property(adev, "is-rv", ACPI_TYPE_INTEGER, &obj);
+	clk_data->is_rv = obj->integer.value;
+
 	list_for_each_entry(rentry, &resource_list, node) {
 		clk_data->base = devm_ioremap(&adev->dev, rentry->res->start,
 					      resource_size(rentry->res));
diff --git a/include/linux/platform_data/clk-fch.h b/include/linux/platform_data/clk-fch.h
index 850ca776156d..b9f682459f08 100644
--- a/include/linux/platform_data/clk-fch.h
+++ b/include/linux/platform_data/clk-fch.h
@@ -12,6 +12,7 @@
 
 struct fch_clk_data {
 	void __iomem *base;
+	u32 is_rv;
 };
 
 #endif /* __CLK_FCH_H */
-- 
2.20.1


^ permalink raw reply related	[flat|nested] 3+ messages in thread
* [0/4] Extend AMD SoC general purpose clk for all versions
@ 2020-07-31 13:36 Akshu Agrawal
  2020-07-31 13:36 ` [3/4] ACPI: APD: Add a fmw property is_raven Akshu Agrawal
  0 siblings, 1 reply; 3+ messages in thread
From: Akshu Agrawal @ 2020-07-31 13:36 UTC (permalink / raw)
  To: akshu.agrawal
  Cc: sboyd, rafael, rjw, lenb, mturquette, linux-acpi, linux-kernel,
	linux-clk, rahul.tanwar

Hi,

This series of patch does the following:
1. Changes the name of the AMD SoC general purpose clk
from ST(a version of SoC) to FCH (name of the IP).
2. Then make the drivers support both older and newer versions of
SoC.

Thanks,
Akshu

Akshu Agrawal (4):
  ACPI: APD: Change name from ST to FCH
  clk: x86: Change name from ST to FCH
  ACPI: APD: Add a fmw property is_raven
  clk: x86: Support RV architecture

 drivers/acpi/acpi_apd.c                       |  18 ++--
 drivers/clk/x86/Makefile                      |   2 +-
 drivers/clk/x86/clk-fch.c                     | 101 ++++++++++++++++++
 drivers/clk/x86/clk-st.c                      |  78 --------------
 .../platform_data/{clk-st.h => clk-fch.h}     |  11 +-
 5 files changed, 119 insertions(+), 91 deletions(-)
 create mode 100644 drivers/clk/x86/clk-fch.c
 delete mode 100644 drivers/clk/x86/clk-st.c
 rename include/linux/platform_data/{clk-st.h => clk-fch.h} (51%)

-- 
2.20.1


^ permalink raw reply	[flat|nested] 3+ messages in thread
[parent not found: <20200728082857.10829-1-akshu.agrawal@amd.com>]

end of thread, other threads:[~2020-07-31 13:37 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-07-28  8:40 [3/4] ACPI: APD: Add a fmw property is_raven Akshu Agrawal
  -- strict thread matches above, loose matches on Subject: below --
2020-07-31 13:36 [0/4] Extend AMD SoC general purpose clk for all versions Akshu Agrawal
2020-07-31 13:36 ` [3/4] ACPI: APD: Add a fmw property is_raven Akshu Agrawal
     [not found] <20200728082857.10829-1-akshu.agrawal@amd.com>
2020-07-28  8:28 ` Akshu Agrawal

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