lists.openwall.net   lists  /  announce  owl-users  owl-dev  john-users  john-dev  passwdqc-users  yescrypt  popa3d-users  /  oss-security  kernel-hardening  musl  sabotage  tlsify  passwords  /  crypt-dev  xvendor  /  Bugtraq  Full-Disclosure  linux-kernel  linux-netdev  linux-ext4  linux-hardening  linux-cve-announce  PHC 
Open Source and information security mailing list archives
 
Hash Suite: Windows password security audit tool. GUI, reports in PDF.
[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Date:   Thu, 2 Nov 2023 22:27:31 +0800
From:   James Tai <james.tai@...ltek.com>
To:     <linux-kernel@...r.kernel.org>,
        <linux-realtek-soc@...ts.infradead.org>
CC:     Thomas Gleixner <tglx@...utronix.de>, Marc Zyngier <maz@...nel.org>
Subject: [PATCH 6/6] irqchip: Introduce RTD1619B support using the Realtek Common Interrupt Controller Driver

Add support for the RTD1619B platform.

Signed-off-by: James Tai <james.tai@...ltek.com>
Change-Id: I1147a27add069b86c879d15003ded2e364f11ea9
---
 drivers/irqchip/Kconfig                |   6 +
 drivers/irqchip/Makefile               |   1 +
 drivers/irqchip/irq-realtek-rtd1619b.c | 201 +++++++++++++++++++++++++
 3 files changed, 208 insertions(+)
 create mode 100644 drivers/irqchip/irq-realtek-rtd1619b.c

diff --git a/drivers/irqchip/Kconfig b/drivers/irqchip/Kconfig
index 65e2d67d1505..c5b2762df420 100644
--- a/drivers/irqchip/Kconfig
+++ b/drivers/irqchip/Kconfig
@@ -240,6 +240,12 @@ config REALTEK_RTD1325_INTC
 	help
 	  Support for Realtek RTD1325 Interrupt Controller.
 
+config REALTEK_RTD1619B_INTC
+	tristate "Realtek RTD1619B interrupt controller"
+	select REALTEK_DHC_INTC
+	help
+	  Support for Realtek RTD1619B Interrupt Controller.
+
 config RENESAS_INTC_IRQPIN
 	bool "Renesas INTC External IRQ Pin Support" if COMPILE_TEST
 	select IRQ_DOMAIN
diff --git a/drivers/irqchip/Makefile b/drivers/irqchip/Makefile
index eaa12928d60b..da308aefcb87 100644
--- a/drivers/irqchip/Makefile
+++ b/drivers/irqchip/Makefile
@@ -51,6 +51,7 @@ obj-$(CONFIG_REALTEK_DHC_INTC)		+= irq-realtek-intc-common.o
 obj-$(CONFIG_REALTEK_RTD1319_INTC)	+= irq-realtek-rtd1319.o
 obj-$(CONFIG_REALTEK_RTD1319D_INTC)	+= irq-realtek-rtd1319d.o
 obj-$(CONFIG_REALTEK_RTD1325_INTC)	+= irq-realtek-rtd1325.o
+obj-$(CONFIG_REALTEK_RTD1619B_INTC)	+= irq-realtek-rtd1619b.o
 obj-$(CONFIG_RENESAS_INTC_IRQPIN)	+= irq-renesas-intc-irqpin.o
 obj-$(CONFIG_RENESAS_IRQC)		+= irq-renesas-irqc.o
 obj-$(CONFIG_RENESAS_RZA1_IRQC)		+= irq-renesas-rza1.o
diff --git a/drivers/irqchip/irq-realtek-rtd1619b.c b/drivers/irqchip/irq-realtek-rtd1619b.c
new file mode 100644
index 000000000000..d76c3f113984
--- /dev/null
+++ b/drivers/irqchip/irq-realtek-rtd1619b.c
@@ -0,0 +1,201 @@
+// SPDX-License-Identifier: (GPL-2.0-or-later OR BSD-2-Clause)
+/*
+ * Realtek RTD1619B interrupt controller driver
+ *
+ * Copyright (c) 2023 Realtek Semiconductor Corporation
+ */
+
+#include <linux/init.h>
+#include <linux/io.h>
+#include <linux/irqchip.h>
+#include <linux/of_device.h>
+#include <linux/platform_device.h>
+
+#include "irq-realtek-intc-common.h"
+
+enum rtd1619b_iso_isr_bits {
+	RTD1619B_ISO_ISR_TC3_SHIFT = 1,
+	RTD1619B_ISO_ISR_UR0_SHIFT = 2,
+	RTD1619B_ISO_ISR_LSADC0_SHIFT = 3,
+	RTD1619B_ISO_ISR_WDOG1_NMI_SHIFT = 4,
+	RTD1619B_ISO_ISR_IRDA_SHIFT = 5,
+	RTD1619B_ISO_ISR_SPI1_SHIFT = 6,
+	RTD1619B_ISO_ISR_WDOG2_NMI_SHIFT = 7,
+	RTD1619B_ISO_ISR_I2C0_SHIFT = 8,
+	RTD1619B_ISO_ISR_TC4_SHIFT = 9,
+	RTD1619B_ISO_ISR_TC7_SHIFT = 10,
+	RTD1619B_ISO_ISR_I2C1_SHIFT = 11,
+	RTD1619B_ISO_ISR_HIFI_WAKEUP_SHIFT = 14,
+	RTD1619B_ISO_ISR_WDOG4_NMI_SHIFT = 15,
+	RTD1619B_ISO_ISR_TC8_SHIFT = 16,
+	RTD1619B_ISO_ISR_VFD_SHIFT = 17,
+	RTD1619B_ISO_ISR_VTC_SHIFT = 18,
+	RTD1619B_ISO_ISR_GPIOA_SHIFT = 19,
+	RTD1619B_ISO_ISR_GPIODA_SHIFT = 20,
+	RTD1619B_ISO_ISR_ISO_MISC_SHIFT = 21,
+	RTD1619B_ISO_ISR_CBUS_SHIFT = 22,
+	RTD1619B_ISO_ISR_ETN_SHIFT = 23,
+	RTD1619B_ISO_ISR_USB_HOST_SHIFT = 24,
+	RTD1619B_ISO_ISR_USB_U3_DRD_SHIFT = 25,
+	RTD1619B_ISO_ISR_USB_U2_DRD_SHIFT = 26,
+	RTD1619B_ISO_ISR_WDOG3_NMI_SHIFT = 27,
+	RTD1619B_ISO_ISR_PORB_HV_CEN_SHIFT = 28,
+	RTD1619B_ISO_ISR_PORB_DV_CEN_SHIFT = 29,
+	RTD1619B_ISO_ISR_PORB_AV_CEN_SHIFT = 30,
+	RTD1619B_ISO_ISR_I2C1_REQ_SHIFT = 31,
+};
+static const u32 rtd1619b_iso_isr_to_scpu_int_en_mask[32] = {
+	[RTD1619B_ISO_ISR_SPI1_SHIFT] = BIT(1),
+	[RTD1619B_ISO_ISR_UR0_SHIFT] = BIT(2),
+	[RTD1619B_ISO_ISR_LSADC0_SHIFT] = BIT(3),
+	[RTD1619B_ISO_ISR_IRDA_SHIFT] = BIT(5),
+	[RTD1619B_ISO_ISR_I2C0_SHIFT] = BIT(8),
+	[RTD1619B_ISO_ISR_I2C1_SHIFT] = BIT(11),
+	[RTD1619B_ISO_ISR_VFD_SHIFT] = BIT(17),
+	[RTD1619B_ISO_ISR_GPIOA_SHIFT] = BIT(19),
+	[RTD1619B_ISO_ISR_GPIODA_SHIFT] = BIT(20),
+	[RTD1619B_ISO_ISR_PORB_HV_CEN_SHIFT] = BIT(28),
+	[RTD1619B_ISO_ISR_PORB_DV_CEN_SHIFT] = BIT(29),
+	[RTD1619B_ISO_ISR_PORB_AV_CEN_SHIFT] = BIT(30),
+	[RTD1619B_ISO_ISR_I2C1_REQ_SHIFT] = BIT(31),
+	[RTD1619B_ISO_ISR_WDOG1_NMI_SHIFT] = IRQ_ALWAYS_ENABLED,
+	[RTD1619B_ISO_ISR_WDOG2_NMI_SHIFT] = IRQ_ALWAYS_ENABLED,
+	[RTD1619B_ISO_ISR_WDOG3_NMI_SHIFT] = IRQ_ALWAYS_ENABLED,
+	[RTD1619B_ISO_ISR_WDOG4_NMI_SHIFT] = IRQ_ALWAYS_ENABLED,
+};
+enum rtd1619b_misc_isr_bits {
+	RTD1619B_ISR_UR1_SHIFT = 3,
+	RTD1619B_ISR_TC5_SHIFT = 4,
+	RTD1619B_ISR_UR1_TO_SHIFT = 5,
+	RTD1619B_ISR_TC0_SHIFT = 6,
+	RTD1619B_ISR_TC1_SHIFT = 7,
+	RTD1619B_ISR_UR2_SHIFT = 8,
+	RTD1619B_ISR_UR2_TO_SHIFT = 13,
+	RTD1619B_ISR_I2C5_SHIFT = 14,
+	RTD1619B_ISR_I2C4_SHIFT = 15,
+	RTD1619B_ISR_I2C3_SHIFT = 23,
+	RTD1619B_ISR_SC0_SHIFT = 24,
+	RTD1619B_ISR_SC1_SHIFT = 25,
+	RTD1619B_ISR_SPI_SHIFT = 27,
+	RTD1619B_ISR_FAN_SHIFT = 29,
+};
+static const u32 rtd1619b_misc_isr_to_scpu_int_en_mask[32] = {
+	[RTD1619B_ISR_UR1_SHIFT] = BIT(3),
+	[RTD1619B_ISR_UR1_TO_SHIFT] = BIT(5),
+	[RTD1619B_ISR_UR2_TO_SHIFT] = BIT(6),
+	[RTD1619B_ISR_UR2_SHIFT] = BIT(7),
+	[RTD1619B_ISR_I2C5_SHIFT] = BIT(14),
+	[RTD1619B_ISR_I2C4_SHIFT] = BIT(15),
+	[RTD1619B_ISR_SC0_SHIFT] = BIT(24),
+	[RTD1619B_ISR_SC1_SHIFT] = BIT(25),
+	[RTD1619B_ISR_SPI_SHIFT] = BIT(27),
+	[RTD1619B_ISR_I2C3_SHIFT] = BIT(28),
+	[RTD1619B_ISR_FAN_SHIFT] = BIT(29),
+};
+
+static struct realtek_intc_subset_cfg rtd1619b_intc_iso_cfgs[] = {
+	{ 0xf7ff7f6e, }, /* normal case */
+	{ 0x08008090, }, /* nmi wathdog case */
+};
+
+static const struct realtek_intc_info rtd1619b_intc_iso_info = {
+	.isr_offset = 0x0,
+	.umsk_isr_offset = 0x4,
+	.scpu_int_en_offset = 0x40,
+	.isr_to_scpu_int_en_mask = rtd1619b_iso_isr_to_scpu_int_en_mask,
+	.cfg = rtd1619b_intc_iso_cfgs,
+	.cfg_num = ARRAY_SIZE(rtd1619b_intc_iso_cfgs),
+};
+
+static struct realtek_intc_subset_cfg rtd1619b_intc_misc_cfgs[] = {
+	{ 0xffffded6, }, /* normal case */
+	{ 0x00000028, }, /* uart1 case */
+	{ 0x00002100, }, /* uart2 case */
+};
+
+static const struct realtek_intc_info rtd1619b_intc_misc_info = {
+	.umsk_isr_offset = 0x8,
+	.isr_offset = 0xc,
+	.scpu_int_en_offset = 0x80,
+	.isr_to_scpu_int_en_mask = rtd1619b_misc_isr_to_scpu_int_en_mask,
+	.cfg = rtd1619b_intc_misc_cfgs,
+	.cfg_num = ARRAY_SIZE(rtd1619b_intc_misc_cfgs),
+};
+
+static const struct of_device_id realtek_intc_rtd1619b_dt_matches[] = {
+	{
+		.compatible = "realtek,rtd1619b-intc-iso",
+		.data = &rtd1619b_intc_iso_info,
+	}, {
+		.compatible = "realtek,rtd1619b-intc-misc",
+		.data = &rtd1619b_intc_misc_info,
+	},
+	{ /* sentinel */ }
+};
+
+static int realtek_intc_rtd1619b_suspend(struct device *dev)
+{
+	struct realtek_intc_data *data = dev_get_drvdata(dev);
+	const struct realtek_intc_info *info = data->info;
+
+	data->saved_en = readl(data->base + info->scpu_int_en_offset);
+
+	writel(DISABLE_INTC, data->base + info->scpu_int_en_offset);
+	writel(CLEAN_INTC_STATUS, data->base + info->umsk_isr_offset);
+	writel(CLEAN_INTC_STATUS, data->base + info->isr_offset);
+
+	return 0;
+}
+
+static int realtek_intc_rtd1619b_resume(struct device *dev)
+{
+	struct realtek_intc_data *data = dev_get_drvdata(dev);
+	const struct realtek_intc_info *info = data->info;
+
+	writel(CLEAN_INTC_STATUS, data->base + info->umsk_isr_offset);
+	writel(CLEAN_INTC_STATUS, data->base + info->isr_offset);
+	writel(data->saved_en, data->base + info->scpu_int_en_offset);
+
+	return 0;
+}
+
+const struct dev_pm_ops realtek_intc_rtd1619b_pm_ops = {
+	.suspend_noirq = realtek_intc_rtd1619b_suspend,
+	.resume_noirq = realtek_intc_rtd1619b_resume,
+};
+
+static int rtd1619b_intc_probe(struct platform_device *pdev)
+{
+	const struct realtek_intc_info *info;
+
+	info = of_device_get_match_data(&pdev->dev);
+	if (!info)
+		return -EINVAL;
+
+	return realtek_intc_probe(pdev, info);
+}
+
+static struct platform_driver realtek_intc_rtd1619b_driver = {
+	.probe = rtd1619b_intc_probe,
+	.driver = {
+		.name = "realtek_intc_rtd1619b",
+		.of_match_table = realtek_intc_rtd1619b_dt_matches,
+		.suppress_bind_attrs = true,
+		.pm = &realtek_intc_rtd1619b_pm_ops,
+	},
+};
+
+static int __init realtek_intc_rtd1619b_init(void)
+{
+	return platform_driver_register(&realtek_intc_rtd1619b_driver);
+}
+core_initcall(realtek_intc_rtd1619b_init);
+
+static void __exit realtek_intc_rtd1619b_exit(void)
+{
+	platform_driver_unregister(&realtek_intc_rtd1619b_driver);
+}
+module_exit(realtek_intc_rtd1619b_exit);
+
+MODULE_LICENSE("GPL");
+MODULE_DESCRIPTION("Realtek RTD1619B Interrupt Controller Driver");
-- 
2.25.1

Powered by blists - more mailing lists

Powered by Openwall GNU/*/Linux Powered by OpenVZ