2005-09-07 10:20:27 -06:00
|
|
|
/*
|
2009-05-28 15:16:04 -06:00
|
|
|
* arch/arm/plat-omap/include/mach/serial.h
|
|
|
|
*
|
|
|
|
* Copyright (C) 2009 Texas Instruments
|
|
|
|
* Addded OMAP4 support- Santosh Shilimkar <santosh.shilimkar@ti.com>
|
2005-09-07 10:20:27 -06:00
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __ASM_ARCH_SERIAL_H
|
|
|
|
#define __ASM_ARCH_SERIAL_H
|
|
|
|
|
2009-09-03 11:14:02 -06:00
|
|
|
#include <linux/init.h>
|
|
|
|
|
2005-09-07 10:20:27 -06:00
|
|
|
#if defined(CONFIG_ARCH_OMAP1)
|
|
|
|
/* OMAP1 serial ports */
|
|
|
|
#define OMAP_UART1_BASE 0xfffb0000
|
|
|
|
#define OMAP_UART2_BASE 0xfffb0800
|
|
|
|
#define OMAP_UART3_BASE 0xfffb9800
|
|
|
|
#elif defined(CONFIG_ARCH_OMAP2)
|
|
|
|
/* OMAP2 serial ports */
|
|
|
|
#define OMAP_UART1_BASE 0x4806a000
|
|
|
|
#define OMAP_UART2_BASE 0x4806c000
|
|
|
|
#define OMAP_UART3_BASE 0x4806e000
|
2008-10-06 06:49:15 -06:00
|
|
|
#elif defined(CONFIG_ARCH_OMAP3)
|
|
|
|
/* OMAP3 serial ports */
|
|
|
|
#define OMAP_UART1_BASE 0x4806a000
|
|
|
|
#define OMAP_UART2_BASE 0x4806c000
|
|
|
|
#define OMAP_UART3_BASE 0x49020000
|
2009-05-28 15:16:04 -06:00
|
|
|
#elif defined(CONFIG_ARCH_OMAP4)
|
|
|
|
/* OMAP4 serial ports */
|
|
|
|
#define OMAP_UART1_BASE 0x4806a000
|
|
|
|
#define OMAP_UART2_BASE 0x4806c000
|
|
|
|
#define OMAP_UART3_BASE 0x48020000
|
|
|
|
#define OMAP_UART4_BASE 0x4806e000
|
2005-09-07 10:20:27 -06:00
|
|
|
#endif
|
|
|
|
|
|
|
|
#define OMAP1510_BASE_BAUD (12000000/16)
|
|
|
|
#define OMAP16XX_BASE_BAUD (48000000/16)
|
2008-10-06 06:49:15 -06:00
|
|
|
#define OMAP24XX_BASE_BAUD (48000000/16)
|
2005-09-07 10:20:27 -06:00
|
|
|
|
2008-09-01 14:25:33 -06:00
|
|
|
#define is_omap_port(pt) ({int __ret = 0; \
|
|
|
|
if ((pt)->port.mapbase == OMAP_UART1_BASE || \
|
|
|
|
(pt)->port.mapbase == OMAP_UART2_BASE || \
|
|
|
|
(pt)->port.mapbase == OMAP_UART3_BASE) \
|
|
|
|
__ret = 1; \
|
|
|
|
__ret; \
|
2005-09-07 10:20:27 -06:00
|
|
|
})
|
|
|
|
|
OMAP3: PM: UART: disable clocks when idle and off-mode support
This patch allows the UART clocks to be disabled when the OMAP UARTs
are inactive, thus permitting the chip to hit retention in idle.
After the expiration of an activity timer, each UART is allowed to
disable its clocks so the system can enter retention. The activity
timer is (re)activated on any UART interrupt, UART wake event or any
IO pad wakeup. The actual disable of the UART clocks is done in the
'prepare_idle' hook called from the OMAP idle loop.
While the activity timer is active, the smart-idle mode of the UART is
also disabled. This is due to a "feature" of the UART module that
after a UART wakeup, the smart-idle mode may be entered before the
UART has communicated the interrupt, or upon TX, an idle mode may be
entered before the TX FIFOs are emptied.
Upon suspend, the 'prepare_suspend' hook cancels any pending activity
timers and allows the clocks to be disabled immediately.
In addition, upon disabling clocks the UART state is saved in case
of an off-mode transition while clocks are off.
Special thanks to Tero Kristo for the initial ideas and first versions
of UART idle support, and to Jouni Hogander for extra testing and
bugfixes.
Tested on OMAP3 (Beagle, RX51, SDP, EVM) and OMAP2 (n810)
Cc: Tero Kristo <tero.kristo@nokia.com>
Cc: Jouni Hogander <jouni.hogander@nokia.com>
Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
2009-02-04 11:51:40 -07:00
|
|
|
#ifndef __ASSEMBLER__
|
2009-09-03 11:14:02 -06:00
|
|
|
extern void __init omap_serial_early_init(void);
|
OMAP3: PM: UART: disable clocks when idle and off-mode support
This patch allows the UART clocks to be disabled when the OMAP UARTs
are inactive, thus permitting the chip to hit retention in idle.
After the expiration of an activity timer, each UART is allowed to
disable its clocks so the system can enter retention. The activity
timer is (re)activated on any UART interrupt, UART wake event or any
IO pad wakeup. The actual disable of the UART clocks is done in the
'prepare_idle' hook called from the OMAP idle loop.
While the activity timer is active, the smart-idle mode of the UART is
also disabled. This is due to a "feature" of the UART module that
after a UART wakeup, the smart-idle mode may be entered before the
UART has communicated the interrupt, or upon TX, an idle mode may be
entered before the TX FIFOs are emptied.
Upon suspend, the 'prepare_suspend' hook cancels any pending activity
timers and allows the clocks to be disabled immediately.
In addition, upon disabling clocks the UART state is saved in case
of an off-mode transition while clocks are off.
Special thanks to Tero Kristo for the initial ideas and first versions
of UART idle support, and to Jouni Hogander for extra testing and
bugfixes.
Tested on OMAP3 (Beagle, RX51, SDP, EVM) and OMAP2 (n810)
Cc: Tero Kristo <tero.kristo@nokia.com>
Cc: Jouni Hogander <jouni.hogander@nokia.com>
Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
2009-02-04 11:51:40 -07:00
|
|
|
extern void omap_serial_init(void);
|
|
|
|
extern int omap_uart_can_sleep(void);
|
|
|
|
extern void omap_uart_check_wakeup(void);
|
|
|
|
extern void omap_uart_prepare_suspend(void);
|
|
|
|
extern void omap_uart_prepare_idle(int num);
|
|
|
|
extern void omap_uart_resume_idle(int num);
|
2009-03-05 07:32:23 -07:00
|
|
|
extern void omap_uart_enable_irqs(int enable);
|
OMAP3: PM: UART: disable clocks when idle and off-mode support
This patch allows the UART clocks to be disabled when the OMAP UARTs
are inactive, thus permitting the chip to hit retention in idle.
After the expiration of an activity timer, each UART is allowed to
disable its clocks so the system can enter retention. The activity
timer is (re)activated on any UART interrupt, UART wake event or any
IO pad wakeup. The actual disable of the UART clocks is done in the
'prepare_idle' hook called from the OMAP idle loop.
While the activity timer is active, the smart-idle mode of the UART is
also disabled. This is due to a "feature" of the UART module that
after a UART wakeup, the smart-idle mode may be entered before the
UART has communicated the interrupt, or upon TX, an idle mode may be
entered before the TX FIFOs are emptied.
Upon suspend, the 'prepare_suspend' hook cancels any pending activity
timers and allows the clocks to be disabled immediately.
In addition, upon disabling clocks the UART state is saved in case
of an off-mode transition while clocks are off.
Special thanks to Tero Kristo for the initial ideas and first versions
of UART idle support, and to Jouni Hogander for extra testing and
bugfixes.
Tested on OMAP3 (Beagle, RX51, SDP, EVM) and OMAP2 (n810)
Cc: Tero Kristo <tero.kristo@nokia.com>
Cc: Jouni Hogander <jouni.hogander@nokia.com>
Signed-off-by: Kevin Hilman <khilman@deeprootsystems.com>
2009-02-04 11:51:40 -07:00
|
|
|
#endif
|
|
|
|
|
2005-09-07 10:20:27 -06:00
|
|
|
#endif
|