-
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.
yaml --- r: 281796 b: refs/heads/master c: 4e1b4ec h: refs/heads/master v: v3
- Loading branch information
Dong Aisheng
authored and
Shawn Guo
committed
Dec 2, 2011
1 parent
4147fe3
commit fda7407
Showing
4 changed files
with
52 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 778825801d9dc3745417d295344b5b1e27de0d86 | ||
refs/heads/master: 4e1b4ecaa23108a8422c84c602b308d21948d642 |
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 |