Loading sound/soc/sh/rcar/Makefile +1 −0 Original line number Diff line number Diff line # SPDX-License-Identifier: GPL-2.0 snd-soc-rcar-objs := core.o gen.o dma.o adg.o ssi.o ssiu.o src.o ctu.o mix.o dvc.o cmd.o obj-$(CONFIG_SND_SOC_RCAR) += snd-soc-rcar.o sound/soc/sh/rcar/adg.c +6 −9 Original line number Diff line number Diff line /* * Helper routines for R-Car sound ADG. * * Copyright (C) 2013 Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> * * This file is subject to the terms and conditions of the GNU General Public * License. See the file "COPYING" in the main directory of this archive * for more details. */ // SPDX-License-Identifier: GPL-2.0 // // Helper routines for R-Car sound ADG. // // Copyright (C) 2013 Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> #include <linux/clk-provider.h> #include "rsnd.h" Loading sound/soc/sh/rcar/cmd.c +7 −10 Original line number Diff line number Diff line /* * Renesas R-Car CMD support * * Copyright (C) 2015 Renesas Solutions Corp. * Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */ // SPDX-License-Identifier: GPL-2.0 // // Renesas R-Car CMD support // // Copyright (C) 2015 Renesas Solutions Corp. // Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> #include "rsnd.h" struct rsnd_cmd { Loading sound/soc/sh/rcar/core.c +10 −14 Original line number Diff line number Diff line /* * Renesas R-Car SRU/SCU/SSIU/SSI support * * Copyright (C) 2013 Renesas Solutions Corp. * Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> * * Based on fsi.c * Kuninori Morimoto <morimoto.kuninori@renesas.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */ // SPDX-License-Identifier: GPL-2.0 // // Renesas R-Car SRU/SCU/SSIU/SSI support // // Copyright (C) 2013 Renesas Solutions Corp. // Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> // // Based on fsi.c // Kuninori Morimoto <morimoto.kuninori@renesas.com> /* * Renesas R-Car sound device structure Loading Loading @@ -1606,7 +1602,7 @@ static struct platform_driver rsnd_driver = { }; module_platform_driver(rsnd_driver); MODULE_LICENSE("GPL"); MODULE_LICENSE("GPL v2"); MODULE_DESCRIPTION("Renesas R-Car audio driver"); MODULE_AUTHOR("Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>"); MODULE_ALIAS("platform:rcar-pcm-audio"); sound/soc/sh/rcar/ctu.c +6 −9 Original line number Diff line number Diff line /* * ctu.c * * Copyright (c) 2015 Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */ // SPDX-License-Identifier: GPL-2.0 // // ctu.c // // Copyright (c) 2015 Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> #include "rsnd.h" #define CTU_NAME_SIZE 16 Loading Loading
sound/soc/sh/rcar/Makefile +1 −0 Original line number Diff line number Diff line # SPDX-License-Identifier: GPL-2.0 snd-soc-rcar-objs := core.o gen.o dma.o adg.o ssi.o ssiu.o src.o ctu.o mix.o dvc.o cmd.o obj-$(CONFIG_SND_SOC_RCAR) += snd-soc-rcar.o
sound/soc/sh/rcar/adg.c +6 −9 Original line number Diff line number Diff line /* * Helper routines for R-Car sound ADG. * * Copyright (C) 2013 Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> * * This file is subject to the terms and conditions of the GNU General Public * License. See the file "COPYING" in the main directory of this archive * for more details. */ // SPDX-License-Identifier: GPL-2.0 // // Helper routines for R-Car sound ADG. // // Copyright (C) 2013 Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> #include <linux/clk-provider.h> #include "rsnd.h" Loading
sound/soc/sh/rcar/cmd.c +7 −10 Original line number Diff line number Diff line /* * Renesas R-Car CMD support * * Copyright (C) 2015 Renesas Solutions Corp. * Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */ // SPDX-License-Identifier: GPL-2.0 // // Renesas R-Car CMD support // // Copyright (C) 2015 Renesas Solutions Corp. // Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> #include "rsnd.h" struct rsnd_cmd { Loading
sound/soc/sh/rcar/core.c +10 −14 Original line number Diff line number Diff line /* * Renesas R-Car SRU/SCU/SSIU/SSI support * * Copyright (C) 2013 Renesas Solutions Corp. * Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> * * Based on fsi.c * Kuninori Morimoto <morimoto.kuninori@renesas.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */ // SPDX-License-Identifier: GPL-2.0 // // Renesas R-Car SRU/SCU/SSIU/SSI support // // Copyright (C) 2013 Renesas Solutions Corp. // Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> // // Based on fsi.c // Kuninori Morimoto <morimoto.kuninori@renesas.com> /* * Renesas R-Car sound device structure Loading Loading @@ -1606,7 +1602,7 @@ static struct platform_driver rsnd_driver = { }; module_platform_driver(rsnd_driver); MODULE_LICENSE("GPL"); MODULE_LICENSE("GPL v2"); MODULE_DESCRIPTION("Renesas R-Car audio driver"); MODULE_AUTHOR("Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>"); MODULE_ALIAS("platform:rcar-pcm-audio");
sound/soc/sh/rcar/ctu.c +6 −9 Original line number Diff line number Diff line /* * ctu.c * * Copyright (c) 2015 Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License version 2 as * published by the Free Software Foundation. */ // SPDX-License-Identifier: GPL-2.0 // // ctu.c // // Copyright (c) 2015 Kuninori Morimoto <kuninori.morimoto.gx@renesas.com> #include "rsnd.h" #define CTU_NAME_SIZE 16 Loading