From: Geert Uytterhoeven <geert@linux-m68k.org>
To: Herve Codina <herve.codina@bootlin.com>
Cc: Michael Turquette <mturquette@baylibre.com>,
Stephen Boyd <sboyd@kernel.org>, Rob Herring <robh+dt@kernel.org>,
Krzysztof Kozlowski <krzysztof.kozlowski+dt@linaro.org>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
Magnus Damm <magnus.damm@gmail.com>,
Gareth Williams <gareth.williams.jx@renesas.com>,
linux-renesas-soc@vger.kernel.org, linux-clk@vger.kernel.org,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
linux-usb@vger.kernel.org,
Thomas Petazzoni <thomas.petazzoni@bootlin.com>,
Miquel Raynal <miquel.raynal@bootlin.com>
Subject: Re: [PATCH 5/7] usb: gadget: udc: add Renesas RZ/N1 USBF controller support
Date: Mon, 7 Nov 2022 15:37:40 +0100 [thread overview]
Message-ID: <CAMuHMdVod1VqKSBFa5syeSPU=RzgqQ=3tg70V1OSZFOext7kgw@mail.gmail.com> (raw)
In-Reply-To: <20221107135825.583877-6-herve.codina@bootlin.com>
Hi Hervé,
On Mon, Nov 7, 2022 at 3:00 PM Herve Codina <herve.codina@bootlin.com> wrote:
> Add support for the Renesas USBF controller.
> This controller is an USB2.0 UDC controller available in the
> Renesas r9a06g032 SoC (RZ/N1 family).
>
> Signed-off-by: Herve Codina <herve.codina@bootlin.com>
> --- /dev/null
> +++ b/drivers/usb/gadget/udc/renesas_usbf.c
> +struct usbf_udc {
> + struct usb_gadget gadget;
> + struct usb_gadget_driver *driver;
> + struct device *dev;
> + struct clk_bulk_data *clocks;
> + int nclocks;
> + void __iomem *regs;
> + spinlock_t lock;
> + bool is_remote_wakeup;
> + bool is_usb_suspended;
> + struct usbf_ep ep[USBF_NUM_ENDPOINTS];
> + /* for EP0 control messages */
> + enum usbf_ep0state ep0state;
> + struct usbf_req setup_reply;
> + u8 ep0_buf[USBF_EP0_MAX_PCKT_SIZE];
> +};
> +static int usbf_probe(struct platform_device *pdev)
> +{
> + struct device *dev = &pdev->dev;
> + struct usbf_udc *udc;
> + struct usbf_ep *ep;
> + bool h2mode;
> + int irq;
> + int ret;
> + int i;
> +
> + ret = r9a06g032_sysctrl_get_usb_h2mode(&h2mode);
> + if (ret)
> + return ret;
> + if (h2mode) {
> + dev_warn(dev, "Disabled in H2 (host) mode\n");
> + return -ENODEV;
> + }
> +
> + udc = devm_kzalloc(dev, sizeof(*udc), GFP_KERNEL);
> + if (!udc)
> + return -ENOMEM;
> + platform_set_drvdata(pdev, udc);
> +
> + udc->dev = dev;
> + spin_lock_init(&udc->lock);
> +
> + udc->regs = devm_platform_ioremap_resource(pdev, 0);
> + if (IS_ERR(udc->regs))
> + return PTR_ERR(udc->regs);
> +
> + devm_pm_runtime_enable(&pdev->dev);
> + ret = pm_runtime_resume_and_get(&pdev->dev);
> + if (ret < 0)
> + return ret;
> +
> + ret = devm_clk_bulk_get_all(dev, &udc->clocks);
> + if (ret < 1) {
> + dev_err(dev, "failed to get clocks %d\n", ret);
> + return ret;
> + }
> + udc->nclocks = ret;
> +
> + ret = clk_bulk_prepare_enable(udc->nclocks, udc->clocks);
> + if (ret) {
> + dev_err(dev, "can not enable the clock\n");
> + return ret;
> + }
As this driver only enables/disables the clocks, perhaps you could
just delegate this to Runtime PM (through the clock domain pointed
by the power-domains property in DT), and drop the .clocks and
.nclocks fields?
> +clk_disable:
> + clk_bulk_disable_unprepare(udc->nclocks, udc->clocks);
> + return ret;
> +}
> +
> +static int usbf_remove(struct platform_device *pdev)
> +{
> + struct usbf_udc *udc = platform_get_drvdata(pdev);
> +
> + usb_del_gadget_udc(&udc->gadget);
> +
> + clk_bulk_disable_unprepare(udc->nclocks, udc->clocks);
> +
> + pm_runtime_put(&pdev->dev);
> +
> + return 0;
> +}
> +MODULE_AUTHOR("Herve Codina <herve.codina@bootlin.com>");
Hervé? ;-)
> +MODULE_DESCRIPTION("Renesas R-Car Gen3 & RZ/N1 USB Function driver");
> +MODULE_LICENSE("GPL");
> --
> 2.37.3
>
--
Gr{oetje,eeting}s,
Geert
--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org
In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
-- Linus Torvalds
next prev parent reply other threads:[~2022-11-07 14:37 UTC|newest]
Thread overview: 24+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-11-07 13:58 [PATCH 0/7] Add the Renesas USBF controller support Herve Codina
2022-11-07 13:58 ` [PATCH 1/7] soc: renesas: r9a06g032-sysctrl: Export function to get H2MODE from CFG_USB register Herve Codina
2022-11-07 14:40 ` Geert Uytterhoeven
[not found] ` <20221107175446.29c93376@bootlin.com>
[not found] ` <CAMuHMdUGz3z12Wwg8AoYwC7SN7xtAj7Osq6S9gO1mA+_KD4-vg@mail.gmail.com>
2022-11-10 8:02 ` Herve Codina
2022-11-07 13:58 ` [PATCH 2/7] dt-bindings: clock: renesas,r9a06g032-sysctrl: Add h2mode property Herve Codina
2022-11-07 15:14 ` Geert Uytterhoeven
2022-11-07 17:26 ` Herve Codina
2022-11-07 13:58 ` [PATCH 3/7] soc: renesas: r9a06g032-sysctrl: Handle h2mode device-tree property Herve Codina
2022-11-07 15:18 ` Geert Uytterhoeven
2022-11-07 16:36 ` Herve Codina
2022-11-07 13:58 ` [PATCH 4/7] dt-bindings: usb: add the Renesas USBF controller binding Herve Codina
2022-11-07 14:26 ` Geert Uytterhoeven
2022-11-07 14:50 ` Herve Codina
2022-11-07 18:24 ` Krzysztof Kozlowski
2022-11-10 11:46 ` Herve Codina
2022-11-07 13:58 ` [PATCH 5/7] usb: gadget: udc: add Renesas RZ/N1 USBF controller support Herve Codina
2022-11-07 14:37 ` Geert Uytterhoeven [this message]
2022-11-07 15:23 ` Herve Codina
2022-11-07 20:42 ` kernel test robot
2022-11-10 1:38 ` kernel test robot
2022-11-07 13:58 ` [PATCH 6/7] ARM: dts: r9a06g032: Add the USBF controller node Herve Codina
2022-11-07 13:58 ` [PATCH 7/7] MAINTAINERS: add the Renesas RZ/N1 USBF controller entry Herve Codina
2022-11-07 14:42 ` Geert Uytterhoeven
2022-11-07 16:39 ` Herve Codina
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to='CAMuHMdVod1VqKSBFa5syeSPU=RzgqQ=3tg70V1OSZFOext7kgw@mail.gmail.com' \
--to=geert@linux-m68k.org \
--cc=devicetree@vger.kernel.org \
--cc=gareth.williams.jx@renesas.com \
--cc=gregkh@linuxfoundation.org \
--cc=herve.codina@bootlin.com \
--cc=krzysztof.kozlowski+dt@linaro.org \
--cc=linux-clk@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-renesas-soc@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=magnus.damm@gmail.com \
--cc=miquel.raynal@bootlin.com \
--cc=mturquette@baylibre.com \
--cc=robh+dt@kernel.org \
--cc=sboyd@kernel.org \
--cc=thomas.petazzoni@bootlin.com \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is 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).