From: Thomas Chou <thomas@wytron.com.tw>
To: Tobias Klauser <tklauser@distanz.ch>
Cc: Andrew Morton <akpm@linux-foundation.org>,
linux-serial@vger.kernel.org, gregkh@suse.de,
nios2-dev@sopc.et.ntust.edu.tw, linux-kernel@vger.kernel.org,
Alan Cox <alan@lxorguk.ukuu.org.uk>
Subject: Re: [PATCHv3 2/2] serial: Add driver for the Altera UART
Date: Thu, 25 Mar 2010 08:54:09 +0800 [thread overview]
Message-ID: <4BAAB431.3040202@wytron.com.tw> (raw)
In-Reply-To: <20100324162427.GQ21818@distanz.ch>
On 03/25/2010 12:24 AM, Tobias Klauser wrote:
> On 2010-03-24 at 12:05:27 +0100, Andrew Morton<akpm@linux-foundation.org> wrote:
>
>> On Wed, 24 Mar 2010 07:47:47 +0100 Tobias Klauser<tklauser@distanz.ch> wrote:
>>
>>> On 2010-03-23 at 22:54:59 +0100, Andrew Morton<akpm@linux-foundation.org> wrote:
>>>
>>>> On Fri, 5 Mar 2010 17:52:23 +0100
>>>> Tobias Klauser<tklauser@distanz.ch> wrote:
>>>>
>>>>
>>>>> + sigs |= (altera_uart_getppdcd(port->line) ? TIOCM_CD : 0);
>>>>> + sigs |= (altera_uart_getppdtr(port->line) ? TIOCM_DTR : 0);
>>>>>
>>>> We seem to be missing a few things here.
>>>>
>>>> drivers/serial/altera_uart.c: In function 'altera_uart_get_mctrl':
>>>> drivers/serial/altera_uart.c:100: error: implicit declaration of function 'altera_uart_getppdcd'
>>>> drivers/serial/altera_uart.c:101: error: implicit declaration of function 'altera_uart_getppdtr'
>>>> drivers/serial/altera_uart.c: In function 'altera_uart_set_mctrl':
>>>> drivers/serial/altera_uart.c:114: error: implicit declaration of function 'altera_uart_setppdtr'
>>>>
>>> These should usually be declared in a board specific header. There were
>>> compatibility macros in altera_uart.c which defined them to NOPs in case
>>> the board header did not properly define them. But I remove them as per
>>> request by Alan Cox (Message-ID: 20100301181920.3952c3e7@lxorguk.ukuu.org.uk).
>>>
>>> Should we add them again (maybe to altera_uart.h)? Or would it be better
>>> to define a config symbol which is set in the board specific Kconfig and
>>> altera_uart depends on it?
>>>
>> I guess the latter.
>>
>> There should have been a real implementation of these in the patchset -
>> otherwise the code can't be used or tested. Confused.
>>
> Sorry for the confusion.
>
> The last patchset I submitted (with the functions removed from
> altera_uart.c) was tested on a local branch, where I added the macros to
> a global board specific header. I didn't include that one in the patch.
>
> After looking at the code and it's history a bit closer (and also on the
> nios2 specific part) I realised that this macro was probably added
> because the driver was originally based on drivers/serial/mcf.c (the
> macros are present there too).
>
> Also there are currently no board configurations known to me that define
> these macros. So I'd suggest to remove the usage of these macros
> alltogether. We could still add them again (to the board specific part
> and with the config option then) in case there will be a board
> configuration implementing DTR/DCD lines on GPIOs.
>
> Could anyone on nios2-dev verify that there are currently no such board
> configurations?
>
> I'd remove the usage of the macros then and post an updated patch.
>
Maybe we can add pointers to functions for the DCD/DTR in the struct
altera_uart_platform_uart. Then board config file can define them if
they implement these pins, NULL/0 otherwise.
struct altera_uart_platform_uart {
...
int (*getppdcd)(...); /* get DCD status */
...
};
static unsigned int altera_uart_get_mctrl(struct uart_port *port)
{
...
if (port->getppdcd)
sigs |= (port->getppdcd(...)) ? TIOCM_CD : 0);
- Thomas
next prev parent reply other threads:[~2010-03-25 0:50 UTC|newest]
Thread overview: 14+ messages / expand[flat|nested] mbox.gz Atom feed top
2010-03-05 16:52 [PATCHv3 0/2] serial: Drivers for Altera UARTs Tobias Klauser
2010-03-05 16:52 ` [PATCHv3 1/2] serial: Add driver for the Altera JTAG UART Tobias Klauser
2010-03-12 20:48 ` Andrew Morton
2010-03-15 10:20 ` Tobias Klauser
2010-03-15 10:24 ` [Nios2-dev] " waltergoossens
2010-03-16 0:47 ` Thomas Chou
2010-03-05 16:52 ` [PATCHv3 2/2] serial: Add driver for the Altera UART Tobias Klauser
2010-03-23 21:54 ` Andrew Morton
2010-03-24 6:47 ` Tobias Klauser
2010-03-24 11:05 ` Andrew Morton
2010-03-24 16:24 ` Tobias Klauser
2010-03-25 0:54 ` Thomas Chou [this message]
2010-03-29 13:29 ` Tobias Klauser
2010-03-30 0:18 ` Thomas Chou
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=4BAAB431.3040202@wytron.com.tw \
--to=thomas@wytron.com.tw \
--cc=akpm@linux-foundation.org \
--cc=alan@lxorguk.ukuu.org.uk \
--cc=gregkh@suse.de \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-serial@vger.kernel.org \
--cc=nios2-dev@sopc.et.ntust.edu.tw \
--cc=tklauser@distanz.ch \
/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