summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/os/posix/clk_arb.c
diff options
context:
space:
mode:
authorAlex Waterman <alexw@nvidia.com>2018-08-15 19:32:37 -0400
committermobile promotions <svcmobile_promotions@nvidia.com>2018-08-17 16:54:25 -0400
commitb15624b39b9b19ba139776e2a917bcd4e361c01e (patch)
tree0944c60323eb7565cfa84759abc16d69600d0dd7 /drivers/gpu/nvgpu/os/posix/clk_arb.c
parent9feeae658acc2c997ef05b669ace8a0621e68ebb (diff)
gpu: nvgpu: posix: move the posix dir to os
Since the posix code is supporting a particular OS this code should belong under os/ not common/. Change-Id: Idf5f75b8ab9d614c9dd43ea23dab8df3c346c0ef Signed-off-by: Alex Waterman <alexw@nvidia.com> Reviewed-on: https://git-master.nvidia.com/r/1800658 Reviewed-by: mobile promotions <svcmobile_promotions@nvidia.com> Tested-by: mobile promotions <svcmobile_promotions@nvidia.com>
Diffstat (limited to 'drivers/gpu/nvgpu/os/posix/clk_arb.c')
-rw-r--r--drivers/gpu/nvgpu/os/posix/clk_arb.c149
1 files changed, 149 insertions, 0 deletions
diff --git a/drivers/gpu/nvgpu/os/posix/clk_arb.c b/drivers/gpu/nvgpu/os/posix/clk_arb.c
new file mode 100644
index 00000000..2214b37b
--- /dev/null
+++ b/drivers/gpu/nvgpu/os/posix/clk_arb.c
@@ -0,0 +1,149 @@
1/*
2 * Copyright (c) 2018, NVIDIA CORPORATION. All rights reserved.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
19 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
20 * DEALINGS IN THE SOFTWARE.
21 */
22
23#include <nvgpu/list.h>
24#include <nvgpu/clk_arb.h>
25
26/**
27 * Stub imlementation of the clk_arb code. Yikes. Much of this probably could be
28 * commonized if one were to think through the implementation but that is
29 * probably weeks of work at a minimum.
30 *
31 * So for POSIX it will be stubbed.
32 */
33
34int nvgpu_clk_arb_init_arbiter(struct gk20a *g)
35{
36 return -ENOSYS;
37}
38
39int nvgpu_clk_arb_get_arbiter_clk_range(struct gk20a *g, u32 api_domain,
40 u16 *min_mhz, u16 *max_mhz)
41{
42 return -ENOSYS;
43}
44
45int nvgpu_clk_arb_get_arbiter_actual_mhz(struct gk20a *g,
46 u32 api_domain, u16 *actual_mhz)
47{
48 return -ENOSYS;
49}
50
51int nvgpu_clk_arb_get_arbiter_effective_mhz(struct gk20a *g,
52 u32 api_domain, u16 *effective_mhz)
53{
54 return -ENOSYS;
55}
56
57
58int nvgpu_clk_arb_get_arbiter_clk_f_points(struct gk20a *g,
59 u32 api_domain,
60 u32 *max_points, u16 *fpoints)
61{
62 return -ENOSYS;
63}
64
65u32 nvgpu_clk_arb_get_arbiter_clk_domains(struct gk20a *g)
66{
67 return 0;
68}
69
70bool nvgpu_clk_arb_is_valid_domain(struct gk20a *g, u32 api_domain)
71{
72 return false;
73}
74
75void nvgpu_clk_arb_cleanup_arbiter(struct gk20a *g)
76{
77}
78
79int nvgpu_clk_arb_install_session_fd(struct gk20a *g,
80 struct nvgpu_clk_session *session)
81{
82 return -ENOSYS;
83}
84
85
86int nvgpu_clk_arb_init_session(struct gk20a *g,
87 struct nvgpu_clk_session **_session)
88{
89 return -ENOSYS;
90}
91
92void nvgpu_clk_arb_release_session(struct gk20a *g,
93 struct nvgpu_clk_session *session)
94{
95}
96
97int nvgpu_clk_arb_commit_request_fd(struct gk20a *g,
98 struct nvgpu_clk_session *session,
99 int request_fd)
100{
101 return -ENOSYS;
102}
103
104int nvgpu_clk_arb_set_session_target_mhz(struct nvgpu_clk_session *session,
105 int fd, u32 api_domain, u16 target_mhz)
106{
107 return -ENOSYS;
108}
109
110int nvgpu_clk_arb_get_session_target_mhz(struct nvgpu_clk_session *session,
111 u32 api_domain, u16 *target_mhz)
112{
113 return -ENOSYS;
114}
115
116int nvgpu_clk_arb_install_event_fd(struct gk20a *g,
117 struct nvgpu_clk_session *session,
118 int *event_fd, u32 alarm_mask)
119{
120 return -ENOSYS;
121}
122
123int nvgpu_clk_arb_install_request_fd(struct gk20a *g,
124 struct nvgpu_clk_session *session,
125 int *event_fd)
126{
127 return -ENOSYS;
128}
129
130void nvgpu_clk_arb_schedule_vf_table_update(struct gk20a *g)
131{
132}
133
134int nvgpu_clk_arb_get_current_pstate(struct gk20a *g)
135{
136 return -ENOSYS;
137}
138
139void nvgpu_clk_arb_pstate_change_lock(struct gk20a *g, bool lock)
140{
141}
142
143void nvgpu_clk_arb_send_thermal_alarm(struct gk20a *g)
144{
145}
146
147void nvgpu_clk_arb_schedule_alarm(struct gk20a *g, u32 alarm)
148{
149}