2005-04-16 22:20:36 +00:00
|
|
|
/*
|
2006-10-03 21:01:26 +00:00
|
|
|
* linux/drivers/serial/cpm_uart/cpm_uart_cpm1.h
|
2005-04-16 22:20:36 +00:00
|
|
|
*
|
|
|
|
* Driver for CPM (SCC/SMC) serial ports
|
2008-06-12 12:53:48 +00:00
|
|
|
*
|
2005-04-16 22:20:36 +00:00
|
|
|
* definitions for cpm1
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef CPM_UART_CPM1_H
|
|
|
|
#define CPM_UART_CPM1_H
|
|
|
|
|
2008-01-25 14:31:42 +00:00
|
|
|
#include <asm/cpm1.h>
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
static inline void cpm_set_brg(int brg, int baud)
|
|
|
|
{
|
|
|
|
cpm_setbrg(brg, baud);
|
|
|
|
}
|
|
|
|
|
2007-07-24 20:53:07 +00:00
|
|
|
static inline void cpm_set_scc_fcr(scc_uart_t __iomem * sup)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2007-07-24 20:53:07 +00:00
|
|
|
out_8(&sup->scc_genscc.scc_rfcr, SMC_EB);
|
|
|
|
out_8(&sup->scc_genscc.scc_tfcr, SMC_EB);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2007-07-24 20:53:07 +00:00
|
|
|
static inline void cpm_set_smc_fcr(smc_uart_t __iomem * up)
|
2005-04-16 22:20:36 +00:00
|
|
|
{
|
2007-07-24 20:53:07 +00:00
|
|
|
out_8(&up->smc_rfcr, SMC_EB);
|
|
|
|
out_8(&up->smc_tfcr, SMC_EB);
|
2005-04-16 22:20:36 +00:00
|
|
|
}
|
|
|
|
|
2007-07-24 20:53:07 +00:00
|
|
|
#define DPRAM_BASE ((u8 __iomem __force *)cpm_dpram_addr(0))
|
2005-04-16 22:20:36 +00:00
|
|
|
|
|
|
|
#endif
|