summaryrefslogtreecommitdiff
path: root/arch/arm/mach-tegra/tegra_exports.c
blob: e3f8fbe38db9b3395d5059a83cb143225ae34339 (plain)
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
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
/*
 * tegra_exports.c
 *
 * Export Tegra-specific functions for use by kernel loadable modules.
 *
 * Copyright (c) 2009, NVIDIA Corporation.
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that 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, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.
 */

#include <linux/kernel.h>
#include <linux/module.h>
#include "nvrm_analog.h"
#include "nvrm_diag.h"
#include "nvrm_dma.h"
#include "nvrm_gpio.h"
#include "nvrm_hardware_access.h"
#include "nvrm_i2c.h"
#include "nvrm_init.h"
#include "nvrm_interrupt.h"
#include "nvrm_keylist.h"
#include "nvrm_memctrl.h"
#include "nvrm_memmgr.h"
#include "nvrm_module.h"
#include "nvrm_owr.h"
#include "nvrm_pcie.h"
#include "nvrm_pinmux.h"
#include "nvrm_pmu.h"
#include "nvrm_power.h"
#include "nvrm_pwm.h"
#include "nvrm_rmctrace.h"
#include "nvrm_spi.h"
#include "nvodm_services.h"
#include "nvodm_query_discovery.h"
#include "nvos.h"

EXPORT_SYMBOL(NvOdmGpioOpen);
EXPORT_SYMBOL(NvOdmGpioClose);
EXPORT_SYMBOL(NvOdmGpioConfig);
EXPORT_SYMBOL(NvOdmGpioGetState);
EXPORT_SYMBOL(NvOdmGpioSetState);
EXPORT_SYMBOL(NvOdmGpioAcquirePinHandle);
EXPORT_SYMBOL(NvOdmGpioReleasePinHandle);
EXPORT_SYMBOL(NvOdmGpioInterruptRegister);
EXPORT_SYMBOL(NvOdmGpioInterruptUnregister);
EXPORT_SYMBOL(NvOdmGpioInterruptDone);
EXPORT_SYMBOL(NvOdmOsSemaphoreCreate);
EXPORT_SYMBOL(NvOdmOsSemaphoreDestroy);
EXPORT_SYMBOL(NvOdmOsSemaphoreSignal);
EXPORT_SYMBOL(NvOdmOsSemaphoreWait);
EXPORT_SYMBOL(NvOdmOsSleepMS);
EXPORT_SYMBOL(NvOdmPeripheralGetGuid);
EXPORT_SYMBOL(NvRmOpen);
EXPORT_SYMBOL(NvRmClose);
EXPORT_SYMBOL(NvRegrb);
EXPORT_SYMBOL(NvRegrm);
EXPORT_SYMBOL(NvRegwb);
EXPORT_SYMBOL(NvRegwm);
EXPORT_SYMBOL(NvRmGetIrqForLogicalInterrupt);
EXPORT_SYMBOL(NvRmGetRmcFile);
EXPORT_SYMBOL(NvRmInterruptDone);
EXPORT_SYMBOL(NvRmInterruptRegister);
EXPORT_SYMBOL(NvRmInterruptUnregister);
EXPORT_SYMBOL(NvRmMemAlloc);
EXPORT_SYMBOL(NvRmMemGetAddress);
EXPORT_SYMBOL(NvRmMemGetId);
EXPORT_SYMBOL(NvRmMemHandleCreate);
EXPORT_SYMBOL(NvRmMemHandleFree);
EXPORT_SYMBOL(NvRmMemHandleFromId);
EXPORT_SYMBOL(NvRmMemMap);
EXPORT_SYMBOL(NvRmMemPin);
EXPORT_SYMBOL(NvRmMemRd32);
EXPORT_SYMBOL(NvRmMemUnmap);
EXPORT_SYMBOL(NvRmMemUnpin);
EXPORT_SYMBOL(NvRmMemWr32);
EXPORT_SYMBOL(NvRmMemWrite);
EXPORT_SYMBOL(NvRmModuleGetBaseAddress);
EXPORT_SYMBOL(NvRmModuleGetCapabilities);
EXPORT_SYMBOL(NvRmPhysicalMemMap);
EXPORT_SYMBOL(NvRmPhysicalMemUnmap);
EXPORT_SYMBOL(NvRmPowerBusyHint);
EXPORT_SYMBOL(NvRmPowerGetEvent);
EXPORT_SYMBOL(NvRmPowerModuleClockConfig);
EXPORT_SYMBOL(NvRmPowerModuleClockControl);
EXPORT_SYMBOL(NvRmPowerRegister);
EXPORT_SYMBOL(NvRmPowerVoltageControl);
EXPORT_SYMBOL(NvRmRmcTrace);
EXPORT_SYMBOL(NvRmSpiOpen);
EXPORT_SYMBOL(NvRmSpiClose);
EXPORT_SYMBOL(NvRmSpiStartTransaction);
EXPORT_SYMBOL(NvRmSpiGetTransactionData);