public inbox for linux-kernel@vger.kernel.org
 help / color / mirror / Atom feed
From: Tobias Klauser <tklauser@distanz.ch>
To: Matthias Brugger <matthias.bgg@gmail.com>
Cc: linux-kernel@vger.kernel.org, robh+dt@kernel.org,
	pawel.moll@arm.com, mark.rutland@arm.com,
	ijc+devicetree@hellion.org.uk, galak@codeaurora.org,
	rdunlap@infradead.org, gregkh@linuxfoundation.org,
	jslaby@suse.cz, grant.likely@linaro.org, alan@linux.intel.com,
	varkabhadram@gmail.com, heiko@sntech.de, yingjoe.chen@gmail.com,
	devicetree@vger.kernel.org, linux-doc@vger.kernel.org,
	linux-serial@vger.kernel.org
Subject: Re: [PATCH v3 1/2] tty: serial: 8250: Add Mediatek UART driver
Date: Fri, 8 Aug 2014 14:28:20 +0200	[thread overview]
Message-ID: <20140808122820.GF29832@distanz.ch> (raw)
In-Reply-To: <1407497524-26535-2-git-send-email-matthias.bgg@gmail.com>

On 2014-08-08 at 13:32:03 +0200, Matthias Brugger <matthias.bgg@gmail.com> wrote:
> This patch adds support for the UART block found on Mediatek SoCs.
> The device has a highspeed register which influences the calcualtion of the
> divisor. The chip lacks support for some baudrates. When requested, we set the
> divisor to the next smaller baudrate and adjust the c_cflag accordingly.
> 
> Signed-off-by: Matthias Brugger <matthias.bgg@gmail.com>
> ---
>  drivers/tty/serial/8250/8250_mtk.c |  296 ++++++++++++++++++++++++++++++++++++
>  drivers/tty/serial/8250/Kconfig    |    7 +
>  drivers/tty/serial/8250/Makefile   |    1 +
>  3 files changed, 304 insertions(+)
>  create mode 100644 drivers/tty/serial/8250/8250_mtk.c
> 
> diff --git a/drivers/tty/serial/8250/8250_mtk.c b/drivers/tty/serial/8250/8250_mtk.c
> new file mode 100644
> index 0000000..d63080b
> --- /dev/null
> +++ b/drivers/tty/serial/8250/8250_mtk.c
> @@ -0,0 +1,296 @@

[...]

> +static int mtk8250_probe(struct platform_device *pdev)
> +{
> +	struct uart_8250_port uart = {};
> +	struct resource *regs = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> +	struct resource *irq = platform_get_resource(pdev, IORESOURCE_IRQ, 0);
> +	struct mtk8250_data *data;
> +	int err;
> +
> +	if (!regs || !irq) {
> +		dev_err(&pdev->dev, "no registers/irq defined\n");
> +		return -EINVAL;
> +	}
> +
> +	spin_lock_init(&uart.port.lock);
> +	uart.port.mapbase = regs->start;
> +	uart.port.irq = irq->start;
> +	uart.port.pm = mtk8250_do_pm;
> +	uart.port.type = PORT_16550;
> +	uart.port.flags = UPF_BOOT_AUTOCONF | UPF_FIXED_PORT;
> +	uart.port.dev = &pdev->dev;
> +
> +	uart.port.membase = devm_ioremap(&pdev->dev, regs->start,
> +					 resource_size(regs));
> +	if (!uart.port.membase)
> +		return -ENOMEM;

You can use devm_ioremap_resource here and get rid of the check for
!regs above, since devm_ioremap_resource already does that.

	regs = platform_get_resource(pdev, IORESOURCE_MEM, 0);

	...

	uart.port.membase = devm_ioremap_resource(&pdev->dev, regs);
	if (IS_ERR(uart.port.membase))
		return PTR_ERR(uart.port.membase);

> +
> +	data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL);
> +	if (!data)
> +		return -ENOMEM;

I'd suggest to move this kzalloc and the ioremap before the uart.port
initialization part above, so you can error out early in case of any
failure.

> +
> +	uart.port.iotype = UPIO_MEM32;
> +	uart.port.regshift = 2;
> +	uart.port.private_data = data;
> +	uart.port.set_termios = mtk8250_set_termios;
> +
> +	if (pdev->dev.of_node) {
> +		err = mtk8250_probe_of(&uart.port, data);
> +		if (err)
> +			return err;
> +	} else
> +		return -ENODEV;

This could also be moved up, directly below devm_kzalloc.

> +
> +	/* Disable Rate Fix function */
> +	writel(0x0, uart.port.membase +
> +			(MTK_UART_RATE_FIX << uart.port.regshift));
> +
> +	data->line = serial8250_register_8250_port(&uart);
> +	if (data->line < 0)
> +		return data->line;
> +
> +	platform_set_drvdata(pdev, data);
> +
> +	pm_runtime_set_active(&pdev->dev);
> +	pm_runtime_enable(&pdev->dev);
> +
> +	return 0;
> +}
> +
> +static int mtk8250_remove(struct platform_device *pdev)
> +{
> +	struct mtk8250_data *data = platform_get_drvdata(pdev);
> +
> +	pm_runtime_get_sync(&pdev->dev);
> +
> +	serial8250_unregister_port(data->line);
> +	if (!IS_ERR(data->clk)) {
> +		clk_disable_unprepare(data->clk);
> +		clk_put(data->clk);
> +	}
> +
> +	pm_runtime_disable(&pdev->dev);
> +	pm_runtime_put_noidle(&pdev->dev);
> +	return 0;
> +}
> +
> +#ifdef CONFIG_PM_SLEEP
> +static int mtk8250_suspend(struct device *dev)
> +{
> +	struct mtk8250_data *data = dev_get_drvdata(dev);
> +
> +	serial8250_suspend_port(data->line);
> +
> +	return 0;
> +}
> +
> +static int mtk8250_resume(struct device *dev)
> +{
> +	struct mtk8250_data *data = dev_get_drvdata(dev);
> +
> +	serial8250_resume_port(data->line);
> +
> +	return 0;
> +}
> +#endif /* CONFIG_PM_SLEEP */
> +
> +#ifdef CONFIG_PM_RUNTIME
> +static int mtk8250_runtime_suspend(struct device *dev)
> +{
> +	struct mtk8250_data *data = dev_get_drvdata(dev);
> +
> +	if (!IS_ERR(data->clk))
> +		clk_disable_unprepare(data->clk);
> +
> +	return 0;
> +}
> +
> +static int mtk8250_runtime_resume(struct device *dev)
> +{
> +	struct mtk8250_data *data = dev_get_drvdata(dev);
> +
> +	if (!IS_ERR(data->clk))
> +		clk_prepare_enable(data->clk);
> +
> +	return 0;
> +}
> +#endif
> +
> +static const struct dev_pm_ops mtk8250_pm_ops = {
> +	SET_SYSTEM_SLEEP_PM_OPS(mtk8250_suspend, mtk8250_resume)
> +	SET_RUNTIME_PM_OPS(mtk8250_runtime_suspend, mtk8250_runtime_resume,
> +				NULL)
> +};
> +
> +static const struct of_device_id mtk8250_of_match[] = {
> +	{ .compatible = "mediatek,mt6577-uart" },
> +	{ /* Sentinel */ }
> +};
> +MODULE_DEVICE_TABLE(of, mtk8250_of_match);
> +
> +static struct platform_driver mtk8250_platform_driver = {
> +	.driver = {
> +		.name		= "mt6577-uart",
> +		.owner		= THIS_MODULE,

This doesn't need to be set here,
module_platform_driver/platform_driver_register take care of setting it.

> +		.pm		= &mtk8250_pm_ops,
> +		.of_match_table	= mtk8250_of_match,
> +	},
> +	.probe			= mtk8250_probe,
> +	.remove			= mtk8250_remove,
> +};
> +module_platform_driver(mtk8250_platform_driver);
> +
> +MODULE_AUTHOR("Matthias Brugger");
> +MODULE_LICENSE("GPL");
> +MODULE_DESCRIPTION("Mediatek 8250 serial port driver");

  parent reply	other threads:[~2014-08-08 12:28 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2014-08-08 11:32 [PATCH v3 0/2] tty: serial: Add mediatek UART driver Matthias Brugger
2014-08-08 11:32 ` [PATCH v3 1/2] tty: serial: 8250: Add Mediatek " Matthias Brugger
2014-08-08 12:25   ` Varka Bhadram
2014-08-08 12:28   ` Tobias Klauser [this message]
2014-08-12 13:31     ` Matthias Brugger
2014-08-12 13:57       ` Tobias Klauser
2014-08-08 11:32 ` [PATCH v3 2/2] DTS: serial: Add bindings documention for the Mediatek UARTs Matthias Brugger
2014-08-08 11:34   ` Varka Bhadram

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=20140808122820.GF29832@distanz.ch \
    --to=tklauser@distanz.ch \
    --cc=alan@linux.intel.com \
    --cc=devicetree@vger.kernel.org \
    --cc=galak@codeaurora.org \
    --cc=grant.likely@linaro.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=heiko@sntech.de \
    --cc=ijc+devicetree@hellion.org.uk \
    --cc=jslaby@suse.cz \
    --cc=linux-doc@vger.kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-serial@vger.kernel.org \
    --cc=mark.rutland@arm.com \
    --cc=matthias.bgg@gmail.com \
    --cc=pawel.moll@arm.com \
    --cc=rdunlap@infradead.org \
    --cc=robh+dt@kernel.org \
    --cc=varkabhadram@gmail.com \
    --cc=yingjoe.chen@gmail.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