From: "Jakub Kiciński" <moorray3@wp.pl>
To: Andre Przywara <andre.przywara@arm.com>
Cc: rob.herring@linaro.org, arnd@arndb.de,
Greg KH <gregkh@linuxfoundation.org>,
linux-serial@vger.kernel.org, rmk+kernel@arm.linux.org.uk,
Jiri Slaby <jslaby@suse.cz>,
Dave.Martin@arm.com, linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH v3 03/10] drivers: PL011: refactor pl011_shutdown()
Date: Sun, 12 Apr 2015 11:19:26 +0200 [thread overview]
Message-ID: <20150412111926.21f513bf@north> (raw)
In-Reply-To: <1428578961-6896-4-git-send-email-andre.przywara@arm.com>
On Thu, 9 Apr 2015 12:29:14 +0100, Andre Przywara wrote:
> Split the pl011_shutdown() function into smaller chunks to allow
> easier reuse later when adding SBSA support.
>
> Signed-off-by: Andre Przywara <andre.przywara@arm.com>
> ---
> drivers/tty/serial/amba-pl011.c | 58 ++++++++++++++++++++++-----------------
> 1 file changed, 33 insertions(+), 25 deletions(-)
>
> diff --git a/drivers/tty/serial/amba-pl011.c b/drivers/tty/serial/amba-pl011.c
> index d6a081e..9eb6d13 100644
> --- a/drivers/tty/serial/amba-pl011.c
> +++ b/drivers/tty/serial/amba-pl011.c
> @@ -1635,34 +1635,15 @@ static void pl011_shutdown_channel(struct uart_amba_port *uap,
> writew(val, uap->port.membase + lcrh);
> }
>
> -static void pl011_shutdown(struct uart_port *port)
> +/*
> + * disable the port. It should not disable RTS and DTR.
> + * Also RTS and DTR state should be preserved to restore
> + * it during startup().
> + */
> +static void pl011_disable_uart(struct uart_amba_port *uap)
> {
> - struct uart_amba_port *uap =
> - container_of(port, struct uart_amba_port, port);
> unsigned int cr;
>
> - /*
> - * disable all interrupts
> - */
> - spin_lock_irq(&uap->port.lock);
> - uap->im = 0;
> - writew(uap->im, uap->port.membase + UART011_IMSC);
> - writew(0xffff, uap->port.membase + UART011_ICR);
> - spin_unlock_irq(&uap->port.lock);
> -
> - pl011_dma_shutdown(uap);
> -
> - /*
> - * Free the interrupt
> - */
> - free_irq(uap->port.irq, uap);
> -
> - /*
> - * disable the port
> - * disable the port. It should not disable RTS and DTR.
> - * Also RTS and DTR state should be preserved to restore
> - * it during startup().
> - */
> uap->autorts = false;
> spin_lock_irq(&uap->port.lock);
> cr = readw(uap->port.membase + UART011_CR);
> @@ -1678,6 +1659,33 @@ static void pl011_shutdown(struct uart_port *port)
> pl011_shutdown_channel(uap, uap->lcrh_rx);
> if (uap->lcrh_rx != uap->lcrh_tx)
> pl011_shutdown_channel(uap, uap->lcrh_tx);
> +}
> +
> +static void pl011_disable_interrupts(struct uart_amba_port *uap)
> +{
> + spin_lock_irq(&uap->port.lock);
> + /*
> + * mask all interrupts and clear all pending ones
> + */
No need for a multi-line comment here.
> + uap->im = 0;
> + writew(uap->im, uap->port.membase + UART011_IMSC);
> + writew(0xffff & ~UART011_TXIS, uap->port.membase + UART011_ICR);
The line you removed was:
writew(0xffff, uap->port.membase + UART011_ICR);
Please rebase more carefully.
WARNING: multiple messages have this Message-ID (diff)
From: moorray3@wp.pl (Jakub Kiciński)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v3 03/10] drivers: PL011: refactor pl011_shutdown()
Date: Sun, 12 Apr 2015 11:19:26 +0200 [thread overview]
Message-ID: <20150412111926.21f513bf@north> (raw)
In-Reply-To: <1428578961-6896-4-git-send-email-andre.przywara@arm.com>
On Thu, 9 Apr 2015 12:29:14 +0100, Andre Przywara wrote:
> Split the pl011_shutdown() function into smaller chunks to allow
> easier reuse later when adding SBSA support.
>
> Signed-off-by: Andre Przywara <andre.przywara@arm.com>
> ---
> drivers/tty/serial/amba-pl011.c | 58 ++++++++++++++++++++++-----------------
> 1 file changed, 33 insertions(+), 25 deletions(-)
>
> diff --git a/drivers/tty/serial/amba-pl011.c b/drivers/tty/serial/amba-pl011.c
> index d6a081e..9eb6d13 100644
> --- a/drivers/tty/serial/amba-pl011.c
> +++ b/drivers/tty/serial/amba-pl011.c
> @@ -1635,34 +1635,15 @@ static void pl011_shutdown_channel(struct uart_amba_port *uap,
> writew(val, uap->port.membase + lcrh);
> }
>
> -static void pl011_shutdown(struct uart_port *port)
> +/*
> + * disable the port. It should not disable RTS and DTR.
> + * Also RTS and DTR state should be preserved to restore
> + * it during startup().
> + */
> +static void pl011_disable_uart(struct uart_amba_port *uap)
> {
> - struct uart_amba_port *uap =
> - container_of(port, struct uart_amba_port, port);
> unsigned int cr;
>
> - /*
> - * disable all interrupts
> - */
> - spin_lock_irq(&uap->port.lock);
> - uap->im = 0;
> - writew(uap->im, uap->port.membase + UART011_IMSC);
> - writew(0xffff, uap->port.membase + UART011_ICR);
> - spin_unlock_irq(&uap->port.lock);
> -
> - pl011_dma_shutdown(uap);
> -
> - /*
> - * Free the interrupt
> - */
> - free_irq(uap->port.irq, uap);
> -
> - /*
> - * disable the port
> - * disable the port. It should not disable RTS and DTR.
> - * Also RTS and DTR state should be preserved to restore
> - * it during startup().
> - */
> uap->autorts = false;
> spin_lock_irq(&uap->port.lock);
> cr = readw(uap->port.membase + UART011_CR);
> @@ -1678,6 +1659,33 @@ static void pl011_shutdown(struct uart_port *port)
> pl011_shutdown_channel(uap, uap->lcrh_rx);
> if (uap->lcrh_rx != uap->lcrh_tx)
> pl011_shutdown_channel(uap, uap->lcrh_tx);
> +}
> +
> +static void pl011_disable_interrupts(struct uart_amba_port *uap)
> +{
> + spin_lock_irq(&uap->port.lock);
> + /*
> + * mask all interrupts and clear all pending ones
> + */
No need for a multi-line comment here.
> + uap->im = 0;
> + writew(uap->im, uap->port.membase + UART011_IMSC);
> + writew(0xffff & ~UART011_TXIS, uap->port.membase + UART011_ICR);
The line you removed was:
writew(0xffff, uap->port.membase + UART011_ICR);
Please rebase more carefully.
next prev parent reply other threads:[~2015-04-12 9:19 UTC|newest]
Thread overview: 28+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-04-09 11:29 [PATCH v3 00/10] drivers: PL011: add ARM SBSA Generic UART support Andre Przywara
2015-04-09 11:29 ` Andre Przywara
2015-04-09 11:29 ` [PATCH v3 01/10] drivers: PL011: avoid potential unregister_driver call Andre Przywara
2015-04-09 11:29 ` Andre Przywara
2015-04-12 9:15 ` Jakub Kiciński
2015-04-12 9:15 ` Jakub Kiciński
2015-04-09 11:29 ` [PATCH v3 02/10] drivers: PL011: refactor pl011_startup() Andre Przywara
2015-04-09 11:29 ` Andre Przywara
2015-04-09 11:29 ` [PATCH v3 03/10] drivers: PL011: refactor pl011_shutdown() Andre Przywara
2015-04-09 11:29 ` Andre Przywara
2015-04-12 9:19 ` Jakub Kiciński [this message]
2015-04-12 9:19 ` Jakub Kiciński
2015-04-09 11:29 ` [PATCH v3 04/10] drivers: PL011: refactor pl011_set_termios() Andre Przywara
2015-04-09 11:29 ` Andre Przywara
2015-04-09 11:29 ` [PATCH v3 05/10] drivers: PL011: refactor pl011_probe() Andre Przywara
2015-04-09 11:29 ` Andre Przywara
2015-04-12 10:16 ` Jakub Kiciński
2015-04-12 10:16 ` Jakub Kiciński
2015-04-09 11:29 ` [PATCH v3 06/10] drivers: PL011: replace UART_MIS reading with _RIS & _IMSC Andre Przywara
2015-04-09 11:29 ` Andre Przywara
2015-04-09 11:29 ` [PATCH v3 07/10] drivers: PL011: move cts_event workaround into separate function Andre Przywara
2015-04-09 11:29 ` Andre Przywara
2015-04-09 11:29 ` [PATCH v3 08/10] drivers: PL011: allow avoiding UART enabling/disabling Andre Przywara
2015-04-09 11:29 ` Andre Przywara
2015-04-09 11:29 ` [PATCH v3 09/10] drivers: PL011: allow to supply fixed option string Andre Przywara
2015-04-09 11:29 ` Andre Przywara
2015-04-09 11:29 ` [PATCH v3 10/10] drivers: PL011: add support for the ARM SBSA generic UART Andre Przywara
2015-04-09 11:29 ` Andre Przywara
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=20150412111926.21f513bf@north \
--to=moorray3@wp.pl \
--cc=Dave.Martin@arm.com \
--cc=andre.przywara@arm.com \
--cc=arnd@arndb.de \
--cc=gregkh@linuxfoundation.org \
--cc=jslaby@suse.cz \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-serial@vger.kernel.org \
--cc=rmk+kernel@arm.linux.org.uk \
--cc=rob.herring@linaro.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.