i2c-algo-pcf.h 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /* -------------------------------------------------------------------- */
  2. /* i2c-pcf8584.h: PCF 8584 global defines */
  3. /* -------------------------------------------------------------------- */
  4. /* Copyright (C) 1996 Simon G. Vogl
  5. 1999 Hans Berglund
  6. This program is free software; you can redistribute it and/or modify
  7. it under the terms of the GNU General Public License as published by
  8. the Free Software Foundation; either version 2 of the License, or
  9. (at your option) any later version.
  10. This program is distributed in the hope that it will be useful,
  11. but WITHOUT ANY WARRANTY; without even the implied warranty of
  12. MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  13. GNU General Public License for more details. */
  14. /* -------------------------------------------------------------------- */
  15. /* With some changes from Frodo Looijaard <frodol@dds.nl> */
  16. #ifndef I2C_PCF8584_H
  17. #define I2C_PCF8584_H 1
  18. /* ----- Control register bits ---------------------------------------- */
  19. #define I2C_PCF_PIN 0x80
  20. #define I2C_PCF_ESO 0x40
  21. #define I2C_PCF_ES1 0x20
  22. #define I2C_PCF_ES2 0x10
  23. #define I2C_PCF_ENI 0x08
  24. #define I2C_PCF_STA 0x04
  25. #define I2C_PCF_STO 0x02
  26. #define I2C_PCF_ACK 0x01
  27. #define I2C_PCF_START (I2C_PCF_PIN | I2C_PCF_ESO | I2C_PCF_STA | I2C_PCF_ACK)
  28. #define I2C_PCF_STOP (I2C_PCF_PIN | I2C_PCF_ESO | I2C_PCF_STO | I2C_PCF_ACK)
  29. #define I2C_PCF_REPSTART ( I2C_PCF_ESO | I2C_PCF_STA | I2C_PCF_ACK)
  30. #define I2C_PCF_IDLE (I2C_PCF_PIN | I2C_PCF_ESO | I2C_PCF_ACK)
  31. /* ----- Status register bits ----------------------------------------- */
  32. /*#define I2C_PCF_PIN 0x80 as above*/
  33. #define I2C_PCF_INI 0x40 /* 1 if not initialized */
  34. #define I2C_PCF_STS 0x20
  35. #define I2C_PCF_BER 0x10
  36. #define I2C_PCF_AD0 0x08
  37. #define I2C_PCF_LRB 0x08
  38. #define I2C_PCF_AAS 0x04
  39. #define I2C_PCF_LAB 0x02
  40. #define I2C_PCF_BB 0x01
  41. /* ----- Chip clock frequencies --------------------------------------- */
  42. #define I2C_PCF_CLK3 0x00
  43. #define I2C_PCF_CLK443 0x10
  44. #define I2C_PCF_CLK6 0x14
  45. #define I2C_PCF_CLK 0x18
  46. #define I2C_PCF_CLK12 0x1c
  47. /* ----- transmission frequencies ------------------------------------- */
  48. #define I2C_PCF_TRNS90 0x00 /* 90 kHz */
  49. #define I2C_PCF_TRNS45 0x01 /* 45 kHz */
  50. #define I2C_PCF_TRNS11 0x02 /* 11 kHz */
  51. #define I2C_PCF_TRNS15 0x03 /* 1.5 kHz */
  52. /* ----- Access to internal registers according to ES1,ES2 ------------ */
  53. /* they are mapped to the data port ( a0 = 0 ) */
  54. /* available when ESO == 0 : */
  55. #define I2C_PCF_OWNADR 0
  56. #define I2C_PCF_INTREG I2C_PCF_ES2
  57. #define I2C_PCF_CLKREG I2C_PCF_ES1
  58. #endif /* I2C_PCF8584_H */