regs-modem.h 1022 B

12345678910111213141516171819202122232425262728293031
  1. /*
  2. * Copyright 2008 Openmoko, Inc.
  3. * Copyright 2008 Simtec Electronics
  4. * http://armlinux.simtec.co.uk/
  5. * Ben Dooks <ben@simtec.co.uk>
  6. *
  7. * S3C64XX - modem block registers
  8. *
  9. * This program is free software; you can redistribute it and/or modify
  10. * it under the terms of the GNU General Public License version 2 as
  11. * published by the Free Software Foundation.
  12. */
  13. #ifndef __MACH_S3C64XX_REGS_MODEM_H
  14. #define __MACH_S3C64XX_REGS_MODEM_H __FILE__
  15. #define S3C64XX_MODEMREG(x) (S3C64XX_VA_MODEM + (x))
  16. #define S3C64XX_MODEM_INT2AP S3C64XX_MODEMREG(0x0)
  17. #define S3C64XX_MODEM_INT2MODEM S3C64XX_MODEMREG(0x4)
  18. #define S3C64XX_MODEM_MIFCON S3C64XX_MODEMREG(0x8)
  19. #define S3C64XX_MODEM_MIFPCON S3C64XX_MODEMREG(0xC)
  20. #define S3C64XX_MODEM_INTCLR S3C64XX_MODEMREG(0x10)
  21. #define S3C64XX_MODEM_DMA_TXADDR S3C64XX_MODEMREG(0x14)
  22. #define S3C64XX_MODEM_DMA_RXADDR S3C64XX_MODEMREG(0x18)
  23. #define MIFPCON_INT2M_LEVEL (1 << 4)
  24. #define MIFPCON_LCD_BYPASS (1 << 3)
  25. #endif /* __MACH_S3C64XX_REGS_MODEM_H */