mirror of
git://nv-tegra.nvidia.com/linux-nv-oot.git
synced 2025-12-23 09:42:19 +03:00
Combined nvaudio-ivc with tegra-virt-alt. Bug 3735757 Change-Id: I9642c5367e43bfc470c70641fa22e50a4ae0e992 Signed-off-by: pmedawala <pmedawala@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/c/linux-nv-oot/+/2800354 GVS: Gerrit_Virtual_Submit <buildbot_gerritrpt@nvidia.com> Reviewed-by: Uday Gupta <udayg@nvidia.com> Reviewed-by: Niranjan Dighe <ndighe@nvidia.com> Reviewed-by: Laxman Dewangan <ldewangan@nvidia.com>
22 lines
493 B
C
22 lines
493 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* Copyright (c) 2021-2022 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
|
|
*/
|
|
|
|
#ifndef __TEGRA_PCM_ALT_H__
|
|
#define __TEGRA_PCM_ALT_H__
|
|
|
|
#define MAX_DMA_REQ_COUNT 2
|
|
|
|
struct tegra_alt_pcm_dma_params {
|
|
unsigned long addr;
|
|
unsigned long width;
|
|
unsigned long req_sel;
|
|
const char *chan_name;
|
|
size_t buffer_size;
|
|
};
|
|
|
|
int tegra_alt_pcm_platform_register(struct device *dev);
|
|
void tegra_alt_pcm_platform_unregister(struct device *dev);
|
|
|
|
#endif |