at24.h 982 B

12345678910111213141516171819202122232425262728
  1. #ifndef _LINUX_AT24_H
  2. #define _LINUX_AT24_H
  3. #include <linux/types.h>
  4. /*
  5. * As seen through Linux I2C, differences between the most common types of I2C
  6. * memory include:
  7. * - How much memory is available (usually specified in bit)?
  8. * - What write page size does it support?
  9. * - Special flags (16 bit addresses, read_only, world readable...)?
  10. *
  11. * If you set up a custom eeprom type, please double-check the parameters.
  12. * Especially page_size needs extra care, as you risk data loss if your value
  13. * is bigger than what the chip actually supports!
  14. */
  15. struct at24_platform_data {
  16. u32 byte_len; /* size (sum of all addr) */
  17. u16 page_size; /* for writes */
  18. u8 flags;
  19. #define AT24_FLAG_ADDR16 0x80 /* address pointer is 16 bit */
  20. #define AT24_FLAG_READONLY 0x40 /* sysfs-entry will be read-only */
  21. #define AT24_FLAG_IRUGO 0x20 /* sysfs-entry will be world-readable */
  22. #define AT24_FLAG_TAKE8ADDR 0x10 /* take always 8 addresses (24c00) */
  23. };
  24. #endif /* _LINUX_AT24_H */