From: Kumar Gala <galak@codeaurora.org>
To: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Cc: Andy Gross <agross@codeaurora.org>,
linux-kernel@vger.kernel.org,
devicetree <devicetree@vger.kernel.org>,
linux-arm-kernel@lists.infradead.org,
linux-arm-msm <linux-arm-msm@vger.kernel.org>,
Santosh Shilimkar <santosh.shilimkar@ti.com>
Subject: Re: [Patch v2 4/4] tty: serial: msm: Remove direct access to GSBI
Date: Thu, 29 May 2014 10:14:35 -0500 [thread overview]
Message-ID: <A56B810D-869A-4E4F-BC29-C9B0F6CDCE79@codeaurora.org> (raw)
In-Reply-To: <1398357082-5102-5-git-send-email-agross@codeaurora.org>
On Apr 24, 2014, at 11:31 AM, Andy Gross <agross@codeaurora.org> wrote:
> This patch removes direct access of the GSBI registers. GSBI configuration
> should be done through the GSBI driver directly.
>
> Signed-off-by: Andy Gross <agross@codeaurora.org>
> ---
> drivers/tty/serial/msm_serial.c | 48 ++-------------------------------------
> drivers/tty/serial/msm_serial.h | 5 ----
> 2 files changed, 2 insertions(+), 51 deletions(-)
Greg,
Any update on pulling this is for next?
- k
>
> diff --git a/drivers/tty/serial/msm_serial.c b/drivers/tty/serial/msm_serial.c
> index b5d779c..8901114 100644
> --- a/drivers/tty/serial/msm_serial.c
> +++ b/drivers/tty/serial/msm_serial.c
> @@ -45,7 +45,6 @@ struct msm_port {
> struct clk *clk;
> struct clk *pclk;
> unsigned int imr;
> - void __iomem *gsbi_base;
> int is_uartdm;
> unsigned int old_snap_state;
> };
> @@ -586,9 +585,7 @@ static const char *msm_type(struct uart_port *port)
> static void msm_release_port(struct uart_port *port)
> {
> struct platform_device *pdev = to_platform_device(port->dev);
> - struct msm_port *msm_port = UART_TO_MSM(port);
> struct resource *uart_resource;
> - struct resource *gsbi_resource;
> resource_size_t size;
>
> uart_resource = platform_get_resource(pdev, IORESOURCE_MEM, 0);
> @@ -599,28 +596,12 @@ static void msm_release_port(struct uart_port *port)
> release_mem_region(port->mapbase, size);
> iounmap(port->membase);
> port->membase = NULL;
> -
> - if (msm_port->gsbi_base) {
> - writel_relaxed(GSBI_PROTOCOL_IDLE,
> - msm_port->gsbi_base + GSBI_CONTROL);
> -
> - gsbi_resource = platform_get_resource(pdev, IORESOURCE_MEM, 1);
> - if (unlikely(!gsbi_resource))
> - return;
> -
> - size = resource_size(gsbi_resource);
> - release_mem_region(gsbi_resource->start, size);
> - iounmap(msm_port->gsbi_base);
> - msm_port->gsbi_base = NULL;
> - }
> }
>
> static int msm_request_port(struct uart_port *port)
> {
> - struct msm_port *msm_port = UART_TO_MSM(port);
> struct platform_device *pdev = to_platform_device(port->dev);
> struct resource *uart_resource;
> - struct resource *gsbi_resource;
> resource_size_t size;
> int ret;
>
> @@ -639,30 +620,8 @@ static int msm_request_port(struct uart_port *port)
> goto fail_release_port;
> }
>
> - gsbi_resource = platform_get_resource(pdev, IORESOURCE_MEM, 1);
> - /* Is this a GSBI-based port? */
> - if (gsbi_resource) {
> - size = resource_size(gsbi_resource);
> -
> - if (!request_mem_region(gsbi_resource->start, size,
> - "msm_serial")) {
> - ret = -EBUSY;
> - goto fail_release_port_membase;
> - }
> -
> - msm_port->gsbi_base = ioremap(gsbi_resource->start, size);
> - if (!msm_port->gsbi_base) {
> - ret = -EBUSY;
> - goto fail_release_gsbi;
> - }
> - }
> -
> return 0;
>
> -fail_release_gsbi:
> - release_mem_region(gsbi_resource->start, size);
> -fail_release_port_membase:
> - iounmap(port->membase);
> fail_release_port:
> release_mem_region(port->mapbase, size);
> return ret;
> @@ -670,7 +629,6 @@ fail_release_port:
>
> static void msm_config_port(struct uart_port *port, int flags)
> {
> - struct msm_port *msm_port = UART_TO_MSM(port);
> int ret;
> if (flags & UART_CONFIG_TYPE) {
> port->type = PORT_MSM;
> @@ -678,9 +636,6 @@ static void msm_config_port(struct uart_port *port, int flags)
> if (ret)
> return;
> }
> - if (msm_port->gsbi_base)
> - writel_relaxed(GSBI_PROTOCOL_UART,
> - msm_port->gsbi_base + GSBI_CONTROL);
> }
>
> static int msm_verify_port(struct uart_port *port, struct serial_struct *ser)
> @@ -976,6 +931,7 @@ static struct of_device_id msm_match_table[] = {
>
> static struct platform_driver msm_platform_driver = {
> .remove = msm_serial_remove,
> + .probe = msm_serial_probe,
> .driver = {
> .name = "msm_serial",
> .owner = THIS_MODULE,
> @@ -991,7 +947,7 @@ static int __init msm_serial_init(void)
> if (unlikely(ret))
> return ret;
>
> - ret = platform_driver_probe(&msm_platform_driver, msm_serial_probe);
> + ret = platform_driver_register(&msm_platform_driver);
> if (unlikely(ret))
> uart_unregister_driver(&msm_uart_driver);
>
> diff --git a/drivers/tty/serial/msm_serial.h b/drivers/tty/serial/msm_serial.h
> index 469fda5..a77cc76 100644
> --- a/drivers/tty/serial/msm_serial.h
> +++ b/drivers/tty/serial/msm_serial.h
> @@ -108,11 +108,6 @@
> #define UART_ISR 0x0014
> #define UART_ISR_TX_READY (1 << 7)
>
> -#define GSBI_CONTROL 0x0
> -#define GSBI_PROTOCOL_CODE 0x30
> -#define GSBI_PROTOCOL_UART 0x40
> -#define GSBI_PROTOCOL_IDLE 0x0
> -
> #define UARTDM_DMRX 0x34
> #define UARTDM_NCF_TX 0x40
> #define UARTDM_RX_TOTAL_SNAP 0x38
> --
> The Qualcomm Innovation Center, Inc. is a member of the Code Aurora Forum,
> hosted by The Linux Foundation
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-arm-msm" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
--
Employee of Qualcomm Innovation Center, Inc.
Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted by The Linux Foundation
next prev parent reply other threads:[~2014-05-29 15:14 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-04-24 16:31 [Patch v2 0/4] Introduce drivers/soc and add QCOM GSBI driver Andy Gross
2014-04-24 16:31 ` [Patch v2 1/4] soc: Placeholder files for drivers/soc Andy Gross
2014-04-24 16:36 ` Santosh Shilimkar
2014-05-06 17:06 ` Kumar Gala
2014-04-24 16:31 ` [Patch v2 2/4] soc: qcom: Add device tree binding for GSBI Andy Gross
2014-04-24 16:31 ` [Patch v2 3/4] soc: qcom: Add GSBI driver Andy Gross
2014-05-23 18:52 ` Stephen Boyd
2014-04-24 16:31 ` [Patch v2 4/4] tty: serial: msm: Remove direct access to GSBI Andy Gross
2014-05-29 15:14 ` Kumar Gala [this message]
2014-05-29 15:43 ` Greg Kroah-Hartman
2014-05-29 16:05 ` Kumar Gala
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=A56B810D-869A-4E4F-BC29-C9B0F6CDCE79@codeaurora.org \
--to=galak@codeaurora.org \
--cc=agross@codeaurora.org \
--cc=devicetree@vger.kernel.org \
--cc=gregkh@linuxfoundation.org \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=santosh.shilimkar@ti.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
all inboxes | Powered by JetHome®