LKML Archive on lore.kernel.org
help / color / mirror / Atom feed
* [PATCH] UART regs: add OMAP wakeup-enable register
@ 2009-05-21 17:09 Kevin Hilman
2009-05-21 17:46 ` Tony Lindgren
2009-05-21 19:37 ` Alan Cox
0 siblings, 2 replies; 5+ messages in thread
From: Kevin Hilman @ 2009-05-21 17:09 UTC (permalink / raw)
To: linux-kernel; +Cc: Kevin Hilman
Add the wakeup enable register to the list of OMAP-specific UART
registers. This is to support forthcoming OMAP PM enhancements which
use the wakeup feature of the OMAP's 8250-based UART.
Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
---
The MAINTAINERS file lists the 8250 driver as orphaned, and posts to
linux-serial go unanswered. How should this go upstream?
include/linux/serial_reg.h | 1 +
1 files changed, 1 insertions(+), 0 deletions(-)
diff --git a/include/linux/serial_reg.h b/include/linux/serial_reg.h
index 96c0d93..850db2e 100644
--- a/include/linux/serial_reg.h
+++ b/include/linux/serial_reg.h
@@ -323,6 +323,7 @@
#define UART_OMAP_MVER 0x14 /* Module version register */
#define UART_OMAP_SYSC 0x15 /* System configuration register */
#define UART_OMAP_SYSS 0x16 /* System status register */
+#define UART_OMAP_WER 0x17 /* Wake-up enable register */
#endif /* _LINUX_SERIAL_REG_H */
--
1.6.2.2
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] UART regs: add OMAP wakeup-enable register
2009-05-21 17:09 [PATCH] UART regs: add OMAP wakeup-enable register Kevin Hilman
@ 2009-05-21 17:46 ` Tony Lindgren
2009-05-21 17:59 ` Kevin Hilman
2009-05-21 19:37 ` Alan Cox
1 sibling, 1 reply; 5+ messages in thread
From: Tony Lindgren @ 2009-05-21 17:46 UTC (permalink / raw)
To: Kevin Hilman; +Cc: linux-kernel
* Kevin Hilman <khilman@deeprootsystems.com> [090521 10:10]:
> Add the wakeup enable register to the list of OMAP-specific UART
> registers. This is to support forthcoming OMAP PM enhancements which
> use the wakeup feature of the OMAP's 8250-based UART.
>
> Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
> ---
> The MAINTAINERS file lists the 8250 driver as orphaned, and posts to
> linux-serial go unanswered. How should this go upstream?
I suggest you merge this into your omap PM queue and we'll merge it
with that.
Tony
> include/linux/serial_reg.h | 1 +
> 1 files changed, 1 insertions(+), 0 deletions(-)
>
> diff --git a/include/linux/serial_reg.h b/include/linux/serial_reg.h
> index 96c0d93..850db2e 100644
> --- a/include/linux/serial_reg.h
> +++ b/include/linux/serial_reg.h
> @@ -323,6 +323,7 @@
> #define UART_OMAP_MVER 0x14 /* Module version register */
> #define UART_OMAP_SYSC 0x15 /* System configuration register */
> #define UART_OMAP_SYSS 0x16 /* System status register */
> +#define UART_OMAP_WER 0x17 /* Wake-up enable register */
>
> #endif /* _LINUX_SERIAL_REG_H */
>
> --
> 1.6.2.2
>
> --
> To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at http://vger.kernel.org/majordomo-info.html
> Please read the FAQ at http://www.tux.org/lkml/
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] UART regs: add OMAP wakeup-enable register
2009-05-21 17:46 ` Tony Lindgren
@ 2009-05-21 17:59 ` Kevin Hilman
0 siblings, 0 replies; 5+ messages in thread
From: Kevin Hilman @ 2009-05-21 17:59 UTC (permalink / raw)
To: Tony Lindgren; +Cc: linux-kernel
Tony Lindgren <tony@atomide.com> writes:
> * Kevin Hilman <khilman@deeprootsystems.com> [090521 10:10]:
>> Add the wakeup enable register to the list of OMAP-specific UART
>> registers. This is to support forthcoming OMAP PM enhancements which
>> use the wakeup feature of the OMAP's 8250-based UART.
>>
>> Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
>> ---
>> The MAINTAINERS file lists the 8250 driver as orphaned, and posts to
>> linux-serial go unanswered. How should this go upstream?
>
> I suggest you merge this into your omap PM queue and we'll merge it
> with that.
OK, I can do that but assumed it would need a serial maintainer
signoff first.
Kevin
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] UART regs: add OMAP wakeup-enable register
2009-05-21 17:09 [PATCH] UART regs: add OMAP wakeup-enable register Kevin Hilman
2009-05-21 17:46 ` Tony Lindgren
@ 2009-05-21 19:37 ` Alan Cox
2009-05-22 15:13 ` Kevin Hilman
1 sibling, 1 reply; 5+ messages in thread
From: Alan Cox @ 2009-05-21 19:37 UTC (permalink / raw)
To: Kevin Hilman; +Cc: linux-kernel, Kevin Hilman
On Thu, 21 May 2009 10:09:58 -0700
Kevin Hilman <khilman@deeprootsystems.com> wrote:
> Add the wakeup enable register to the list of OMAP-specific UART
> registers. This is to support forthcoming OMAP PM enhancements which
> use the wakeup feature of the OMAP's 8250-based UART.
>
> Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
> ---
> The MAINTAINERS file lists the 8250 driver as orphaned, and posts to
> linux-serial go unanswered. How should this go upstream?
Via me - I'm sort of defacto serial/8250 caretaker.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] UART regs: add OMAP wakeup-enable register
2009-05-21 19:37 ` Alan Cox
@ 2009-05-22 15:13 ` Kevin Hilman
0 siblings, 0 replies; 5+ messages in thread
From: Kevin Hilman @ 2009-05-22 15:13 UTC (permalink / raw)
To: Alan Cox; +Cc: linux-kernel
Alan Cox <alan@lxorguk.ukuu.org.uk> writes:
> On Thu, 21 May 2009 10:09:58 -0700
> Kevin Hilman <khilman@deeprootsystems.com> wrote:
>
>> Add the wakeup enable register to the list of OMAP-specific UART
>> registers. This is to support forthcoming OMAP PM enhancements which
>> use the wakeup feature of the OMAP's 8250-based UART.
>>
>> Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
>> ---
>> The MAINTAINERS file lists the 8250 driver as orphaned, and posts to
>> linux-serial go unanswered. How should this go upstream?
>
> Via me - I'm sort of defacto serial/8250 caretaker.
OK, good to know.
So are you planning to pull this one in for the next merge window?
Kevin
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2009-05-22 15:13 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-05-21 17:09 [PATCH] UART regs: add OMAP wakeup-enable register Kevin Hilman
2009-05-21 17:46 ` Tony Lindgren
2009-05-21 17:59 ` Kevin Hilman
2009-05-21 19:37 ` Alan Cox
2009-05-22 15:13 ` Kevin Hilman
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).