xref: /linux/drivers/gpu/drm/nouveau/nvkm/engine/disp/uconn.c (revision 2cfad4b0489cc13a1f980782ca4af070e2675128)
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 bool
66 nvkm_connector_is_dp_dms(u8 type)
67 {
68 	switch (type) {
69 	case DCB_CONNECTOR_DMS59_DP0:
70 	case DCB_CONNECTOR_DMS59_DP1:
71 		return true;
72 	default:
73 		return false;
74 	}
75 }
76 
77 static int
78 nvkm_uconn_uevent(struct nvkm_object *object, void *argv, u32 argc, struct nvkm_uevent *uevent)
79 {
80 	struct nvkm_conn *conn = nvkm_uconn(object);
81 	struct nvkm_device *device = conn->disp->engine.subdev.device;
82 	struct nvkm_outp *outp;
83 	union nvif_conn_event_args *args = argv;
84 	u64 bits = 0;
85 
86 	if (!uevent) {
87 		if (conn->info.hpd == DCB_GPIO_UNUSED)
88 			return -ENOSYS;
89 		return 0;
90 	}
91 
92 	if (argc != sizeof(args->v0) || args->v0.version != 0)
93 		return -ENOSYS;
94 
95 	list_for_each_entry(outp, &conn->disp->outps, head) {
96 		if (outp->info.connector == conn->index)
97 			break;
98 	}
99 
100 	if (&outp->head == &conn->disp->outps)
101 		return -EINVAL;
102 
103 	if (outp->dp.aux && !outp->info.location) {
104 		if (args->v0.types & NVIF_CONN_EVENT_V0_PLUG  ) bits |= NVKM_I2C_PLUG;
105 		if (args->v0.types & NVIF_CONN_EVENT_V0_UNPLUG) bits |= NVKM_I2C_UNPLUG;
106 		if (args->v0.types & NVIF_CONN_EVENT_V0_IRQ   ) bits |= NVKM_I2C_IRQ;
107 
108 		return nvkm_uevent_add(uevent, &device->i2c->event, outp->dp.aux->id, bits,
109 				       nvkm_uconn_uevent_aux);
110 	}
111 
112 	if (args->v0.types & NVIF_CONN_EVENT_V0_PLUG  ) bits |= NVKM_GPIO_HI;
113 	if (args->v0.types & NVIF_CONN_EVENT_V0_UNPLUG) bits |= NVKM_GPIO_LO;
114 	if (args->v0.types & NVIF_CONN_EVENT_V0_IRQ) {
115 		/* TODO: support DP IRQ on ANX9805 and remove this hack. */
116 		if (!outp->info.location && !nvkm_connector_is_dp_dms(conn->info.type))
117 			return -EINVAL;
118 	}
119 
120 	return nvkm_uevent_add(uevent, &device->gpio->event, conn->info.hpd, bits,
121 			       nvkm_uconn_uevent_gpio);
122 }
123 
124 static void *
125 nvkm_uconn_dtor(struct nvkm_object *object)
126 {
127 	struct nvkm_conn *conn = nvkm_uconn(object);
128 	struct nvkm_disp *disp = conn->disp;
129 
130 	spin_lock(&disp->client.lock);
131 	conn->object.func = NULL;
132 	spin_unlock(&disp->client.lock);
133 	return NULL;
134 }
135 
136 static const struct nvkm_object_func
137 nvkm_uconn = {
138 	.dtor = nvkm_uconn_dtor,
139 	.uevent = nvkm_uconn_uevent,
140 };
141 
142 int
143 nvkm_uconn_new(const struct nvkm_oclass *oclass, void *argv, u32 argc, struct nvkm_object **pobject)
144 {
145 	struct nvkm_disp *disp = nvkm_udisp(oclass->parent);
146 	struct nvkm_conn *cont, *conn = NULL;
147 	union nvif_conn_args *args = argv;
148 	int ret;
149 
150 	if (argc != sizeof(args->v0) || args->v0.version != 0)
151 		return -ENOSYS;
152 
153 	list_for_each_entry(cont, &disp->conns, head) {
154 		if (cont->index == args->v0.id) {
155 			conn = cont;
156 			break;
157 		}
158 	}
159 
160 	if (!conn)
161 		return -EINVAL;
162 
163 	ret = -EBUSY;
164 	spin_lock(&disp->client.lock);
165 	if (!conn->object.func) {
166 		switch (conn->info.type) {
167 		case DCB_CONNECTOR_VGA      : args->v0.type = NVIF_CONN_V0_VGA; break;
168 		case DCB_CONNECTOR_TV_0     :
169 		case DCB_CONNECTOR_TV_1     :
170 		case DCB_CONNECTOR_TV_3     : args->v0.type = NVIF_CONN_V0_TV; break;
171 		case DCB_CONNECTOR_DMS59_0  :
172 		case DCB_CONNECTOR_DMS59_1  :
173 		case DCB_CONNECTOR_DVI_I    : args->v0.type = NVIF_CONN_V0_DVI_I; break;
174 		case DCB_CONNECTOR_DVI_D    : args->v0.type = NVIF_CONN_V0_DVI_D; break;
175 		case DCB_CONNECTOR_LVDS     : args->v0.type = NVIF_CONN_V0_LVDS; break;
176 		case DCB_CONNECTOR_LVDS_SPWG: args->v0.type = NVIF_CONN_V0_LVDS_SPWG; break;
177 		case DCB_CONNECTOR_DMS59_DP0:
178 		case DCB_CONNECTOR_DMS59_DP1:
179 		case DCB_CONNECTOR_DP       :
180 		case DCB_CONNECTOR_mDP      :
181 		case DCB_CONNECTOR_USB_C    : args->v0.type = NVIF_CONN_V0_DP; break;
182 		case DCB_CONNECTOR_eDP      : args->v0.type = NVIF_CONN_V0_EDP; break;
183 		case DCB_CONNECTOR_HDMI_0   :
184 		case DCB_CONNECTOR_HDMI_1   :
185 		case DCB_CONNECTOR_HDMI_C   : args->v0.type = NVIF_CONN_V0_HDMI; break;
186 		default:
187 			WARN_ON(1);
188 			ret = -EINVAL;
189 			break;
190 		}
191 
192 		nvkm_object_ctor(&nvkm_uconn, oclass, &conn->object);
193 		*pobject = &conn->object;
194 		ret = 0;
195 	}
196 	spin_unlock(&disp->client.lock);
197 	return ret;
198 }
199