cpm_uart_cpm2.h 640 B

123456789101112131415161718192021222324252627282930313233
  1. /*
  2. * Driver for CPM (SCC/SMC) serial ports
  3. *
  4. * definitions for cpm2
  5. *
  6. */
  7. #ifndef CPM_UART_CPM2_H
  8. #define CPM_UART_CPM2_H
  9. #include <asm/cpm2.h>
  10. static inline void cpm_set_brg(int brg, int baud)
  11. {
  12. cpm_setbrg(brg, baud);
  13. }
  14. static inline void cpm_set_scc_fcr(scc_uart_t __iomem *sup)
  15. {
  16. out_8(&sup->scc_genscc.scc_rfcr, CPMFCR_GBL | CPMFCR_EB);
  17. out_8(&sup->scc_genscc.scc_tfcr, CPMFCR_GBL | CPMFCR_EB);
  18. }
  19. static inline void cpm_set_smc_fcr(smc_uart_t __iomem *up)
  20. {
  21. out_8(&up->smc_rfcr, CPMFCR_GBL | CPMFCR_EB);
  22. out_8(&up->smc_tfcr, CPMFCR_GBL | CPMFCR_EB);
  23. }
  24. #define DPRAM_BASE ((u8 __iomem __force *)cpm_dpram_addr(0))
  25. #endif