From: jorge.ramirez-ortiz@linaro.org (Jorge Ramirez-Ortiz)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH] drivers/tty: amba-pl011: defer driver probing if external dma is not ready.
Date: Mon, 23 Feb 2015 22:33:46 -0500 [thread overview]
Message-ID: <54EBF11A.1030806@linaro.org> (raw)
In-Reply-To: <CAL_JsqJbGCOCCiMn6ok1j=R2EUF7YYRP4Si06wh3Vg0OnuXvag@mail.gmail.com>
On 02/23/2015 03:58 PM, Rob Herring wrote:
> +spear maintainers
>
> On Mon, Feb 23, 2015 at 2:16 PM, Jorge Ramirez-Ortiz
> <jorge.ramirez-ortiz@linaro.org> wrote:
>> This patch addresses a race condition that happens when
>> device_initcall(pl011_dma_initicall) is executed before all the devices have been
>> probed - this issue was observed on an hisi_6220 SoC (HiKey board from Linaro).
>>
>> The proposed implementation uses deferred driver probing to wait for the DMA
>> controller to be registered.
> This is going to break implementations using platform data rather than
> DT for the DMA channel resolving. The only user is spear3xx. Ideally,
> we should fix spear3xx to use DT for the DMA channels. That would
> mainly require making the pl08x driver DT enabled and dts updates.
>
> To fix this in the pl011 driver, you are going to need to split up the
> DT and platform data paths keeping the list used for the platform
> data. The platform data is only used for DMA and is mutually exclusive
> with DT, so in probe you can do something like this:
>
> if (pdata)
> pdata_dma_probe();
> else if (of_dma_probe() == -EPROBE_DEFER)
> return -EPROBE_DEFER;
thanks Rob. Ok fix on its way. sorry about this.
>
> Rob
>
>> Signed-off-by: Jorge Ramirez-Ortiz <jorge.ramirez-ortiz@linaro.org>
>> ---
>> drivers/tty/serial/amba-pl011.c | 70 +++++++++++------------------------------
>> 1 file changed, 18 insertions(+), 52 deletions(-)
>>
>> diff --git a/drivers/tty/serial/amba-pl011.c b/drivers/tty/serial/amba-pl011.c
>> index 8d94c19..40219e5 100644
>> --- a/drivers/tty/serial/amba-pl011.c
>> +++ b/drivers/tty/serial/amba-pl011.c
>> @@ -29,6 +29,7 @@
>> * and hooked into this driver.
>> */
>>
>> +#define pr_fmt(fmt) "amba-pl011: "fmt
>>
>> #if defined(CONFIG_SERIAL_AMBA_PL011_CONSOLE) && defined(CONFIG_MAGIC_SYSRQ)
>> #define SUPPORT_SYSRQ
>> @@ -261,7 +262,7 @@ static void pl011_sgbuf_free(struct dma_chan *chan, struct pl011_sgbuf *sg,
>> }
>> }
>>
>> -static void pl011_dma_probe_initcall(struct device *dev, struct uart_amba_port *uap)
>> +static int pl011_dma_probe(struct device *dev, struct uart_amba_port *uap)
>> {
>> /* DMA is the sole user of the platform data right now */
>> struct amba_pl011_data *plat = dev_get_platdata(uap->port.dev);
>> @@ -275,13 +276,17 @@ static void pl011_dma_probe_initcall(struct device *dev, struct uart_amba_port *
>> struct dma_chan *chan;
>> dma_cap_mask_t mask;
>>
>> - chan = dma_request_slave_channel(dev, "tx");
>> + chan = dma_request_slave_channel_reason(dev, "tx");
>> + if (IS_ERR(chan)) {
>> +
>> + /* the dma driver has not been initialized yet */
>> + if (PTR_ERR(chan) == -EPROBE_DEFER)
>> + return -EPROBE_DEFER;
>>
>> - if (!chan) {
>> /* We need platform data */
>> if (!plat || !plat->dma_filter) {
>> dev_info(uap->port.dev, "no DMA platform data\n");
>> - return;
>> + return 0;
>> }
>>
>> /* Try to acquire a generic DMA engine slave TX channel */
>> @@ -292,7 +297,7 @@ static void pl011_dma_probe_initcall(struct device *dev, struct uart_amba_port *
>> plat->dma_tx_param);
>> if (!chan) {
>> dev_err(uap->port.dev, "no TX DMA channel!\n");
>> - return;
>> + return 0;
>> }
>> }
>>
>> @@ -310,7 +315,7 @@ static void pl011_dma_probe_initcall(struct device *dev, struct uart_amba_port *
>>
>> if (!chan) {
>> dev_err(uap->port.dev, "no RX DMA channel!\n");
>> - return;
>> + return 0;
>> }
>> }
>>
>> @@ -383,54 +388,10 @@ static void pl011_dma_probe_initcall(struct device *dev, struct uart_amba_port *
>> dev_info(uap->port.dev, "DMA channel RX %s\n",
>> dma_chan_name(uap->dmarx.chan));
>> }
>> -}
>> -
>> -#ifndef MODULE
>> -/*
>> - * Stack up the UARTs and let the above initcall be done at device
>> - * initcall time, because the serial driver is called as an arch
>> - * initcall, and at this time the DMA subsystem is not yet registered.
>> - * At this point the driver will switch over to using DMA where desired.
>> - */
>> -struct dma_uap {
>> - struct list_head node;
>> - struct uart_amba_port *uap;
>> - struct device *dev;
>> -};
>> -
>> -static LIST_HEAD(pl011_dma_uarts);
>> -
>> -static int __init pl011_dma_initcall(void)
>> -{
>> - struct list_head *node, *tmp;
>>
>> - list_for_each_safe(node, tmp, &pl011_dma_uarts) {
>> - struct dma_uap *dmau = list_entry(node, struct dma_uap, node);
>> - pl011_dma_probe_initcall(dmau->dev, dmau->uap);
>> - list_del(node);
>> - kfree(dmau);
>> - }
>> return 0;
>> }
>>
>> -device_initcall(pl011_dma_initcall);
>> -
>> -static void pl011_dma_probe(struct device *dev, struct uart_amba_port *uap)
>> -{
>> - struct dma_uap *dmau = kzalloc(sizeof(struct dma_uap), GFP_KERNEL);
>> - if (dmau) {
>> - dmau->uap = uap;
>> - dmau->dev = dev;
>> - list_add_tail(&dmau->node, &pl011_dma_uarts);
>> - }
>> -}
>> -#else
>> -static void pl011_dma_probe(struct device *dev, struct uart_amba_port *uap)
>> -{
>> - pl011_dma_probe_initcall(dev, uap);
>> -}
>> -#endif
>> -
>> static void pl011_dma_remove(struct uart_amba_port *uap)
>> {
>> /* TODO: remove the initcall if it has not yet executed */
>> @@ -1142,8 +1103,9 @@ static inline bool pl011_dma_rx_running(struct uart_amba_port *uap)
>>
>> #else
>> /* Blank functions if the DMA engine is not available */
>> -static inline void pl011_dma_probe(struct device *dev, struct uart_amba_port *uap)
>> +static int pl011_dma_probe(struct device *dev, struct uart_amba_port *uap)
>> {
>> + return 0;
>> }
>>
>> static inline void pl011_dma_remove(struct uart_amba_port *uap)
>> @@ -2218,7 +2180,11 @@ static int pl011_probe(struct amba_device *dev, const struct amba_id *id)
>> uap->port.ops = &amba_pl011_pops;
>> uap->port.flags = UPF_BOOT_AUTOCONF;
>> uap->port.line = i;
>> - pl011_dma_probe(&dev->dev, uap);
>> + ret = pl011_dma_probe(&dev->dev, uap);
>> + if (ret) {
>> + devm_kfree(&dev->dev, uap);
>> + return ret;
>> + }
>>
>> /* Ensure interrupts from this UART are masked and cleared */
>> writew(0, uap->port.membase + UART011_IMSC);
>> --
>> 1.9.1
>>
next prev parent reply other threads:[~2015-02-24 3:33 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-02-23 20:16 [PATCH] drivers/tty: amba-pl011: defer driver probing if external dma is not ready Jorge Ramirez-Ortiz
2015-02-23 20:58 ` Rob Herring
2015-02-24 3:33 ` Jorge Ramirez-Ortiz [this message]
[not found] <Re: [PATCH] drivers/tty: amba-pl011: defer driver probing if external dma is not ready.>
2015-02-24 3:46 ` [PATCH v2] " Jorge Ramirez-Ortiz
2015-02-24 3:46 ` [PATCH] " Jorge Ramirez-Ortiz
2015-02-24 8:29 ` Arnd Bergmann
2015-02-24 19:32 ` Jorge Ramirez-Ortiz
2015-02-24 22:02 ` Jorge Ramirez-Ortiz
2015-02-25 10:22 ` Arnd Bergmann
2015-02-25 21:02 ` Jorge Ramirez-Ortiz
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=54EBF11A.1030806@linaro.org \
--to=jorge.ramirez-ortiz@linaro.org \
--cc=linux-arm-kernel@lists.infradead.org \
/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).