mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-16 08:44:21 +08:00
53c8b29abe
-----BEGIN PGP SIGNATURE----- iQFSBAABCAA8FiEEq68RxlopcLEwq+PEeb4+QwBBGIYFAl0Os1seHHRvcnZhbGRz QGxpbnV4LWZvdW5kYXRpb24ub3JnAAoJEHm+PkMAQRiGtx4H/j6i482XzcGFKTBm A7mBoQpy+kLtoUov4EtBAR62OuwI8rsahW9di37QKndPoQrczWaKBmr3De6LCdPe v3pl3O6wBbvH5ru+qBPFX9PdNbDvimEChh7LHxmMxNQq3M+AjZAZVJyfpoiFnx35 Fbge+LZaH/k8HMwZmkMr5t9Mpkip715qKg2o9Bua6dkH0AqlcpLlC8d9a+HIVw/z aAsyGSU8jRwhoAOJsE9bJf0acQ/pZSqmFp0rDKqeFTSDMsbDRKLGq/dgv4nW0RiW s7xqsjb/rdcvirRj3rv9+lcTVkOtEqwk0PVdL9WOf7g4iYrb3SOIZh8ZyViaDSeH VTS5zps= =huBY -----END PGP SIGNATURE----- gpgsig -----BEGIN PGP SIGNATURE----- iQFHBAABCgAxFiEEreZoqmdXGLWf4p/qJNaLcl1Uh9AFAl0TWXgTHGJyb29uaWVA a2VybmVsLm9yZwAKCRAk1otyXVSH0JS1B/oDGe3XnBkiet3oYHSCqAroxTHPEp8O vi5Ad3+oxwKImkiysuO9yftRTN0S9xbnpZw5rCSICZytxuwxWbzNTUTENQaHtX3r 97LHgINoIJhIAai1tWrt6oK3IyerdaqAMDTWJPY5p9cenpWNfuQhuyCC+2lV5lnz Dp2ux9Xk7Xo9Nu5fymucGH+idXRpnh5zjB6Rx3vMF5IKXc0RSZr87tcwuC6OA0Jj y3TCLZ+NPfrFgIbK7pSYEr5dFJX2Y+Os3tahvkYqYbabMDGOsvns/pt4N0ygItTH YsNMhSX45zijE9JdHLgwgN60RTxDCGk1st1djpKKH5jSZH4BoArI0oUs =e7U4 -----END PGP SIGNATURE----- Merge tag 'v5.2-rc6' into asoc-5.3 Linux 5.2-rc6
89 lines
2.1 KiB
C
89 lines
2.1 KiB
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/*
|
|
* Generic TXx9 ACLC machine driver
|
|
*
|
|
* Copyright (C) 2009 Atsushi Nemoto
|
|
*
|
|
* Based on RBTX49xx patch from CELF patch archive.
|
|
* (C) Copyright TOSHIBA CORPORATION 2004-2006
|
|
*
|
|
* This is a very generic AC97 sound machine driver for boards which
|
|
* have (AC97) audio at ACLC (e.g. RBTX49XX boards).
|
|
*/
|
|
|
|
#include <linux/module.h>
|
|
#include <linux/platform_device.h>
|
|
#include <sound/core.h>
|
|
#include <sound/pcm.h>
|
|
#include <sound/soc.h>
|
|
#include "txx9aclc.h"
|
|
|
|
SND_SOC_DAILINK_DEFS(hifi,
|
|
DAILINK_COMP_ARRAY(COMP_CPU("txx9aclc-ac97")),
|
|
DAILINK_COMP_ARRAY(COMP_CODEC("ac97-codec", "ac97-hifi")),
|
|
DAILINK_COMP_ARRAY(COMP_PLATFORM("txx9aclc-pcm-audio")));
|
|
|
|
static struct snd_soc_dai_link txx9aclc_generic_dai = {
|
|
.name = "AC97",
|
|
.stream_name = "AC97 HiFi",
|
|
SND_SOC_DAILINK_REG(hifi),
|
|
};
|
|
|
|
static struct snd_soc_card txx9aclc_generic_card = {
|
|
.name = "Generic TXx9 ACLC Audio",
|
|
.owner = THIS_MODULE,
|
|
.dai_link = &txx9aclc_generic_dai,
|
|
.num_links = 1,
|
|
};
|
|
|
|
static struct platform_device *soc_pdev;
|
|
|
|
static int __init txx9aclc_generic_probe(struct platform_device *pdev)
|
|
{
|
|
int ret;
|
|
|
|
soc_pdev = platform_device_alloc("soc-audio", -1);
|
|
if (!soc_pdev)
|
|
return -ENOMEM;
|
|
platform_set_drvdata(soc_pdev, &txx9aclc_generic_card);
|
|
ret = platform_device_add(soc_pdev);
|
|
if (ret) {
|
|
platform_device_put(soc_pdev);
|
|
return ret;
|
|
}
|
|
|
|
return 0;
|
|
}
|
|
|
|
static int __exit txx9aclc_generic_remove(struct platform_device *pdev)
|
|
{
|
|
platform_device_unregister(soc_pdev);
|
|
return 0;
|
|
}
|
|
|
|
static struct platform_driver txx9aclc_generic_driver = {
|
|
.remove = __exit_p(txx9aclc_generic_remove),
|
|
.driver = {
|
|
.name = "txx9aclc-generic",
|
|
},
|
|
};
|
|
|
|
static int __init txx9aclc_generic_init(void)
|
|
{
|
|
return platform_driver_probe(&txx9aclc_generic_driver,
|
|
txx9aclc_generic_probe);
|
|
}
|
|
|
|
static void __exit txx9aclc_generic_exit(void)
|
|
{
|
|
platform_driver_unregister(&txx9aclc_generic_driver);
|
|
}
|
|
|
|
module_init(txx9aclc_generic_init);
|
|
module_exit(txx9aclc_generic_exit);
|
|
|
|
MODULE_AUTHOR("Atsushi Nemoto <anemo@mba.ocn.ne.jp>");
|
|
MODULE_DESCRIPTION("Generic TXx9 ACLC ALSA SoC audio driver");
|
|
MODULE_LICENSE("GPL");
|
|
MODULE_ALIAS("platform:txx9aclc-generic");
|