mirror of
https://github.com/torvalds/linux.git
synced 2024-12-04 01:51:34 +00:00
96479c0980
The second part of the multiplatform changes now converts the Intel/Marvell PXA platform along with the rest. The patches went through several rebases before the merge window as bugs were found, so they remained separate. This has to touch a lot of drivers, in particular the touchscreen, pcmcia, sound and clk bits, to detach the driver files from the platform and board specific header files. -----BEGIN PGP SIGNATURE----- iQIzBAABCgAdFiEEo6/YBQwIrVS28WGKmmx57+YAGNkFAmKZKqsACgkQmmx57+YA GNnO/w//dgJBlkmoIIKlG2eJsvoUKwDt7MuLEMCqSqYYUSvMENFwKK66INMDIJ3l PmKf94JadlpBm2OB2vzW+D1EtaLGX9eXZkKD+vyB1I1yFkKdzEPcAfitfrRwe58E pR4nQd/jVL4UCY+pp442O1q9VvMpMV9P4ILJGPS/PpsD5CT9Gn8m9svIIuNuDRFd nwpyZC3l32jVLo9iuLmwZUvxtOWI3hTqZrnxhByBhlvtnGexRsq/VhfubK2uzBi1 CyWHjqzOSmseGmsUDwv9LFqVV9YRCeisS3IElA5L0VgM0XvHKA+f9qyF7V6zI20g y9LtqhdAtiTpE/aUrOW2LDYaM/bc7RilYZrWchoZbCEsHhV4C+ld3QoTyxvGscvG tbznhvZKdUNX8LHS0J9NqIj1q1YGN5ei5r/C5R8DBj1q8VcTVnq3dms8xzVTd35o xS5BbLFliiI96jc7S6LaQizXheYjAfdPhmXUAxNXvWIVQ6SXnf8/U/RB9Zzjb8hm FH2Gu8m/Dh2MHKBBRWSVw8VahV0V7WiEaWeYuwwTbW1wUrsWiizVaPnqrt6Cq9DW oJZgBvktWEXUQz73qrnvwo9GjcKqAxaWKWq05hHKHKuLGezsPAyIhIKr51V2xqqw cp2OIMCsN5GYENOhHvt6BMRAI5iA4VyFDtWAqw9B6EIwno6N7Z4= =cnSb -----END PGP SIGNATURE----- Merge tag 'arm-multiplatform-5.19-2' of git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc Pull more ARM multiplatform updates from Arnd Bergmann: "The second part of the multiplatform changes now converts the Intel/Marvell PXA platform along with the rest. The patches went through several rebases before the merge window as bugs were found, so they remained separate. This has to touch a lot of drivers, in particular the touchscreen, pcmcia, sound and clk bits, to detach the driver files from the platform and board specific header files" * tag 'arm-multiplatform-5.19-2' of git://git.kernel.org/pub/scm/linux/kernel/git/soc/soc: (48 commits) ARM: pxa/mmp: remove traces of plat-pxa ARM: pxa: convert to multiplatform ARM: pxa/sa1100: move I/O space to PCI_IOBASE ARM: pxa: remove support for MTD_XIP ARM: pxa: move mach/*.h to mach-pxa/ ARM: PXA: fix multi-cpu build of xsc3 ARM: pxa: move plat-pxa to drivers/soc/ ARM: mmp: rename pxa_register_device ARM: mmp: remove tavorevb board support ARM: pxa: remove unused mach/bitfield.h ARM: pxa: move clk register definitions to driver ARM: pxa: move smemc register access from clk to platform cpufreq: pxa3: move clk register access to clk driver ARM: pxa: remove get_clk_frequency_khz() ARM: pxa: pcmcia: move smemc configuration back to arch ASoC: pxa: i2s: use normal MMIO accessors ASoC: pxa: ac97: use normal MMIO accessors ASoC: pxa: use pdev resource for FIFO regs Input: wm97xx - get rid of irq_enable method in wm97xx_mach_ops Input: wm97xx - switch to using threaded IRQ ...
208 lines
5.1 KiB
C
208 lines
5.1 KiB
C
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
/*
|
|
* SoC audio for HP iPAQ hx4700
|
|
*
|
|
* Copyright (c) 2009 Philipp Zabel
|
|
*/
|
|
|
|
#include <linux/module.h>
|
|
#include <linux/timer.h>
|
|
#include <linux/interrupt.h>
|
|
#include <linux/platform_device.h>
|
|
#include <linux/delay.h>
|
|
#include <linux/gpio/consumer.h>
|
|
|
|
#include <sound/core.h>
|
|
#include <sound/jack.h>
|
|
#include <sound/pcm.h>
|
|
#include <sound/pcm_params.h>
|
|
#include <sound/soc.h>
|
|
|
|
#include <asm/mach-types.h>
|
|
#include "pxa2xx-i2s.h"
|
|
|
|
static struct gpio_desc *gpiod_hp_driver, *gpiod_spk_sd;
|
|
static struct snd_soc_jack hs_jack;
|
|
|
|
/* Headphones jack detection DAPM pin */
|
|
static struct snd_soc_jack_pin hs_jack_pin[] = {
|
|
{
|
|
.pin = "Headphone Jack",
|
|
.mask = SND_JACK_HEADPHONE,
|
|
.invert = 1,
|
|
},
|
|
{
|
|
.pin = "Speaker",
|
|
/* disable speaker when hp jack is inserted */
|
|
.mask = SND_JACK_HEADPHONE,
|
|
},
|
|
};
|
|
|
|
/* Headphones jack detection GPIO */
|
|
static struct snd_soc_jack_gpio hs_jack_gpio = {
|
|
.name = "earphone-det",
|
|
.report = SND_JACK_HEADPHONE,
|
|
.debounce_time = 200,
|
|
};
|
|
|
|
/*
|
|
* iPAQ hx4700 uses I2S for capture and playback.
|
|
*/
|
|
static int hx4700_hw_params(struct snd_pcm_substream *substream,
|
|
struct snd_pcm_hw_params *params)
|
|
{
|
|
struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
|
|
struct snd_soc_dai *codec_dai = asoc_rtd_to_codec(rtd, 0);
|
|
struct snd_soc_dai *cpu_dai = asoc_rtd_to_cpu(rtd, 0);
|
|
int ret = 0;
|
|
|
|
/* set the I2S system clock as output */
|
|
ret = snd_soc_dai_set_sysclk(cpu_dai, PXA2XX_I2S_SYSCLK, 0,
|
|
SND_SOC_CLOCK_OUT);
|
|
if (ret < 0)
|
|
return ret;
|
|
|
|
/* inform codec driver about clock freq *
|
|
* (PXA I2S always uses divider 256) */
|
|
ret = snd_soc_dai_set_sysclk(codec_dai, 0, 256 * params_rate(params),
|
|
SND_SOC_CLOCK_IN);
|
|
if (ret < 0)
|
|
return ret;
|
|
|
|
return 0;
|
|
}
|
|
|
|
static const struct snd_soc_ops hx4700_ops = {
|
|
.hw_params = hx4700_hw_params,
|
|
};
|
|
|
|
static int hx4700_spk_power(struct snd_soc_dapm_widget *w,
|
|
struct snd_kcontrol *k, int event)
|
|
{
|
|
gpiod_set_value(gpiod_spk_sd, !SND_SOC_DAPM_EVENT_ON(event));
|
|
return 0;
|
|
}
|
|
|
|
static int hx4700_hp_power(struct snd_soc_dapm_widget *w,
|
|
struct snd_kcontrol *k, int event)
|
|
{
|
|
gpiod_set_value(gpiod_hp_driver, !!SND_SOC_DAPM_EVENT_ON(event));
|
|
return 0;
|
|
}
|
|
|
|
/* hx4700 machine dapm widgets */
|
|
static const struct snd_soc_dapm_widget hx4700_dapm_widgets[] = {
|
|
SND_SOC_DAPM_HP("Headphone Jack", hx4700_hp_power),
|
|
SND_SOC_DAPM_SPK("Speaker", hx4700_spk_power),
|
|
SND_SOC_DAPM_MIC("Built-in Microphone", NULL),
|
|
};
|
|
|
|
/* hx4700 machine audio_map */
|
|
static const struct snd_soc_dapm_route hx4700_audio_map[] = {
|
|
|
|
/* Headphone connected to LOUT, ROUT */
|
|
{"Headphone Jack", NULL, "LOUT"},
|
|
{"Headphone Jack", NULL, "ROUT"},
|
|
|
|
/* Speaker connected to MOUT2 */
|
|
{"Speaker", NULL, "MOUT2"},
|
|
|
|
/* Microphone connected to MICIN */
|
|
{"MICIN", NULL, "Built-in Microphone"},
|
|
{"AIN", NULL, "MICOUT"},
|
|
};
|
|
|
|
/*
|
|
* Logic for a ak4641 as connected on a HP iPAQ hx4700
|
|
*/
|
|
static int hx4700_ak4641_init(struct snd_soc_pcm_runtime *rtd)
|
|
{
|
|
int err;
|
|
|
|
/* Jack detection API stuff */
|
|
err = snd_soc_card_jack_new_pins(rtd->card, "Headphone Jack",
|
|
SND_JACK_HEADPHONE, &hs_jack,
|
|
hs_jack_pin, ARRAY_SIZE(hs_jack_pin));
|
|
if (err)
|
|
return err;
|
|
|
|
err = snd_soc_jack_add_gpios(&hs_jack, 1, &hs_jack_gpio);
|
|
|
|
return err;
|
|
}
|
|
|
|
/* hx4700 digital audio interface glue - connects codec <--> CPU */
|
|
SND_SOC_DAILINK_DEFS(ak4641,
|
|
DAILINK_COMP_ARRAY(COMP_CPU("pxa2xx-i2s")),
|
|
DAILINK_COMP_ARRAY(COMP_CODEC("ak4641.0-0012", "ak4641-hifi")),
|
|
DAILINK_COMP_ARRAY(COMP_PLATFORM("pxa-pcm-audio")));
|
|
|
|
static struct snd_soc_dai_link hx4700_dai = {
|
|
.name = "ak4641",
|
|
.stream_name = "AK4641",
|
|
.init = hx4700_ak4641_init,
|
|
.dai_fmt = SND_SOC_DAIFMT_MSB | SND_SOC_DAIFMT_NB_NF |
|
|
SND_SOC_DAIFMT_CBS_CFS,
|
|
.ops = &hx4700_ops,
|
|
SND_SOC_DAILINK_REG(ak4641),
|
|
};
|
|
|
|
/* hx4700 audio machine driver */
|
|
static struct snd_soc_card snd_soc_card_hx4700 = {
|
|
.name = "iPAQ hx4700",
|
|
.owner = THIS_MODULE,
|
|
.dai_link = &hx4700_dai,
|
|
.num_links = 1,
|
|
.dapm_widgets = hx4700_dapm_widgets,
|
|
.num_dapm_widgets = ARRAY_SIZE(hx4700_dapm_widgets),
|
|
.dapm_routes = hx4700_audio_map,
|
|
.num_dapm_routes = ARRAY_SIZE(hx4700_audio_map),
|
|
.fully_routed = true,
|
|
};
|
|
|
|
static int hx4700_audio_probe(struct platform_device *pdev)
|
|
{
|
|
int ret;
|
|
|
|
if (!machine_is_h4700())
|
|
return -ENODEV;
|
|
|
|
gpiod_hp_driver = devm_gpiod_get(&pdev->dev, "hp-driver", GPIOD_ASIS);
|
|
ret = PTR_ERR_OR_ZERO(gpiod_hp_driver);
|
|
if (ret)
|
|
return ret;
|
|
gpiod_spk_sd = devm_gpiod_get(&pdev->dev, "spk-sd", GPIOD_ASIS);
|
|
ret = PTR_ERR_OR_ZERO(gpiod_spk_sd);
|
|
if (ret)
|
|
return ret;
|
|
|
|
hs_jack_gpio.gpiod_dev = &pdev->dev;
|
|
snd_soc_card_hx4700.dev = &pdev->dev;
|
|
ret = devm_snd_soc_register_card(&pdev->dev, &snd_soc_card_hx4700);
|
|
|
|
return ret;
|
|
}
|
|
|
|
static int hx4700_audio_remove(struct platform_device *pdev)
|
|
{
|
|
gpiod_set_value(gpiod_hp_driver, 0);
|
|
gpiod_set_value(gpiod_spk_sd, 0);
|
|
return 0;
|
|
}
|
|
|
|
static struct platform_driver hx4700_audio_driver = {
|
|
.driver = {
|
|
.name = "hx4700-audio",
|
|
.pm = &snd_soc_pm_ops,
|
|
},
|
|
.probe = hx4700_audio_probe,
|
|
.remove = hx4700_audio_remove,
|
|
};
|
|
|
|
module_platform_driver(hx4700_audio_driver);
|
|
|
|
MODULE_AUTHOR("Philipp Zabel");
|
|
MODULE_DESCRIPTION("ALSA SoC iPAQ hx4700");
|
|
MODULE_LICENSE("GPL");
|
|
MODULE_ALIAS("platform:hx4700-audio");
|