wm8711.h 830 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /*
  2. * wm8711.h -- WM8711 Soc Audio driver
  3. *
  4. * Copyright 2006 Wolfson Microelectronics
  5. *
  6. * Author: Mike Arthur <linux@wolfsonmicro.com>
  7. *
  8. * Based on wm8731.h
  9. *
  10. * This program is free software; you can redistribute it and/or modify
  11. * it under the terms of the GNU General Public License version 2 as
  12. * published by the Free Software Foundation.
  13. */
  14. #ifndef _WM8711_H
  15. #define _WM8711_H
  16. /* WM8711 register space */
  17. #define WM8711_LOUT1V 0x02
  18. #define WM8711_ROUT1V 0x03
  19. #define WM8711_APANA 0x04
  20. #define WM8711_APDIGI 0x05
  21. #define WM8711_PWR 0x06
  22. #define WM8711_IFACE 0x07
  23. #define WM8711_SRATE 0x08
  24. #define WM8711_ACTIVE 0x09
  25. #define WM8711_RESET 0x0f
  26. #define WM8711_CACHEREGNUM 8
  27. #define WM8711_SYSCLK 0
  28. #define WM8711_DAI 0
  29. struct wm8711_setup_data {
  30. unsigned short i2c_address;
  31. };
  32. #endif