2 * Copyright 2016 Red Hat Inc.
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:
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
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 COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
22 * Authors: Ben Skeggs <bskeggs@redhat.com>
26 struct nvkm_top_device
*
27 nvkm_top_device_new(struct nvkm_top
*top
)
29 struct nvkm_top_device
*info
= kmalloc(sizeof(*info
), GFP_KERNEL
);
31 info
->index
= NVKM_SUBDEV_NR
;
38 list_add_tail(&info
->head
, &top
->device
);
44 nvkm_top_addr(struct nvkm_device
*device
, enum nvkm_devidx index
)
46 struct nvkm_top
*top
= device
->top
;
47 struct nvkm_top_device
*info
;
50 list_for_each_entry(info
, &top
->device
, head
) {
51 if (info
->index
== index
)
60 nvkm_top_reset(struct nvkm_device
*device
, enum nvkm_devidx index
)
62 struct nvkm_top
*top
= device
->top
;
63 struct nvkm_top_device
*info
;
66 list_for_each_entry(info
, &top
->device
, head
) {
67 if (info
->index
== index
&& info
->reset
>= 0)
68 return BIT(info
->reset
);
76 nvkm_top_intr_mask(struct nvkm_device
*device
, enum nvkm_devidx devidx
)
78 struct nvkm_top
*top
= device
->top
;
79 struct nvkm_top_device
*info
;
82 list_for_each_entry(info
, &top
->device
, head
) {
83 if (info
->index
== devidx
&& info
->intr
>= 0)
84 return BIT(info
->intr
);
92 nvkm_top_intr(struct nvkm_device
*device
, u32 intr
, u64
*psubdevs
)
94 struct nvkm_top
*top
= device
->top
;
95 struct nvkm_top_device
*info
;
100 list_for_each_entry(info
, &top
->device
, head
) {
101 if (info
->index
!= NVKM_SUBDEV_NR
&& info
->intr
>= 0) {
102 if (intr
& BIT(info
->intr
)) {
103 subdevs
|= BIT_ULL(info
->index
);
104 handled
|= BIT(info
->intr
);
111 return intr
& ~handled
;
115 nvkm_top_fault_id(struct nvkm_device
*device
, enum nvkm_devidx devidx
)
117 struct nvkm_top
*top
= device
->top
;
118 struct nvkm_top_device
*info
;
120 list_for_each_entry(info
, &top
->device
, head
) {
121 if (info
->index
== devidx
&& info
->fault
>= 0)
129 nvkm_top_fault(struct nvkm_device
*device
, int fault
)
131 struct nvkm_top
*top
= device
->top
;
132 struct nvkm_top_device
*info
;
134 list_for_each_entry(info
, &top
->device
, head
) {
135 if (info
->fault
== fault
)
139 return NVKM_SUBDEV_NR
;
143 nvkm_top_engine(struct nvkm_device
*device
, int index
, int *runl
, int *engn
)
145 struct nvkm_top
*top
= device
->top
;
146 struct nvkm_top_device
*info
;
149 list_for_each_entry(info
, &top
->device
, head
) {
150 if (info
->engine
>= 0 && info
->runlist
>= 0 && n
++ == index
) {
151 *runl
= info
->runlist
;
152 *engn
= info
->engine
;
161 nvkm_top_oneinit(struct nvkm_subdev
*subdev
)
163 struct nvkm_top
*top
= nvkm_top(subdev
);
164 return top
->func
->oneinit(top
);
168 nvkm_top_dtor(struct nvkm_subdev
*subdev
)
170 struct nvkm_top
*top
= nvkm_top(subdev
);
171 struct nvkm_top_device
*info
, *temp
;
173 list_for_each_entry_safe(info
, temp
, &top
->device
, head
) {
174 list_del(&info
->head
);
181 static const struct nvkm_subdev_func
183 .dtor
= nvkm_top_dtor
,
184 .oneinit
= nvkm_top_oneinit
,
188 nvkm_top_new_(const struct nvkm_top_func
*func
, struct nvkm_device
*device
,
189 int index
, struct nvkm_top
**ptop
)
191 struct nvkm_top
*top
;
192 if (!(top
= *ptop
= kzalloc(sizeof(*top
), GFP_KERNEL
)))
194 nvkm_subdev_ctor(&nvkm_top
, device
, index
, &top
->subdev
);
196 INIT_LIST_HEAD(&top
->device
);