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 int
113 nvkm_uconn_mthd_hpd_status(struct nvkm_conn *conn, void *argv, u32 argc)
114 {
115 	struct nvkm_gpio *gpio = conn->disp->engine.subdev.device->gpio;
116 	union nvif_conn_hpd_status_args *args = argv;
117 
118 	if (argc != sizeof(args->v0) || args->v0.version != 0)
119 		return -ENOSYS;
120 
121 	args->v0.support = gpio && conn->info.hpd != DCB_GPIO_UNUSED;
122 	args->v0.present = 0;
123 
124 	if (args->v0.support) {
125 		int ret = nvkm_gpio_get(gpio, 0, DCB_GPIO_UNUSED, conn->info.hpd);
126 
127 		if (WARN_ON(ret < 0)) {
128 			args->v0.support = false;
129 			return 0;
130 		}
131 
132 		args->v0.present = ret;
133 	}
134 
135 	return 0;
136 }
137 
138 static int
139 nvkm_uconn_mthd(struct nvkm_object *object, u32 mthd, void *argv, u32 argc)
140 {
141 	struct nvkm_conn *conn = nvkm_uconn(object);
142 
143 	switch (mthd) {
144 	case NVIF_CONN_V0_HPD_STATUS: return nvkm_uconn_mthd_hpd_status(conn, argv, argc);
145 	default:
146 		break;
147 	}
148 
149 	return -EINVAL;
150 }
151 
152 static void *
153 nvkm_uconn_dtor(struct nvkm_object *object)
154 {
155 	struct nvkm_conn *conn = nvkm_uconn(object);
156 	struct nvkm_disp *disp = conn->disp;
157 
158 	spin_lock(&disp->client.lock);
159 	conn->object.func = NULL;
160 	spin_unlock(&disp->client.lock);
161 	return NULL;
162 }
163 
164 static const struct nvkm_object_func
165 nvkm_uconn = {
166 	.dtor = nvkm_uconn_dtor,
167 	.mthd = nvkm_uconn_mthd,
168 	.uevent = nvkm_uconn_uevent,
169 };
170 
171 int
172 nvkm_uconn_new(const struct nvkm_oclass *oclass, void *argv, u32 argc, struct nvkm_object **pobject)
173 {
174 	struct nvkm_disp *disp = nvkm_udisp(oclass->parent);
175 	struct nvkm_conn *cont, *conn = NULL;
176 	union nvif_conn_args *args = argv;
177 	int ret;
178 
179 	if (argc != sizeof(args->v0) || args->v0.version != 0)
180 		return -ENOSYS;
181 
182 	list_for_each_entry(cont, &disp->conns, head) {
183 		if (cont->index == args->v0.id) {
184 			conn = cont;
185 			break;
186 		}
187 	}
188 
189 	if (!conn)
190 		return -EINVAL;
191 
192 	ret = -EBUSY;
193 	spin_lock(&disp->client.lock);
194 	if (!conn->object.func) {
195 		nvkm_object_ctor(&nvkm_uconn, oclass, &conn->object);
196 		*pobject = &conn->object;
197 		ret = 0;
198 	}
199 	spin_unlock(&disp->client.lock);
200 	return ret;
201 }
202