i2c.h 1.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. /*
  2. * PNX4008-specific tweaks for I2C IP3204 block
  3. *
  4. * Author: Vitaly Wool <vwool@ru.mvista.com>
  5. *
  6. * 2005 (c) MontaVista Software, Inc. This file is licensed under
  7. * the terms of the GNU General Public License version 2. This program
  8. * is licensed "as is" without any warranty of any kind, whether express
  9. * or implied.
  10. */
  11. #ifndef __ASM_ARCH_I2C_H
  12. #define __ASM_ARCH_I2C_H
  13. enum {
  14. mstatus_tdi = 0x00000001,
  15. mstatus_afi = 0x00000002,
  16. mstatus_nai = 0x00000004,
  17. mstatus_drmi = 0x00000008,
  18. mstatus_active = 0x00000020,
  19. mstatus_scl = 0x00000040,
  20. mstatus_sda = 0x00000080,
  21. mstatus_rff = 0x00000100,
  22. mstatus_rfe = 0x00000200,
  23. mstatus_tff = 0x00000400,
  24. mstatus_tfe = 0x00000800,
  25. };
  26. enum {
  27. mcntrl_tdie = 0x00000001,
  28. mcntrl_afie = 0x00000002,
  29. mcntrl_naie = 0x00000004,
  30. mcntrl_drmie = 0x00000008,
  31. mcntrl_daie = 0x00000020,
  32. mcntrl_rffie = 0x00000040,
  33. mcntrl_tffie = 0x00000080,
  34. mcntrl_reset = 0x00000100,
  35. mcntrl_cdbmode = 0x00000400,
  36. };
  37. enum {
  38. rw_bit = 1 << 0,
  39. start_bit = 1 << 8,
  40. stop_bit = 1 << 9,
  41. };
  42. #define I2C_REG_RX(a) ((a)->ioaddr) /* Rx FIFO reg (RO) */
  43. #define I2C_REG_TX(a) ((a)->ioaddr) /* Tx FIFO reg (WO) */
  44. #define I2C_REG_STS(a) ((a)->ioaddr + 0x04) /* Status reg (RO) */
  45. #define I2C_REG_CTL(a) ((a)->ioaddr + 0x08) /* Ctl reg */
  46. #define I2C_REG_CKL(a) ((a)->ioaddr + 0x0c) /* Clock divider low */
  47. #define I2C_REG_CKH(a) ((a)->ioaddr + 0x10) /* Clock divider high */
  48. #define I2C_REG_ADR(a) ((a)->ioaddr + 0x14) /* I2C address */
  49. #define I2C_REG_RFL(a) ((a)->ioaddr + 0x18) /* Rx FIFO level (RO) */
  50. #define I2C_REG_TFL(a) ((a)->ioaddr + 0x1c) /* Tx FIFO level (RO) */
  51. #define I2C_REG_RXB(a) ((a)->ioaddr + 0x20) /* Num of bytes Rx-ed (RO) */
  52. #define I2C_REG_TXB(a) ((a)->ioaddr + 0x24) /* Num of bytes Tx-ed (RO) */
  53. #define I2C_REG_TXS(a) ((a)->ioaddr + 0x28) /* Tx slave FIFO (RO) */
  54. #define I2C_REG_STFL(a) ((a)->ioaddr + 0x2c) /* Tx slave FIFO level (RO) */
  55. #define I2C_CHIP_NAME "PNX4008-I2C"
  56. #endif /* __ASM_ARCH_I2C_H */