Merge branch 'for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tiwai/sound-2.6
[zen-stable.git] / drivers / tty / serial / cpm_uart / cpm_uart_cpm1.h
blob60c7e94cde1e2eee65afdf65e5c2f62448291a1d
1 /*
2 * Driver for CPM (SCC/SMC) serial ports
4 * definitions for cpm1
6 */
8 #ifndef CPM_UART_CPM1_H
9 #define CPM_UART_CPM1_H
11 #include <asm/cpm1.h>
13 static inline void cpm_set_brg(int brg, int baud)
15 cpm_setbrg(brg, baud);
18 static inline void cpm_set_scc_fcr(scc_uart_t __iomem * sup)
20 out_8(&sup->scc_genscc.scc_rfcr, SMC_EB);
21 out_8(&sup->scc_genscc.scc_tfcr, SMC_EB);
24 static inline void cpm_set_smc_fcr(smc_uart_t __iomem * up)
26 out_8(&up->smc_rfcr, SMC_EB);
27 out_8(&up->smc_tfcr, SMC_EB);
30 #define DPRAM_BASE ((u8 __iomem __force *)cpm_dpram_addr(0))
32 #endif