2019-05-27 09:55:01 +03:00
// SPDX-License-Identifier: GPL-2.0-or-later
2008-05-26 13:59:16 +04:00
/*
2009-05-11 16:05:29 +04:00
* SoC audio driver for EM - X270 , eXeda and CM - X300
2008-05-26 13:59:16 +04:00
*
2009-05-11 16:05:29 +04:00
* Copyright 2007 , 2009 CompuLab , Ltd .
2008-05-26 13:59:16 +04:00
*
* Author : Mike Rapoport < mike @ compulab . co . il >
*
* Copied from tosa . c :
* Copyright 2005 Wolfson Microelectronics PLC .
* Copyright 2005 Openedhand Ltd .
*
2008-10-12 16:17:36 +04:00
* Authors : Liam Girdwood < lrg @ slimlogic . co . uk >
2008-05-26 13:59:16 +04:00
* Richard Purdie < richard @ openedhand . com >
*/
# include <linux/module.h>
# include <linux/moduleparam.h>
# include <linux/device.h>
# include <sound/core.h>
# include <sound/pcm.h>
# include <sound/soc.h>
# include <asm/mach-types.h>
2019-09-02 01:02:08 +03:00
# include <linux/platform_data/asoc-pxa.h>
2008-05-26 13:59:16 +04:00
2019-06-06 07:11:18 +03:00
SND_SOC_DAILINK_DEFS ( ac97 ,
DAILINK_COMP_ARRAY ( COMP_CPU ( " pxa2xx-ac97 " ) ) ,
DAILINK_COMP_ARRAY ( COMP_CODEC ( " wm9712-codec " , " wm9712-hifi " ) ) ,
DAILINK_COMP_ARRAY ( COMP_PLATFORM ( " pxa-pcm-audio " ) ) ) ;
SND_SOC_DAILINK_DEFS ( ac97_aux ,
DAILINK_COMP_ARRAY ( COMP_CPU ( " pxa2xx-ac97-aux " ) ) ,
DAILINK_COMP_ARRAY ( COMP_CODEC ( " wm9712-codec " , " wm9712-aux " ) ) ,
DAILINK_COMP_ARRAY ( COMP_PLATFORM ( " pxa-pcm-audio " ) ) ) ;
2008-05-26 13:59:16 +04:00
static struct snd_soc_dai_link em_x270_dai [ ] = {
{
. name = " AC97 " ,
. stream_name = " AC97 HiFi " ,
2019-06-06 07:11:18 +03:00
SND_SOC_DAILINK_REG ( ac97 ) ,
2008-05-26 13:59:16 +04:00
} ,
{
. name = " AC97 Aux " ,
. stream_name = " AC97 Aux " ,
2019-06-06 07:11:18 +03:00
SND_SOC_DAILINK_REG ( ac97_aux ) ,
2008-05-26 13:59:16 +04:00
} ,
} ;
2008-11-18 23:50:34 +03:00
static struct snd_soc_card em_x270 = {
2008-05-26 13:59:16 +04:00
. name = " EM-X270 " ,
2011-12-22 05:44:43 +04:00
. owner = THIS_MODULE ,
2008-05-26 13:59:16 +04:00
. dai_link = em_x270_dai ,
. num_links = ARRAY_SIZE ( em_x270_dai ) ,
} ;
static struct platform_device * em_x270_snd_device ;
static int __init em_x270_init ( void )
{
int ret ;
2009-05-11 16:05:29 +04:00
if ( ! ( machine_is_em_x270 ( ) | | machine_is_exeda ( )
| | machine_is_cm_x300 ( ) ) )
2008-05-26 13:59:16 +04:00
return - ENODEV ;
em_x270_snd_device = platform_device_alloc ( " soc-audio " , - 1 ) ;
if ( ! em_x270_snd_device )
return - ENOMEM ;
2010-03-17 23:15:21 +03:00
platform_set_drvdata ( em_x270_snd_device , & em_x270 ) ;
2008-05-26 13:59:16 +04:00
ret = platform_device_add ( em_x270_snd_device ) ;
if ( ret )
platform_device_put ( em_x270_snd_device ) ;
return ret ;
}
static void __exit em_x270_exit ( void )
{
platform_device_unregister ( em_x270_snd_device ) ;
}
module_init ( em_x270_init ) ;
module_exit ( em_x270_exit ) ;
/* Module information */
MODULE_AUTHOR ( " Mike Rapoport " ) ;
2009-05-11 16:05:29 +04:00
MODULE_DESCRIPTION ( " ALSA SoC EM-X270, eXeda and CM-X300 " ) ;
2008-05-26 13:59:16 +04:00
MODULE_LICENSE ( " GPL " ) ;