From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-6.8 required=3.0 tests=HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_PATCH,MAILING_LIST_MULTI,SIGNED_OFF_BY,SPF_HELO_NONE,SPF_PASS autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id 1232DC5DF62 for ; Wed, 6 Nov 2019 10:39:57 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id CAB9520869 for ; Wed, 6 Nov 2019 10:39:56 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1731322AbfKFKjz (ORCPT ); Wed, 6 Nov 2019 05:39:55 -0500 Received: from metis.ext.pengutronix.de ([85.220.165.71]:47945 "EHLO metis.ext.pengutronix.de" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1725937AbfKFKjz (ORCPT ); Wed, 6 Nov 2019 05:39:55 -0500 Received: from lupine.hi.pengutronix.de ([2001:67c:670:100:3ad5:47ff:feaf:1a17] helo=lupine) by metis.ext.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1iSIj5-0005La-Fe; Wed, 06 Nov 2019 11:39:47 +0100 Message-ID: <89250d485d05d4d671203ae615ebcf514b4d6705.camel@pengutronix.de> Subject: Re: [PATCH v4 3/3] reset: npcm: add NPCM reset controller driver From: Philipp Zabel To: Tomer Maimon , robh+dt@kernel.org, mark.rutland@arm.com, yuenn@google.com, venture@google.com, benjaminfair@google.com, avifishman70@gmail.com, joel@jms.id.au Cc: openbmc@lists.ozlabs.org, linux-kernel@vger.kernel.org, devicetree@vger.kernel.org Date: Wed, 06 Nov 2019 11:39:44 +0100 In-Reply-To: <20191106095832.236766-4-tmaimon77@gmail.com> References: <20191106095832.236766-1-tmaimon77@gmail.com> <20191106095832.236766-4-tmaimon77@gmail.com> Content-Type: text/plain; charset="UTF-8" User-Agent: Evolution 3.30.5-1.1 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-SA-Exim-Connect-IP: 2001:67c:670:100:3ad5:47ff:feaf:1a17 X-SA-Exim-Mail-From: p.zabel@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false X-PTX-Original-Recipient: linux-kernel@vger.kernel.org Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi Tomer, On Wed, 2019-11-06 at 11:58 +0200, Tomer Maimon wrote: > Add Nuvoton NPCM BMC reset controller driver. > > Signed-off-by: Tomer Maimon > --- > drivers/reset/Kconfig | 7 + > drivers/reset/Makefile | 1 + > drivers/reset/reset-npcm.c | 281 +++++++++++++++++++++++++++++++++++++ > 3 files changed, 289 insertions(+) > create mode 100644 drivers/reset/reset-npcm.c > > diff --git a/drivers/reset/Kconfig b/drivers/reset/Kconfig > index 7b07281aa0ae..9e3eac30e7db 100644 > --- a/drivers/reset/Kconfig > +++ b/drivers/reset/Kconfig > @@ -89,6 +89,13 @@ config RESET_MESON_AUDIO_ARB > This enables the reset driver for Audio Memory Arbiter of > Amlogic's A113 based SoCs > > +config RESET_NPCM > + bool "NPCM BMC Reset Driver" if COMPILE_TEST > + default ARCH_NPCM > + help > + This enables the reset controller driver for Nuvoton NPCM > + BMC SoCs. > + > config RESET_OXNAS > bool > > diff --git a/drivers/reset/Makefile b/drivers/reset/Makefile > index cf60ce526064..00767c03f5f2 100644 > --- a/drivers/reset/Makefile > +++ b/drivers/reset/Makefile > @@ -14,6 +14,7 @@ obj-$(CONFIG_RESET_LANTIQ) += reset-lantiq.o > obj-$(CONFIG_RESET_LPC18XX) += reset-lpc18xx.o > obj-$(CONFIG_RESET_MESON) += reset-meson.o > obj-$(CONFIG_RESET_MESON_AUDIO_ARB) += reset-meson-audio-arb.o > +obj-$(CONFIG_RESET_NPCM) += reset-npcm.o > obj-$(CONFIG_RESET_OXNAS) += reset-oxnas.o > obj-$(CONFIG_RESET_PISTACHIO) += reset-pistachio.o > obj-$(CONFIG_RESET_QCOM_AOSS) += reset-qcom-aoss.o > diff --git a/drivers/reset/reset-npcm.c b/drivers/reset/reset-npcm.c > new file mode 100644 > index 000000000000..ad09d466d7f9 > --- /dev/null > +++ b/drivers/reset/reset-npcm.c > @@ -0,0 +1,281 @@ > +// SPDX-License-Identifier: GPL-2.0 > +// Copyright (c) 2019 Nuvoton Technology corporation. > + > +#include > +#include > +#include > +#include > +#include > +#include > +#include > +#include > +#include > +#include > +#include > +#include > + > +/* NPCM7xx GCR registers */ > +#define NPCM_MDLR_OFFSET 0x7C > +#define NPCM_MDLR_USBD0 BIT(9) > +#define NPCM_MDLR_USBD1 BIT(8) > +#define NPCM_MDLR_USBD2_4 BIT(21) > +#define NPCM_MDLR_USBD5_9 BIT(22) > + > +#define NPCM_USB1PHYCTL_OFFSET 0x140 > +#define NPCM_USB2PHYCTL_OFFSET 0x144 > +#define NPCM_USBXPHYCTL_RS BIT(28) > + > +/* NPCM7xx Reset registers */ > +#define NPCM_SWRSTR 0x14 > +#define NPCM_SWRST BIT(2) > + > +#define NPCM_IPSRST1 0x20 > +#define NPCM_IPSRST1_USBD1 BIT(5) > +#define NPCM_IPSRST1_USBD2 BIT(8) > +#define NPCM_IPSRST1_USBD3 BIT(25) > +#define NPCM_IPSRST1_USBD4 BIT(22) > +#define NPCM_IPSRST1_USBD5 BIT(23) > +#define NPCM_IPSRST1_USBD6 BIT(24) > + > +#define NPCM_IPSRST2 0x24 > +#define NPCM_IPSRST2_USB_HOST BIT(26) > + > +#define NPCM_IPSRST3 0x34 > +#define NPCM_IPSRST3_USBD0 BIT(4) > +#define NPCM_IPSRST3_USBD7 BIT(5) > +#define NPCM_IPSRST3_USBD8 BIT(6) > +#define NPCM_IPSRST3_USBD9 BIT(7) > +#define NPCM_IPSRST3_USBPHY1 BIT(24) > +#define NPCM_IPSRST3_USBPHY2 BIT(25) > + > +#define NPCM_RC_RESETS_PER_REG 32 > +#define NPCM_MASK_RESETS GENMASK(4, 0) > + > +struct npcm_rc_data { > + struct reset_controller_dev rcdev; > + struct notifier_block restart_nb; > + u32 sw_reset_number; > + void __iomem *base; > + spinlock_t lock; > +}; > + > +#define to_rc_data(p) container_of(p, struct npcm_rc_data, rcdev) > + > +static int npcm_rc_restart(struct notifier_block *nb, unsigned long mode, > + void *cmd) > +{ > + struct npcm_rc_data *rc = container_of(nb, struct npcm_rc_data, > + restart_nb); > + > + writel(NPCM_SWRST << rc->sw_reset_number, rc->base + NPCM_SWRSTR); > + mdelay(1000); > + > + pr_emerg("%s: unable to restart system\n", __func__); > + > + return NOTIFY_DONE; > +} > + > +static int npcm_rc_setclear_reset(struct reset_controller_dev *rcdev, > + unsigned long id, bool set) > +{ > + struct npcm_rc_data *rc = to_rc_data(rcdev); > + unsigned int rst_bit = BIT(id & NPCM_MASK_RESETS); > + unsigned int ctrl_offset = id >> 8; > + unsigned long flags; > + u32 stat; > + > + spin_lock_irqsave(&rc->lock, flags); > + stat = readl(rc->base + ctrl_offset); > + if (set) > + writel(stat | rst_bit, rc->base + ctrl_offset); > + else > + writel(stat & ~rst_bit, rc->base + ctrl_offset); > + spin_unlock_irqrestore(&rc->lock, flags); > + > + return 0; > +} > + > +static int npcm_rc_assert(struct reset_controller_dev *rcdev, unsigned long id) > +{ > + return npcm_rc_setclear_reset(rcdev, id, true); > +} > + > +static int npcm_rc_deassert(struct reset_controller_dev *rcdev, > + unsigned long id) > +{ > + return npcm_rc_setclear_reset(rcdev, id, false); > +} > + > +static int npcm_rc_status(struct reset_controller_dev *rcdev, > + unsigned long id) > +{ > + struct npcm_rc_data *rc = to_rc_data(rcdev); > + unsigned int rst_bit = BIT(id & NPCM_MASK_RESETS); > + unsigned int ctrl_offset = id >> 8; > + > + return (readl(rc->base + ctrl_offset) & rst_bit); > +} > + > +/* > + * The following procedure should be observed in USB PHY, USB device and > + * USB host initialization at BMC boot > + */ > +static int npcm_usb_reset(struct platform_device *pdev, struct npcm_rc_data *rc) Is this npcm750 specific? If so, you could call it npcm750_usb_reset and only call it if the compatible matches. > +{ > + struct device_node *np = pdev->dev.of_node; > + u32 mdlr, iprst1, iprst2, iprst3; > + struct regmap *gcr_regmap = NULL; > + u32 ipsrst1_bits = 0; > + u32 ipsrst2_bits = NPCM_IPSRST2_USB_HOST; > + u32 ipsrst3_bits = 0; > + > + if (of_device_is_compatible(np, "nuvoton,npcm750-reset")) { Better use of_match_device(). Also see above, I think this check could be done in probe() already? > + gcr_regmap = syscon_regmap_lookup_by_compatible("nuvoton,npcm750-gcr"); > + if (IS_ERR(gcr_regmap)) { > + dev_err(&pdev->dev, "Failed to find nuvoton,npcm750-gcr\n"); > + return PTR_ERR(gcr_regmap); > + } > + } > + if (!gcr_regmap) > + return -ENXIO; > + > + /* checking which USB device is enabled */ > + regmap_read(gcr_regmap, NPCM_MDLR_OFFSET, &mdlr); > + if (!(mdlr & NPCM_MDLR_USBD0)) > + ipsrst3_bits |= NPCM_IPSRST3_USBD0; > + if (!(mdlr & NPCM_MDLR_USBD1)) > + ipsrst1_bits |= NPCM_IPSRST1_USBD1; > + if (!(mdlr & NPCM_MDLR_USBD2_4)) > + ipsrst1_bits |= (NPCM_IPSRST1_USBD2 | > + NPCM_IPSRST1_USBD3 | > + NPCM_IPSRST1_USBD4); > + if (!(mdlr & NPCM_MDLR_USBD0)) { > + ipsrst1_bits |= (NPCM_IPSRST1_USBD5 | > + NPCM_IPSRST1_USBD6); > + ipsrst3_bits |= (NPCM_IPSRST3_USBD7 | > + NPCM_IPSRST3_USBD8 | > + NPCM_IPSRST3_USBD9); > + } > + > + /* assert reset USB PHY and USB devices */ > + iprst1 = readl(rc->base + NPCM_IPSRST1); > + iprst2 = readl(rc->base + NPCM_IPSRST2); > + iprst3 = readl(rc->base + NPCM_IPSRST3); > + > + iprst1 |= ipsrst1_bits; > + iprst2 |= ipsrst2_bits; > + iprst3 |= (ipsrst3_bits | NPCM_IPSRST3_USBPHY1 | > + NPCM_IPSRST3_USBPHY2); > + > + writel(iprst1, rc->base + NPCM_IPSRST1); > + writel(iprst2, rc->base + NPCM_IPSRST2); > + writel(iprst3, rc->base + NPCM_IPSRST3); > + > + /* clear USB PHY RS bit */ > + regmap_update_bits(gcr_regmap, NPCM_USB1PHYCTL_OFFSET, > + NPCM_USBXPHYCTL_RS, 0); > + regmap_update_bits(gcr_regmap, NPCM_USB2PHYCTL_OFFSET, > + NPCM_USBXPHYCTL_RS, 0); > + > + /* deassert reset USB PHY */ > + iprst3 &= ~(NPCM_IPSRST3_USBPHY1 | NPCM_IPSRST3_USBPHY2); > + writel(iprst3, rc->base + NPCM_IPSRST3); > + > + udelay(50); > + > + /* set USB PHY RS bit */ > + regmap_update_bits(gcr_regmap, NPCM_USB1PHYCTL_OFFSET, > + NPCM_USBXPHYCTL_RS, NPCM_USBXPHYCTL_RS); > + regmap_update_bits(gcr_regmap, NPCM_USB2PHYCTL_OFFSET, > + NPCM_USBXPHYCTL_RS, NPCM_USBXPHYCTL_RS); > + > + /* deassert reset USB devices*/ > + iprst1 &= ~ipsrst1_bits; > + iprst2 &= ~ipsrst2_bits; > + iprst3 &= ~ipsrst3_bits; > + > + writel(iprst1, rc->base + NPCM_IPSRST1); > + writel(iprst2, rc->base + NPCM_IPSRST2); > + writel(iprst3, rc->base + NPCM_IPSRST3); > + > + return 0; > +} > + > +static int npcm_reset_xlate(struct reset_controller_dev *rcdev, > + const struct of_phandle_args *reset_spec) > +{ > + unsigned int offset, bit; > + > + offset = reset_spec->args[0]; Return -EINVAL if offset is not one of 0x20, 0x24, or 0x34? > + bit = reset_spec->args[1]; Return -EINVAL if bit >= NPCM_RC_RESETS_PER_REG? > + > + return (offset << 8) | bit; > +} > + > +static const struct reset_control_ops npcm_rc_ops = { > + .assert = npcm_rc_assert, > + .deassert = npcm_rc_deassert, > + .status = npcm_rc_status, > +}; > + > +static int npcm_rc_probe(struct platform_device *pdev) > +{ > + struct npcm_rc_data *rc; > + int ret; > + > + rc = devm_kzalloc(&pdev->dev, sizeof(*rc), GFP_KERNEL); > + if (!rc) > + return -ENOMEM; > + > + rc->base = devm_platform_ioremap_resource(pdev, 0); > + if (IS_ERR(rc->base)) > + return PTR_ERR(rc->base); > + > + spin_lock_init(&rc->lock); > + > + rc->rcdev.owner = THIS_MODULE; > + rc->rcdev.nr_resets = NPCM_RC_RESETS_PER_REG; This is not necessary since of_xlate is replaced with a custom version. > + rc->rcdev.ops = &npcm_rc_ops; > + rc->rcdev.of_node = pdev->dev.of_node; > + rc->rcdev.of_reset_n_cells = 2; > + rc->rcdev.of_xlate = npcm_reset_xlate; > + > + platform_set_drvdata(pdev, rc); > + > + ret = devm_reset_controller_register(&pdev->dev, &rc->rcdev); > + if (ret) { > + dev_err(&pdev->dev, "unable to register device\n"); > + return ret; > + } > + > + if (npcm_usb_reset(pdev, rc)) > + dev_warn(&pdev->dev, "NPCM USB reset failed, can cause issues with UDC and USB host\n"); > + > + if (!of_property_read_u32(pdev->dev.of_node, "nuvoton,sw-reset-number", > + &rc->sw_reset_number)) { > + if (rc->sw_reset_number && rc->sw_reset_number < 5) { > + rc->restart_nb.priority = 192, > + rc->restart_nb.notifier_call = npcm_rc_restart, > + ret = register_restart_handler(&rc->restart_nb); > + if (ret) > + dev_warn(&pdev->dev, "failed to register restart handler\n"); > + } > + } > + > + return ret; > +} > + > +static const struct of_device_id npcm_rc_match[] = { > + { .compatible = "nuvoton,npcm750-reset" }, > + { } > +}; > + > +static struct platform_driver npcm_rc_driver = { > + .probe = npcm_rc_probe, > + .driver = { > + .name = "npcm-reset", > + .of_match_table = npcm_rc_match, > + .suppress_bind_attrs = true, > + }, > +}; > +builtin_platform_driver(npcm_rc_driver); regards Philipp From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Authentication-Results: lists.ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=pengutronix.de (client-ip=2001:67c:670:201:290:27ff:fe1d:cc33; helo=metis.ext.pengutronix.de; envelope-from=p.zabel@pengutronix.de; receiver=) Authentication-Results: lists.ozlabs.org; dmarc=none (p=none dis=none) header.from=pengutronix.de Received: from metis.ext.pengutronix.de (metis.ext.pengutronix.de [IPv6:2001:67c:670:201:290:27ff:fe1d:cc33]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange ECDHE (P-256) server-signature RSA-PSS (2048 bits) server-digest SHA256) (No client certificate requested) by lists.ozlabs.org (Postfix) with ESMTPS id 477NMm2SX2zF5qH for ; Wed, 6 Nov 2019 21:40:01 +1100 (AEDT) Received: from lupine.hi.pengutronix.de ([2001:67c:670:100:3ad5:47ff:feaf:1a17] helo=lupine) by metis.ext.pengutronix.de with esmtp (Exim 4.92) (envelope-from ) id 1iSIj5-0005La-Fe; Wed, 06 Nov 2019 11:39:47 +0100 Message-ID: <89250d485d05d4d671203ae615ebcf514b4d6705.camel@pengutronix.de> Subject: Re: [PATCH v4 3/3] reset: npcm: add NPCM reset controller driver From: Philipp Zabel To: Tomer Maimon , robh+dt@kernel.org, mark.rutland@arm.com, yuenn@google.com, venture@google.com, benjaminfair@google.com, avifishman70@gmail.com, joel@jms.id.au Cc: openbmc@lists.ozlabs.org, linux-kernel@vger.kernel.org, devicetree@vger.kernel.org Date: Wed, 06 Nov 2019 11:39:44 +0100 In-Reply-To: <20191106095832.236766-4-tmaimon77@gmail.com> References: <20191106095832.236766-1-tmaimon77@gmail.com> <20191106095832.236766-4-tmaimon77@gmail.com> Content-Type: text/plain; charset="UTF-8" User-Agent: Evolution 3.30.5-1.1 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-SA-Exim-Connect-IP: 2001:67c:670:100:3ad5:47ff:feaf:1a17 X-SA-Exim-Mail-From: p.zabel@pengutronix.de X-SA-Exim-Scanned: No (on metis.ext.pengutronix.de); SAEximRunCond expanded to false X-PTX-Original-Recipient: openbmc@lists.ozlabs.org X-BeenThere: openbmc@lists.ozlabs.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: Development list for OpenBMC List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 06 Nov 2019 10:40:04 -0000 Hi Tomer, On Wed, 2019-11-06 at 11:58 +0200, Tomer Maimon wrote: > Add Nuvoton NPCM BMC reset controller driver. > > Signed-off-by: Tomer Maimon > --- > drivers/reset/Kconfig | 7 + > drivers/reset/Makefile | 1 + > drivers/reset/reset-npcm.c | 281 +++++++++++++++++++++++++++++++++++++ > 3 files changed, 289 insertions(+) > create mode 100644 drivers/reset/reset-npcm.c > > diff --git a/drivers/reset/Kconfig b/drivers/reset/Kconfig > index 7b07281aa0ae..9e3eac30e7db 100644 > --- a/drivers/reset/Kconfig > +++ b/drivers/reset/Kconfig > @@ -89,6 +89,13 @@ config RESET_MESON_AUDIO_ARB > This enables the reset driver for Audio Memory Arbiter of > Amlogic's A113 based SoCs > > +config RESET_NPCM > + bool "NPCM BMC Reset Driver" if COMPILE_TEST > + default ARCH_NPCM > + help > + This enables the reset controller driver for Nuvoton NPCM > + BMC SoCs. > + > config RESET_OXNAS > bool > > diff --git a/drivers/reset/Makefile b/drivers/reset/Makefile > index cf60ce526064..00767c03f5f2 100644 > --- a/drivers/reset/Makefile > +++ b/drivers/reset/Makefile > @@ -14,6 +14,7 @@ obj-$(CONFIG_RESET_LANTIQ) += reset-lantiq.o > obj-$(CONFIG_RESET_LPC18XX) += reset-lpc18xx.o > obj-$(CONFIG_RESET_MESON) += reset-meson.o > obj-$(CONFIG_RESET_MESON_AUDIO_ARB) += reset-meson-audio-arb.o > +obj-$(CONFIG_RESET_NPCM) += reset-npcm.o > obj-$(CONFIG_RESET_OXNAS) += reset-oxnas.o > obj-$(CONFIG_RESET_PISTACHIO) += reset-pistachio.o > obj-$(CONFIG_RESET_QCOM_AOSS) += reset-qcom-aoss.o > diff --git a/drivers/reset/reset-npcm.c b/drivers/reset/reset-npcm.c > new file mode 100644 > index 000000000000..ad09d466d7f9 > --- /dev/null > +++ b/drivers/reset/reset-npcm.c > @@ -0,0 +1,281 @@ > +// SPDX-License-Identifier: GPL-2.0 > +// Copyright (c) 2019 Nuvoton Technology corporation. > + > +#include > +#include > +#include > +#include > +#include > +#include > +#include > +#include > +#include > +#include > +#include > +#include > + > +/* NPCM7xx GCR registers */ > +#define NPCM_MDLR_OFFSET 0x7C > +#define NPCM_MDLR_USBD0 BIT(9) > +#define NPCM_MDLR_USBD1 BIT(8) > +#define NPCM_MDLR_USBD2_4 BIT(21) > +#define NPCM_MDLR_USBD5_9 BIT(22) > + > +#define NPCM_USB1PHYCTL_OFFSET 0x140 > +#define NPCM_USB2PHYCTL_OFFSET 0x144 > +#define NPCM_USBXPHYCTL_RS BIT(28) > + > +/* NPCM7xx Reset registers */ > +#define NPCM_SWRSTR 0x14 > +#define NPCM_SWRST BIT(2) > + > +#define NPCM_IPSRST1 0x20 > +#define NPCM_IPSRST1_USBD1 BIT(5) > +#define NPCM_IPSRST1_USBD2 BIT(8) > +#define NPCM_IPSRST1_USBD3 BIT(25) > +#define NPCM_IPSRST1_USBD4 BIT(22) > +#define NPCM_IPSRST1_USBD5 BIT(23) > +#define NPCM_IPSRST1_USBD6 BIT(24) > + > +#define NPCM_IPSRST2 0x24 > +#define NPCM_IPSRST2_USB_HOST BIT(26) > + > +#define NPCM_IPSRST3 0x34 > +#define NPCM_IPSRST3_USBD0 BIT(4) > +#define NPCM_IPSRST3_USBD7 BIT(5) > +#define NPCM_IPSRST3_USBD8 BIT(6) > +#define NPCM_IPSRST3_USBD9 BIT(7) > +#define NPCM_IPSRST3_USBPHY1 BIT(24) > +#define NPCM_IPSRST3_USBPHY2 BIT(25) > + > +#define NPCM_RC_RESETS_PER_REG 32 > +#define NPCM_MASK_RESETS GENMASK(4, 0) > + > +struct npcm_rc_data { > + struct reset_controller_dev rcdev; > + struct notifier_block restart_nb; > + u32 sw_reset_number; > + void __iomem *base; > + spinlock_t lock; > +}; > + > +#define to_rc_data(p) container_of(p, struct npcm_rc_data, rcdev) > + > +static int npcm_rc_restart(struct notifier_block *nb, unsigned long mode, > + void *cmd) > +{ > + struct npcm_rc_data *rc = container_of(nb, struct npcm_rc_data, > + restart_nb); > + > + writel(NPCM_SWRST << rc->sw_reset_number, rc->base + NPCM_SWRSTR); > + mdelay(1000); > + > + pr_emerg("%s: unable to restart system\n", __func__); > + > + return NOTIFY_DONE; > +} > + > +static int npcm_rc_setclear_reset(struct reset_controller_dev *rcdev, > + unsigned long id, bool set) > +{ > + struct npcm_rc_data *rc = to_rc_data(rcdev); > + unsigned int rst_bit = BIT(id & NPCM_MASK_RESETS); > + unsigned int ctrl_offset = id >> 8; > + unsigned long flags; > + u32 stat; > + > + spin_lock_irqsave(&rc->lock, flags); > + stat = readl(rc->base + ctrl_offset); > + if (set) > + writel(stat | rst_bit, rc->base + ctrl_offset); > + else > + writel(stat & ~rst_bit, rc->base + ctrl_offset); > + spin_unlock_irqrestore(&rc->lock, flags); > + > + return 0; > +} > + > +static int npcm_rc_assert(struct reset_controller_dev *rcdev, unsigned long id) > +{ > + return npcm_rc_setclear_reset(rcdev, id, true); > +} > + > +static int npcm_rc_deassert(struct reset_controller_dev *rcdev, > + unsigned long id) > +{ > + return npcm_rc_setclear_reset(rcdev, id, false); > +} > + > +static int npcm_rc_status(struct reset_controller_dev *rcdev, > + unsigned long id) > +{ > + struct npcm_rc_data *rc = to_rc_data(rcdev); > + unsigned int rst_bit = BIT(id & NPCM_MASK_RESETS); > + unsigned int ctrl_offset = id >> 8; > + > + return (readl(rc->base + ctrl_offset) & rst_bit); > +} > + > +/* > + * The following procedure should be observed in USB PHY, USB device and > + * USB host initialization at BMC boot > + */ > +static int npcm_usb_reset(struct platform_device *pdev, struct npcm_rc_data *rc) Is this npcm750 specific? If so, you could call it npcm750_usb_reset and only call it if the compatible matches. > +{ > + struct device_node *np = pdev->dev.of_node; > + u32 mdlr, iprst1, iprst2, iprst3; > + struct regmap *gcr_regmap = NULL; > + u32 ipsrst1_bits = 0; > + u32 ipsrst2_bits = NPCM_IPSRST2_USB_HOST; > + u32 ipsrst3_bits = 0; > + > + if (of_device_is_compatible(np, "nuvoton,npcm750-reset")) { Better use of_match_device(). Also see above, I think this check could be done in probe() already? > + gcr_regmap = syscon_regmap_lookup_by_compatible("nuvoton,npcm750-gcr"); > + if (IS_ERR(gcr_regmap)) { > + dev_err(&pdev->dev, "Failed to find nuvoton,npcm750-gcr\n"); > + return PTR_ERR(gcr_regmap); > + } > + } > + if (!gcr_regmap) > + return -ENXIO; > + > + /* checking which USB device is enabled */ > + regmap_read(gcr_regmap, NPCM_MDLR_OFFSET, &mdlr); > + if (!(mdlr & NPCM_MDLR_USBD0)) > + ipsrst3_bits |= NPCM_IPSRST3_USBD0; > + if (!(mdlr & NPCM_MDLR_USBD1)) > + ipsrst1_bits |= NPCM_IPSRST1_USBD1; > + if (!(mdlr & NPCM_MDLR_USBD2_4)) > + ipsrst1_bits |= (NPCM_IPSRST1_USBD2 | > + NPCM_IPSRST1_USBD3 | > + NPCM_IPSRST1_USBD4); > + if (!(mdlr & NPCM_MDLR_USBD0)) { > + ipsrst1_bits |= (NPCM_IPSRST1_USBD5 | > + NPCM_IPSRST1_USBD6); > + ipsrst3_bits |= (NPCM_IPSRST3_USBD7 | > + NPCM_IPSRST3_USBD8 | > + NPCM_IPSRST3_USBD9); > + } > + > + /* assert reset USB PHY and USB devices */ > + iprst1 = readl(rc->base + NPCM_IPSRST1); > + iprst2 = readl(rc->base + NPCM_IPSRST2); > + iprst3 = readl(rc->base + NPCM_IPSRST3); > + > + iprst1 |= ipsrst1_bits; > + iprst2 |= ipsrst2_bits; > + iprst3 |= (ipsrst3_bits | NPCM_IPSRST3_USBPHY1 | > + NPCM_IPSRST3_USBPHY2); > + > + writel(iprst1, rc->base + NPCM_IPSRST1); > + writel(iprst2, rc->base + NPCM_IPSRST2); > + writel(iprst3, rc->base + NPCM_IPSRST3); > + > + /* clear USB PHY RS bit */ > + regmap_update_bits(gcr_regmap, NPCM_USB1PHYCTL_OFFSET, > + NPCM_USBXPHYCTL_RS, 0); > + regmap_update_bits(gcr_regmap, NPCM_USB2PHYCTL_OFFSET, > + NPCM_USBXPHYCTL_RS, 0); > + > + /* deassert reset USB PHY */ > + iprst3 &= ~(NPCM_IPSRST3_USBPHY1 | NPCM_IPSRST3_USBPHY2); > + writel(iprst3, rc->base + NPCM_IPSRST3); > + > + udelay(50); > + > + /* set USB PHY RS bit */ > + regmap_update_bits(gcr_regmap, NPCM_USB1PHYCTL_OFFSET, > + NPCM_USBXPHYCTL_RS, NPCM_USBXPHYCTL_RS); > + regmap_update_bits(gcr_regmap, NPCM_USB2PHYCTL_OFFSET, > + NPCM_USBXPHYCTL_RS, NPCM_USBXPHYCTL_RS); > + > + /* deassert reset USB devices*/ > + iprst1 &= ~ipsrst1_bits; > + iprst2 &= ~ipsrst2_bits; > + iprst3 &= ~ipsrst3_bits; > + > + writel(iprst1, rc->base + NPCM_IPSRST1); > + writel(iprst2, rc->base + NPCM_IPSRST2); > + writel(iprst3, rc->base + NPCM_IPSRST3); > + > + return 0; > +} > + > +static int npcm_reset_xlate(struct reset_controller_dev *rcdev, > + const struct of_phandle_args *reset_spec) > +{ > + unsigned int offset, bit; > + > + offset = reset_spec->args[0]; Return -EINVAL if offset is not one of 0x20, 0x24, or 0x34? > + bit = reset_spec->args[1]; Return -EINVAL if bit >= NPCM_RC_RESETS_PER_REG? > + > + return (offset << 8) | bit; > +} > + > +static const struct reset_control_ops npcm_rc_ops = { > + .assert = npcm_rc_assert, > + .deassert = npcm_rc_deassert, > + .status = npcm_rc_status, > +}; > + > +static int npcm_rc_probe(struct platform_device *pdev) > +{ > + struct npcm_rc_data *rc; > + int ret; > + > + rc = devm_kzalloc(&pdev->dev, sizeof(*rc), GFP_KERNEL); > + if (!rc) > + return -ENOMEM; > + > + rc->base = devm_platform_ioremap_resource(pdev, 0); > + if (IS_ERR(rc->base)) > + return PTR_ERR(rc->base); > + > + spin_lock_init(&rc->lock); > + > + rc->rcdev.owner = THIS_MODULE; > + rc->rcdev.nr_resets = NPCM_RC_RESETS_PER_REG; This is not necessary since of_xlate is replaced with a custom version. > + rc->rcdev.ops = &npcm_rc_ops; > + rc->rcdev.of_node = pdev->dev.of_node; > + rc->rcdev.of_reset_n_cells = 2; > + rc->rcdev.of_xlate = npcm_reset_xlate; > + > + platform_set_drvdata(pdev, rc); > + > + ret = devm_reset_controller_register(&pdev->dev, &rc->rcdev); > + if (ret) { > + dev_err(&pdev->dev, "unable to register device\n"); > + return ret; > + } > + > + if (npcm_usb_reset(pdev, rc)) > + dev_warn(&pdev->dev, "NPCM USB reset failed, can cause issues with UDC and USB host\n"); > + > + if (!of_property_read_u32(pdev->dev.of_node, "nuvoton,sw-reset-number", > + &rc->sw_reset_number)) { > + if (rc->sw_reset_number && rc->sw_reset_number < 5) { > + rc->restart_nb.priority = 192, > + rc->restart_nb.notifier_call = npcm_rc_restart, > + ret = register_restart_handler(&rc->restart_nb); > + if (ret) > + dev_warn(&pdev->dev, "failed to register restart handler\n"); > + } > + } > + > + return ret; > +} > + > +static const struct of_device_id npcm_rc_match[] = { > + { .compatible = "nuvoton,npcm750-reset" }, > + { } > +}; > + > +static struct platform_driver npcm_rc_driver = { > + .probe = npcm_rc_probe, > + .driver = { > + .name = "npcm-reset", > + .of_match_table = npcm_rc_match, > + .suppress_bind_attrs = true, > + }, > +}; > +builtin_platform_driver(npcm_rc_driver); regards Philipp