ad1980.h 550 B

123456789101112131415161718192021222324252627
  1. /*
  2. * ad1980.h -- ad1980 Soc Audio driver
  3. *
  4. * WARNING:
  5. *
  6. * Because Analog Devices Inc. discontinued the ad1980 sound chip since
  7. * Sep. 2009, this ad1980 driver is not maintained, tested and supported
  8. * by ADI now.
  9. */
  10. #ifndef _AD1980_H
  11. #define _AD1980_H
  12. /* Bit definition of Power-Down Control/Status Register */
  13. #define ADC 0x0001
  14. #define DAC 0x0002
  15. #define ANL 0x0004
  16. #define REF 0x0008
  17. #define PR0 0x0100
  18. #define PR1 0x0200
  19. #define PR2 0x0400
  20. #define PR3 0x0800
  21. #define PR4 0x1000
  22. #define PR5 0x2000
  23. #define PR6 0x4000
  24. #endif