]> git.karo-electronics.de Git - karo-tx-linux.git/blob - drivers/gpu/drm/nouveau/nvkm/engine/sec2/base.c
814daf35e21f32bc2952c15b09784a7faad4f3e5
[karo-tx-linux.git] / drivers / gpu / drm / nouveau / nvkm / engine / sec2 / base.c
1 /*
2  * Copyright (c) 2017, 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 #include "priv.h"
23
24 #include <core/msgqueue.h>
25 #include <engine/falcon.h>
26
27 static void *
28 nvkm_sec2_dtor(struct nvkm_engine *engine)
29 {
30         struct nvkm_sec2 *sec2 = nvkm_sec2(engine);
31         nvkm_msgqueue_del(&sec2->queue);
32         nvkm_falcon_del(&sec2->falcon);
33         return sec2;
34 }
35
36 static void
37 nvkm_sec2_intr(struct nvkm_engine *engine)
38 {
39         struct nvkm_sec2 *sec2 = nvkm_sec2(engine);
40         struct nvkm_subdev *subdev = &engine->subdev;
41         struct nvkm_device *device = subdev->device;
42         u32 disp = nvkm_rd32(device, 0x8701c);
43         u32 intr = nvkm_rd32(device, 0x87008) & disp & ~(disp >> 16);
44
45         if (intr & 0x00000040) {
46                 schedule_work(&sec2->work);
47                 nvkm_wr32(device, 0x87004, 0x00000040);
48                 intr &= ~0x00000040;
49         }
50
51         if (intr) {
52                 nvkm_error(subdev, "unhandled intr %08x\n", intr);
53                 nvkm_wr32(device, 0x87004, intr);
54
55         }
56 }
57
58 static void
59 nvkm_sec2_recv(struct work_struct *work)
60 {
61         struct nvkm_sec2 *sec2 = container_of(work, typeof(*sec2), work);
62         nvkm_msgqueue_recv(sec2->queue);
63 }
64
65
66 static int
67 nvkm_sec2_oneinit(struct nvkm_engine *engine)
68 {
69         struct nvkm_sec2 *sec2 = nvkm_sec2(engine);
70         return nvkm_falcon_v1_new(&sec2->engine.subdev, "SEC2", 0x87000,
71                                   &sec2->falcon);
72 }
73
74 static int
75 nvkm_sec2_fini(struct nvkm_engine *engine, bool suspend)
76 {
77         struct nvkm_sec2 *sec2 = nvkm_sec2(engine);
78         flush_work(&sec2->work);
79         return 0;
80 }
81
82 static const struct nvkm_engine_func
83 nvkm_sec2 = {
84         .dtor = nvkm_sec2_dtor,
85         .oneinit = nvkm_sec2_oneinit,
86         .fini = nvkm_sec2_fini,
87         .intr = nvkm_sec2_intr,
88 };
89
90 int
91 nvkm_sec2_new_(struct nvkm_device *device, int index,
92                struct nvkm_sec2 **psec2)
93 {
94         struct nvkm_sec2 *sec2;
95
96         if (!(sec2 = *psec2 = kzalloc(sizeof(*sec2), GFP_KERNEL)))
97                 return -ENOMEM;
98         INIT_WORK(&sec2->work, nvkm_sec2_recv);
99
100         return nvkm_engine_ctor(&nvkm_sec2, device, index, true, &sec2->engine);
101 };