-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Dong Aisheng <b29396@freescale.com> Acked-by: Marek Vasut <marek.vasut@gmail.com> Cc: Sascha Hauer <s.hauer@pengutronix.de> Cc: Wolfram Sang <w.sang@pengutronix.de> Cc: Uwe Kleine-König <u.kleine-koenig@pengutronix.de> Cc: Mark Brown <broonie@opensource.wolfsonmicro.com> Cc: Liam Girdwood <lrg@ti.com> Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
- Loading branch information
Dong Aisheng
authored and
Shawn Guo
committed
Dec 2, 2011
1 parent
7788258
commit 4e1b4ec
Showing
3 changed files
with
51 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
/* | ||
* Copyright 2011 Freescale Semiconductor, Inc. All Rights Reserved. | ||
* | ||
* This program is free software; you can redistribute it and/or modify | ||
* it under the terms of the GNU General Public License version 2 as | ||
* published by the Free Software Foundation. | ||
*/ | ||
|
||
#ifndef __MACH_DIGCTL_H__ | ||
#define __MACH_DIGCTL_H__ | ||
|
||
/* MXS DIGCTL SAIF CLKMUX */ | ||
#define MXS_DIGCTL_SAIF_CLKMUX_DIRECT 0x0 | ||
#define MXS_DIGCTL_SAIF_CLKMUX_CROSSINPUT 0x1 | ||
#define MXS_DIGCTL_SAIF_CLKMUX_EXTMSTR0 0x2 | ||
#define MXS_DIGCTL_SAIF_CLKMUX_EXTMSTR1 0x3 | ||
|
||
#define HW_DIGCTL_CTRL 0x0 | ||
#define BP_DIGCTL_CTRL_SAIF_CLKMUX 10 | ||
#define BM_DIGCTL_CTRL_SAIF_CLKMUX (0x3 << 10) | ||
#endif |