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 >
*
* 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 ; either version 2 of the License , or ( at your
* option ) any later version .
*
*/
# 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>
2008-08-05 19:14:15 +04:00
# include <mach/audio.h>
2008-05-26 13:59:16 +04:00
# include "../codecs/wm9712.h"
# include "pxa2xx-ac97.h"
static struct snd_soc_dai_link em_x270_dai [ ] = {
{
. name = " AC97 " ,
. stream_name = " AC97 HiFi " ,
2011-02-23 02:29:11 +03:00
. cpu_dai_name = " pxa2xx-ac97 " ,
2010-03-17 23:15:21 +03:00
. codec_dai_name = " wm9712-hifi " ,
. platform_name = " pxa-pcm-audio " ,
. codec_name = " wm9712-codec " ,
2008-05-26 13:59:16 +04:00
} ,
{
. name = " AC97 Aux " ,
. stream_name = " AC97 Aux " ,
2011-02-23 02:29:11 +03:00
. cpu_dai_name = " pxa2xx-ac97-aux " ,
2010-03-17 23:15:21 +03:00
. codec_dai_name = " wm9712-aux " ,
. platform_name = " pxa-pcm-audio " ,
. codec_name = " wm9712-codec " ,
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 " ) ;