| /linux/arch/sh/boards/ |
| H A D | Makefile | 22 obj-$(CONFIG_SOLUTION_ENGINE) += mach-se/ 23 obj-$(CONFIG_SH_HP6XX) += mach-hp6xx/ 24 obj-$(CONFIG_SH_DREAMCAST) += mach-dreamcast/ 25 obj-$(CONFIG_SH_SH03) += mach-sh03/ 26 obj-$(CONFIG_SH_RTS7751R2D) += mach-r2d/ 27 obj-$(CONFIG_SH_HIGHLANDER) += mach-highlander/ 28 obj-$(CONFIG_SH_MIGOR) += mach-migor/ 29 obj-$(CONFIG_SH_AP325RXA) += mach-ap325rxa/ 30 obj-$(CONFIG_SH_KFR2R09) += mach-kfr2r09/ 31 obj-$(CONFIG_SH_ECOVEC) += mach-ecovec24/ [all …]
|
| /linux/arch/arm/mach-imx/ |
| H A D | Makefile | 4 obj-$(CONFIG_SOC_IMX25) += cpu-imx25.o mach-imx25.o pm-imx25.o 6 obj-$(CONFIG_SOC_IMX27) += cpu-imx27.o pm-imx27.o mach-imx27.o 8 obj-$(CONFIG_SOC_IMX31) += mm-imx3.o cpu-imx31.o mach-imx31.o 9 obj-$(CONFIG_SOC_IMX35) += mm-imx3.o cpu-imx35.o mach-imx35.o 40 obj-$(CONFIG_SOC_IMX6Q) += mach-imx6q.o 41 obj-$(CONFIG_SOC_IMX6SL) += mach-imx6sl.o 42 obj-$(CONFIG_SOC_IMX6SLL) += mach-imx6sl.o 43 obj-$(CONFIG_SOC_IMX6SX) += mach-imx6sx.o 44 obj-$(CONFIG_SOC_IMX6UL) += mach-imx6ul.o 45 obj-$(CONFIG_SOC_IMX7D_CA7) += mach-imx7d.o [all …]
|
| /linux/sound/soc/intel/avs/ |
| H A D | utils.h | 24 static inline bool avs_mach_singular_ssp(struct snd_soc_acpi_mach *mach) in avs_mach_singular_ssp() argument 26 return hweight_long(mach->mach_params.i2s_link_mask) == 1; in avs_mach_singular_ssp() 29 static inline u32 avs_mach_ssp_port(struct snd_soc_acpi_mach *mach) in avs_mach_ssp_port() argument 31 return __ffs(mach->mach_params.i2s_link_mask); in avs_mach_ssp_port() 34 static inline bool avs_mach_singular_tdm(struct snd_soc_acpi_mach *mach, u32 port) in avs_mach_singular_tdm() argument 36 struct avs_mach_pdata *pdata = mach->pdata; in avs_mach_singular_tdm() 42 static inline u32 avs_mach_ssp_tdm(struct snd_soc_acpi_mach *mach, u32 port) in avs_mach_ssp_tdm() argument 44 struct avs_mach_pdata *pdata = mach->pdata; in avs_mach_ssp_tdm() 50 static inline int avs_mach_get_ssp_tdm(struct device *dev, struct snd_soc_acpi_mach *mach, in avs_mach_get_ssp_tdm() argument 55 if (!avs_mach_singular_ssp(mach)) { in avs_mach_get_ssp_tdm() [all …]
|
| /linux/sound/soc/sof/amd/ |
| H A D | acp-common.c | 131 struct snd_soc_acpi_mach *mach; in amd_sof_sdw_machine_select() local 142 for (mach = sdev->pdata->desc->alt_machines; mach; mach++) { in amd_sof_sdw_machine_select() 143 if (!mach->links) in amd_sof_sdw_machine_select() 145 link = mach->links; in amd_sof_sdw_machine_select() 154 if (mach && mach->link_mask) { in amd_sof_sdw_machine_select() 155 mach->mach_params.subsystem_rev = acp_data->pci_rev; in amd_sof_sdw_machine_select() 156 mach->mach_params.links = mach->links; in amd_sof_sdw_machine_select() 157 mach->mach_params.link_mask = mach->link_mask; in amd_sof_sdw_machine_select() 158 mach->mach_params.platform = dev_name(sdev->dev); in amd_sof_sdw_machine_select() 159 return mach; in amd_sof_sdw_machine_select() [all …]
|
| /linux/arch/mips/generic/ |
| H A D | init.c | 24 static __initconst const struct mips_machine *mach; variable 52 mach = check_mach; in plat_get_fdt() 70 mach = check_mach; in plat_get_fdt() 77 BUG_ON(!mach); in plat_get_fdt() 80 fdt = mach->fdt; in plat_get_fdt() 104 if (mach && mach->fixup_fdt) in plat_mem_setup() 105 fdt = mach->fixup_fdt(fdt, mach_match_data); in plat_mem_setup() 160 } else if (mach && mach->measure_hpt_freq) { in plat_time_init() 161 mips_hpt_frequency = mach->measure_hpt_freq(); in plat_time_init()
|
| /linux/sound/oss/dmasound/ |
| H A D | dmasound_core.c | 229 dmasound.mach.silence(); /* _MUST_ stop DMA */ in sound_silence() 234 return dmasound.mach.setFormat(format); in sound_set_format() 248 if (dmasound.mach.max_dsp_speed && in sound_set_speed() 249 (speed > dmasound.mach.max_dsp_speed)) in sound_set_speed() 250 speed = dmasound.mach.max_dsp_speed ; in sound_set_speed() 328 if (!try_module_get(dmasound.mach.owner)) { in mixer_open() 341 module_put(dmasound.mach.owner); in mixer_release() 357 strscpy(info.id, dmasound.mach.name2, sizeof(info.id)); in mixer_ioctl() 358 strscpy(info.name, dmasound.mach.name2, sizeof(info.name)); in mixer_ioctl() 365 if (dmasound.mach.mixer_ioctl) in mixer_ioctl() [all …]
|
| H A D | dmasound.h | 156 MACHINE mach; /* machine dependent things */ member 183 return dmasound.mach.setVolume(volume); in dmasound_set_volume() 188 return dmasound.mach.setBass ? dmasound.mach.setBass(bass) : 50; in dmasound_set_bass() 193 return dmasound.mach.setTreble ? dmasound.mach.setTreble(treble) : 50; in dmasound_set_treble() 198 return dmasound.mach.setGain ? dmasound.mach.setGain(gain) : 100; in dmasound_set_gain()
|
| /linux/sound/soc/amd/ |
| H A D | Makefile | 3 snd-soc-acp-da7219mx98357-mach-y := acp-da7219-max98357a.o 4 snd-soc-acp-rt5645-mach-y := acp-rt5645.o 5 snd-soc-acp-es8336-mach-y := acp-es8336.o 6 snd-soc-acp-rt5682-mach-y := acp3x-rt5682-max9836.o 10 obj-$(CONFIG_SND_SOC_AMD_CZ_DA7219MX98357_MACH) += snd-soc-acp-da7219mx98357-mach.o 11 obj-$(CONFIG_SND_SOC_AMD_CZ_RT5645_MACH) += snd-soc-acp-rt5645-mach.o 12 obj-$(CONFIG_SND_SOC_AMD_ST_ES8336_MACH) += snd-soc-acp-es8336-mach.o 14 obj-$(CONFIG_SND_SOC_AMD_RV_RT5682_MACH) += snd-soc-acp-rt5682-mach.o
|
| /linux/arch/mips/include/asm/ |
| H A D | machine.h | 28 #define for_each_mips_machine(mach) \ argument 29 for ((mach) = (struct mips_machine *)&__mips_machines_start; \ 30 (mach) < (struct mips_machine *)&__mips_machines_end; \ 31 (mach)++) 44 mips_machine_is_compatible(const struct mips_machine *mach, const void *fdt) in mips_machine_is_compatible() argument 48 if (!mach->matches) in mips_machine_is_compatible() 51 for (match = mach->matches; match->compatible[0]; match++) { in mips_machine_is_compatible()
|
| /linux/sound/soc/sof/ |
| H A D | core.c | 187 struct snd_sof_of_mach *mach = desc->of_machines; in sof_of_machine_select() local 189 if (!mach) in sof_of_machine_select() 192 for (; mach->compatible; mach++) { in sof_of_machine_select() 193 if (of_machine_is_compatible(mach->compatible)) { in sof_of_machine_select() 194 sof_pdata->tplg_filename = mach->sof_tplg_filename; in sof_of_machine_select() 195 if (mach->fw_filename) in sof_of_machine_select() 196 sof_pdata->fw_filename = mach->fw_filename; in sof_of_machine_select() 198 return mach; in sof_of_machine_select() 210 struct snd_soc_acpi_mach *mach; in sof_machine_check() local 220 mach = snd_sof_machine_select(sdev); in sof_machine_check() [all …]
|
| /linux/Documentation/arch/arm/spear/ |
| H A D | overview.rst | 52 Each machine series have a directory with name arch/arm/mach-spear followed by 53 series name. Like mach-spear3xx, mach-spear6xx and mach-spear13xx. 55 Common file for machines of spear3xx family is mach-spear3xx/spear3xx.c, for 56 spear6xx is mach-spear6xx/spear6xx.c and for spear13xx family is 57 mach-spear13xx/spear13xx.c. mach-spear* also contain soc/machine specific 59 spear600.c. mach-spear* doesn't contains board specific files as they fully
|
| /linux/sound/soc/intel/atom/sst/ |
| H A D | sst_acpi.c | 263 struct snd_soc_acpi_mach *mach; in sst_acpi_probe() 281 mach = (struct snd_soc_acpi_mach *)id->driver_data; in sst_acpi_probe() 282 mach = snd_soc_acpi_find_machine(mach); in sst_acpi_probe() 283 if (mach == NULL) { in sst_acpi_probe() 289 mach->pdata = &byt_rvp_platform_data; in sst_acpi_probe() 291 mach->pdata = &chv_platform_data; in sst_acpi_probe() 292 pdata = mach->pdata; in sst_acpi_probe() 335 mach->mach_params.acpi_ipc_irq_index = in sst_acpi_probe() 350 mdev = platform_device_register_data(dev, mach in sst_acpi_probe() 262 struct snd_soc_acpi_mach *mach; sst_acpi_probe() local [all...] |
| /linux/arch/mips/ralink/ |
| H A D | Platform | 4 cflags-$(CONFIG_RALINK) += -I$(srctree)/arch/mips/include/asm/mach-ralink 10 cflags-$(CONFIG_SOC_RT288X) += -I$(srctree)/arch/mips/include/asm/mach-ralink/rt288x 16 cflags-$(CONFIG_SOC_RT305X) += -I$(srctree)/arch/mips/include/asm/mach-ralink/rt305x 22 cflags-$(CONFIG_SOC_RT3883) += -I$(srctree)/arch/mips/include/asm/mach-ralink/rt3883 28 cflags-$(CONFIG_SOC_MT7620) += -I$(srctree)/arch/mips/include/asm/mach-ralink/mt7620 33 cflags-$(CONFIG_SOC_MT7621) += -I$(srctree)/arch/mips/include/asm/mach-ralink/mt7621
|
| /linux/arch/sh/tools/ |
| H A D | gen-mach-types | 12 mach[nr] = $1; 35 printf(" #define MACH_%s\t\t1\n", mach[i]); 37 printf(" #define MACH_%s\t\t0\n", mach[i]); 45 tolower(mach[i]), mach[i]);
|
| /linux/sound/soc/intel/boards/ |
| H A D | skl_hda_dsp_generic.c | 102 struct snd_soc_acpi_mach *mach = pdev->dev.platform_data; in skl_hda_audio_probe() local 105 unsigned long board_quirk = skl_hda_get_board_quirk(&mach->mach_params); in skl_hda_audio_probe() 125 if (HDA_EXT_CODEC(mach->mach_params.codec_mask)) in skl_hda_audio_probe() 128 if (mach->mach_params.codec_mask & IDISP_CODEC_MASK) in skl_hda_audio_probe() 141 if (mach->mach_params.dmic_num > 0) { in skl_hda_audio_probe() 144 mach->mach_params.dmic_num); in skl_hda_audio_probe() 150 mach->mach_params.platform); in skl_hda_audio_probe()
|
| H A D | ehl_rt5660.c | 253 struct snd_soc_acpi_mach *mach) in hdmi_link_init() argument 257 if (mach->mach_params.codec_mask & IDISP_CODEC_MASK) { in hdmi_link_init() 272 struct snd_soc_acpi_mach *mach; in snd_ehl_rt5660_probe() local 285 mach = pdev->dev.platform_data; in snd_ehl_rt5660_probe() 287 mach->mach_params.platform); in snd_ehl_rt5660_probe() 291 hdmi_link_init(card, ctx, mach); in snd_ehl_rt5660_probe()
|
| /linux/sound/soc/amd/ps/ |
| H A D | pci-ps.c | 20 #include "../mach-config.h" 311 struct snd_soc_acpi_mach *mach; in acp63_sdw_machine_select() local 322 for (mach = acp_data->machines; mach; mach++) { in acp63_sdw_machine_select() 323 if (!mach->links) in acp63_sdw_machine_select() 325 link = mach->links; in acp63_sdw_machine_select() 334 if (mach && mach->link_mask) { in acp63_sdw_machine_select() 335 mach in acp63_sdw_machine_select() 368 struct snd_soc_acpi_mach *mach; acp63_machine_register() local [all...] |
| /linux/Documentation/arch/sh/ |
| H A D | index.rst | 31 mach-dreamcast 34 .. kernel-doc:: arch/sh/boards/mach-dreamcast/rtc.c 37 mach-x3proto 40 .. kernel-doc:: arch/sh/boards/mach-x3proto/ilsel.c
|
| /linux/sound/soc/sof/intel/ |
| H A D | atom.c | 300 struct snd_soc_acpi_mach *mach; in atom_machine_select() local 304 mach = snd_soc_acpi_find_machine(desc->machines); in atom_machine_select() 305 if (!mach) { in atom_machine_select() 316 mach->sof_tplg_filename, in atom_machine_select() 319 tplg_filename = mach->sof_tplg_filename; in atom_machine_select() 329 mach->mach_params.acpi_ipc_irq_index = desc->irqindex_host_ipc; in atom_machine_select() 331 return mach; in atom_machine_select() 406 void atom_set_mach_params(struct snd_soc_acpi_mach *mach, in atom_set_mach_params() argument 413 mach_params = &mach->mach_params; in atom_set_mach_params()
|
| /linux/arch/mips/fw/arc/ |
| H A D | identify.c | 94 struct smatch *mach; in prom_identify_arch() local 107 mach = string_to_mach(iname); in prom_identify_arch() 108 system_type = mach->liname; in prom_identify_arch() 110 prom_flags = mach->flags; in prom_identify_arch()
|
| /linux/arch/mips/lantiq/ |
| H A D | Platform | 5 cflags-$(CONFIG_LANTIQ) += -I$(srctree)/arch/mips/include/asm/mach-lantiq 7 cflags-$(CONFIG_SOC_TYPE_XWAY) += -I$(srctree)/arch/mips/include/asm/mach-lantiq/xway 8 cflags-$(CONFIG_SOC_FALCON) += -I$(srctree)/arch/mips/include/asm/mach-lantiq/falcon
|
| /linux/sound/soc/amd/yc/ |
| H A D | Makefile | 5 snd-soc-acp6x-mach-y := acp6x-mach.o 9 obj-$(CONFIG_SND_SOC_AMD_YC_MACH) += snd-soc-acp6x-mach.o
|
| /linux/arch/arm/tools/ |
| H A D | Makefile | 19 kapi-hdrs-y += $(kapi)/mach-types.h 37 $(kapi)/mach-types.h: $(src)/gen-mach-types $(src)/mach-types FORCE
|
| /linux/sound/soc/amd/vangogh/ |
| H A D | Makefile | 6 snd-soc-acp5x-mach-y := acp5x-mach.o 11 obj-$(CONFIG_SND_SOC_AMD_VANGOGH_MACH) += snd-soc-acp5x-mach.o
|
| /linux/sound/soc/intel/common/ |
| H A D | sof-function-topology-lib.c | 30 int sof_sdw_get_tplg_files(struct snd_soc_card *card, const struct snd_soc_acpi_mach *mach, in sof_sdw_get_tplg_files() argument 33 struct snd_soc_acpi_mach_params mach_params = mach->mach_params; in sof_sdw_get_tplg_files() 43 ret = sscanf(mach->sof_tplg_filename, "sof-%3s-*.tplg", platform); in sof_sdw_get_tplg_files() 46 platform, mach->sof_tplg_filename); in sof_sdw_get_tplg_files()
|