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