Merge tag 'drm-misc-next-2023-09-27' of git://anongit.freedesktop.org/drm/drm-misc...
[linux-2.6-microblaze.git] / drivers / gpu / drm / nouveau / nvkm / engine / disp / uconn.c
1 /*
2  * Copyright 2021 Red Hat Inc.
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 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.
21  */
22 #define nvkm_uconn(p) container_of((p), struct nvkm_conn, object)
23 #include "conn.h"
24 #include "outp.h"
25
26 #include <core/client.h>
27 #include <core/event.h>
28 #include <subdev/gpio.h>
29 #include <subdev/i2c.h>
30
31 #include <nvif/if0011.h>
32
33 static int
34 nvkm_uconn_uevent_aux(struct nvkm_object *object, u64 token, u32 bits)
35 {
36         union nvif_conn_event_args args;
37
38         args.v0.version = 0;
39         args.v0.types = 0;
40         if (bits & NVKM_I2C_PLUG)
41                 args.v0.types |= NVIF_CONN_EVENT_V0_PLUG;
42         if (bits & NVKM_I2C_UNPLUG)
43                 args.v0.types |= NVIF_CONN_EVENT_V0_UNPLUG;
44         if (bits & NVKM_I2C_IRQ)
45                 args.v0.types |= NVIF_CONN_EVENT_V0_IRQ;
46
47         return object->client->event(token, &args, sizeof(args.v0));
48 }
49
50 static int
51 nvkm_uconn_uevent_gpio(struct nvkm_object *object, u64 token, u32 bits)
52 {
53         union nvif_conn_event_args args;
54
55         args.v0.version = 0;
56         args.v0.types = 0;
57         if (bits & NVKM_GPIO_HI)
58                 args.v0.types |= NVIF_CONN_EVENT_V0_PLUG;
59         if (bits & NVKM_GPIO_LO)
60                 args.v0.types |= NVIF_CONN_EVENT_V0_UNPLUG;
61
62         return object->client->event(token, &args, sizeof(args.v0));
63 }
64
65 static int
66 nvkm_uconn_uevent(struct nvkm_object *object, void *argv, u32 argc, struct nvkm_uevent *uevent)
67 {
68         struct nvkm_conn *conn = nvkm_uconn(object);
69         struct nvkm_device *device = conn->disp->engine.subdev.device;
70         struct nvkm_outp *outp;
71         union nvif_conn_event_args *args = argv;
72         u64 bits = 0;
73
74         if (!uevent) {
75                 if (conn->info.hpd == DCB_GPIO_UNUSED)
76                         return -ENOSYS;
77                 return 0;
78         }
79
80         if (argc != sizeof(args->v0) || args->v0.version != 0)
81                 return -ENOSYS;
82
83         list_for_each_entry(outp, &conn->disp->outps, head) {
84                 if (outp->info.connector == conn->index)
85                         break;
86         }
87
88         if (&outp->head == &conn->disp->outps)
89                 return -EINVAL;
90
91         if (outp->dp.aux && !outp->info.location) {
92                 if (args->v0.types & NVIF_CONN_EVENT_V0_PLUG  ) bits |= NVKM_I2C_PLUG;
93                 if (args->v0.types & NVIF_CONN_EVENT_V0_UNPLUG) bits |= NVKM_I2C_UNPLUG;
94                 if (args->v0.types & NVIF_CONN_EVENT_V0_IRQ   ) bits |= NVKM_I2C_IRQ;
95
96                 return nvkm_uevent_add(uevent, &device->i2c->event, outp->dp.aux->id, bits,
97                                        nvkm_uconn_uevent_aux);
98         }
99
100         if (args->v0.types & NVIF_CONN_EVENT_V0_PLUG  ) bits |= NVKM_GPIO_HI;
101         if (args->v0.types & NVIF_CONN_EVENT_V0_UNPLUG) bits |= NVKM_GPIO_LO;
102         if (args->v0.types & NVIF_CONN_EVENT_V0_IRQ) {
103                 /* TODO: support DP IRQ on ANX9805 and remove this hack. */
104                 if (!outp->info.location)
105                         return -EINVAL;
106         }
107
108         return nvkm_uevent_add(uevent, &device->gpio->event, conn->info.hpd, bits,
109                                nvkm_uconn_uevent_gpio);
110 }
111
112 static void *
113 nvkm_uconn_dtor(struct nvkm_object *object)
114 {
115         struct nvkm_conn *conn = nvkm_uconn(object);
116         struct nvkm_disp *disp = conn->disp;
117
118         spin_lock(&disp->client.lock);
119         conn->object.func = NULL;
120         spin_unlock(&disp->client.lock);
121         return NULL;
122 }
123
124 static const struct nvkm_object_func
125 nvkm_uconn = {
126         .dtor = nvkm_uconn_dtor,
127         .uevent = nvkm_uconn_uevent,
128 };
129
130 int
131 nvkm_uconn_new(const struct nvkm_oclass *oclass, void *argv, u32 argc, struct nvkm_object **pobject)
132 {
133         struct nvkm_disp *disp = nvkm_udisp(oclass->parent);
134         struct nvkm_conn *cont, *conn = NULL;
135         union nvif_conn_args *args = argv;
136         int ret;
137
138         if (argc != sizeof(args->v0) || args->v0.version != 0)
139                 return -ENOSYS;
140
141         list_for_each_entry(cont, &disp->conns, head) {
142                 if (cont->index == args->v0.id) {
143                         conn = cont;
144                         break;
145                 }
146         }
147
148         if (!conn)
149                 return -EINVAL;
150
151         ret = -EBUSY;
152         spin_lock(&disp->client.lock);
153         if (!conn->object.func) {
154                 switch (conn->info.type) {
155                 case DCB_CONNECTOR_VGA      : args->v0.type = NVIF_CONN_V0_VGA; break;
156                 case DCB_CONNECTOR_TV_0     :
157                 case DCB_CONNECTOR_TV_1     :
158                 case DCB_CONNECTOR_TV_3     : args->v0.type = NVIF_CONN_V0_TV; break;
159                 case DCB_CONNECTOR_DMS59_0  :
160                 case DCB_CONNECTOR_DMS59_1  :
161                 case DCB_CONNECTOR_DVI_I    : args->v0.type = NVIF_CONN_V0_DVI_I; break;
162                 case DCB_CONNECTOR_DVI_D    : args->v0.type = NVIF_CONN_V0_DVI_D; break;
163                 case DCB_CONNECTOR_LVDS     : args->v0.type = NVIF_CONN_V0_LVDS; break;
164                 case DCB_CONNECTOR_LVDS_SPWG: args->v0.type = NVIF_CONN_V0_LVDS_SPWG; break;
165                 case DCB_CONNECTOR_DMS59_DP0:
166                 case DCB_CONNECTOR_DMS59_DP1:
167                 case DCB_CONNECTOR_DP       :
168                 case DCB_CONNECTOR_mDP      :
169                 case DCB_CONNECTOR_USB_C    : args->v0.type = NVIF_CONN_V0_DP; break;
170                 case DCB_CONNECTOR_eDP      : args->v0.type = NVIF_CONN_V0_EDP; break;
171                 case DCB_CONNECTOR_HDMI_0   :
172                 case DCB_CONNECTOR_HDMI_1   :
173                 case DCB_CONNECTOR_HDMI_C   : args->v0.type = NVIF_CONN_V0_HDMI; break;
174                 default:
175                         WARN_ON(1);
176                         ret = -EINVAL;
177                         break;
178                 }
179
180                 nvkm_object_ctor(&nvkm_uconn, oclass, &conn->object);
181                 *pobject = &conn->object;
182                 ret = 0;
183         }
184         spin_unlock(&disp->client.lock);
185         return ret;
186 }