xref: /openbmc/linux/sound/soc/intel/boards/cht_bsw_nau8824.c (revision 7ae9fb1b7ecbb5d85d07857943f677fd1a559b18)
18e8e69d6SThomas Gleixner // SPDX-License-Identifier: GPL-2.0-only
25b00ce63SJohn Hsu /*
35b00ce63SJohn Hsu  *  cht-bsw-nau8824.c - ASoc Machine driver for Intel Cherryview-based
45b00ce63SJohn Hsu  *          platforms Cherrytrail and Braswell, with nau8824 codec.
55b00ce63SJohn Hsu  *
65b00ce63SJohn Hsu  *  Copyright (C) 2018 Intel Corp
75b00ce63SJohn Hsu  *  Copyright (C) 2018 Nuvoton Technology Corp
85b00ce63SJohn Hsu  *
95b00ce63SJohn Hsu  *  Author: Wang, Joseph C <joequant@gmail.com>
105b00ce63SJohn Hsu  *  Co-author: John Hsu <KCHSU0@nuvoton.com>
115b00ce63SJohn Hsu  *  This file is based on cht_bsw_rt5672.c and cht-bsw-max98090.c
125b00ce63SJohn Hsu  */
135b00ce63SJohn Hsu 
145b00ce63SJohn Hsu #include <linux/module.h>
155b00ce63SJohn Hsu #include <linux/platform_device.h>
165b00ce63SJohn Hsu #include <linux/slab.h>
175b00ce63SJohn Hsu #include <sound/pcm.h>
185b00ce63SJohn Hsu #include <sound/pcm_params.h>
195b00ce63SJohn Hsu #include <sound/soc.h>
204506db80SPierre-Louis Bossart #include <sound/soc-acpi.h>
215b00ce63SJohn Hsu #include <sound/jack.h>
225b00ce63SJohn Hsu #include <linux/input.h>
235b00ce63SJohn Hsu #include "../atom/sst-atom-controls.h"
245b00ce63SJohn Hsu #include "../../codecs/nau8824.h"
255b00ce63SJohn Hsu 
265b00ce63SJohn Hsu struct cht_mc_private {
275b00ce63SJohn Hsu 	struct snd_soc_jack jack;
285b00ce63SJohn Hsu };
295b00ce63SJohn Hsu 
305b00ce63SJohn Hsu static struct snd_soc_jack_pin cht_bsw_jack_pins[] = {
315b00ce63SJohn Hsu 	{
325b00ce63SJohn Hsu 		.pin = "Headphone",
335b00ce63SJohn Hsu 		.mask = SND_JACK_HEADPHONE,
345b00ce63SJohn Hsu 	},
355b00ce63SJohn Hsu 	{
365b00ce63SJohn Hsu 		.pin = "Headset Mic",
375b00ce63SJohn Hsu 		.mask = SND_JACK_MICROPHONE,
385b00ce63SJohn Hsu 	},
395b00ce63SJohn Hsu };
405b00ce63SJohn Hsu 
415b00ce63SJohn Hsu static const struct snd_soc_dapm_widget cht_dapm_widgets[] = {
425b00ce63SJohn Hsu 	SND_SOC_DAPM_HP("Headphone", NULL),
435b00ce63SJohn Hsu 	SND_SOC_DAPM_MIC("Headset Mic", NULL),
445b00ce63SJohn Hsu 	SND_SOC_DAPM_MIC("Int Mic", NULL),
455b00ce63SJohn Hsu 	SND_SOC_DAPM_SPK("Ext Spk", NULL),
465b00ce63SJohn Hsu };
475b00ce63SJohn Hsu 
485b00ce63SJohn Hsu static const struct snd_soc_dapm_route cht_audio_map[] = {
495b00ce63SJohn Hsu 	{"Ext Spk", NULL, "SPKOUTL"},
505b00ce63SJohn Hsu 	{"Ext Spk", NULL, "SPKOUTR"},
515b00ce63SJohn Hsu 	{"Headphone", NULL, "HPOL"},
525b00ce63SJohn Hsu 	{"Headphone", NULL, "HPOR"},
535b00ce63SJohn Hsu 	{"MIC1", NULL, "Int Mic"},
545b00ce63SJohn Hsu 	{"MIC2", NULL, "Int Mic"},
555b00ce63SJohn Hsu 	{"HSMIC1", NULL, "Headset Mic"},
565b00ce63SJohn Hsu 	{"HSMIC2", NULL, "Headset Mic"},
575b00ce63SJohn Hsu 	{"Playback", NULL, "ssp2 Tx"},
585b00ce63SJohn Hsu 	{"ssp2 Tx", NULL, "codec_out0"},
595b00ce63SJohn Hsu 	{"ssp2 Tx", NULL, "codec_out1"},
605b00ce63SJohn Hsu 	{"codec_in0", NULL, "ssp2 Rx" },
615b00ce63SJohn Hsu 	{"codec_in1", NULL, "ssp2 Rx" },
625b00ce63SJohn Hsu 	{"ssp2 Rx", NULL, "Capture"},
635b00ce63SJohn Hsu };
645b00ce63SJohn Hsu 
655b00ce63SJohn Hsu static const struct snd_kcontrol_new cht_mc_controls[] = {
665b00ce63SJohn Hsu 	SOC_DAPM_PIN_SWITCH("Headphone"),
675b00ce63SJohn Hsu 	SOC_DAPM_PIN_SWITCH("Headset Mic"),
685b00ce63SJohn Hsu 	SOC_DAPM_PIN_SWITCH("Int Mic"),
695b00ce63SJohn Hsu 	SOC_DAPM_PIN_SWITCH("Ext Spk"),
705b00ce63SJohn Hsu };
715b00ce63SJohn Hsu 
cht_aif1_hw_params(struct snd_pcm_substream * substream,struct snd_pcm_hw_params * params)725b00ce63SJohn Hsu static int cht_aif1_hw_params(struct snd_pcm_substream *substream,
735b00ce63SJohn Hsu 	struct snd_pcm_hw_params *params)
745b00ce63SJohn Hsu {
752207b93bSKuninori Morimoto 	struct snd_soc_pcm_runtime *rtd = asoc_substream_to_rtd(substream);
760d1571c1SKuninori Morimoto 	struct snd_soc_dai *codec_dai = asoc_rtd_to_codec(rtd, 0);
775b00ce63SJohn Hsu 	int ret;
785b00ce63SJohn Hsu 
795b00ce63SJohn Hsu 	ret = snd_soc_dai_set_sysclk(codec_dai, NAU8824_CLK_FLL_FS, 0,
805b00ce63SJohn Hsu 		SND_SOC_CLOCK_IN);
815b00ce63SJohn Hsu 	if (ret < 0) {
825b00ce63SJohn Hsu 		dev_err(codec_dai->dev, "can't set FS clock %d\n", ret);
835b00ce63SJohn Hsu 		return ret;
845b00ce63SJohn Hsu 	}
855b00ce63SJohn Hsu 	ret = snd_soc_dai_set_pll(codec_dai, 0, 0, params_rate(params),
865b00ce63SJohn Hsu 		params_rate(params) * 256);
875b00ce63SJohn Hsu 	if (ret < 0) {
885b00ce63SJohn Hsu 		dev_err(codec_dai->dev, "can't set FLL: %d\n", ret);
895b00ce63SJohn Hsu 		return ret;
905b00ce63SJohn Hsu 	}
915b00ce63SJohn Hsu 
925b00ce63SJohn Hsu 	return 0;
935b00ce63SJohn Hsu }
945b00ce63SJohn Hsu 
cht_codec_init(struct snd_soc_pcm_runtime * runtime)955b00ce63SJohn Hsu static int cht_codec_init(struct snd_soc_pcm_runtime *runtime)
965b00ce63SJohn Hsu {
975b00ce63SJohn Hsu 	struct cht_mc_private *ctx = snd_soc_card_get_drvdata(runtime->card);
985b00ce63SJohn Hsu 	struct snd_soc_jack *jack = &ctx->jack;
990d1571c1SKuninori Morimoto 	struct snd_soc_dai *codec_dai = asoc_rtd_to_codec(runtime, 0);
1003bf045d1SJohn Hsu 	struct snd_soc_component *component = codec_dai->component;
1015b00ce63SJohn Hsu 	int ret, jack_type;
1025b00ce63SJohn Hsu 
103f1eebb3bSPierre-Louis Bossart 	/* NAU88L24 supports 4 buttons headset detection
10447f98c55SPierre-Louis Bossart 	 * KEY_PLAYPAUSE
1055b00ce63SJohn Hsu 	 * KEY_VOICECOMMAND
1065b00ce63SJohn Hsu 	 * KEY_VOLUMEUP
1075b00ce63SJohn Hsu 	 * KEY_VOLUMEDOWN
1085b00ce63SJohn Hsu 	 */
1095aff078aSHans de Goede 	jack_type = SND_JACK_HEADSET | SND_JACK_BTN_0 | SND_JACK_BTN_1 |
1105b00ce63SJohn Hsu 		SND_JACK_BTN_2 | SND_JACK_BTN_3;
11119aed2d6SAkihiko Odaki 	ret = snd_soc_card_jack_new_pins(runtime->card, "Headset", jack_type,
11219aed2d6SAkihiko Odaki 		jack, cht_bsw_jack_pins, ARRAY_SIZE(cht_bsw_jack_pins));
1135b00ce63SJohn Hsu 	if (ret) {
1145b00ce63SJohn Hsu 		dev_err(runtime->dev,
1155b00ce63SJohn Hsu 			"Headset Jack creation failed %d\n", ret);
1165b00ce63SJohn Hsu 		return ret;
1175b00ce63SJohn Hsu 	}
11847f98c55SPierre-Louis Bossart 	snd_jack_set_key(jack->jack, SND_JACK_BTN_0, KEY_PLAYPAUSE);
1195b00ce63SJohn Hsu 	snd_jack_set_key(jack->jack, SND_JACK_BTN_1, KEY_VOICECOMMAND);
1205b00ce63SJohn Hsu 	snd_jack_set_key(jack->jack, SND_JACK_BTN_2, KEY_VOLUMEUP);
1215b00ce63SJohn Hsu 	snd_jack_set_key(jack->jack, SND_JACK_BTN_3, KEY_VOLUMEDOWN);
1225b00ce63SJohn Hsu 
1233bf045d1SJohn Hsu 	nau8824_enable_jack_detect(component, jack);
1245b00ce63SJohn Hsu 
1255b00ce63SJohn Hsu 	return ret;
1265b00ce63SJohn Hsu }
1275b00ce63SJohn Hsu 
cht_codec_fixup(struct snd_soc_pcm_runtime * rtd,struct snd_pcm_hw_params * params)1285b00ce63SJohn Hsu static int cht_codec_fixup(struct snd_soc_pcm_runtime *rtd,
1295b00ce63SJohn Hsu 	struct snd_pcm_hw_params *params)
1305b00ce63SJohn Hsu {
1315b00ce63SJohn Hsu 	struct snd_interval *rate = hw_param_interval(params,
1325b00ce63SJohn Hsu 		SNDRV_PCM_HW_PARAM_RATE);
1335b00ce63SJohn Hsu 	struct snd_interval *channels = hw_param_interval(params,
1345b00ce63SJohn Hsu 		SNDRV_PCM_HW_PARAM_CHANNELS);
1355b00ce63SJohn Hsu 	struct snd_mask *fmt =
1365b00ce63SJohn Hsu 		hw_param_mask(params, SNDRV_PCM_HW_PARAM_FORMAT);
137780b1a02SHans de Goede 	int ret;
1385b00ce63SJohn Hsu 
139*4088355aSAmadeusz Sławiński 	/* The DSP will convert the FE rate to 48k, stereo, 24bits */
1405b00ce63SJohn Hsu 	rate->min = rate->max = 48000;
1415b00ce63SJohn Hsu 	channels->min = channels->max = 2;
1425b00ce63SJohn Hsu 
1435b00ce63SJohn Hsu 	/* set SSP2 to 24-bit */
1445b00ce63SJohn Hsu 	snd_mask_none(fmt);
1455b00ce63SJohn Hsu 	params_set_format(params, SNDRV_PCM_FORMAT_S24_LE);
1465b00ce63SJohn Hsu 
147780b1a02SHans de Goede 	/* TDM 4 slots 24 bit, set Rx & Tx bitmask to 4 active slots */
148780b1a02SHans de Goede 	ret = snd_soc_dai_set_tdm_slot(asoc_rtd_to_codec(rtd, 0), 0xf, 0x1, 4, 24);
149780b1a02SHans de Goede 	if (ret < 0) {
150780b1a02SHans de Goede 		dev_err(rtd->dev, "can't set codec TDM slot %d\n", ret);
151780b1a02SHans de Goede 		return ret;
152780b1a02SHans de Goede 	}
153780b1a02SHans de Goede 
1545b00ce63SJohn Hsu 	return 0;
1555b00ce63SJohn Hsu }
1565b00ce63SJohn Hsu 
cht_aif1_startup(struct snd_pcm_substream * substream)1575b00ce63SJohn Hsu static int cht_aif1_startup(struct snd_pcm_substream *substream)
1585b00ce63SJohn Hsu {
1595b00ce63SJohn Hsu 	return snd_pcm_hw_constraint_single(substream->runtime,
1605b00ce63SJohn Hsu 		SNDRV_PCM_HW_PARAM_RATE, 48000);
1615b00ce63SJohn Hsu }
1625b00ce63SJohn Hsu 
1635b00ce63SJohn Hsu static const struct snd_soc_ops cht_aif1_ops = {
1645b00ce63SJohn Hsu 	.startup = cht_aif1_startup,
1655b00ce63SJohn Hsu };
1665b00ce63SJohn Hsu 
1675b00ce63SJohn Hsu static const struct snd_soc_ops cht_be_ssp2_ops = {
1685b00ce63SJohn Hsu 	.hw_params = cht_aif1_hw_params,
1695b00ce63SJohn Hsu };
1705b00ce63SJohn Hsu 
1715ae4641fSKuninori Morimoto SND_SOC_DAILINK_DEF(dummy,
1725ae4641fSKuninori Morimoto 	DAILINK_COMP_ARRAY(COMP_DUMMY()));
1735ae4641fSKuninori Morimoto 
1745ae4641fSKuninori Morimoto SND_SOC_DAILINK_DEF(media,
1755ae4641fSKuninori Morimoto 	DAILINK_COMP_ARRAY(COMP_CPU("media-cpu-dai")));
1765ae4641fSKuninori Morimoto 
1775ae4641fSKuninori Morimoto SND_SOC_DAILINK_DEF(deepbuffer,
1785ae4641fSKuninori Morimoto 	DAILINK_COMP_ARRAY(COMP_CPU("deepbuffer-cpu-dai")));
1795ae4641fSKuninori Morimoto 
1805ae4641fSKuninori Morimoto SND_SOC_DAILINK_DEF(ssp2_port,
1815ae4641fSKuninori Morimoto 	DAILINK_COMP_ARRAY(COMP_CPU("ssp2-port")));
1825ae4641fSKuninori Morimoto SND_SOC_DAILINK_DEF(ssp2_codec,
1835ae4641fSKuninori Morimoto 	DAILINK_COMP_ARRAY(COMP_CODEC("i2c-10508824:00",
1845ae4641fSKuninori Morimoto 				      NAU8824_CODEC_DAI)));
1855ae4641fSKuninori Morimoto 
1865ae4641fSKuninori Morimoto SND_SOC_DAILINK_DEF(platform,
1875ae4641fSKuninori Morimoto 	DAILINK_COMP_ARRAY(COMP_PLATFORM("sst-mfld-platform")));
1885ae4641fSKuninori Morimoto 
1895b00ce63SJohn Hsu static struct snd_soc_dai_link cht_dailink[] = {
1905b00ce63SJohn Hsu 	/* Front End DAI links */
1915b00ce63SJohn Hsu 	[MERR_DPCM_AUDIO] = {
1925b00ce63SJohn Hsu 		.name = "Audio Port",
1935b00ce63SJohn Hsu 		.stream_name = "Audio",
1945b00ce63SJohn Hsu 		.nonatomic = true,
1955b00ce63SJohn Hsu 		.dynamic = 1,
1965b00ce63SJohn Hsu 		.dpcm_playback = 1,
1975b00ce63SJohn Hsu 		.dpcm_capture = 1,
1985b00ce63SJohn Hsu 		.ops = &cht_aif1_ops,
1995ae4641fSKuninori Morimoto 		SND_SOC_DAILINK_REG(media, dummy, platform),
2005b00ce63SJohn Hsu 	},
2015b00ce63SJohn Hsu 	[MERR_DPCM_DEEP_BUFFER] = {
2025b00ce63SJohn Hsu 		.name = "Deep-Buffer Audio Port",
2035b00ce63SJohn Hsu 		.stream_name = "Deep-Buffer Audio",
2045b00ce63SJohn Hsu 		.nonatomic = true,
2055b00ce63SJohn Hsu 		.dynamic = 1,
2065b00ce63SJohn Hsu 		.dpcm_playback = 1,
2075b00ce63SJohn Hsu 		.ops = &cht_aif1_ops,
2085ae4641fSKuninori Morimoto 		SND_SOC_DAILINK_REG(deepbuffer, dummy, platform),
2095b00ce63SJohn Hsu 	},
2105b00ce63SJohn Hsu 	/* Back End DAI links */
2115b00ce63SJohn Hsu 	{
2125b00ce63SJohn Hsu 		/* SSP2 - Codec */
2135b00ce63SJohn Hsu 		.name = "SSP2-Codec",
214748e72e8SHans de Goede 		.id = 0,
2155b00ce63SJohn Hsu 		.no_pcm = 1,
2165b00ce63SJohn Hsu 		.dai_fmt = SND_SOC_DAIFMT_DSP_B | SND_SOC_DAIFMT_IB_NF
2175374b921SPeter Ujfalusi 			| SND_SOC_DAIFMT_CBC_CFC,
2185b00ce63SJohn Hsu 		.init = cht_codec_init,
2195b00ce63SJohn Hsu 		.be_hw_params_fixup = cht_codec_fixup,
2205b00ce63SJohn Hsu 		.dpcm_playback = 1,
2215b00ce63SJohn Hsu 		.dpcm_capture = 1,
2225b00ce63SJohn Hsu 		.ops = &cht_be_ssp2_ops,
2235ae4641fSKuninori Morimoto 		SND_SOC_DAILINK_REG(ssp2_port, ssp2_codec, platform),
2245b00ce63SJohn Hsu 	},
2255b00ce63SJohn Hsu };
2265b00ce63SJohn Hsu 
2277bfbddfcSPierre-Louis Bossart /* use space before codec name to simplify card ID, and simplify driver name */
22841656c3dSPierre-Louis Bossart #define SOF_CARD_NAME "bytcht nau8824" /* card name will be 'sof-bytcht nau8824 */
22941656c3dSPierre-Louis Bossart #define SOF_DRIVER_NAME "SOF"
23041656c3dSPierre-Louis Bossart 
2317bfbddfcSPierre-Louis Bossart #define CARD_NAME "chtnau8824"
2327bfbddfcSPierre-Louis Bossart #define DRIVER_NAME NULL /* card name will be used for driver name */
2337bfbddfcSPierre-Louis Bossart 
2345b00ce63SJohn Hsu /* SoC card */
2355b00ce63SJohn Hsu static struct snd_soc_card snd_soc_card_cht = {
2365b00ce63SJohn Hsu 	.owner = THIS_MODULE,
2375b00ce63SJohn Hsu 	.dai_link = cht_dailink,
2385b00ce63SJohn Hsu 	.num_links = ARRAY_SIZE(cht_dailink),
2395b00ce63SJohn Hsu 	.dapm_widgets = cht_dapm_widgets,
2405b00ce63SJohn Hsu 	.num_dapm_widgets = ARRAY_SIZE(cht_dapm_widgets),
2415b00ce63SJohn Hsu 	.dapm_routes = cht_audio_map,
2425b00ce63SJohn Hsu 	.num_dapm_routes = ARRAY_SIZE(cht_audio_map),
2435b00ce63SJohn Hsu 	.controls = cht_mc_controls,
2445b00ce63SJohn Hsu 	.num_controls = ARRAY_SIZE(cht_mc_controls),
2455b00ce63SJohn Hsu };
2465b00ce63SJohn Hsu 
snd_cht_mc_probe(struct platform_device * pdev)2475b00ce63SJohn Hsu static int snd_cht_mc_probe(struct platform_device *pdev)
2485b00ce63SJohn Hsu {
2495b00ce63SJohn Hsu 	struct cht_mc_private *drv;
2504506db80SPierre-Louis Bossart 	struct snd_soc_acpi_mach *mach;
2514506db80SPierre-Louis Bossart 	const char *platform_name;
25241656c3dSPierre-Louis Bossart 	bool sof_parent;
2535b00ce63SJohn Hsu 	int ret_val;
2545b00ce63SJohn Hsu 
255b113855aSVinod Koul 	drv = devm_kzalloc(&pdev->dev, sizeof(*drv), GFP_KERNEL);
2565b00ce63SJohn Hsu 	if (!drv)
2575b00ce63SJohn Hsu 		return -ENOMEM;
2585b00ce63SJohn Hsu 	snd_soc_card_set_drvdata(&snd_soc_card_cht, drv);
2595b00ce63SJohn Hsu 
260f1eebb3bSPierre-Louis Bossart 	/* override platform name, if required */
261096701e8SPierre-Louis Bossart 	snd_soc_card_cht.dev = &pdev->dev;
26242432196SGuennadi Liakhovetski 	mach = pdev->dev.platform_data;
2634506db80SPierre-Louis Bossart 	platform_name = mach->mach_params.platform;
2644506db80SPierre-Louis Bossart 
2654506db80SPierre-Louis Bossart 	ret_val = snd_soc_fixup_dai_links_platform_name(&snd_soc_card_cht,
2664506db80SPierre-Louis Bossart 							platform_name);
2674506db80SPierre-Louis Bossart 	if (ret_val)
2684506db80SPierre-Louis Bossart 		return ret_val;
2694506db80SPierre-Louis Bossart 
27041656c3dSPierre-Louis Bossart 	sof_parent = snd_soc_acpi_sof_parent(&pdev->dev);
27141656c3dSPierre-Louis Bossart 
27241656c3dSPierre-Louis Bossart 	/* set card and driver name */
27341656c3dSPierre-Louis Bossart 	if (sof_parent) {
27441656c3dSPierre-Louis Bossart 		snd_soc_card_cht.name = SOF_CARD_NAME;
27541656c3dSPierre-Louis Bossart 		snd_soc_card_cht.driver_name = SOF_DRIVER_NAME;
27641656c3dSPierre-Louis Bossart 	} else {
27741656c3dSPierre-Louis Bossart 		snd_soc_card_cht.name = CARD_NAME;
27841656c3dSPierre-Louis Bossart 		snd_soc_card_cht.driver_name = DRIVER_NAME;
27941656c3dSPierre-Louis Bossart 	}
28041656c3dSPierre-Louis Bossart 
2817924f1bcSHans de Goede 	snd_soc_card_cht.components = nau8824_components();
2827924f1bcSHans de Goede 
28305ff312bSPierre-Louis Bossart 	/* set pm ops */
28405ff312bSPierre-Louis Bossart 	if (sof_parent)
28505ff312bSPierre-Louis Bossart 		pdev->dev.driver->pm = &snd_soc_pm_ops;
28605ff312bSPierre-Louis Bossart 
2875b00ce63SJohn Hsu 	/* register the soc card */
2885b00ce63SJohn Hsu 	ret_val = devm_snd_soc_register_card(&pdev->dev, &snd_soc_card_cht);
2895b00ce63SJohn Hsu 	if (ret_val) {
2905b00ce63SJohn Hsu 		dev_err(&pdev->dev,
2915b00ce63SJohn Hsu 			"snd_soc_register_card failed %d\n", ret_val);
2925b00ce63SJohn Hsu 		return ret_val;
2935b00ce63SJohn Hsu 	}
2945b00ce63SJohn Hsu 	platform_set_drvdata(pdev, &snd_soc_card_cht);
2955b00ce63SJohn Hsu 
2965b00ce63SJohn Hsu 	return ret_val;
2975b00ce63SJohn Hsu }
2985b00ce63SJohn Hsu 
2995b00ce63SJohn Hsu static struct platform_driver snd_cht_mc_driver = {
3005b00ce63SJohn Hsu 	.driver = {
3015b00ce63SJohn Hsu 		.name = "cht-bsw-nau8824",
3025b00ce63SJohn Hsu 	},
3035b00ce63SJohn Hsu 	.probe = snd_cht_mc_probe,
3045b00ce63SJohn Hsu };
3055b00ce63SJohn Hsu 
3065b00ce63SJohn Hsu module_platform_driver(snd_cht_mc_driver);
3075b00ce63SJohn Hsu 
3085b00ce63SJohn Hsu MODULE_DESCRIPTION("ASoC Intel(R) Baytrail CR Machine driver");
3095b00ce63SJohn Hsu MODULE_AUTHOR("Wang, Joseph C <joequant@gmail.com>");
3105b00ce63SJohn Hsu MODULE_AUTHOR("John Hsu <KCHSU0@nuvoton.com>");
3115b00ce63SJohn Hsu MODULE_LICENSE("GPL v2");
3125b00ce63SJohn Hsu MODULE_ALIAS("platform:cht-bsw-nau8824");
313