e800_wm9712.c 4.0 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13
/*
 * e800-wm9712.c  --  SoC audio for e800
 *
 * Copyright 2007 (c) Ian Molton <spyro@f2s.com>
 *
 *  This program is free software; you can redistribute  it and/or modify it
 *  under  the terms of  the GNU General  Public License as published by the
 *  Free Software Foundation; version 2 ONLY.
 *
 */

#include <linux/module.h>
#include <linux/moduleparam.h>
14
#include <linux/gpio.h>
15 16 17 18 19

#include <sound/core.h>
#include <sound/pcm.h>
#include <sound/soc.h>

M
Mark Brown 已提交
20
#include <asm/mach-types.h>
21
#include <mach/audio.h>
22 23
#include <mach/eseries-gpio.h>

24 25 26
#include "../codecs/wm9712.h"
#include "pxa2xx-ac97.h"

27 28 29 30 31 32 33
static int e800_spk_amp_event(struct snd_soc_dapm_widget *w,
				struct snd_kcontrol *kcontrol, int event)
{
	if (event & SND_SOC_DAPM_PRE_PMU)
		gpio_set_value(GPIO_E800_SPK_AMP_ON, 1);
	else if (event & SND_SOC_DAPM_POST_PMD)
		gpio_set_value(GPIO_E800_SPK_AMP_ON, 0);
34

35 36 37 38 39
	return 0;
}

static int e800_hp_amp_event(struct snd_soc_dapm_widget *w,
				struct snd_kcontrol *kcontrol, int event)
40
{
41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73
	if (event & SND_SOC_DAPM_PRE_PMU)
		gpio_set_value(GPIO_E800_HP_AMP_OFF, 0);
	else if (event & SND_SOC_DAPM_POST_PMD)
		gpio_set_value(GPIO_E800_HP_AMP_OFF, 1);

	return 0;
}

static const struct snd_soc_dapm_widget e800_dapm_widgets[] = {
	SND_SOC_DAPM_HP("Headphone Jack", NULL),
	SND_SOC_DAPM_MIC("Mic (Internal1)", NULL),
	SND_SOC_DAPM_MIC("Mic (Internal2)", NULL),
	SND_SOC_DAPM_SPK("Speaker", NULL),
	SND_SOC_DAPM_PGA_E("Headphone Amp", SND_SOC_NOPM, 0, 0, NULL, 0,
			e800_hp_amp_event, SND_SOC_DAPM_PRE_PMU |
			SND_SOC_DAPM_POST_PMD),
	SND_SOC_DAPM_PGA_E("Speaker Amp", SND_SOC_NOPM, 0, 0, NULL, 0,
			e800_spk_amp_event, SND_SOC_DAPM_PRE_PMU |
			SND_SOC_DAPM_POST_PMD),
};

static const struct snd_soc_dapm_route audio_map[] = {
	{"Headphone Jack", NULL, "HPOUTL"},
	{"Headphone Jack", NULL, "HPOUTR"},
	{"Headphone Jack", NULL, "Headphone Amp"},

	{"Speaker Amp", NULL, "MONOOUT"},
	{"Speaker", NULL, "Speaker Amp"},

	{"MIC1", NULL, "Mic (Internal1)"},
	{"MIC2", NULL, "Mic (Internal2)"},
};

74
static int e800_ac97_init(struct snd_soc_pcm_runtime *rtd)
75
{
76
	struct snd_soc_codec *codec = rtd->codec;
L
Liam Girdwood 已提交
77
	struct snd_soc_dapm_context *dapm = &codec->dapm;
78

L
Liam Girdwood 已提交
79
	snd_soc_dapm_new_controls(dapm, e800_dapm_widgets,
80 81
					ARRAY_SIZE(e800_dapm_widgets));

L
Liam Girdwood 已提交
82
	snd_soc_dapm_add_routes(dapm, audio_map, ARRAY_SIZE(audio_map));
83 84 85 86 87 88 89 90

	return 0;
}

static struct snd_soc_dai_link e800_dai[] = {
	{
		.name = "AC97",
		.stream_name = "AC97 HiFi",
91
		.cpu_dai_name = "pxa2xx-ac97",
92 93 94
		.codec_dai_name = "wm9712-hifi",
		.platform_name = "pxa-pcm-audio",
		.codec_name = "wm9712-codec",
95 96 97 98 99
		.init = e800_ac97_init,
	},
	{
		.name = "AC97 Aux",
		.stream_name = "AC97 Aux",
100
		.cpu_dai_name = "pxa2xx-ac97-aux",
101 102 103
		.codec_dai_name ="wm9712-aux",
		.platform_name = "pxa-pcm-audio",
		.codec_name = "wm9712-codec",
104
	},
105 106
};

107
static struct snd_soc_card e800 = {
108 109 110 111 112 113 114 115 116 117 118 119 120 121
	.name = "Toshiba e800",
	.dai_link = e800_dai,
	.num_links = ARRAY_SIZE(e800_dai),
};

static struct platform_device *e800_snd_device;

static int __init e800_init(void)
{
	int ret;

	if (!machine_is_e800())
		return -ENODEV;

122 123
	ret = gpio_request_one(GPIO_E800_HP_AMP_OFF, GPIOF_OUT_INIT_HIGH,
			       "Headphone amp");
124 125 126
	if (ret)
		return ret;

127 128
	ret = gpio_request_one(GPIO_E800_SPK_AMP_ON, GPIOF_OUT_INIT_HIGH,
			       "Speaker amp");
129 130 131
	if (ret)
		goto free_hp_amp_gpio;

132
	e800_snd_device = platform_device_alloc("soc-audio", -1);
133 134 135 136
	if (!e800_snd_device) {
		ret = -ENOMEM;
		goto free_spk_amp_gpio;
	}
137

138
	platform_set_drvdata(e800_snd_device, &e800);
139 140
	ret = platform_device_add(e800_snd_device);

141 142 143 144 145 146 147 148 149
	if (!ret)
		return 0;

/* Fail gracefully */
	platform_device_put(e800_snd_device);
free_spk_amp_gpio:
	gpio_free(GPIO_E800_SPK_AMP_ON);
free_hp_amp_gpio:
	gpio_free(GPIO_E800_HP_AMP_OFF);
150 151 152 153 154 155 156

	return ret;
}

static void __exit e800_exit(void)
{
	platform_device_unregister(e800_snd_device);
157 158
	gpio_free(GPIO_E800_SPK_AMP_ON);
	gpio_free(GPIO_E800_HP_AMP_OFF);
159 160 161 162 163 164 165 166
}

module_init(e800_init);
module_exit(e800_exit);

/* Module information */
MODULE_AUTHOR("Ian Molton <spyro@f2s.com>");
MODULE_DESCRIPTION("ALSA SoC driver for e800");
167
MODULE_LICENSE("GPL v2");