Mika Westerberg | d42a280 | 2010-10-14 17:49:08 +0300 | [diff] [blame] | 1 | /* |
| 2 | * simone.c -- ASoC audio for Simplemachines Sim.One board |
| 3 | * |
| 4 | * Copyright (c) 2010 Mika Westerberg |
| 5 | * |
| 6 | * Based on snappercl15 machine driver by Ryan Mallon. |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or modify |
| 9 | * it under the terms of the GNU General Public License version 2 as |
| 10 | * published by the Free Software Foundation. |
| 11 | */ |
| 12 | |
| 13 | #include <linux/init.h> |
| 14 | #include <linux/module.h> |
| 15 | #include <linux/platform_device.h> |
| 16 | |
| 17 | #include <sound/core.h> |
| 18 | #include <sound/pcm.h> |
| 19 | #include <sound/soc.h> |
| 20 | |
| 21 | #include <asm/mach-types.h> |
| 22 | #include <mach/hardware.h> |
| 23 | |
| 24 | #include "ep93xx-pcm.h" |
| 25 | |
| 26 | static struct snd_soc_dai_link simone_dai = { |
| 27 | .name = "AC97", |
| 28 | .stream_name = "AC97 HiFi", |
| 29 | .cpu_dai_name = "ep93xx-ac97", |
| 30 | .codec_dai_name = "ac97-hifi", |
| 31 | .codec_name = "ac97-codec", |
| 32 | .platform_name = "ep93xx-pcm-audio", |
| 33 | }; |
| 34 | |
| 35 | static struct snd_soc_card snd_soc_simone = { |
| 36 | .name = "Sim.One", |
Axel Lin | a76a702 | 2011-12-22 21:21:37 +0800 | [diff] [blame] | 37 | .owner = THIS_MODULE, |
Mika Westerberg | d42a280 | 2010-10-14 17:49:08 +0300 | [diff] [blame] | 38 | .dai_link = &simone_dai, |
| 39 | .num_links = 1, |
| 40 | }; |
| 41 | |
| 42 | static struct platform_device *simone_snd_ac97_device; |
Mika Westerberg | 5a0a03c | 2011-09-11 12:28:50 +0300 | [diff] [blame] | 43 | |
Bill Pemberton | 145e287 | 2012-12-07 09:26:23 -0500 | [diff] [blame^] | 44 | static int simone_probe(struct platform_device *pdev) |
Mika Westerberg | 5a0a03c | 2011-09-11 12:28:50 +0300 | [diff] [blame] | 45 | { |
| 46 | struct snd_soc_card *card = &snd_soc_simone; |
| 47 | int ret; |
| 48 | |
| 49 | simone_snd_ac97_device = platform_device_register_simple("ac97-codec", |
| 50 | -1, NULL, 0); |
| 51 | if (IS_ERR(simone_snd_ac97_device)) |
| 52 | return PTR_ERR(simone_snd_ac97_device); |
| 53 | |
| 54 | card->dev = &pdev->dev; |
| 55 | |
| 56 | ret = snd_soc_register_card(card); |
| 57 | if (ret) { |
| 58 | dev_err(&pdev->dev, "snd_soc_register_card() failed: %d\n", |
| 59 | ret); |
| 60 | platform_device_unregister(simone_snd_ac97_device); |
| 61 | } |
| 62 | |
| 63 | return ret; |
| 64 | } |
| 65 | |
Bill Pemberton | 145e287 | 2012-12-07 09:26:23 -0500 | [diff] [blame^] | 66 | static int simone_remove(struct platform_device *pdev) |
Mika Westerberg | 5a0a03c | 2011-09-11 12:28:50 +0300 | [diff] [blame] | 67 | { |
| 68 | struct snd_soc_card *card = platform_get_drvdata(pdev); |
| 69 | |
| 70 | snd_soc_unregister_card(card); |
| 71 | platform_device_unregister(simone_snd_ac97_device); |
| 72 | |
| 73 | return 0; |
| 74 | } |
| 75 | |
| 76 | static struct platform_driver simone_driver = { |
| 77 | .driver = { |
| 78 | .name = "simone-audio", |
| 79 | .owner = THIS_MODULE, |
| 80 | }, |
| 81 | .probe = simone_probe, |
Bill Pemberton | 145e287 | 2012-12-07 09:26:23 -0500 | [diff] [blame^] | 82 | .remove = simone_remove, |
Mika Westerberg | 5a0a03c | 2011-09-11 12:28:50 +0300 | [diff] [blame] | 83 | }; |
Mika Westerberg | d42a280 | 2010-10-14 17:49:08 +0300 | [diff] [blame] | 84 | |
Axel Lin | ee18f63 | 2011-11-24 12:07:55 +0800 | [diff] [blame] | 85 | module_platform_driver(simone_driver); |
Mika Westerberg | d42a280 | 2010-10-14 17:49:08 +0300 | [diff] [blame] | 86 | |
| 87 | MODULE_DESCRIPTION("ALSA SoC Simplemachines Sim.One"); |
| 88 | MODULE_AUTHOR("Mika Westerberg <mika.westerberg@iki.fi>"); |
| 89 | MODULE_LICENSE("GPL"); |
Mika Westerberg | 5a0a03c | 2011-09-11 12:28:50 +0300 | [diff] [blame] | 90 | MODULE_ALIAS("platform:simone-audio"); |