linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 0/5] Add rtc support for rn5t618 mfd
@ 2019-10-31 21:38 Andreas Kemnade
  2019-10-31 21:38 ` [PATCH v2 1/5] mfd: rn5t618: prepare for irq handling Andreas Kemnade
                   ` (4 more replies)
  0 siblings, 5 replies; 15+ messages in thread
From: Andreas Kemnade @ 2019-10-31 21:38 UTC (permalink / raw)
  To: lee.jones, a.zummo, alexandre.belloni, linux-kernel, linux-rtc,
	phh, b.galvani, stefan, letux-kernel
  Cc: Andreas Kemnade

In the variant rc5t619 the mfd has a rtc. This patchset adds
support for it. To do so it adds the missing register defines in 
rn5t618.h and general irq handling for that.
Probably the irq definitions are the same except missing rtc + charger
but due to missing information about that I do not add them.
There might be some oddity about the charger irq which should be 
researched when adding the charger subdevice.

The rtc driver itself is based on 
https://github.com/kobolabs/Kobo-Reader/blob/master/hw/imx6sll-clara/kernel.tar.bz2
but heavily reworked.

It was tested on the Kobo Clara HD.

Changes in v2:
- no dead code in irq code
- various improvements and cleanups in rtc driver itself

Andreas Kemnade (5):
  mfd: rn5t618: prepare for irq handling
  mfd: rn5t618: add irq support
  mfd: rn5t618: add rtc related registers
  mfd: rn5t618: add more subdevices
  rtc: rtc-rc5t619: add ricoh rc5t619 RTC driver

 drivers/mfd/Kconfig                       |   1 +
 drivers/mfd/Makefile                      |   2 +
 drivers/mfd/{rn5t618.c => rn5t618-core.c} |  49 ++-
 drivers/mfd/rn5t618-irq.c                 |  85 ++++
 drivers/rtc/Kconfig                       |  10 +
 drivers/rtc/Makefile                      |   1 +
 drivers/rtc/rtc-rc5t619.c                 | 488 ++++++++++++++++++++++
 include/linux/mfd/rn5t618.h               |  27 ++
 8 files changed, 661 insertions(+), 2 deletions(-)
 rename drivers/mfd/{rn5t618.c => rn5t618-core.c} (79%)
 create mode 100644 drivers/mfd/rn5t618-irq.c
 create mode 100644 drivers/rtc/rtc-rc5t619.c

-- 
2.20.1


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

* [PATCH v2 1/5] mfd: rn5t618: prepare for irq handling
  2019-10-31 21:38 [PATCH v2 0/5] Add rtc support for rn5t618 mfd Andreas Kemnade
@ 2019-10-31 21:38 ` Andreas Kemnade
  2019-11-16  0:41   ` kbuild test robot
  2019-10-31 21:38 ` [PATCH v2 2/5] mfd: rn5t618: add irq support Andreas Kemnade
                   ` (3 subsequent siblings)
  4 siblings, 1 reply; 15+ messages in thread
From: Andreas Kemnade @ 2019-10-31 21:38 UTC (permalink / raw)
  To: lee.jones, a.zummo, alexandre.belloni, linux-kernel, linux-rtc,
	phh, b.galvani, stefan, letux-kernel
  Cc: Andreas Kemnade

rn5t618 currently lacks irq handling. To prepare implementation
in a rn5t618-irq.c, move main file to rn5t618-core.c

Signed-off-by: Andreas Kemnade <andreas@kemnade.info>
---
 drivers/mfd/Makefile                      | 2 ++
 drivers/mfd/{rn5t618.c => rn5t618-core.c} | 0
 2 files changed, 2 insertions(+)
 rename drivers/mfd/{rn5t618.c => rn5t618-core.c} (100%)

diff --git a/drivers/mfd/Makefile b/drivers/mfd/Makefile
index c1067ea46204..110ea700231b 100644
--- a/drivers/mfd/Makefile
+++ b/drivers/mfd/Makefile
@@ -216,6 +216,8 @@ obj-$(CONFIG_MFD_PALMAS)	+= palmas.o
 obj-$(CONFIG_MFD_VIPERBOARD)    += viperboard.o
 obj-$(CONFIG_MFD_RC5T583)	+= rc5t583.o rc5t583-irq.o
 obj-$(CONFIG_MFD_RK808)		+= rk808.o
+
+rn5t618-objs			:= rn5t618-core.o
 obj-$(CONFIG_MFD_RN5T618)	+= rn5t618.o
 obj-$(CONFIG_MFD_SEC_CORE)	+= sec-core.o sec-irq.o
 obj-$(CONFIG_MFD_SYSCON)	+= syscon.o
diff --git a/drivers/mfd/rn5t618.c b/drivers/mfd/rn5t618-core.c
similarity index 100%
rename from drivers/mfd/rn5t618.c
rename to drivers/mfd/rn5t618-core.c
-- 
2.20.1


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

* [PATCH v2 2/5] mfd: rn5t618: add irq support
  2019-10-31 21:38 [PATCH v2 0/5] Add rtc support for rn5t618 mfd Andreas Kemnade
  2019-10-31 21:38 ` [PATCH v2 1/5] mfd: rn5t618: prepare for irq handling Andreas Kemnade
@ 2019-10-31 21:38 ` Andreas Kemnade
  2019-11-06 21:48   ` Andreas Kemnade
                     ` (2 more replies)
  2019-10-31 21:38 ` [PATCH v2 3/5] mfd: rn5t618: add rtc related registers Andreas Kemnade
                   ` (2 subsequent siblings)
  4 siblings, 3 replies; 15+ messages in thread
From: Andreas Kemnade @ 2019-10-31 21:38 UTC (permalink / raw)
  To: lee.jones, a.zummo, alexandre.belloni, linux-kernel, linux-rtc,
	phh, b.galvani, stefan, letux-kernel
  Cc: Andreas Kemnade

This adds support for irq handling in the rc5t619 which is required
for properly implementing subdevices like rtc.
For now only definitions for the variant rc5t619 are included.

Signed-off-by: Andreas Kemnade <andreas@kemnade.info>
---
Changes in v2:
- no dead code, did some more testing and thinking for that
- remove extra empty lines
 drivers/mfd/Kconfig         |  1 +
 drivers/mfd/Makefile        |  2 +-
 drivers/mfd/rn5t618-core.c  | 35 ++++++++++++++-
 drivers/mfd/rn5t618-irq.c   | 85 +++++++++++++++++++++++++++++++++++++
 include/linux/mfd/rn5t618.h | 16 +++++++
 5 files changed, 137 insertions(+), 2 deletions(-)
 create mode 100644 drivers/mfd/rn5t618-irq.c

diff --git a/drivers/mfd/Kconfig b/drivers/mfd/Kconfig
index ae24d3ea68ea..522e068d0082 100644
--- a/drivers/mfd/Kconfig
+++ b/drivers/mfd/Kconfig
@@ -1057,6 +1057,7 @@ config MFD_RN5T618
 	depends on OF
 	select MFD_CORE
 	select REGMAP_I2C
+	select REGMAP_IRQ
 	help
 	  Say yes here to add support for the Ricoh RN5T567,
 	  RN5T618, RC5T619 PMIC.
diff --git a/drivers/mfd/Makefile b/drivers/mfd/Makefile
index 110ea700231b..2906d5db67d0 100644
--- a/drivers/mfd/Makefile
+++ b/drivers/mfd/Makefile
@@ -217,7 +217,7 @@ obj-$(CONFIG_MFD_VIPERBOARD)    += viperboard.o
 obj-$(CONFIG_MFD_RC5T583)	+= rc5t583.o rc5t583-irq.o
 obj-$(CONFIG_MFD_RK808)		+= rk808.o
 
-rn5t618-objs			:= rn5t618-core.o
+rn5t618-objs			:= rn5t618-core.o rn5t618-irq.o
 obj-$(CONFIG_MFD_RN5T618)	+= rn5t618.o
 obj-$(CONFIG_MFD_SEC_CORE)	+= sec-core.o sec-irq.o
 obj-$(CONFIG_MFD_SYSCON)	+= syscon.o
diff --git a/drivers/mfd/rn5t618-core.c b/drivers/mfd/rn5t618-core.c
index da5cd9c92a59..d4ed2865ed8b 100644
--- a/drivers/mfd/rn5t618-core.c
+++ b/drivers/mfd/rn5t618-core.c
@@ -8,6 +8,7 @@
 
 #include <linux/delay.h>
 #include <linux/i2c.h>
+#include <linux/interrupt.h>
 #include <linux/mfd/core.h>
 #include <linux/mfd/rn5t618.h>
 #include <linux/module.h>
@@ -105,7 +106,8 @@ static int rn5t618_i2c_probe(struct i2c_client *i2c,
 
 	i2c_set_clientdata(i2c, priv);
 	priv->variant = (long)of_id->data;
-
+	priv->chip_irq = i2c->irq;
+	priv->dev = &i2c->dev;
 	priv->regmap = devm_regmap_init_i2c(i2c, &rn5t618_regmap_config);
 	if (IS_ERR(priv->regmap)) {
 		ret = PTR_ERR(priv->regmap);
@@ -137,6 +139,11 @@ static int rn5t618_i2c_probe(struct i2c_client *i2c,
 		return ret;
 	}
 
+	if (priv->chip_irq > 0) {
+		if (rn5t618_irq_init(priv))
+			priv->chip_irq = 0;
+	}
+
 	return 0;
 }
 
@@ -154,15 +161,41 @@ static int rn5t618_i2c_remove(struct i2c_client *i2c)
 	return 0;
 }
 
+static int __maybe_unused rn5t618_i2c_suspend(struct device *dev)
+{
+	struct rn5t618 *priv = dev_get_drvdata(dev);
+
+	if (priv->chip_irq)
+		disable_irq(priv->chip_irq);
+
+	return 0;
+}
+
+static int __maybe_unused rn5t618_i2c_resume(struct device *dev)
+{
+	struct rn5t618 *priv = dev_get_drvdata(dev);
+
+	if (priv->chip_irq)
+		enable_irq(priv->chip_irq);
+
+	return 0;
+}
+
+
 static const struct i2c_device_id rn5t618_i2c_id[] = {
 	{ }
 };
 MODULE_DEVICE_TABLE(i2c, rn5t618_i2c_id);
 
+static SIMPLE_DEV_PM_OPS(rn5t618_i2c_dev_pm_ops,
+			rn5t618_i2c_suspend,
+			rn5t618_i2c_resume);
+
 static struct i2c_driver rn5t618_i2c_driver = {
 	.driver = {
 		.name = "rn5t618",
 		.of_match_table = of_match_ptr(rn5t618_of_match),
+		.pm = &rn5t618_i2c_dev_pm_ops,
 	},
 	.probe = rn5t618_i2c_probe,
 	.remove = rn5t618_i2c_remove,
diff --git a/drivers/mfd/rn5t618-irq.c b/drivers/mfd/rn5t618-irq.c
new file mode 100644
index 000000000000..5d5490f08134
--- /dev/null
+++ b/drivers/mfd/rn5t618-irq.c
@@ -0,0 +1,85 @@
+// SPDX-License-Identifier: GPL-2.0+
+/*
+ * Copyright 2019 Andreas Kemnade
+ */
+#include <linux/device.h>
+#include <linux/interrupt.h>
+#include <linux/irq.h>
+#include <linux/module.h>
+#include <linux/regmap.h>
+
+#include <linux/mfd/rn5t618.h>
+
+static const struct regmap_irq rc5t619_irqs[] = {
+	[RN5T618_IRQ_SYS] = {
+		.reg_offset = 0,
+		.mask = (0 << 1)
+	},
+	[RN5T618_IRQ_DCDC] = {
+		.reg_offset = 0,
+		.mask = (1 << 1)
+	},
+	[RN5T618_IRQ_RTC]  = {
+		.reg_offset = 0,
+		.mask = (1 << 2)
+	},
+	[RN5T618_IRQ_ADC] = {
+		.reg_offset = 0,
+		.mask = (1 << 3)
+	},
+	[RN5T618_IRQ_GPIO] = {
+		.reg_offset = 0,
+		.mask = (1 << 4)
+	},
+	[RN5T618_IRQ_CHG] = {
+		.reg_offset = 0,
+		.mask = (1 << 6),
+	}
+};
+
+static const struct regmap_irq_chip rc5t619_irq_chip = {
+	.name = "rc5t619",
+	.irqs = rc5t619_irqs,
+	.num_irqs = ARRAY_SIZE(rc5t619_irqs),
+	.num_regs = 1,
+	.status_base = RN5T618_INTMON,
+	.mask_base = RN5T618_INTEN,
+	.mask_invert = true,
+};
+
+int rn5t618_irq_init(struct rn5t618 *rn5t618)
+{
+	const struct regmap_irq_chip *irq_chip;
+	int ret;
+
+	if (!rn5t618->chip_irq)
+		return 0;
+
+	switch (rn5t618->variant) {
+	case RC5T619:
+		irq_chip = &rc5t619_irq_chip;
+		break;
+
+		/* TODO: check irq definitions for other variants */
+
+	default:
+		irq_chip = NULL;
+		break;
+	}
+
+	if (!irq_chip) {
+		dev_err(rn5t618->dev, "no IRQ definition known for variant\n");
+		return -ENOENT;
+	}
+
+	ret = devm_regmap_add_irq_chip(rn5t618->dev, rn5t618->regmap,
+				rn5t618->chip_irq,
+				IRQF_TRIGGER_FALLING | IRQF_ONESHOT,
+				0, irq_chip, &rn5t618->irq_data);
+	if (ret != 0) {
+		dev_err(rn5t618->dev, "Failed to register IRQ chip\n");
+		return ret;
+	}
+
+	return 0;
+}
diff --git a/include/linux/mfd/rn5t618.h b/include/linux/mfd/rn5t618.h
index d62ef48060b5..edd2b6485e3b 100644
--- a/include/linux/mfd/rn5t618.h
+++ b/include/linux/mfd/rn5t618.h
@@ -242,9 +242,25 @@ enum {
 	RC5T619,
 };
 
+/* RN5T618 IRQ definitions */
+enum {
+	RN5T618_IRQ_SYS,
+	RN5T618_IRQ_DCDC,
+	RN5T618_IRQ_RTC,
+	RN5T618_IRQ_ADC,
+	RN5T618_IRQ_GPIO,
+	RN5T618_IRQ_CHG,
+	RN5T618_NR_IRQS,
+};
+
 struct rn5t618 {
 	struct regmap *regmap;
+	struct device *dev;
 	long variant;
+
+	int chip_irq;
+	struct regmap_irq_chip_data *irq_data;
 };
 
+extern int rn5t618_irq_init(struct rn5t618 *rn5t618);
 #endif /* __LINUX_MFD_RN5T618_H */
-- 
2.20.1


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

* [PATCH v2 3/5] mfd: rn5t618: add rtc related registers
  2019-10-31 21:38 [PATCH v2 0/5] Add rtc support for rn5t618 mfd Andreas Kemnade
  2019-10-31 21:38 ` [PATCH v2 1/5] mfd: rn5t618: prepare for irq handling Andreas Kemnade
  2019-10-31 21:38 ` [PATCH v2 2/5] mfd: rn5t618: add irq support Andreas Kemnade
@ 2019-10-31 21:38 ` Andreas Kemnade
  2019-10-31 21:38 ` [PATCH v2 4/5] mfd: rn5t618: add more subdevices Andreas Kemnade
  2019-10-31 21:38 ` [PATCH v2 5/5] rtc: rtc-rc5t619: add ricoh rc5t619 RTC driver Andreas Kemnade
  4 siblings, 0 replies; 15+ messages in thread
From: Andreas Kemnade @ 2019-10-31 21:38 UTC (permalink / raw)
  To: lee.jones, a.zummo, alexandre.belloni, linux-kernel, linux-rtc,
	phh, b.galvani, stefan, letux-kernel
  Cc: Andreas Kemnade

Defines for some rtc related registers were missing, also
they were not included in the volatile register list

Signed-off-by: Andreas Kemnade <andreas@kemnade.info>
---
 drivers/mfd/rn5t618-core.c  |  2 ++
 include/linux/mfd/rn5t618.h | 11 +++++++++++
 2 files changed, 13 insertions(+)

diff --git a/drivers/mfd/rn5t618-core.c b/drivers/mfd/rn5t618-core.c
index d4ed2865ed8b..0e3ec9dafb40 100644
--- a/drivers/mfd/rn5t618-core.c
+++ b/drivers/mfd/rn5t618-core.c
@@ -32,6 +32,8 @@ static bool rn5t618_volatile_reg(struct device *dev, unsigned int reg)
 	case RN5T618_IR_GPF:
 	case RN5T618_MON_IOIN:
 	case RN5T618_INTMON:
+	case RN5T618_RTC_CTRL1 ... RN5T618_RTC_CTRL2:
+	case RN5T618_RTC_SECONDS ... RN5T618_RTC_YEAR:
 		return true;
 	default:
 		return false;
diff --git a/include/linux/mfd/rn5t618.h b/include/linux/mfd/rn5t618.h
index edd2b6485e3b..26c36b58916c 100644
--- a/include/linux/mfd/rn5t618.h
+++ b/include/linux/mfd/rn5t618.h
@@ -139,6 +139,17 @@
 #define RN5T618_INTPOL			0x9c
 #define RN5T618_INTEN			0x9d
 #define RN5T618_INTMON			0x9e
+
+#define RN5T618_RTC_SECONDS     0xA0
+#define RN5T618_RTC_MDAY        0xA4
+#define RN5T618_RTC_MONTH       0xA5
+#define RN5T618_RTC_YEAR        0xA6
+#define RN5T618_RTC_ADJUST      0xA7
+#define RN5T618_RTC_ALARM_Y_SEC 0xA8
+#define RN5T618_RTC_DAL_MONTH   0xAC
+#define RN5T618_RTC_CTRL1       0xAE
+#define RN5T618_RTC_CTRL2       0xAF
+
 #define RN5T618_PREVINDAC		0xb0
 #define RN5T618_BATDAC			0xb1
 #define RN5T618_CHGCTL1			0xb3
-- 
2.20.1


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

* [PATCH v2 4/5] mfd: rn5t618: add more subdevices
  2019-10-31 21:38 [PATCH v2 0/5] Add rtc support for rn5t618 mfd Andreas Kemnade
                   ` (2 preceding siblings ...)
  2019-10-31 21:38 ` [PATCH v2 3/5] mfd: rn5t618: add rtc related registers Andreas Kemnade
@ 2019-10-31 21:38 ` Andreas Kemnade
  2019-10-31 21:38 ` [PATCH v2 5/5] rtc: rtc-rc5t619: add ricoh rc5t619 RTC driver Andreas Kemnade
  4 siblings, 0 replies; 15+ messages in thread
From: Andreas Kemnade @ 2019-10-31 21:38 UTC (permalink / raw)
  To: lee.jones, a.zummo, alexandre.belloni, linux-kernel, linux-rtc,
	phh, b.galvani, stefan, letux-kernel
  Cc: Andreas Kemnade

The rc5t619 has a rtc which is missing in the
rn5t618. Add it as subdevice to prepare for their implementation

Signed-off-by: Andreas Kemnade <andreas@kemnade.info>
---
 drivers/mfd/rn5t618-core.c | 12 +++++++++++-
 1 file changed, 11 insertions(+), 1 deletion(-)

diff --git a/drivers/mfd/rn5t618-core.c b/drivers/mfd/rn5t618-core.c
index 0e3ec9dafb40..b037c97e6747 100644
--- a/drivers/mfd/rn5t618-core.c
+++ b/drivers/mfd/rn5t618-core.c
@@ -21,6 +21,12 @@ static const struct mfd_cell rn5t618_cells[] = {
 	{ .name = "rn5t618-wdt" },
 };
 
+static const struct mfd_cell rc5t619_cells[] = {
+	{ .name = "rn5t618-regulator" },
+	{ .name = "rc5t619-rtc" },
+	{ .name = "rn5t618-wdt" },
+};
+
 static bool rn5t618_volatile_reg(struct device *dev, unsigned int reg)
 {
 	switch (reg) {
@@ -117,7 +123,11 @@ static int rn5t618_i2c_probe(struct i2c_client *i2c,
 		return ret;
 	}
 
-	ret = devm_mfd_add_devices(&i2c->dev, -1, rn5t618_cells,
+	if (priv->variant == RC5T619)
+		ret = devm_mfd_add_devices(&i2c->dev, -1, rc5t619_cells,
+				   ARRAY_SIZE(rc5t619_cells), NULL, 0, NULL);
+	else
+		ret = devm_mfd_add_devices(&i2c->dev, -1, rn5t618_cells,
 				   ARRAY_SIZE(rn5t618_cells), NULL, 0, NULL);
 	if (ret) {
 		dev_err(&i2c->dev, "failed to add sub-devices: %d\n", ret);
-- 
2.20.1


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

* [PATCH v2 5/5] rtc: rtc-rc5t619: add ricoh rc5t619 RTC driver
  2019-10-31 21:38 [PATCH v2 0/5] Add rtc support for rn5t618 mfd Andreas Kemnade
                   ` (3 preceding siblings ...)
  2019-10-31 21:38 ` [PATCH v2 4/5] mfd: rn5t618: add more subdevices Andreas Kemnade
@ 2019-10-31 21:38 ` Andreas Kemnade
  2019-11-28 10:57   ` Alexandre Belloni
  4 siblings, 1 reply; 15+ messages in thread
From: Andreas Kemnade @ 2019-10-31 21:38 UTC (permalink / raw)
  To: lee.jones, a.zummo, alexandre.belloni, linux-kernel, linux-rtc,
	phh, b.galvani, stefan, letux-kernel
  Cc: Andreas Kemnade

Add an RTC driver for the RTC device on Ricoh MFD rc5t619,
which is implemented as a variant of rn5t618.

rtc-range output:
Testing 2000-02-28 23:59:59.
OK

Testing 2038-01-19 03:14:07.
OK

Testing 2069-12-31 23:59:59.
OK

Testing 2099-12-31 23:59:59.
KO RTC_RD_TIME returned 22 (line 138)

Testing 2100-02-28 23:59:59.
KO RTC_SET_TIME returned 34 (line 122)

Testing 2106-02-07 06:28:15.
KO RTC_SET_TIME returned 34 (line 122)

Testing 2262-04-11 23:47:16.
KO RTC_SET_TIME returned 34 (line 122)


Signed-off-by: Andreas Kemnade <andreas@kemnade.info>
---
Changes in v2:
- correct subject line
- reset pon flag not at probe but later
- initialize things only on pon
- 12h handling
- ranges
- style cleanup
- less magic values

 drivers/rtc/Kconfig       |  10 +
 drivers/rtc/Makefile      |   1 +
 drivers/rtc/rtc-rc5t619.c | 488 ++++++++++++++++++++++++++++++++++++++
 3 files changed, 499 insertions(+)
 create mode 100644 drivers/rtc/rtc-rc5t619.c

diff --git a/drivers/rtc/Kconfig b/drivers/rtc/Kconfig
index 1adf9f815652..b8e5bfa8efc6 100644
--- a/drivers/rtc/Kconfig
+++ b/drivers/rtc/Kconfig
@@ -600,6 +600,16 @@ config RTC_DRV_RC5T583
 	  This driver can also be built as a module. If so, the module
 	  will be called rtc-rc5t583.
 
+config RTC_DRV_RC5T619
+	tristate "RICOH RC5T619 RTC driver"
+	depends on MFD_RN5T618
+	help
+	  If you say yes here you get support for the RTC on the
+	  RICOH RC5T619 chips.
+
+	  This driver can also be built as a module. If so, the module
+	  will be called rtc-rc5t619.
+
 config RTC_DRV_S35390A
 	tristate "Seiko Instruments S-35390A"
 	select BITREVERSE
diff --git a/drivers/rtc/Makefile b/drivers/rtc/Makefile
index 4ac8f19fb631..7612912cdf00 100644
--- a/drivers/rtc/Makefile
+++ b/drivers/rtc/Makefile
@@ -137,6 +137,7 @@ obj-$(CONFIG_RTC_DRV_PXA)	+= rtc-pxa.o
 obj-$(CONFIG_RTC_DRV_R7301)	+= rtc-r7301.o
 obj-$(CONFIG_RTC_DRV_R9701)	+= rtc-r9701.o
 obj-$(CONFIG_RTC_DRV_RC5T583)	+= rtc-rc5t583.o
+obj-$(CONFIG_RTC_DRV_RC5T619)	+= rtc-rc5t619.o
 obj-$(CONFIG_RTC_DRV_RK808)	+= rtc-rk808.o
 obj-$(CONFIG_RTC_DRV_RP5C01)	+= rtc-rp5c01.o
 obj-$(CONFIG_RTC_DRV_RS5C313)	+= rtc-rs5c313.o
diff --git a/drivers/rtc/rtc-rc5t619.c b/drivers/rtc/rtc-rc5t619.c
new file mode 100644
index 000000000000..903bb9f9d96b
--- /dev/null
+++ b/drivers/rtc/rtc-rc5t619.c
@@ -0,0 +1,488 @@
+// SPDX-License-Identifier: GPL-2.0+
+/*
+ * drivers/rtc/rtc-rc5t619.c
+ *
+ * Real time clock driver for RICOH RC5T619 power management chip.
+ *
+ * Copyright (C) 2019 Andreas Kemnade
+ */
+
+#include <linux/kernel.h>
+#include <linux/device.h>
+#include <linux/errno.h>
+#include <linux/init.h>
+#include <linux/module.h>
+#include <linux/mfd/rn5t618.h>
+#include <linux/platform_device.h>
+#include <linux/regmap.h>
+#include <linux/bcd.h>
+#include <linux/rtc.h>
+#include <linux/slab.h>
+#include <linux/irqdomain.h>
+
+struct rc5t619_rtc {
+	int			irq;
+	struct rtc_device	*rtc;
+	struct rn5t618 *rn5t618;
+};
+
+#define CTRL1_ALARM_ENABLED 0x40
+#define CTRL1_24HR 0x20
+#define CTRL1_PERIODIC_MASK 0xf
+
+#define CTRL2_PON 0x10
+#define CTRL2_ALARM_STATUS 0x80
+#define CTRL2_CTFG 0x4
+#define CTRL2_CTC 0x1
+
+#define MONTH_CENTFLAG 0x80
+#define HOUR_PMFLAG 0x20
+#define MDAY_DAL_EXT 0x80
+
+static uint8_t rtc5t619_12hour_bcd2bin(uint8_t hour)
+{
+	if (hour & HOUR_PMFLAG) {
+		hour = bcd2bin(hour & ~HOUR_PMFLAG);
+		return hour == 12 ? 12 : 12 + hour;
+	}
+
+	hour = bcd2bin(hour);
+	return hour == 12 ? 0 : hour;
+}
+
+static uint8_t rtc5t619_12hour_bin2bcd(uint8_t hour)
+{
+	if (!hour)
+		return 0x12;
+
+	if (hour < 12)
+		return bin2bcd(hour);
+
+	if (hour == 12)
+		return 0x12 | HOUR_PMFLAG;
+
+	return bin2bcd(hour - 12) | HOUR_PMFLAG;
+}
+
+static int rc5t619_rtc_periodic_disable(struct device *dev)
+{
+	struct rc5t619_rtc *rtc = dev_get_drvdata(dev);
+	int err;
+
+	/* disable function */
+	err = regmap_update_bits(rtc->rn5t618->regmap,
+			RN5T618_RTC_CTRL1, CTRL1_PERIODIC_MASK, 0);
+	if (err < 0)
+		return err;
+
+	/* clear alarm flag and CTFG */
+	err = regmap_update_bits(rtc->rn5t618->regmap, RN5T618_RTC_CTRL2,
+			CTRL2_ALARM_STATUS | CTRL2_CTFG | CTRL2_CTC, 0);
+	if (err < 0)
+		return err;
+
+	return 0;
+}
+
+/* things to be done once after power on */
+static int rc5t619_rtc_pon_setup(struct device *dev)
+{
+	struct rc5t619_rtc *rtc = dev_get_drvdata(dev);
+	int err;
+	unsigned int reg_data;
+
+	err = regmap_read(rtc->rn5t618->regmap, RN5T618_RTC_CTRL2, &reg_data);
+	if (err < 0)
+		return err;
+
+	/* clear VDET PON */
+	reg_data &= ~(CTRL2_PON | CTRL2_CTC | 0x4a);	/* 0101-1011 */
+	reg_data |= 0x20;	/* 0010-0000 */
+	err = regmap_write(rtc->rn5t618->regmap, RN5T618_RTC_CTRL2,
+				reg_data);
+	if (err < 0)
+		return err;
+
+	/* clearing RTC Adjust register */
+	err = regmap_write(rtc->rn5t618->regmap, RN5T618_RTC_ADJUST, 0);
+	if (err)
+		return err;
+
+	return regmap_update_bits(rtc->rn5t618->regmap,
+					RN5T618_RTC_CTRL1,
+					CTRL1_24HR, CTRL1_24HR);
+}
+
+static int rc5t619_rtc_read_time(struct device *dev, struct rtc_time *tm)
+{
+	struct rc5t619_rtc *rtc = dev_get_drvdata(dev);
+	u8 buff[7];
+	int err;
+	int cent_flag;
+	unsigned int ctrl1;
+	unsigned int ctrl2;
+
+	err = regmap_read(rtc->rn5t618->regmap, RN5T618_RTC_CTRL2, &ctrl2);
+	if (err < 0)
+		return err;
+
+	if (ctrl2 & CTRL2_PON)
+		return -EINVAL;
+
+	err = regmap_read(rtc->rn5t618->regmap, RN5T618_RTC_CTRL1, &ctrl1);
+	if (err < 0)
+		return err;
+
+	err = regmap_bulk_read(rtc->rn5t618->regmap, RN5T618_RTC_SECONDS,
+				buff, sizeof(buff));
+	if (err < 0)
+		return err;
+
+	if (buff[5] & MONTH_CENTFLAG)
+		cent_flag = 1;
+	else
+		cent_flag = 0;
+
+	tm->tm_sec  = bcd2bin(buff[0]);
+	tm->tm_min  = bcd2bin(buff[1]);
+
+	if (ctrl1 & CTRL1_24HR)
+		tm->tm_hour = bcd2bin(buff[2]);
+	else
+		tm->tm_hour = rtc5t619_12hour_bcd2bin(buff[2]);
+
+	tm->tm_wday = bcd2bin(buff[3]);
+	tm->tm_mday = bcd2bin(buff[4]);
+	tm->tm_mon  = bcd2bin(buff[5] & 0x1f) - 1; /* back to system 0-11 */
+	tm->tm_year = bcd2bin(buff[6]) + 100 * cent_flag;
+
+	return 0;
+}
+
+static int rc5t619_rtc_set_time(struct device *dev, struct rtc_time *tm)
+{
+	struct rc5t619_rtc *rtc = dev_get_drvdata(dev);
+	u8 buff[7];
+	int err;
+	int cent_flag;
+	unsigned int ctrl1;
+	unsigned int ctrl2;
+
+	err = regmap_read(rtc->rn5t618->regmap, RN5T618_RTC_CTRL2, &ctrl2);
+	if (err < 0)
+		return err;
+
+	if (ctrl2 & CTRL2_PON)
+		rc5t619_rtc_pon_setup(dev);
+
+	err = regmap_read(rtc->rn5t618->regmap, RN5T618_RTC_CTRL1, &ctrl1);
+	if (err < 0)
+		return err;
+
+	if (tm->tm_year >= 100)
+		cent_flag = 1;
+	else
+		cent_flag = 0;
+
+	buff[0] = bin2bcd(tm->tm_sec);
+	buff[1] = bin2bcd(tm->tm_min);
+
+	if (ctrl1 & CTRL1_24HR)
+		buff[2] = bin2bcd(tm->tm_hour);
+	else
+		buff[2] = rtc5t619_12hour_bin2bcd(tm->tm_hour);
+
+	buff[3] = bin2bcd(tm->tm_wday);
+	buff[4] = bin2bcd(tm->tm_mday);
+	buff[5] = bin2bcd(tm->tm_mon + 1);	/* system set 0-11 */
+	buff[6] = bin2bcd(tm->tm_year - cent_flag * 100);
+
+	if (cent_flag)
+		buff[5] |= MONTH_CENTFLAG;
+
+	err = regmap_bulk_write(rtc->rn5t618->regmap, RN5T618_RTC_SECONDS,
+				buff, sizeof(buff));
+	if (err < 0) {
+		dev_err(dev, "failed to program new time: %d\n", err);
+		return err;
+	}
+
+	return 0;
+}
+
+static int rc5t619_rtc_alarm_is_enabled(struct device *dev,  uint8_t *enabled)
+{
+	struct rc5t619_rtc *rtc = dev_get_drvdata(dev);
+	int err;
+	unsigned int reg_data;
+
+	err = regmap_read(rtc->rn5t618->regmap, RN5T618_RTC_CTRL1, &reg_data);
+	if (err)
+		return err;
+
+	if (reg_data & CTRL1_ALARM_ENABLED)
+		*enabled = 1;
+	else
+		*enabled = 0;
+
+	return err;
+}
+
+/* 0-disable, 1-enable */
+static int rc5t619_rtc_alarm_enable(struct device *dev, unsigned int enabled)
+{
+	struct rc5t619_rtc *rtc = dev_get_drvdata(dev);
+
+	return regmap_update_bits(rtc->rn5t618->regmap,
+			RN5T618_RTC_CTRL1,
+			CTRL1_ALARM_ENABLED,
+			enabled ? CTRL1_ALARM_ENABLED : 0);
+}
+
+static int rc5t619_rtc_read_alarm(struct device *dev, struct rtc_wkalrm *alrm)
+{
+	struct rc5t619_rtc *rtc = dev_get_drvdata(dev);
+	u8 buff[6];
+	unsigned int buff_cent;
+	int err;
+	int cent_flag;
+	unsigned int ctrl1;
+
+	err = regmap_read(rtc->rn5t618->regmap, RN5T618_RTC_CTRL1, &ctrl1);
+	if (err)
+		return err;
+
+	err = regmap_read(rtc->rn5t618->regmap, RN5T618_RTC_MONTH, &buff_cent);
+	if (err < 0) {
+		dev_err(dev, "failed to read time: %d\n", err);
+		return err;
+	}
+
+	if (buff_cent & MONTH_CENTFLAG)
+		cent_flag = 1;
+	else
+		cent_flag = 0;
+
+	err = regmap_bulk_read(rtc->rn5t618->regmap, RN5T618_RTC_ALARM_Y_SEC,
+				buff, sizeof(buff));
+	if (err)
+		return err;
+
+
+	buff[3] = buff[3] & 0x3f;
+
+	alrm->time.tm_sec  = bcd2bin(buff[0]);
+	alrm->time.tm_min  = bcd2bin(buff[1]);
+
+	if (ctrl1 & CTRL1_24HR)
+		alrm->time.tm_hour = bcd2bin(buff[2]);
+	else
+		alrm->time.tm_hour = rtc5t619_12hour_bcd2bin(buff[2]);
+
+	alrm->time.tm_mday = bcd2bin(buff[3]);
+	alrm->time.tm_mon  = bcd2bin(buff[4]) - 1;
+	alrm->time.tm_year = bcd2bin(buff[5]) + 100 * cent_flag;
+	alrm->enabled = !!(ctrl1 & CTRL1_ALARM_ENABLED);
+	dev_dbg(dev, "read alarm: %ptR\n", &alrm->time);
+
+	return 0;
+}
+
+static int rc5t619_rtc_set_alarm(struct device *dev, struct rtc_wkalrm *alrm)
+{
+	struct rc5t619_rtc *rtc = dev_get_drvdata(dev);
+	u8 buff[6];
+	int err;
+	int cent_flag;
+	unsigned int ctrl1;
+
+	err = regmap_read(rtc->rn5t618->regmap, RN5T618_RTC_CTRL1, &ctrl1);
+	if (err)
+		return err;
+
+	err = rc5t619_rtc_alarm_enable(dev, 0);
+	if (err < 0)
+		return err;
+
+	if (rtc->irq == -1)
+		return -EINVAL;
+
+	if (alrm->enabled == 0)
+		return 0;
+
+	if (alrm->time.tm_year >= 100)
+		cent_flag = 1;
+	else
+		cent_flag = 0;
+
+	alrm->time.tm_mon += 1;
+	buff[0] = bin2bcd(alrm->time.tm_sec);
+	buff[1] = bin2bcd(alrm->time.tm_min);
+
+	if (ctrl1 & CTRL1_24HR)
+		buff[2] = bin2bcd(alrm->time.tm_hour);
+	else
+		buff[2] = rtc5t619_12hour_bin2bcd(alrm->time.tm_hour);
+
+	buff[3] = bin2bcd(alrm->time.tm_mday);
+	buff[4] = bin2bcd(alrm->time.tm_mon);
+	buff[5] = bin2bcd(alrm->time.tm_year - 100 * cent_flag);
+	buff[3] |= MDAY_DAL_EXT;
+
+	err = regmap_bulk_write(rtc->rn5t618->regmap, RN5T618_RTC_ALARM_Y_SEC,
+				buff, sizeof(buff));
+	if (err < 0)
+		return err;
+
+	return rc5t619_rtc_alarm_enable(dev, alrm->enabled);
+}
+
+static const struct rtc_class_ops rc5t619_rtc_ops = {
+	.read_time	= rc5t619_rtc_read_time,
+	.set_time	= rc5t619_rtc_set_time,
+	.set_alarm	= rc5t619_rtc_set_alarm,
+	.read_alarm	= rc5t619_rtc_read_alarm,
+	.alarm_irq_enable = rc5t619_rtc_alarm_enable,
+};
+
+static int rc5t619_rtc_alarm_flag_clr(struct device *dev)
+{
+	struct rc5t619_rtc *rtc = dev_get_drvdata(dev);
+
+	/* clear alarm-D status bits.*/
+	return regmap_update_bits(rtc->rn5t618->regmap,
+				RN5T618_RTC_CTRL2,
+				CTRL2_ALARM_STATUS | CTRL2_CTC, 0);
+}
+
+static irqreturn_t rc5t619_rtc_irq(int irq, void *data)
+{
+	struct device *dev = data;
+	struct rc5t619_rtc *rtc = dev_get_drvdata(dev);
+
+	rc5t619_rtc_alarm_flag_clr(dev);
+
+	rtc_update_irq(rtc->rtc, 1, RTC_IRQF | RTC_AF);
+	return IRQ_HANDLED;
+}
+
+
+static int rc5t619_rtc_probe(struct platform_device *pdev)
+{
+	struct device *dev = &pdev->dev;
+	struct rn5t618 *rn5t618 = dev_get_drvdata(pdev->dev.parent);
+	struct rc5t619_rtc *rtc;
+	uint8_t alarm_flag;
+	unsigned int ctrl2;
+	int err;
+
+	rtc = devm_kzalloc(dev, sizeof(*rtc), GFP_KERNEL);
+	if (IS_ERR(rtc)) {
+		err = PTR_ERR(rtc);
+		return -ENOMEM;
+	}
+
+	rtc->rn5t618 = rn5t618;
+
+	dev_set_drvdata(dev, rtc);
+	rtc->irq = -1;
+
+	if (rn5t618->irq_data)
+		rtc->irq = regmap_irq_get_virq(rn5t618->irq_data,
+				RN5T618_IRQ_RTC);
+
+	if (rtc->irq  < 0) {
+		dev_err(dev, "no irq specified, wakeup is disabled\n");
+		rtc->irq = -1;
+	}
+
+	err = regmap_read(rtc->rn5t618->regmap, RN5T618_RTC_CTRL2, &ctrl2);
+	if (err < 0)
+		return err;
+
+	/* get interrupt flag */
+	err = rc5t619_rtc_alarm_is_enabled(dev, &alarm_flag);
+	if (err)
+		return err;
+
+	/* disable rtc periodic function */
+	err = rc5t619_rtc_periodic_disable(&pdev->dev);
+	if (err)
+		return err;
+
+	/* disable interrupt */
+	err = rc5t619_rtc_alarm_enable(&pdev->dev, 0);
+	if (err)
+		return err;
+
+	if (ctrl2 & CTRL2_PON) {
+		alarm_flag = 0;
+		err = rc5t619_rtc_alarm_flag_clr(&pdev->dev);
+		if (err)
+			return err;
+	}
+
+	rtc->rtc = devm_rtc_allocate_device(&pdev->dev);
+
+	if (IS_ERR(rtc->rtc)) {
+		err = PTR_ERR(rtc->rtc);
+		dev_err(dev, "RTC device register: err %d\n", err);
+		return err;
+	}
+
+	rtc->rtc->ops = &rc5t619_rtc_ops;
+	rtc->rtc->range_min = RTC_TIMESTAMP_BEGIN_1900;
+	rtc->rtc->range_max = RTC_TIMESTAMP_END_2099;
+
+	/* set interrupt and enable it */
+	if (rtc->irq != -1) {
+		device_init_wakeup(&pdev->dev, 1);
+
+		err = devm_request_threaded_irq(&pdev->dev, rtc->irq, NULL,
+						rc5t619_rtc_irq,
+						IRQF_ONESHOT,
+						"rtc-rc5t619",
+						&pdev->dev);
+		if (err < 0) {
+			dev_err(&pdev->dev, "request IRQ:%d fail\n", rtc->irq);
+			rtc->irq = -1;
+
+			err = rc5t619_rtc_alarm_enable(&pdev->dev, 0);
+			if (err)
+				return err;
+
+		} else {
+			/* enable wake */
+			enable_irq_wake(rtc->irq);
+			/* enable alarm_d */
+			err = rc5t619_rtc_alarm_enable(&pdev->dev, alarm_flag);
+			if (err) {
+				dev_err(&pdev->dev, "failed rtc setup\n");
+				return -EBUSY;
+			}
+		}
+	} else {
+		/* system don't want to using alarm interrupt, so close it */
+		err = rc5t619_rtc_alarm_enable(&pdev->dev, 0);
+		if (err) {
+			dev_err(&pdev->dev, "disable rtc alarm error\n");
+			return err;
+		}
+
+		dev_err(&pdev->dev, "ricoh61x interrupt is disabled\n");
+	}
+
+	return rtc_register_device(rtc->rtc);
+}
+
+static struct platform_driver rc5t619_rtc_driver = {
+	.driver	= {
+		.name	= "rc5t619-rtc",
+	},
+	.probe	= rc5t619_rtc_probe,
+};
+
+module_platform_driver(rc5t619_rtc_driver);
+MODULE_ALIAS("platform:rc5t619-rtc");
+MODULE_DESCRIPTION("RICOH RC5T619 RTC driver");
+MODULE_LICENSE("GPL");
-- 
2.20.1


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

* Re: [PATCH v2 2/5] mfd: rn5t618: add irq support
  2019-10-31 21:38 ` [PATCH v2 2/5] mfd: rn5t618: add irq support Andreas Kemnade
@ 2019-11-06 21:48   ` Andreas Kemnade
  2019-11-16  6:52   ` kbuild test robot
  2019-11-20  7:54   ` Pierre-Hugues Husson
  2 siblings, 0 replies; 15+ messages in thread
From: Andreas Kemnade @ 2019-11-06 21:48 UTC (permalink / raw)
  To: lee.jones, a.zummo, alexandre.belloni, linux-kernel, linux-rtc,
	phh, b.galvani, stefan, letux-kernel

On Thu, 31 Oct 2019 22:38:32 +0100
Andreas Kemnade <andreas@kemnade.info> wrote:

> This adds support for irq handling in the rc5t619 which is required
> for properly implementing subdevices like rtc.
> For now only definitions for the variant rc5t619 are included.
> 
> Signed-off-by: Andreas Kemnade <andreas@kemnade.info>

after having some more look at it, I think I should note the interrupts
property in the bindings documentation since it gets used by using
i2c->irq. Will probably send a v3 the next days. 

Regards,
Andreas

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

* Re: [PATCH v2 1/5] mfd: rn5t618: prepare for irq handling
  2019-10-31 21:38 ` [PATCH v2 1/5] mfd: rn5t618: prepare for irq handling Andreas Kemnade
@ 2019-11-16  0:41   ` kbuild test robot
  0 siblings, 0 replies; 15+ messages in thread
From: kbuild test robot @ 2019-11-16  0:41 UTC (permalink / raw)
  To: Andreas Kemnade
  Cc: kbuild-all, lee.jones, a.zummo, alexandre.belloni, linux-kernel,
	linux-rtc, phh, b.galvani, stefan, letux-kernel, Andreas Kemnade

[-- Attachment #1: Type: text/plain, Size: 55758 bytes --]

Hi Andreas,

Thank you for the patch! Perhaps something to improve:

[auto build test WARNING on ljones-mfd/for-mfd-next]
[also build test WARNING on v5.4-rc7 next-20191115]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]

url:    https://github.com/0day-ci/linux/commits/Andreas-Kemnade/Add-rtc-support-for-rn5t618-mfd/20191102-142337
base:   https://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git for-mfd-next
config: powerpc-randconfig-a001-20191115 (attached as .config)
compiler: powerpc64-linux-gcc (GCC) 7.4.0
reproduce:
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # save the attached .config to linux build tree
        GCC_VERSION=7.4.0 make.cross ARCH=powerpc 

If you fix the issue, kindly add following tag
Reported-by: kbuild test robot <lkp@intel.com>

All warnings (new ones prefixed by >>):

   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/devtmpfs.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/power/sysfs.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/power/generic_ops.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/power/common.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/power/qos.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/power/runtime.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/power/wakeirq.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/power/clock_ops.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/firmware_loader/main.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/firmware_loader/fallback.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/node.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/module.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/regmap/regmap.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/regmap/regcache.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/regmap/regcache-rbtree.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/regmap/regcache-flat.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/regmap/regmap-debugfs.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/regmap/regmap-i2c.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/regmap/regmap-mmio.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/regmap/regmap-irq.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/regmap/regmap-w1.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/regmap/regmap-i3c.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/soc.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/devcoredump.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/dummy-irq.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/ics932s401.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/apds990x.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/apds9802als.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/isl29003.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/ds1682.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/c2port/core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/eeprom/eeprom.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/eeprom/max6875.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/eeprom/eeprom_93cx6.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/altera-stapl/altera-lpt.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/altera-stapl/altera-jtag.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/altera-stapl/altera-comp.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/altera-stapl/altera.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/sram.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/echo/echo.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/pvpanic.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/xilinx_sdfec.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/88pm800.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/88pm80x.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/act8945a.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/sm501.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/bcm590xx.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/bd9571mwv.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/htc-i2cpld.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/lp873x.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/lp87565.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/ti_am335x_tscadc.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/wm831x-core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/wm831x-irq.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/wm831x-otp.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/wm831x-auxadc.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/wm831x-i2c.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/wm8994-core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/wm8994-irq.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/wm8994-regmap.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/tps6105x.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/tps6507x.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/tps65086.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/tps65217.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/tps65218.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/tps80031.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/twl-core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/twl4030-irq.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/twl6030-irq.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/twl4030-audio.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/mc13xxx-core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/mc13xxx-i2c.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/mfd-core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/smsc-ece1099.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/da903x.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/lp3943.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/ti-lmu.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/da9063-core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/da9063-irq.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/da9063-i2c.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/max14577.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/max77693.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/max77843.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/max8925-core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/max8925-i2c.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/max8998.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/max8998-irq.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/pcf50633-core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/pcf50633-irq.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/pcf50633-adc.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/pcf50633-gpio.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/kempld-core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/wl1273-core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/si476x-cmd.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/si476x-prop.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/si476x-i2c.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/aat2870-core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/atmel-flexcom.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/palmas.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/rk808.o' being placed in section `.ctors.65435'.
>> powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/rn5t618-core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/syscon.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/lm3533-core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/lm3533-ctrlbank.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/retu-mfd.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/as3722.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/menf21bmc.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/rt5033.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/sky81452.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/mt6397-core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/mt6397-irq.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/rohm-bd70528.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/dax/super.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/dax/bus.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/dma-buf/dma-buf.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/dma-buf/dma-fence.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/dma-buf/dma-fence-array.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/dma-buf/dma-fence-chain.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/dma-buf/dma-resv.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/dma-buf/seqno-fence.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/dma-buf/sync_file.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/dma-buf/udmabuf.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/dma-buf/selftest.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/dma-buf/st-dma-fence.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-ioctls.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-io.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-iops.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-lib.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-probe.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-taskfile.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-pm.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-park.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-sysfs.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-devsets.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-io-std.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-eh.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-atapi.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-proc.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-gd.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-floppy.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-floppy_ioctl.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-floppy_proc.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-tape.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-cs.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide_platform.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/hosts.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_ioctl.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsicam.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_error.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_lib.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_lib_dma.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_scan.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_sysfs.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_devinfo.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_sysctl.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_trace.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_logging.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_pm.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_common.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/raid_class.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_transport_iscsi.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_transport_sas.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/libsas/sas_init.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/libsas/sas_phy.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/libsas/sas_port.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/libsas/sas_event.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/libsas/sas_discover.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/libsas/sas_expander.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/libsas/sas_scsi_host.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/libsas/sas_task.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/sd.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/sd_dif.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/sg.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/ch.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/host/core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/host/trace.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/host/multipath.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/host/lightnvm.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/host/fabrics.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/host/fc.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/target/core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/target/configfs.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/target/admin-cmd.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/target/fabrics-cmd.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/target/discovery.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/target/io-cmd-file.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/target/io-cmd-bdev.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/target/trace.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/target/fc.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/target/fcloop.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mtd/mtdcore.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mtd/mtdsuper.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mtd/mtdconcat.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mtd/mtdpart.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mtd/mtdchar.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mtd/parsers/ar7part.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mtd/parsers/cmdlinepart.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mtd/parsers/redboot.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mtd/mtd_blkdevs.o' being placed in section `.ctors.65435'.
--
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/devtmpfs.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/power/sysfs.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/power/generic_ops.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/power/common.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/power/qos.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/power/runtime.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/power/wakeirq.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/power/clock_ops.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/firmware_loader/main.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/firmware_loader/fallback.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/node.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/module.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/regmap/regmap.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/regmap/regcache.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/regmap/regcache-rbtree.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/regmap/regcache-flat.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/regmap/regmap-debugfs.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/regmap/regmap-i2c.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/regmap/regmap-mmio.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/regmap/regmap-irq.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/regmap/regmap-w1.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/regmap/regmap-i3c.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/soc.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/devcoredump.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/dummy-irq.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/ics932s401.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/apds990x.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/apds9802als.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/isl29003.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/ds1682.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/c2port/core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/eeprom/eeprom.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/eeprom/max6875.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/eeprom/eeprom_93cx6.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/altera-stapl/altera-lpt.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/altera-stapl/altera-jtag.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/altera-stapl/altera-comp.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/altera-stapl/altera.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/sram.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/echo/echo.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/pvpanic.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/xilinx_sdfec.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/88pm800.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/88pm80x.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/act8945a.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/sm501.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/bcm590xx.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/bd9571mwv.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/htc-i2cpld.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/lp873x.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/lp87565.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/ti_am335x_tscadc.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/wm831x-core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/wm831x-irq.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/wm831x-otp.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/wm831x-auxadc.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/wm831x-i2c.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/wm8994-core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/wm8994-irq.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/wm8994-regmap.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/tps6105x.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/tps6507x.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/tps65086.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/tps65217.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/tps65218.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/tps80031.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/twl-core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/twl4030-irq.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/twl6030-irq.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/twl4030-audio.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/mc13xxx-core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/mc13xxx-i2c.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/mfd-core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/smsc-ece1099.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/da903x.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/lp3943.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/ti-lmu.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/da9063-core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/da9063-irq.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/da9063-i2c.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/max14577.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/max77693.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/max77843.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/max8925-core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/max8925-i2c.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/max8998.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/max8998-irq.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/pcf50633-core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/pcf50633-irq.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/pcf50633-adc.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/pcf50633-gpio.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/kempld-core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/wl1273-core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/si476x-cmd.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/si476x-prop.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/si476x-i2c.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/aat2870-core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/atmel-flexcom.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/palmas.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/rk808.o' being placed in section `.ctors.65435'.
>> powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/rn5t618-core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/syscon.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/lm3533-core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/lm3533-ctrlbank.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/retu-mfd.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/as3722.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/menf21bmc.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/rt5033.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/sky81452.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/mt6397-core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/mt6397-irq.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/rohm-bd70528.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/dax/super.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/dax/bus.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/dma-buf/dma-buf.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/dma-buf/dma-fence.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/dma-buf/dma-fence-array.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/dma-buf/dma-fence-chain.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/dma-buf/dma-resv.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/dma-buf/seqno-fence.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/dma-buf/sync_file.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/dma-buf/udmabuf.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/dma-buf/selftest.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/dma-buf/st-dma-fence.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-ioctls.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-io.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-iops.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-lib.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-probe.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-taskfile.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-pm.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-park.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-sysfs.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-devsets.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-io-std.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-eh.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-atapi.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-proc.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-gd.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-floppy.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-floppy_ioctl.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-floppy_proc.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-tape.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-cs.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide_platform.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/hosts.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_ioctl.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsicam.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_error.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_lib.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_lib_dma.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_scan.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_sysfs.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_devinfo.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_sysctl.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_trace.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_logging.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_pm.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_common.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/raid_class.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_transport_iscsi.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_transport_sas.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/libsas/sas_init.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/libsas/sas_phy.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/libsas/sas_port.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/libsas/sas_event.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/libsas/sas_discover.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/libsas/sas_expander.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/libsas/sas_scsi_host.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/libsas/sas_task.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/sd.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/sd_dif.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/sg.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/ch.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/host/core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/host/trace.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/host/multipath.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/host/lightnvm.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/host/fabrics.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/host/fc.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/target/core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/target/configfs.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/target/admin-cmd.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/target/fabrics-cmd.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/target/discovery.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/target/io-cmd-file.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/target/io-cmd-bdev.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/target/trace.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/target/fc.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/target/fcloop.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mtd/mtdcore.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mtd/mtdsuper.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mtd/mtdconcat.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mtd/mtdpart.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mtd/mtdchar.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mtd/parsers/ar7part.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mtd/parsers/cmdlinepart.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mtd/parsers/redboot.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mtd/mtd_blkdevs.o' being placed in section `.ctors.65435'.
..

---
0-DAY kernel test infrastructure                 Open Source Technology Center
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org Intel Corporation

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 30319 bytes --]

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

* Re: [PATCH v2 2/5] mfd: rn5t618: add irq support
  2019-10-31 21:38 ` [PATCH v2 2/5] mfd: rn5t618: add irq support Andreas Kemnade
  2019-11-06 21:48   ` Andreas Kemnade
@ 2019-11-16  6:52   ` kbuild test robot
  2019-11-20  7:54   ` Pierre-Hugues Husson
  2 siblings, 0 replies; 15+ messages in thread
From: kbuild test robot @ 2019-11-16  6:52 UTC (permalink / raw)
  To: Andreas Kemnade
  Cc: kbuild-all, lee.jones, a.zummo, alexandre.belloni, linux-kernel,
	linux-rtc, phh, b.galvani, stefan, letux-kernel, Andreas Kemnade

[-- Attachment #1: Type: text/plain, Size: 55762 bytes --]

Hi Andreas,

Thank you for the patch! Perhaps something to improve:

[auto build test WARNING on ljones-mfd/for-mfd-next]
[also build test WARNING on v5.4-rc7 next-20191115]
[if your patch is applied to the wrong git tree, please drop us a note to help
improve the system. BTW, we also suggest to use '--base' option to specify the
base tree in git format-patch, please see https://stackoverflow.com/a/37406982]

url:    https://github.com/0day-ci/linux/commits/Andreas-Kemnade/Add-rtc-support-for-rn5t618-mfd/20191102-142337
base:   https://git.kernel.org/pub/scm/linux/kernel/git/lee/mfd.git for-mfd-next
config: powerpc-randconfig-a001-20191115 (attached as .config)
compiler: powerpc64-linux-gcc (GCC) 7.4.0
reproduce:
        wget https://raw.githubusercontent.com/intel/lkp-tests/master/sbin/make.cross -O ~/bin/make.cross
        chmod +x ~/bin/make.cross
        # save the attached .config to linux build tree
        GCC_VERSION=7.4.0 make.cross ARCH=powerpc 

If you fix the issue, kindly add following tag
Reported-by: kbuild test robot <lkp@intel.com>

All warnings (new ones prefixed by >>):

   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/power/sysfs.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/power/generic_ops.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/power/common.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/power/qos.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/power/runtime.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/power/wakeirq.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/power/clock_ops.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/firmware_loader/main.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/firmware_loader/fallback.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/node.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/module.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/regmap/regmap.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/regmap/regcache.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/regmap/regcache-rbtree.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/regmap/regcache-flat.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/regmap/regmap-debugfs.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/regmap/regmap-i2c.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/regmap/regmap-mmio.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/regmap/regmap-irq.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/regmap/regmap-w1.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/regmap/regmap-i3c.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/soc.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/devcoredump.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/dummy-irq.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/ics932s401.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/apds990x.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/apds9802als.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/isl29003.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/ds1682.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/c2port/core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/eeprom/eeprom.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/eeprom/max6875.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/eeprom/eeprom_93cx6.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/altera-stapl/altera-lpt.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/altera-stapl/altera-jtag.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/altera-stapl/altera-comp.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/altera-stapl/altera.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/sram.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/echo/echo.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/pvpanic.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/xilinx_sdfec.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/88pm800.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/88pm80x.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/act8945a.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/sm501.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/bcm590xx.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/bd9571mwv.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/htc-i2cpld.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/lp873x.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/lp87565.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/ti_am335x_tscadc.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/wm831x-core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/wm831x-irq.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/wm831x-otp.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/wm831x-auxadc.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/wm831x-i2c.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/wm8994-core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/wm8994-irq.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/wm8994-regmap.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/tps6105x.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/tps6507x.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/tps65086.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/tps65217.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/tps65218.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/tps80031.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/twl-core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/twl4030-irq.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/twl6030-irq.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/twl4030-audio.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/mc13xxx-core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/mc13xxx-i2c.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/mfd-core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/smsc-ece1099.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/da903x.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/lp3943.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/ti-lmu.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/da9063-core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/da9063-irq.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/da9063-i2c.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/max14577.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/max77693.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/max77843.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/max8925-core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/max8925-i2c.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/max8998.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/max8998-irq.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/pcf50633-core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/pcf50633-irq.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/pcf50633-adc.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/pcf50633-gpio.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/kempld-core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/wl1273-core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/si476x-cmd.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/si476x-prop.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/si476x-i2c.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/aat2870-core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/atmel-flexcom.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/palmas.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/rk808.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/rn5t618-core.o' being placed in section `.ctors.65435'.
>> powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/rn5t618-irq.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/syscon.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/lm3533-core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/lm3533-ctrlbank.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/retu-mfd.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/as3722.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/menf21bmc.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/rt5033.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/sky81452.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/mt6397-core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/mt6397-irq.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/rohm-bd70528.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/dax/super.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/dax/bus.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/dma-buf/dma-buf.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/dma-buf/dma-fence.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/dma-buf/dma-fence-array.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/dma-buf/dma-fence-chain.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/dma-buf/dma-resv.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/dma-buf/seqno-fence.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/dma-buf/sync_file.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/dma-buf/udmabuf.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/dma-buf/selftest.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/dma-buf/st-dma-fence.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-ioctls.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-io.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-iops.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-lib.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-probe.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-taskfile.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-pm.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-park.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-sysfs.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-devsets.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-io-std.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-eh.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-atapi.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-proc.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-gd.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-floppy.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-floppy_ioctl.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-floppy_proc.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-tape.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-cs.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide_platform.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/hosts.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_ioctl.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsicam.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_error.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_lib.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_lib_dma.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_scan.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_sysfs.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_devinfo.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_sysctl.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_trace.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_logging.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_pm.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_common.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/raid_class.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_transport_iscsi.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_transport_sas.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/libsas/sas_init.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/libsas/sas_phy.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/libsas/sas_port.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/libsas/sas_event.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/libsas/sas_discover.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/libsas/sas_expander.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/libsas/sas_scsi_host.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/libsas/sas_task.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/sd.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/sd_dif.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/sg.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/ch.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/host/core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/host/trace.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/host/multipath.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/host/lightnvm.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/host/fabrics.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/host/fc.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/target/core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/target/configfs.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/target/admin-cmd.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/target/fabrics-cmd.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/target/discovery.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/target/io-cmd-file.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/target/io-cmd-bdev.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/target/trace.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/target/fc.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/target/fcloop.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mtd/mtdcore.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mtd/mtdsuper.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mtd/mtdconcat.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mtd/mtdpart.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mtd/mtdchar.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mtd/parsers/ar7part.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mtd/parsers/cmdlinepart.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mtd/parsers/redboot.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mtd/mtd_blkdevs.o' being placed in section `.ctors.65435'.
--
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/power/sysfs.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/power/generic_ops.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/power/common.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/power/qos.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/power/runtime.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/power/wakeirq.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/power/clock_ops.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/firmware_loader/main.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/firmware_loader/fallback.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/node.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/module.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/regmap/regmap.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/regmap/regcache.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/regmap/regcache-rbtree.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/regmap/regcache-flat.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/regmap/regmap-debugfs.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/regmap/regmap-i2c.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/regmap/regmap-mmio.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/regmap/regmap-irq.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/regmap/regmap-w1.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/regmap/regmap-i3c.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/soc.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/base/devcoredump.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/dummy-irq.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/ics932s401.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/apds990x.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/apds9802als.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/isl29003.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/ds1682.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/c2port/core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/eeprom/eeprom.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/eeprom/max6875.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/eeprom/eeprom_93cx6.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/altera-stapl/altera-lpt.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/altera-stapl/altera-jtag.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/altera-stapl/altera-comp.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/altera-stapl/altera.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/sram.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/echo/echo.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/pvpanic.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/misc/xilinx_sdfec.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/88pm800.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/88pm80x.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/act8945a.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/sm501.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/bcm590xx.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/bd9571mwv.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/htc-i2cpld.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/lp873x.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/lp87565.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/ti_am335x_tscadc.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/wm831x-core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/wm831x-irq.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/wm831x-otp.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/wm831x-auxadc.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/wm831x-i2c.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/wm8994-core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/wm8994-irq.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/wm8994-regmap.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/tps6105x.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/tps6507x.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/tps65086.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/tps65217.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/tps65218.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/tps80031.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/twl-core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/twl4030-irq.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/twl6030-irq.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/twl4030-audio.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/mc13xxx-core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/mc13xxx-i2c.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/mfd-core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/smsc-ece1099.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/da903x.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/lp3943.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/ti-lmu.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/da9063-core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/da9063-irq.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/da9063-i2c.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/max14577.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/max77693.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/max77843.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/max8925-core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/max8925-i2c.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/max8998.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/max8998-irq.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/pcf50633-core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/pcf50633-irq.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/pcf50633-adc.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/pcf50633-gpio.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/kempld-core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/wl1273-core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/si476x-cmd.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/si476x-prop.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/si476x-i2c.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/aat2870-core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/atmel-flexcom.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/palmas.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/rk808.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/rn5t618-core.o' being placed in section `.ctors.65435'.
>> powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/rn5t618-irq.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/syscon.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/lm3533-core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/lm3533-ctrlbank.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/retu-mfd.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/as3722.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/menf21bmc.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/rt5033.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/sky81452.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/mt6397-core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/mt6397-irq.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mfd/rohm-bd70528.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/dax/super.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/dax/bus.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/dma-buf/dma-buf.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/dma-buf/dma-fence.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/dma-buf/dma-fence-array.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/dma-buf/dma-fence-chain.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/dma-buf/dma-resv.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/dma-buf/seqno-fence.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/dma-buf/sync_file.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/dma-buf/udmabuf.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/dma-buf/selftest.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/dma-buf/st-dma-fence.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-ioctls.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-io.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-iops.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-lib.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-probe.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-taskfile.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-pm.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-park.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-sysfs.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-devsets.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-io-std.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-eh.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-atapi.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-proc.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-gd.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-floppy.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-floppy_ioctl.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-floppy_proc.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-tape.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide-cs.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/ide/ide_platform.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/hosts.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_ioctl.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsicam.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_error.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_lib.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_lib_dma.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_scan.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_sysfs.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_devinfo.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_sysctl.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_trace.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_logging.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_pm.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_common.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/raid_class.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_transport_iscsi.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/scsi_transport_sas.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/libsas/sas_init.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/libsas/sas_phy.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/libsas/sas_port.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/libsas/sas_event.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/libsas/sas_discover.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/libsas/sas_expander.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/libsas/sas_scsi_host.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/libsas/sas_task.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/sd.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/sd_dif.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/sg.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/scsi/ch.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/host/core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/host/trace.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/host/multipath.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/host/lightnvm.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/host/fabrics.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/host/fc.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/target/core.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/target/configfs.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/target/admin-cmd.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/target/fabrics-cmd.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/target/discovery.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/target/io-cmd-file.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/target/io-cmd-bdev.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/target/trace.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/target/fc.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/nvme/target/fcloop.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mtd/mtdcore.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mtd/mtdsuper.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mtd/mtdconcat.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mtd/mtdpart.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mtd/mtdchar.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mtd/parsers/ar7part.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mtd/parsers/cmdlinepart.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mtd/parsers/redboot.o' being placed in section `.ctors.65435'.
   powerpc64-linux-ld: warning: orphan section `.ctors.65435' from `drivers/mtd/mtd_blkdevs.o' being placed in section `.ctors.65435'.
..

---
0-DAY kernel test infrastructure                 Open Source Technology Center
https://lists.01.org/hyperkitty/list/kbuild-all@lists.01.org Intel Corporation

[-- Attachment #2: .config.gz --]
[-- Type: application/gzip, Size: 30319 bytes --]

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

* Re: [PATCH v2 2/5] mfd: rn5t618: add irq support
  2019-10-31 21:38 ` [PATCH v2 2/5] mfd: rn5t618: add irq support Andreas Kemnade
  2019-11-06 21:48   ` Andreas Kemnade
  2019-11-16  6:52   ` kbuild test robot
@ 2019-11-20  7:54   ` Pierre-Hugues Husson
  2019-11-20  8:13     ` Andreas Kemnade
  2 siblings, 1 reply; 15+ messages in thread
From: Pierre-Hugues Husson @ 2019-11-20  7:54 UTC (permalink / raw)
  To: Andreas Kemnade
  Cc: Lee Jones, a.zummo, alexandre.belloni, linux-kernel, linux-rtc,
	b.galvani, stefan, letux-kernel

Le jeu. 31 oct. 2019 à 22:38, Andreas Kemnade <andreas@kemnade.info> a écrit :
>
> This adds support for irq handling in the rc5t619 which is required
> for properly implementing subdevices like rtc.
> For now only definitions for the variant rc5t619 are included.
>
> Signed-off-by: Andreas Kemnade <andreas@kemnade.info>
> ---
> Changes in v2:
> - no dead code, did some more testing and thinking for that
> - remove extra empty lines
>  drivers/mfd/Kconfig         |  1 +
>  drivers/mfd/Makefile        |  2 +-
>  drivers/mfd/rn5t618-core.c  | 35 ++++++++++++++-
>  drivers/mfd/rn5t618-irq.c   | 85 +++++++++++++++++++++++++++++++++++++
>  include/linux/mfd/rn5t618.h | 16 +++++++
>  5 files changed, 137 insertions(+), 2 deletions(-)
>  create mode 100644 drivers/mfd/rn5t618-irq.c
>
> diff --git a/drivers/mfd/Kconfig b/drivers/mfd/Kconfig
> index ae24d3ea68ea..522e068d0082 100644
> --- a/drivers/mfd/Kconfig
> +++ b/drivers/mfd/Kconfig
> @@ -1057,6 +1057,7 @@ config MFD_RN5T618
>         depends on OF
>         select MFD_CORE
>         select REGMAP_I2C
> +       select REGMAP_IRQ
>         help
>           Say yes here to add support for the Ricoh RN5T567,
>           RN5T618, RC5T619 PMIC.
> diff --git a/drivers/mfd/Makefile b/drivers/mfd/Makefile
> index 110ea700231b..2906d5db67d0 100644
> --- a/drivers/mfd/Makefile
> +++ b/drivers/mfd/Makefile
> @@ -217,7 +217,7 @@ obj-$(CONFIG_MFD_VIPERBOARD)    += viperboard.o
>  obj-$(CONFIG_MFD_RC5T583)      += rc5t583.o rc5t583-irq.o
>  obj-$(CONFIG_MFD_RK808)                += rk808.o
>
> -rn5t618-objs                   := rn5t618-core.o
> +rn5t618-objs                   := rn5t618-core.o rn5t618-irq.o
>  obj-$(CONFIG_MFD_RN5T618)      += rn5t618.o
>  obj-$(CONFIG_MFD_SEC_CORE)     += sec-core.o sec-irq.o
>  obj-$(CONFIG_MFD_SYSCON)       += syscon.o
> diff --git a/drivers/mfd/rn5t618-core.c b/drivers/mfd/rn5t618-core.c
> index da5cd9c92a59..d4ed2865ed8b 100644
> --- a/drivers/mfd/rn5t618-core.c
> +++ b/drivers/mfd/rn5t618-core.c
> @@ -8,6 +8,7 @@
>
>  #include <linux/delay.h>
>  #include <linux/i2c.h>
> +#include <linux/interrupt.h>
>  #include <linux/mfd/core.h>
>  #include <linux/mfd/rn5t618.h>
>  #include <linux/module.h>
> @@ -105,7 +106,8 @@ static int rn5t618_i2c_probe(struct i2c_client *i2c,
>
>         i2c_set_clientdata(i2c, priv);
>         priv->variant = (long)of_id->data;
> -
> +       priv->chip_irq = i2c->irq;
> +       priv->dev = &i2c->dev;
>         priv->regmap = devm_regmap_init_i2c(i2c, &rn5t618_regmap_config);
>         if (IS_ERR(priv->regmap)) {
>                 ret = PTR_ERR(priv->regmap);
> @@ -137,6 +139,11 @@ static int rn5t618_i2c_probe(struct i2c_client *i2c,
>                 return ret;
>         }
>
> +       if (priv->chip_irq > 0) {
> +               if (rn5t618_irq_init(priv))
> +                       priv->chip_irq = 0;
> +       }
> +
>         return 0;
>  }
>
> @@ -154,15 +161,41 @@ static int rn5t618_i2c_remove(struct i2c_client *i2c)
>         return 0;
>  }
>
> +static int __maybe_unused rn5t618_i2c_suspend(struct device *dev)
> +{
> +       struct rn5t618 *priv = dev_get_drvdata(dev);
> +
> +       if (priv->chip_irq)
> +               disable_irq(priv->chip_irq);
> +
> +       return 0;
> +}
> +
> +static int __maybe_unused rn5t618_i2c_resume(struct device *dev)
> +{
> +       struct rn5t618 *priv = dev_get_drvdata(dev);
> +
> +       if (priv->chip_irq)
> +               enable_irq(priv->chip_irq);
> +
> +       return 0;
> +}

For what it's worth, the boards I have (Archos 101 Oxygen and Pipo P9)
with rc5t619 use GPIO for power button.
So IRQ would need to be enabled in suspend for this to work.
Also, since you actually added alarm support, perhaps you want to
wake-up from suspend using alarm as well?

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

* Re: [PATCH v2 2/5] mfd: rn5t618: add irq support
  2019-11-20  7:54   ` Pierre-Hugues Husson
@ 2019-11-20  8:13     ` Andreas Kemnade
  0 siblings, 0 replies; 15+ messages in thread
From: Andreas Kemnade @ 2019-11-20  8:13 UTC (permalink / raw)
  To: Pierre-Hugues Husson
  Cc: Lee Jones, a.zummo, alexandre.belloni, linux-kernel, linux-rtc,
	b.galvani, stefan, letux-kernel

On Wed, 20 Nov 2019 08:54:44 +0100
Pierre-Hugues Husson <phh@phh.me> wrote:

[...]
> >
> > +static int __maybe_unused rn5t618_i2c_suspend(struct device *dev)
> > +{
> > +       struct rn5t618 *priv = dev_get_drvdata(dev);
> > +
> > +       if (priv->chip_irq)
> > +               disable_irq(priv->chip_irq);
> > +
> > +       return 0;
> > +}
> > +
> > +static int __maybe_unused rn5t618_i2c_resume(struct device *dev)
> > +{
> > +       struct rn5t618 *priv = dev_get_drvdata(dev);
> > +
> > +       if (priv->chip_irq)
> > +               enable_irq(priv->chip_irq);
> > +
> > +       return 0;
> > +}  
> 
> For what it's worth, the boards I have (Archos 101 Oxygen and Pipo P9)
> with rc5t619 use GPIO for power button.
> So IRQ would need to be enabled in suspend for this to work.
> Also, since you actually added alarm support, perhaps you want to
> wake-up from suspend using alarm as well?
> 
Already tested that, that works, because device_init_wakeup() is used. 
disable_irq() is needed because we cannot do i2c that early after resume.
Other mfd drivers do thas as well and waking up works.

Regards,
Andreas

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

* Re: [PATCH v2 5/5] rtc: rtc-rc5t619: add ricoh rc5t619 RTC driver
  2019-10-31 21:38 ` [PATCH v2 5/5] rtc: rtc-rc5t619: add ricoh rc5t619 RTC driver Andreas Kemnade
@ 2019-11-28 10:57   ` Alexandre Belloni
  2019-11-29  6:59     ` Andreas Kemnade
  0 siblings, 1 reply; 15+ messages in thread
From: Alexandre Belloni @ 2019-11-28 10:57 UTC (permalink / raw)
  To: Andreas Kemnade
  Cc: lee.jones, a.zummo, linux-kernel, linux-rtc, phh, b.galvani,
	stefan, letux-kernel

Hello,

checkpatch.pl --strict complains about multiple blank lines and alignment.

On 31/10/2019 22:38:35+0100, Andreas Kemnade wrote:
> +static int rc5t619_rtc_probe(struct platform_device *pdev)
> +{
> +	struct device *dev = &pdev->dev;
> +	struct rn5t618 *rn5t618 = dev_get_drvdata(pdev->dev.parent);
> +	struct rc5t619_rtc *rtc;
> +	uint8_t alarm_flag;
> +	unsigned int ctrl2;
> +	int err;
> +
> +	rtc = devm_kzalloc(dev, sizeof(*rtc), GFP_KERNEL);
> +	if (IS_ERR(rtc)) {
> +		err = PTR_ERR(rtc);
> +		return -ENOMEM;
> +	}
> +
> +	rtc->rn5t618 = rn5t618;
> +
> +	dev_set_drvdata(dev, rtc);
> +	rtc->irq = -1;
> +
> +	if (rn5t618->irq_data)
> +		rtc->irq = regmap_irq_get_virq(rn5t618->irq_data,
> +				RN5T618_IRQ_RTC);
> +
> +	if (rtc->irq  < 0) {
> +		dev_err(dev, "no irq specified, wakeup is disabled\n");

I don't think it is worth having an error message here, especially since
you have a second one later.

> +		rtc->irq = -1;
> +	}
> +
> +	err = regmap_read(rtc->rn5t618->regmap, RN5T618_RTC_CTRL2, &ctrl2);
> +	if (err < 0)
> +		return err;
> +
> +	/* get interrupt flag */
> +	err = rc5t619_rtc_alarm_is_enabled(dev, &alarm_flag);
> +	if (err)
> +		return err;
> +
> +	/* disable rtc periodic function */
> +	err = rc5t619_rtc_periodic_disable(&pdev->dev);
> +	if (err)
> +		return err;
> +
> +	/* disable interrupt */
> +	err = rc5t619_rtc_alarm_enable(&pdev->dev, 0);
> +	if (err)
> +		return err;

Is it really useful to disable the alarm to reenable them later?

> +
> +	if (ctrl2 & CTRL2_PON) {
> +		alarm_flag = 0;
> +		err = rc5t619_rtc_alarm_flag_clr(&pdev->dev);
> +		if (err)
> +			return err;
> +	}
> +
> +	rtc->rtc = devm_rtc_allocate_device(&pdev->dev);
> +

Please remove this blank line.

> +	if (IS_ERR(rtc->rtc)) {
> +		err = PTR_ERR(rtc->rtc);
> +		dev_err(dev, "RTC device register: err %d\n", err);
> +		return err;
> +	}
> +
> +	rtc->rtc->ops = &rc5t619_rtc_ops;
> +	rtc->rtc->range_min = RTC_TIMESTAMP_BEGIN_1900;
> +	rtc->rtc->range_max = RTC_TIMESTAMP_END_2099;
> +
> +	/* set interrupt and enable it */
> +	if (rtc->irq != -1) {
> +		device_init_wakeup(&pdev->dev, 1);
> +
> +		err = devm_request_threaded_irq(&pdev->dev, rtc->irq, NULL,
> +						rc5t619_rtc_irq,
> +						IRQF_ONESHOT,
> +						"rtc-rc5t619",
> +						&pdev->dev);
> +		if (err < 0) {
> +			dev_err(&pdev->dev, "request IRQ:%d fail\n", rtc->irq);
> +			rtc->irq = -1;
> +
> +			err = rc5t619_rtc_alarm_enable(&pdev->dev, 0);
> +			if (err)
> +				return err;
> +
> +		} else {
> +			/* enable wake */

I think you should move device_init_wakeup() here, unless your parse the
wakeup-source property.

> +			enable_irq_wake(rtc->irq);
> +			/* enable alarm_d */
> +			err = rc5t619_rtc_alarm_enable(&pdev->dev, alarm_flag);
> +			if (err) {
> +				dev_err(&pdev->dev, "failed rtc setup\n");
> +				return -EBUSY;
> +			}
> +		}
> +	} else {
> +		/* system don't want to using alarm interrupt, so close it */
> +		err = rc5t619_rtc_alarm_enable(&pdev->dev, 0);
> +		if (err) {
> +			dev_err(&pdev->dev, "disable rtc alarm error\n");

I don't think this message is necessary.

> +			return err;
> +		}
> +
> +		dev_err(&pdev->dev, "ricoh61x interrupt is disabled\n");

Maybe dev_warn as the driver just continues on.

> +	}
> +
> +	return rtc_register_device(rtc->rtc);
> +}

-- 
Alexandre Belloni, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

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

* Re: [PATCH v2 5/5] rtc: rtc-rc5t619: add ricoh rc5t619 RTC driver
  2019-11-28 10:57   ` Alexandre Belloni
@ 2019-11-29  6:59     ` Andreas Kemnade
  2019-11-29  8:55       ` Alexandre Belloni
  0 siblings, 1 reply; 15+ messages in thread
From: Andreas Kemnade @ 2019-11-29  6:59 UTC (permalink / raw)
  To: Alexandre Belloni
  Cc: lee.jones, a.zummo, linux-kernel, linux-rtc, phh, b.galvani,
	stefan, letux-kernel

[-- Attachment #1: Type: text/plain, Size: 4099 bytes --]

Hi,

On Thu, 28 Nov 2019 11:57:51 +0100
Alexandre Belloni <alexandre.belloni@bootlin.com> wrote:

> Hello,
> 
> checkpatch.pl --strict complains about multiple blank lines and alignment.
> 
I have not used the strict flag there. But I think I can make
--strict happy.

> On 31/10/2019 22:38:35+0100, Andreas Kemnade wrote:
> > +static int rc5t619_rtc_probe(struct platform_device *pdev)
> > +{
> > +	struct device *dev = &pdev->dev;
> > +	struct rn5t618 *rn5t618 = dev_get_drvdata(pdev->dev.parent);
> > +	struct rc5t619_rtc *rtc;
> > +	uint8_t alarm_flag;
> > +	unsigned int ctrl2;
> > +	int err;
> > +
> > +	rtc = devm_kzalloc(dev, sizeof(*rtc), GFP_KERNEL);
> > +	if (IS_ERR(rtc)) {
> > +		err = PTR_ERR(rtc);
> > +		return -ENOMEM;
> > +	}
> > +
> > +	rtc->rn5t618 = rn5t618;
> > +
> > +	dev_set_drvdata(dev, rtc);
> > +	rtc->irq = -1;
> > +
> > +	if (rn5t618->irq_data)
> > +		rtc->irq = regmap_irq_get_virq(rn5t618->irq_data,
> > +				RN5T618_IRQ_RTC);
> > +
> > +	if (rtc->irq  < 0) {
> > +		dev_err(dev, "no irq specified, wakeup is disabled\n");  
> 
> I don't think it is worth having an error message here, especially since
> you have a second one later.
> 
agreed.

> > +		rtc->irq = -1;
> > +	}
> > +
> > +	err = regmap_read(rtc->rn5t618->regmap, RN5T618_RTC_CTRL2, &ctrl2);
> > +	if (err < 0)
> > +		return err;
> > +
> > +	/* get interrupt flag */
> > +	err = rc5t619_rtc_alarm_is_enabled(dev, &alarm_flag);
> > +	if (err)
> > +		return err;
> > +
> > +	/* disable rtc periodic function */
> > +	err = rc5t619_rtc_periodic_disable(&pdev->dev);
> > +	if (err)
> > +		return err;
> > +
> > +	/* disable interrupt */
> > +	err = rc5t619_rtc_alarm_enable(&pdev->dev, 0);
> > +	if (err)
> > +		return err;  
> 
> Is it really useful to disable the alarm to reenable them later?
> 
Well, yes, seems to be nonsense.
Am I right that I do not need to prevent alarm irqs between
alloc() and register()?

> > +
> > +	if (ctrl2 & CTRL2_PON) {
> > +		alarm_flag = 0;
> > +		err = rc5t619_rtc_alarm_flag_clr(&pdev->dev);
> > +		if (err)
> > +			return err;
> > +	}
> > +
> > +	rtc->rtc = devm_rtc_allocate_device(&pdev->dev);
> > +  
> 
> Please remove this blank line.
> 
Ok.

> > +	if (IS_ERR(rtc->rtc)) {
> > +		err = PTR_ERR(rtc->rtc);
> > +		dev_err(dev, "RTC device register: err %d\n", err);
> > +		return err;
> > +	}
> > +
> > +	rtc->rtc->ops = &rc5t619_rtc_ops;
> > +	rtc->rtc->range_min = RTC_TIMESTAMP_BEGIN_1900;
> > +	rtc->rtc->range_max = RTC_TIMESTAMP_END_2099;
> > +
> > +	/* set interrupt and enable it */
> > +	if (rtc->irq != -1) {
> > +		device_init_wakeup(&pdev->dev, 1);
> > +
> > +		err = devm_request_threaded_irq(&pdev->dev,
> > rtc->irq, NULL,
> > +						rc5t619_rtc_irq,
> > +						IRQF_ONESHOT,
> > +						"rtc-rc5t619",
> > +						&pdev->dev);
> > +		if (err < 0) {
> > +			dev_err(&pdev->dev, "request IRQ:%d
> > fail\n", rtc->irq);
> > +			rtc->irq = -1;
> > +
> > +			err = rc5t619_rtc_alarm_enable(&pdev->dev,
> > 0);
> > +			if (err)
> > +				return err;
> > +
> > +		} else {
> > +			/* enable wake */  
> 
> I think you should move device_init_wakeup() here, unless your parse
> the wakeup-source property.
> 
yes, makes sense.

> > +			enable_irq_wake(rtc->irq);
> > +			/* enable alarm_d */
> > +			err = rc5t619_rtc_alarm_enable(&pdev->dev,
> > alarm_flag);
> > +			if (err) {
> > +				dev_err(&pdev->dev, "failed rtc
> > setup\n");
> > +				return -EBUSY;
> > +			}
> > +		}
> > +	} else {
> > +		/* system don't want to using alarm interrupt, so
> > close it */
> > +		err = rc5t619_rtc_alarm_enable(&pdev->dev, 0);
> > +		if (err) {
> > +			dev_err(&pdev->dev, "disable rtc alarm
> > error\n");  
> 
> I don't think this message is necessary.
> 
yes, agreed, that would be just another symptom of an i2c problem.
> > +			return err;
> > +		}
> > +
> > +		dev_err(&pdev->dev, "ricoh61x interrupt is
> > disabled\n");  
> 
> Maybe dev_warn as the driver just continues on.
> 
Ok.

Regards,
Andreas

[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

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

* Re: [PATCH v2 5/5] rtc: rtc-rc5t619: add ricoh rc5t619 RTC driver
  2019-11-29  6:59     ` Andreas Kemnade
@ 2019-11-29  8:55       ` Alexandre Belloni
  2019-11-29 11:25         ` Andreas Kemnade
  0 siblings, 1 reply; 15+ messages in thread
From: Alexandre Belloni @ 2019-11-29  8:55 UTC (permalink / raw)
  To: Andreas Kemnade
  Cc: lee.jones, a.zummo, linux-kernel, linux-rtc, phh, b.galvani,
	stefan, letux-kernel

On 29/11/2019 07:59:40+0100, Andreas Kemnade wrote:
> > > +	/* disable interrupt */
> > > +	err = rc5t619_rtc_alarm_enable(&pdev->dev, 0);
> > > +	if (err)
> > > +		return err;  
> > 
> > Is it really useful to disable the alarm to reenable them later?
> > 
> Well, yes, seems to be nonsense.
> Am I right that I do not need to prevent alarm irqs between
> alloc() and register()?
> 

That's fine, the core will be ready to handle alarms after alloc()


-- 
Alexandre Belloni, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

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

* Re: [PATCH v2 5/5] rtc: rtc-rc5t619: add ricoh rc5t619 RTC driver
  2019-11-29  8:55       ` Alexandre Belloni
@ 2019-11-29 11:25         ` Andreas Kemnade
  0 siblings, 0 replies; 15+ messages in thread
From: Andreas Kemnade @ 2019-11-29 11:25 UTC (permalink / raw)
  To: Alexandre Belloni
  Cc: lee.jones, a.zummo, linux-kernel, linux-rtc, phh, b.galvani,
	stefan, letux-kernel

On Fri, 29 Nov 2019 09:55:00 +0100
Alexandre Belloni <alexandre.belloni@bootlin.com> wrote:

> On 29/11/2019 07:59:40+0100, Andreas Kemnade wrote:
> > > > +	/* disable interrupt */
> > > > +	err = rc5t619_rtc_alarm_enable(&pdev->dev, 0);
> > > > +	if (err)
> > > > +		return err;    
> > > 
> > > Is it really useful to disable the alarm to reenable them later?
> > >   
> > Well, yes, seems to be nonsense.
> > Am I right that I do not need to prevent alarm irqs between
> > alloc() and register()?
> >   
> 
> That's fine, the core will be ready to handle alarms after alloc()
> 
ok, will clean that up and probably produce a -v3 this evening.

Regards,
Andreas

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

end of thread, other threads:[~2019-11-29 11:25 UTC | newest]

Thread overview: 15+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-10-31 21:38 [PATCH v2 0/5] Add rtc support for rn5t618 mfd Andreas Kemnade
2019-10-31 21:38 ` [PATCH v2 1/5] mfd: rn5t618: prepare for irq handling Andreas Kemnade
2019-11-16  0:41   ` kbuild test robot
2019-10-31 21:38 ` [PATCH v2 2/5] mfd: rn5t618: add irq support Andreas Kemnade
2019-11-06 21:48   ` Andreas Kemnade
2019-11-16  6:52   ` kbuild test robot
2019-11-20  7:54   ` Pierre-Hugues Husson
2019-11-20  8:13     ` Andreas Kemnade
2019-10-31 21:38 ` [PATCH v2 3/5] mfd: rn5t618: add rtc related registers Andreas Kemnade
2019-10-31 21:38 ` [PATCH v2 4/5] mfd: rn5t618: add more subdevices Andreas Kemnade
2019-10-31 21:38 ` [PATCH v2 5/5] rtc: rtc-rc5t619: add ricoh rc5t619 RTC driver Andreas Kemnade
2019-11-28 10:57   ` Alexandre Belloni
2019-11-29  6:59     ` Andreas Kemnade
2019-11-29  8:55       ` Alexandre Belloni
2019-11-29 11:25         ` Andreas Kemnade

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