forked from torvalds/linux
-
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.
Merge branches 'topic/rt5640', 'topic/rt5645' and 'topic/rt5651' of g…
…it://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound into asoc-rl6231
- Loading branch information
Showing
8 changed files
with
8,699 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,25 @@ | ||
/* | ||
* linux/sound/rt5645.h -- Platform data for RT5645 | ||
* | ||
* Copyright 2013 Realtek Microelectronics | ||
* | ||
* 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 __LINUX_SND_RT5645_H | ||
#define __LINUX_SND_RT5645_H | ||
|
||
struct rt5645_platform_data { | ||
/* IN2 can optionally be differential */ | ||
bool in2_diff; | ||
|
||
bool dmic_en; | ||
unsigned int dmic1_data_pin; | ||
/* 0 = IN2N; 1 = GPIO5; 2 = GPIO11 */ | ||
unsigned int dmic2_data_pin; | ||
/* 0 = IN2P; 1 = GPIO6; 2 = GPIO10; 3 = GPIO12 */ | ||
}; | ||
|
||
#endif |
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 @@ | ||
/* | ||
* linux/sound/rt286.h -- Platform data for RT286 | ||
* | ||
* Copyright 2013 Realtek Microelectronics | ||
* | ||
* 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 __LINUX_SND_RT5651_H | ||
#define __LINUX_SND_RT5651_H | ||
|
||
struct rt5651_platform_data { | ||
/* IN2 can optionally be differential */ | ||
bool in2_diff; | ||
|
||
bool dmic_en; | ||
}; | ||
|
||
#endif |
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
Oops, something went wrong.