From patchwork Tue Nov 11 03:20:23 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Frank Rowand X-Patchwork-Id: 5270301 Return-Path: X-Original-To: patchwork-linux-arm-msm@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.19.201]) by patchwork1.web.kernel.org (Postfix) with ESMTP id CF8419F2F1 for ; Tue, 11 Nov 2014 03:20:30 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 08C8420155 for ; Tue, 11 Nov 2014 03:20:30 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 1F9DE20136 for ; Tue, 11 Nov 2014 03:20:29 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751365AbaKKDU2 (ORCPT ); Mon, 10 Nov 2014 22:20:28 -0500 Received: from mail-pa0-f48.google.com ([209.85.220.48]:51745 "EHLO mail-pa0-f48.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751311AbaKKDU0 (ORCPT ); Mon, 10 Nov 2014 22:20:26 -0500 Received: by mail-pa0-f48.google.com with SMTP id ey11so9643143pad.35 for ; Mon, 10 Nov 2014 19:20:26 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20120113; h=message-id:date:from:reply-to:user-agent:mime-version:to:cc:subject :references:in-reply-to:content-type:content-transfer-encoding; bh=4oxoZJpKIy5DVF2h52iVZvwz7h2280rFTNkfD5GImos=; b=iBtKz8QCWleXYeb6f46SvVEEH+UBuX4LUz3QJvuNSgpjaATK4YcAWgpu10VHZbeDpR 3iNJdzyCKyVrzofrQ5MSu/OqQ9T6FH82baFz/49A7lwmkktcaPQ4tk30582g8K9sK2yV WJai4zeN2SQNhwYJR5SIRZhTsPN4cbzEqxvVmL0ULFugILC/I8VSGxM496uYjw/7C2K9 B+Imj+gYFGlalnXbB6WaEDQ/GN6gEvTZhIj4oA+ivPMeUboCjpriNW/A3YPezusijqrw m4JzlPlLZ6H1jX5yHlYLQxzgF/CF79iCStvAuLeWQ1Fzn2KWuz4BmHz+JIEuezqy0cKS v+Kw== X-Received: by 10.66.241.239 with SMTP id wl15mr37730583pac.15.1415676026250; Mon, 10 Nov 2014 19:20:26 -0800 (PST) Received: from [192.168.1.62] (c-76-21-77-187.hsd1.ca.comcast.net. [76.21.77.187]) by mx.google.com with ESMTPSA id dl1sm17839802pbc.16.2014.11.10.19.20.23 for (version=TLSv1 cipher=ECDHE-RSA-RC4-SHA bits=128/128); Mon, 10 Nov 2014 19:20:25 -0800 (PST) Message-ID: <54618077.9000108@gmail.com> Date: Mon, 10 Nov 2014 19:20:23 -0800 From: Frank Rowand Reply-To: frowand.list@gmail.com User-Agent: Mozilla/5.0 (Windows NT 6.1; WOW64; rv:17.0) Gecko/20130801 Thunderbird/17.0.8 MIME-Version: 1.0 To: Stephen Boyd CC: Kevin Hilman , Greg Kroah-Hartman , lkml , linux-arm-msm , "linux-arm-kernel@lists.infradead.org" , linux-serial@vger.kernel.org, Olof Johansson , Arnd Bergmann , Tyler Baker Subject: Re: [PATCH] tty: serial: msm_serial: Use DT aliases References: <1414024381-12204-1-git-send-email-sboyd@codeaurora.org> <5461150B.2010907@codeaurora.org> <54616CB3.5000405@gmail.com> <54616F74.5010408@codeaurora.org> In-Reply-To: <54616F74.5010408@codeaurora.org> Sender: linux-arm-msm-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-arm-msm@vger.kernel.org X-Spam-Status: No, score=-7.3 required=5.0 tests=BAYES_00, DKIM_ADSP_CUSTOM_MED, DKIM_SIGNED, FREEMAIL_FROM, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, T_DKIM_INVALID, UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP On 11/10/2014 6:07 PM, Stephen Boyd wrote: > On 11/10/2014 05:56 PM, Frank Rowand wrote: >> On 11/10/2014 11:42 AM, Stephen Boyd wrote: >>> diff --git a/drivers/tty/serial/msm_serial.c b/drivers/tty/serial/msm_serial.c >>> index 09364dd8cf3a..d1bc6b6cbc70 100644 >>> --- a/drivers/tty/serial/msm_serial.c >>> +++ b/drivers/tty/serial/msm_serial.c >>> @@ -1046,14 +1046,14 @@ static int msm_serial_probe(struct platform_device *pdev) >>> const struct of_device_id *id; >>> int irq, line; >>> >>> - if (pdev->id == -1) >>> - pdev->id = atomic_inc_return(&msm_uart_next_id) - 1; >>> - >>> if (pdev->dev.of_node) >>> line = of_alias_get_id(pdev->dev.of_node, "serial"); >>> else >>> line = pdev->id; >>> >>> + if (line < 0) >>> + line = atomic_inc_return(&msm_uart_next_id) - 1; >>> + >>> if (unlikely(line < 0 || line >= UART_NR)) >> Then this original check for "line < 0" can also be removed. >> >> > > Well this matches what was there before. It would do atomic_inc_return > if the line was negative and then still check for a negative value. I > don't mind removing it though. Perhaps we should use an ida?: > OK, you are right. If (pdev->id < -1) and (!pdev->dev.of_node) then the check is still needed. You could use an ida. Some drivers use a bit map. I really don't think this should become a complicated algorithm though. If the rule is that either all UARTS have an alias, or no UART has an alias, then I think the patch could be something like the following. This combines your original patch, plus your fix patch, plus making the aliases all or nothing. Not tested, not even compiled. What do you think? --- 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 Index: linux/drivers/tty/serial/msm_serial.c =================================================================== --- linux.orig/drivers/tty/serial/msm_serial.c +++ linux/drivers/tty/serial/msm_serial.c @@ -1044,17 +1044,28 @@ static int msm_serial_probe(struct platf struct resource *resource; struct uart_port *port; const struct of_device_id *id; - int irq; + int irq, line; + static int no_prev_alias = 1; - if (pdev->id == -1) - pdev->id = atomic_inc_return(&msm_uart_next_id) - 1; + if (pdev->dev.of_node) { + line = of_alias_get_id(pdev->dev.of_node, "serial"); + if (line < 0 && no_prev_alias) + line = atomic_inc_return(&msm_uart_next_id) - 1; + else + no_prev_alias = 0; + } else { + if (pdev->id < 0 && no_prev_alias) + line = atomic_inc_return(&msm_uart_next_id) - 1; + else + line = pdev->id; + } - if (unlikely(pdev->id < 0 || pdev->id >= UART_NR)) + if (unlikely(line < 0 || line >= UART_NR)) return -ENXIO; - dev_info(&pdev->dev, "msm_serial: detected port #%d\n", pdev->id); + dev_info(&pdev->dev, "msm_serial: detected port #%d\n", line); - port = get_port_from_line(pdev->id); + port = get_port_from_line(line); port->dev = &pdev->dev; msm_port = UART_TO_MSM(port);