From: Vignesh R <vigneshr@ti.com>
To: Olliver Schinagl <oliver@schinagl.nl>,
Greg Kroah-Hartman <gregkh@linuxfoundation.org>,
Jiri Slaby <jslaby@suse.com>,
Laxman Dewangan <ldewangan@nvidia.com>,
Stephen Warren <swarren@wwwdotorg.org>,
Thierry Reding <thierry.reding@gmail.com>,
Alexandre Courbot <gnurou@gmail.com>,
"David S . Miller" <davem@davemloft.net>
Cc: "dev@linux-sunxi.org" <dev@linux-sunxi.org>,
Ed Blake <ed.blake@imgtec.com>,
Andy Shevchenko <andriy.shevchenko@linux.intel.com>,
Alexander Sverdlin <alexander.sverdlin@nokia.com>,
Yegor Yefremov <yegorslists@googlemail.com>,
Wan Ahmad Zainie <wan.ahmad.zainie.wan.mohamad@intel.com>,
Kefeng Wang <wangkefeng.wang@huawei.com>,
Heikki Krogerus <heikki.krogerus@linux.intel.com>,
Heiko Stuebner <heiko@sntech.de>,
Jason Uy <jason.uy@broadcom.com>,
Douglas Anderson <dianders@chromium.org>,
Peter Hurley <peter@hurleysoftware.com>,
Tony Lindgren <tony@atomide.com>,
Thor Thayer <tthayer@opensource.altera.com>,
David Lechner <david@lechnology.com>,
Jan Kiszka <jan.kiszka@siemens.com>,
"linux-serial@vger.kernel.org" <linux-serial@vger.kernel.org>,
"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>,
"linux-tegra@vger.kernel.org" <linux-tegra@vger.kernel.org>,
"sparclinux@vger.kernel.org" <sparclinux@vger.kernel.org>
Subject: Re: [PATCH] serial: Do not treat the IIR register as a bitfield
Date: Thu, 30 Mar 2017 13:27:19 +0530 [thread overview]
Message-ID: <2faa7420-0a54-e77f-0da2-80f6dfcf9710@ti.com> (raw)
In-Reply-To: <D694FA74-1F31-4B57-8858-2DBE8DE57D45@schinagl.nl>
On Thursday 30 March 2017 12:13 PM, Olliver Schinagl wrote:
>
>
> On March 30, 2017 8:15:29 AM CEST, Vignesh R <vigneshr@ti.com> wrote:
>> Hi,
>>
>> On Thursday 30 March 2017 12:14 AM, Olliver Schinagl wrote:
>>> diff --git a/include/uapi/linux/serial_reg.h
>> b/include/uapi/linux/serial_reg.h
>>> index 5db76880b4ad..489522389a10 100644
>>> --- a/include/uapi/linux/serial_reg.h
>>> +++ b/include/uapi/linux/serial_reg.h
>>> @@ -31,18 +31,18 @@
>>> #define UART_IERX_SLEEP 0x10 /* Enable sleep mode */
>>>
>>> #define UART_IIR 2 /* In: Interrupt ID Register */
>>> -#define UART_IIR_NO_INT 0x01 /* No interrupts pending */
>>> -#define UART_IIR_ID 0x0e /* Mask for the interrupt ID */
>>> #define UART_IIR_MSI 0x00 /* Modem status interrupt */
>>> +#define UART_IIR_NO_INT 0x01 /* No interrupts pending */
>>> #define UART_IIR_THRI 0x02 /* Transmitter holding register empty */
>>> #define UART_IIR_RDI 0x04 /* Receiver data interrupt */
>>> #define UART_IIR_RLSI 0x06 /* Receiver line status interrupt */
>>> -
>>> #define UART_IIR_BUSY 0x07 /* DesignWare APB Busy Detect */
>>> +#define UART_IIR_RX_TIMEOUT 0x0c /* DesignWare RX Timeout interrupt
>> */
> It was moved due to sorting. The comment could be changed maybe? I renamed it from omap to dw as i believe the omap also uses the dw ip. But i think it is a defacto standard mapping of the irr register?
AFAIK, OMAP UART does not use DW core, please make these IDs generic to
avoid confusion.
>
>>> +#define UART_IIR_MASK 0x0f /* DesignWare IIR mask */
>>>
>>> -#define UART_IIR_RX_TIMEOUT 0x0c /* OMAP RX Timeout interrupt */
>>
>> You are removing UART_IIR_RX_TIMEOUT? Is this intended?
>>
>>> #define UART_IIR_XOFF 0x10 /* OMAP XOFF/Special Character */
>>> #define UART_IIR_CTS_RTS_DSR 0x20 /* OMAP CTS/RTS/DSR Change */
>>> +#define UART_IIR_EXT_MASK 0x30 /* OMAP extended IIR mask */
>
--
Regards
Vignesh
next prev parent reply other threads:[~2017-03-30 7:59 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2017-03-29 18:44 [PATCH] serial: Do not treat the IIR register as a bitfield Olliver Schinagl
2017-03-30 6:15 ` Vignesh R
2017-03-30 6:43 ` Olliver Schinagl
2017-03-30 7:57 ` Vignesh R [this message]
2017-03-30 15:39 ` Olliver Schinagl
2017-03-30 14:11 ` Theodore Ts'o
2017-03-31 11:28 ` Olliver Schinagl
2017-03-30 9:56 ` Andy Shevchenko
2017-03-31 13:54 ` Olliver Schinagl
2017-03-31 14:44 ` Andy Shevchenko
2017-03-30 10:06 ` kbuild test robot
2017-03-30 10:22 ` kbuild test robot
2017-03-30 10:32 ` Andy Shevchenko
2017-03-30 11:27 ` [kbuild-all] " Fengguang Wu
2017-03-30 12:18 ` kbuild test robot
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=2faa7420-0a54-e77f-0da2-80f6dfcf9710@ti.com \
--to=vigneshr@ti.com \
--cc=alexander.sverdlin@nokia.com \
--cc=andriy.shevchenko@linux.intel.com \
--cc=davem@davemloft.net \
--cc=david@lechnology.com \
--cc=dev@linux-sunxi.org \
--cc=dianders@chromium.org \
--cc=ed.blake@imgtec.com \
--cc=gnurou@gmail.com \
--cc=gregkh@linuxfoundation.org \
--cc=heikki.krogerus@linux.intel.com \
--cc=heiko@sntech.de \
--cc=jan.kiszka@siemens.com \
--cc=jason.uy@broadcom.com \
--cc=jslaby@suse.com \
--cc=ldewangan@nvidia.com \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-serial@vger.kernel.org \
--cc=linux-tegra@vger.kernel.org \
--cc=oliver@schinagl.nl \
--cc=peter@hurleysoftware.com \
--cc=sparclinux@vger.kernel.org \
--cc=swarren@wwwdotorg.org \
--cc=thierry.reding@gmail.com \
--cc=tony@atomide.com \
--cc=tthayer@opensource.altera.com \
--cc=wan.ahmad.zainie.wan.mohamad@intel.com \
--cc=wangkefeng.wang@huawei.com \
--cc=yegorslists@googlemail.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