From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: DMARC-Filter: OpenDMARC Filter v1.3.2 smtp.codeaurora.org 05694601D2 Authentication-Results: pdx-caf-mail.web.codeaurora.org; dmarc=none (p=none dis=none) header.from=xes-inc.com Authentication-Results: pdx-caf-mail.web.codeaurora.org; spf=none smtp.mailfrom=linux-kernel-owner@vger.kernel.org Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752328AbeFFOhx (ORCPT + 25 others); Wed, 6 Jun 2018 10:37:53 -0400 Received: from xes-mad.com ([216.165.139.220]:14028 "EHLO mail.xes-mad.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752240AbeFFOhv (ORCPT ); Wed, 6 Jun 2018 10:37:51 -0400 Date: Wed, 6 Jun 2018 09:31:02 -0500 (CDT) From: Aaron Sierra To: Giulio Benetti Cc: Greg Kroah-Hartman , Jiri Slaby , Andy Shevchenko , Kees Cook , Matthias Brugger , Allen Pais , Sean Young , Ed Blake , Stefan Potyra , Philipp Zabel , Joshua Scott , Vignesh R , Rolf Evers-Fischer , Rafael Gago , Joel Stanley , Sean Wang , linux-serial , linux-kernel Message-ID: <1533624932.66943.1528295462220.JavaMail.zimbra@xes-inc.com> In-Reply-To: <20180601124021.102970-7-giulio.benetti@micronovasrl.com> References: <20180601124021.102970-1-giulio.benetti@micronovasrl.com> <20180601124021.102970-7-giulio.benetti@micronovasrl.com> Subject: Re: [PATCH 6/8] serial: 8250: Copy mctrl when register port. MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Originating-IP: [10.52.0.127] X-Mailer: Zimbra 8.7.5_GA_1764 (ZimbraWebClient - FF60 (Linux)/8.7.5_GA_1764) Thread-Topic: serial: 8250: Copy mctrl when register port. Thread-Index: z3zjfesGJhLZtzTkdnPmsJCHM5caWg== Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org ----- Original Message ----- > From: "Giulio Benetti" > Sent: Friday, June 1, 2018 7:40:19 AM > RS485 can modify mctrl on startup, especially when RTS_AFTER_SEND is on > TIOCM_RTS is set, then need to keep it set when registering port. > > Copy mctrl to new port too. > > Signed-off-by: Giulio Benetti > --- > drivers/tty/serial/8250/8250_core.c | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/drivers/tty/serial/8250/8250_core.c > b/drivers/tty/serial/8250/8250_core.c > index c8c2b260c681..c8e62fbd6570 100644 > --- a/drivers/tty/serial/8250/8250_core.c > +++ b/drivers/tty/serial/8250/8250_core.c > @@ -993,6 +993,7 @@ int serial8250_register_8250_port(struct uart_8250_port *up) > uart->port.unthrottle = up->port.unthrottle; > uart->port.rs485_config = up->port.rs485_config; > uart->port.rs485 = up->port.rs485; > + uart->port.mctrl = up->port.mctrl; Hi Guilio, I ran into this same thing about six months ago, but I was able to accomplish what I needed by assigning a set_mctrl() function in my port definition. Perhaps that would be enough for your case, too? You should see a little lower in this file that set_mctrl is copied to the new port. -Aaron > uart->dma = up->dma; > uart->em485 = up->em485; > > -- > 2.17.0