2006-10-12 20:26:55 +08:00
|
|
|
/*
|
|
|
|
* linux/sound/arm/pxa2xx-pcm.c -- ALSA PCM interface for the Intel PXA2xx chip
|
|
|
|
*
|
|
|
|
* Author: Nicolas Pitre
|
|
|
|
* Created: Nov 30, 2004
|
|
|
|
* Copyright: (C) 2004 MontaVista Software, Inc.
|
|
|
|
*
|
|
|
|
* 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.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/dma-mapping.h>
|
2011-07-16 00:38:28 +08:00
|
|
|
#include <linux/module.h>
|
2013-08-12 16:42:39 +08:00
|
|
|
#include <linux/dmaengine.h>
|
2013-08-12 16:42:41 +08:00
|
|
|
#include <linux/of.h>
|
2006-10-12 20:26:55 +08:00
|
|
|
|
|
|
|
#include <sound/core.h>
|
|
|
|
#include <sound/soc.h>
|
2008-09-10 09:01:20 +08:00
|
|
|
#include <sound/pxa2xx-lib.h>
|
2013-08-12 16:42:39 +08:00
|
|
|
#include <sound/dmaengine_pcm.h>
|
2006-10-12 20:26:55 +08:00
|
|
|
|
2018-01-29 10:48:35 +08:00
|
|
|
static const struct snd_soc_component_driver pxa2xx_soc_platform = {
|
2017-02-26 04:50:29 +08:00
|
|
|
.ops = &pxa2xx_pcm_ops,
|
2008-07-29 18:42:24 +08:00
|
|
|
.pcm_new = pxa2xx_soc_pcm_new,
|
2006-10-12 20:26:55 +08:00
|
|
|
.pcm_free = pxa2xx_pcm_free_dma_buffers,
|
|
|
|
};
|
|
|
|
|
2012-12-07 22:26:17 +08:00
|
|
|
static int pxa2xx_soc_platform_probe(struct platform_device *pdev)
|
2008-12-04 03:58:17 +08:00
|
|
|
{
|
2018-01-29 10:48:35 +08:00
|
|
|
return devm_snd_soc_register_component(&pdev->dev, &pxa2xx_soc_platform,
|
|
|
|
NULL, 0);
|
2010-03-18 04:15:21 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
static struct platform_driver pxa_pcm_driver = {
|
|
|
|
.driver = {
|
2013-08-12 16:42:41 +08:00
|
|
|
.name = "pxa-pcm-audio",
|
2010-03-18 04:15:21 +08:00
|
|
|
},
|
|
|
|
|
|
|
|
.probe = pxa2xx_soc_platform_probe,
|
|
|
|
};
|
|
|
|
|
2011-11-25 10:13:37 +08:00
|
|
|
module_platform_driver(pxa_pcm_driver);
|
2008-12-04 03:58:17 +08:00
|
|
|
|
2006-10-12 20:26:55 +08:00
|
|
|
MODULE_AUTHOR("Nicolas Pitre");
|
|
|
|
MODULE_DESCRIPTION("Intel PXA2xx PCM DMA module");
|
|
|
|
MODULE_LICENSE("GPL");
|
2016-05-06 23:27:34 +08:00
|
|
|
MODULE_ALIAS("platform:pxa-pcm-audio");
|