xtensa: fix high memory/reserved memory collision
[cris-mirror.git] / include / linux / platform_data / asoc-s3c24xx_simtec.h
blobd220e54123aa3ebad540b520f9327f7f11d275cd
1 /*
2 * Copyright 2008 Simtec Electronics
3 * http://armlinux.simtec.co.uk/
4 * Ben Dooks <ben@simtec.co.uk>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
10 * Simtec Audio support.
13 /**
14 * struct s3c24xx_audio_simtec_pdata - platform data for simtec audio
15 * @use_mpllin: Select codec clock from MPLLin
16 * @output_cdclk: Need to output CDCLK to the codec
17 * @have_mic: Set if we have a MIC socket
18 * @have_lout: Set if we have a LineOut socket
19 * @amp_gpio: GPIO pin to enable the AMP
20 * @amp_gain: Option GPIO to control AMP gain
22 struct s3c24xx_audio_simtec_pdata {
23 unsigned int use_mpllin:1;
24 unsigned int output_cdclk:1;
26 unsigned int have_mic:1;
27 unsigned int have_lout:1;
29 int amp_gpio;
30 int amp_gain[2];
32 void (*startup)(void);