digctl.h 684 B

12345678910111213141516171819202122
  1. /*
  2. * Copyright 2011 Freescale Semiconductor, Inc. All Rights Reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 as
  6. * published by the Free Software Foundation.
  7. */
  8. #ifndef __MACH_DIGCTL_H__
  9. #define __MACH_DIGCTL_H__
  10. /* MXS DIGCTL SAIF CLKMUX */
  11. #define MXS_DIGCTL_SAIF_CLKMUX_DIRECT 0x0
  12. #define MXS_DIGCTL_SAIF_CLKMUX_CROSSINPUT 0x1
  13. #define MXS_DIGCTL_SAIF_CLKMUX_EXTMSTR0 0x2
  14. #define MXS_DIGCTL_SAIF_CLKMUX_EXTMSTR1 0x3
  15. #define HW_DIGCTL_CTRL 0x0
  16. #define BP_DIGCTL_CTRL_SAIF_CLKMUX 10
  17. #define BM_DIGCTL_CTRL_SAIF_CLKMUX (0x3 << 10)
  18. #define HW_DIGCTL_CHIPID 0x310
  19. #endif