summaryrefslogtreecommitdiffstats
path: root/drivers/gpu/nvgpu/boardobj/boardobjgrp_e32.h
diff options
context:
space:
mode:
Diffstat (limited to 'drivers/gpu/nvgpu/boardobj/boardobjgrp_e32.h')
-rw-r--r--drivers/gpu/nvgpu/boardobj/boardobjgrp_e32.h59
1 files changed, 59 insertions, 0 deletions
diff --git a/drivers/gpu/nvgpu/boardobj/boardobjgrp_e32.h b/drivers/gpu/nvgpu/boardobj/boardobjgrp_e32.h
new file mode 100644
index 00000000..249d1dd6
--- /dev/null
+++ b/drivers/gpu/nvgpu/boardobj/boardobjgrp_e32.h
@@ -0,0 +1,59 @@
1/*
2 * Copyright (c) 2016, NVIDIA CORPORATION. All rights reserved.
3 *
4 * This program is free software; you can redistribute it and/or modify it
5 * under the terms and conditions of the GNU General Public License,
6 * version 2, as published by the Free Software Foundation.
7 *
8 * This program is distributed in the hope it will be useful, but WITHOUT
9 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
10 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
11 * more details.
12 */
13
14#ifndef _BOARDOBJGRP_E32_H_
15#define _BOARDOBJGRP_E32_H_
16
17#include <linux/nvgpu.h>
18#include "gk20a/gk20a.h"
19#include "gk20a/pmu_gk20a.h"
20#include "ctrl/ctrlboardobj.h"
21#include "boardobj.h"
22#include "boardobjgrp.h"
23#include "boardobjgrpmask.h"
24#include "boardobj/boardobjgrp.h"
25
26/*
27 * boardobjgrp_e32 is @ref BOARDOBJGRP child class allowing storage of up to 32
28 * @ref BOARDOBJ object pointers with single static 32-bit mask denoting valid
29 * object pointers.
30 */
31struct boardobjgrp_e32 {
32 /*
33 * BOARDOBJGRP super-class. Must be first element of the structure.
34 */
35 struct boardobjgrp super;
36 /*
37 * Statically allocated array of PBOARDOBJ-s
38 */
39 struct boardobj *objects[CTRL_BOARDOBJGRP_E32_MAX_OBJECTS];
40
41 /*
42 * Statically allocated mask strcuture referenced by super::pMask.
43 */
44 struct boardobjgrpmask_e32 mask;
45};
46
47/*
48 * Wrapper to the _SUPER implementation. Provided for the child classes which
49 * implement this interface.
50 */
51#define boardobjgrp_pmudatainit_e32(g, pboardpbjgrp, pboardobjgrppmu) \
52 boardobjgrp_pmudatainit_super(g, pboardpbjgrp, pboardobjgrppmu)
53
54/* Constructor and destructor */
55u32 boardobjgrpconstruct_e32(struct boardobjgrp_e32 *pboardobjgrp);
56boardobjgrp_destruct boardobjgrpdestruct_e32;
57boardobjgrp_pmuhdrdatainit boardobjgrp_pmuhdrdatainit_e32;
58
59#endif