summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/common/linux/platform_gp10b_tegra.h
blob: 74db60d104792753e44e064f2b972208c3628869 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
/*
 * Copyright (c) 2017, NVIDIA CORPORATION.  All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms and conditions of the GNU General Public License,
 * version 2, as published by the Free Software Foundation.
 *
 * This program is distributed in the hope it will be useful, but WITHOUT
 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
 * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License for
 * more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program.  If not, see <http://www.gnu.org/licenses/>.
 */

#ifndef _PLATFORM_GP10B_TEGRA_H_
#define _PLATFORM_GP10B_TEGRA_H_

#include "gp10b/gr_gp10b.h"

int gr_gp10b_ecc_stat_create(struct device *dev,
				int is_l2,
				char *ecc_stat_name,
				struct gk20a_ecc_stat *ecc_stat,
				struct device_attribute **dev_attr_array);
int gp10b_ecc_stat_create(struct device *dev,
				int hw_units,
				char *ecc_unit_name,
				char *ecc_stat_name,
				struct gk20a_ecc_stat *ecc_stat,
				struct device_attribute **dev_attr_array);

void gr_gp10b_ecc_stat_remove(struct device *dev,
				int is_l2,
				struct gk20a_ecc_stat *ecc_stat,
				struct device_attribute *dev_attr_array);

void gp10b_ecc_stat_remove(struct device *dev,
				int hw_units,
				struct gk20a_ecc_stat *ecc_stat,
				struct device_attribute *dev_attr_array);

int gp10b_tegra_remove(struct device *dev);

#endif