2019-05-30 07:57:50 +08:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-only */
|
2011-01-08 13:36:15 +08:00
|
|
|
/*
|
|
|
|
* tegra_asoc_utils.h - Definitions for Tegra DAS driver
|
|
|
|
*
|
|
|
|
* Author: Stephen Warren <swarren@nvidia.com>
|
2012-04-07 01:15:55 +08:00
|
|
|
* Copyright (C) 2010,2012 - NVIDIA, Inc.
|
2011-01-08 13:36:15 +08:00
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __TEGRA_ASOC_UTILS_H__
|
2014-08-22 17:27:07 +08:00
|
|
|
#define __TEGRA_ASOC_UTILS_H__
|
2011-01-08 13:36:15 +08:00
|
|
|
|
2011-01-29 05:26:40 +08:00
|
|
|
struct clk;
|
|
|
|
struct device;
|
|
|
|
|
2012-04-07 01:15:55 +08:00
|
|
|
enum tegra_asoc_utils_soc {
|
|
|
|
TEGRA_ASOC_UTILS_SOC_TEGRA20,
|
|
|
|
TEGRA_ASOC_UTILS_SOC_TEGRA30,
|
2013-03-22 03:56:42 +08:00
|
|
|
TEGRA_ASOC_UTILS_SOC_TEGRA114,
|
2013-10-12 05:43:17 +08:00
|
|
|
TEGRA_ASOC_UTILS_SOC_TEGRA124,
|
2012-04-07 01:15:55 +08:00
|
|
|
};
|
|
|
|
|
2011-01-29 05:26:40 +08:00
|
|
|
struct tegra_asoc_utils_data {
|
|
|
|
struct device *dev;
|
2012-04-07 01:15:55 +08:00
|
|
|
enum tegra_asoc_utils_soc soc;
|
2011-01-29 05:26:40 +08:00
|
|
|
struct clk *clk_pll_a;
|
|
|
|
struct clk *clk_pll_a_out0;
|
|
|
|
struct clk *clk_cdev1;
|
|
|
|
int set_baseclock;
|
|
|
|
int set_mclk;
|
|
|
|
};
|
|
|
|
|
|
|
|
int tegra_asoc_utils_set_rate(struct tegra_asoc_utils_data *data, int srate,
|
2011-04-20 05:25:09 +08:00
|
|
|
int mclk);
|
2012-12-20 07:17:33 +08:00
|
|
|
int tegra_asoc_utils_set_ac97_rate(struct tegra_asoc_utils_data *data);
|
2011-01-29 05:26:40 +08:00
|
|
|
int tegra_asoc_utils_init(struct tegra_asoc_utils_data *data,
|
|
|
|
struct device *dev);
|
|
|
|
void tegra_asoc_utils_fini(struct tegra_asoc_utils_data *data);
|
2011-01-08 13:36:15 +08:00
|
|
|
|
|
|
|
#endif
|