Blame view

drivers/thunderbolt/tb.c 10.4 KB
d6cc51cd1   Andreas Noever   thunderbolt: Setu...
1
2
3
4
5
6
7
8
9
10
11
  /*
   * Thunderbolt Cactus Ridge driver - bus logic (NHI independent)
   *
   * Copyright (c) 2014 Andreas Noever <andreas.noever@gmail.com>
   */
  
  #include <linux/slab.h>
  #include <linux/errno.h>
  #include <linux/delay.h>
  
  #include "tb.h"
7adf60972   Andreas Noever   thunderbolt: Add ...
12
  #include "tb_regs.h"
3364f0c12   Andreas Noever   thunderbolt: Add ...
13
  #include "tunnel_pci.h"
d6cc51cd1   Andreas Noever   thunderbolt: Setu...
14

9da672a42   Andreas Noever   thunderbolt: Scan...
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
  
  /* enumeration & hot plug handling */
  
  
  static void tb_scan_port(struct tb_port *port);
  
  /**
   * tb_scan_switch() - scan for and initialize downstream switches
   */
  static void tb_scan_switch(struct tb_switch *sw)
  {
  	int i;
  	for (i = 1; i <= sw->config.max_port_number; i++)
  		tb_scan_port(&sw->ports[i]);
  }
  
  /**
   * tb_scan_port() - check for and initialize switches below port
   */
  static void tb_scan_port(struct tb_port *port)
  {
  	struct tb_switch *sw;
  	if (tb_is_upstream_port(port))
  		return;
  	if (port->config.type != TB_TYPE_PORT)
  		return;
343fcb8c7   Andreas Noever   thunderbolt: Fix ...
41
42
43
44
45
  	if (port->dual_link_port && port->link_nr)
  		return; /*
  			 * Downstream switch is reachable through two ports.
  			 * Only scan on the primary port (link_nr == 0).
  			 */
9da672a42   Andreas Noever   thunderbolt: Scan...
46
47
48
49
50
51
52
53
54
55
56
57
58
59
  	if (tb_wait_for_port(port, false) <= 0)
  		return;
  	if (port->remote) {
  		tb_port_WARN(port, "port already has a remote!
  ");
  		return;
  	}
  	sw = tb_switch_alloc(port->sw->tb, tb_downstream_route(port));
  	if (!sw)
  		return;
  	port->remote = tb_upstream_port(sw);
  	tb_upstream_port(sw)->remote = port;
  	tb_scan_switch(sw);
  }
3364f0c12   Andreas Noever   thunderbolt: Add ...
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
  /**
   * tb_free_invalid_tunnels() - destroy tunnels of devices that have gone away
   */
  static void tb_free_invalid_tunnels(struct tb *tb)
  {
  	struct tb_pci_tunnel *tunnel;
  	struct tb_pci_tunnel *n;
  	list_for_each_entry_safe(tunnel, n, &tb->tunnel_list, list)
  	{
  		if (tb_pci_is_invalid(tunnel)) {
  			tb_pci_deactivate(tunnel);
  			tb_pci_free(tunnel);
  		}
  	}
  }
  
  /**
23dd5bb49   Andreas Noever   thunderbolt: Add ...
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
   * tb_free_unplugged_children() - traverse hierarchy and free unplugged switches
   */
  static void tb_free_unplugged_children(struct tb_switch *sw)
  {
  	int i;
  	for (i = 1; i <= sw->config.max_port_number; i++) {
  		struct tb_port *port = &sw->ports[i];
  		if (tb_is_upstream_port(port))
  			continue;
  		if (!port->remote)
  			continue;
  		if (port->remote->sw->is_unplugged) {
  			tb_switch_free(port->remote->sw);
  			port->remote = NULL;
  		} else {
  			tb_free_unplugged_children(port->remote->sw);
  		}
  	}
  }
  
  
  /**
3364f0c12   Andreas Noever   thunderbolt: Add ...
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
   * find_pci_up_port() - return the first PCIe up port on @sw or NULL
   */
  static struct tb_port *tb_find_pci_up_port(struct tb_switch *sw)
  {
  	int i;
  	for (i = 1; i <= sw->config.max_port_number; i++)
  		if (sw->ports[i].config.type == TB_TYPE_PCIE_UP)
  			return &sw->ports[i];
  	return NULL;
  }
  
  /**
   * find_unused_down_port() - return the first inactive PCIe down port on @sw
   */
  static struct tb_port *tb_find_unused_down_port(struct tb_switch *sw)
  {
  	int i;
  	int cap;
  	int res;
  	int data;
  	for (i = 1; i <= sw->config.max_port_number; i++) {
  		if (tb_is_upstream_port(&sw->ports[i]))
  			continue;
  		if (sw->ports[i].config.type != TB_TYPE_PCIE_DOWN)
  			continue;
  		cap = tb_find_cap(&sw->ports[i], TB_CFG_PORT, TB_CAP_PCIE);
  		if (cap <= 0)
  			continue;
  		res = tb_port_read(&sw->ports[i], &data, TB_CFG_PORT, cap, 1);
  		if (res < 0)
  			continue;
  		if (data & 0x80000000)
  			continue;
  		return &sw->ports[i];
  	}
  	return NULL;
  }
  
  /**
   * tb_activate_pcie_devices() - scan for and activate PCIe devices
   *
   * This method is somewhat ad hoc. For now it only supports one device
   * per port and only devices at depth 1.
   */
  static void tb_activate_pcie_devices(struct tb *tb)
  {
  	int i;
  	int cap;
  	u32 data;
  	struct tb_switch *sw;
  	struct tb_port *up_port;
  	struct tb_port *down_port;
  	struct tb_pci_tunnel *tunnel;
  	/* scan for pcie devices at depth 1*/
  	for (i = 1; i <= tb->root_switch->config.max_port_number; i++) {
  		if (tb_is_upstream_port(&tb->root_switch->ports[i]))
  			continue;
  		if (tb->root_switch->ports[i].config.type != TB_TYPE_PORT)
  			continue;
  		if (!tb->root_switch->ports[i].remote)
  			continue;
  		sw = tb->root_switch->ports[i].remote->sw;
  		up_port = tb_find_pci_up_port(sw);
  		if (!up_port) {
  			tb_sw_info(sw, "no PCIe devices found, aborting
  ");
  			continue;
  		}
  
  		/* check whether port is already activated */
  		cap = tb_find_cap(up_port, TB_CFG_PORT, TB_CAP_PCIE);
  		if (cap <= 0)
  			continue;
  		if (tb_port_read(up_port, &data, TB_CFG_PORT, cap, 1))
  			continue;
  		if (data & 0x80000000) {
  			tb_port_info(up_port,
  				     "PCIe port already activated, aborting
  ");
  			continue;
  		}
  
  		down_port = tb_find_unused_down_port(tb->root_switch);
  		if (!down_port) {
  			tb_port_info(up_port,
  				     "All PCIe down ports are occupied, aborting
  ");
  			continue;
  		}
  		tunnel = tb_pci_alloc(tb, up_port, down_port);
  		if (!tunnel) {
  			tb_port_info(up_port,
  				     "PCIe tunnel allocation failed, aborting
  ");
  			continue;
  		}
  
  		if (tb_pci_activate(tunnel)) {
  			tb_port_info(up_port,
  				     "PCIe tunnel activation failed, aborting
  ");
  			tb_pci_free(tunnel);
  		}
  
  	}
  }
9da672a42   Andreas Noever   thunderbolt: Scan...
205

d6cc51cd1   Andreas Noever   thunderbolt: Setu...
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
  /* hotplug handling */
  
  struct tb_hotplug_event {
  	struct work_struct work;
  	struct tb *tb;
  	u64 route;
  	u8 port;
  	bool unplug;
  };
  
  /**
   * tb_handle_hotplug() - handle hotplug event
   *
   * Executes on tb->wq.
   */
  static void tb_handle_hotplug(struct work_struct *work)
  {
  	struct tb_hotplug_event *ev = container_of(work, typeof(*ev), work);
  	struct tb *tb = ev->tb;
053596d9e   Andreas Noever   thunderbolt: Hand...
225
226
  	struct tb_switch *sw;
  	struct tb_port *port;
d6cc51cd1   Andreas Noever   thunderbolt: Setu...
227
228
229
  	mutex_lock(&tb->lock);
  	if (!tb->hotplug_active)
  		goto out; /* during init, suspend or shutdown */
053596d9e   Andreas Noever   thunderbolt: Hand...
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
  	sw = get_switch_at_route(tb->root_switch, ev->route);
  	if (!sw) {
  		tb_warn(tb,
  			"hotplug event from non existent switch %llx:%x (unplug: %d)
  ",
  			ev->route, ev->port, ev->unplug);
  		goto out;
  	}
  	if (ev->port > sw->config.max_port_number) {
  		tb_warn(tb,
  			"hotplug event from non existent port %llx:%x (unplug: %d)
  ",
  			ev->route, ev->port, ev->unplug);
  		goto out;
  	}
  	port = &sw->ports[ev->port];
  	if (tb_is_upstream_port(port)) {
  		tb_warn(tb,
  			"hotplug event for upstream port %llx:%x (unplug: %d)
  ",
  			ev->route, ev->port, ev->unplug);
  		goto out;
  	}
  	if (ev->unplug) {
  		if (port->remote) {
  			tb_port_info(port, "unplugged
  ");
aae20bb6b   Lukas Wunner   thunderbolt: Fix ...
257
  			tb_sw_set_unplugged(port->remote->sw);
3364f0c12   Andreas Noever   thunderbolt: Add ...
258
  			tb_free_invalid_tunnels(tb);
053596d9e   Andreas Noever   thunderbolt: Hand...
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
  			tb_switch_free(port->remote->sw);
  			port->remote = NULL;
  		} else {
  			tb_port_info(port,
  				     "got unplug event for disconnected port, ignoring
  ");
  		}
  	} else if (port->remote) {
  		tb_port_info(port,
  			     "got plug event for connected port, ignoring
  ");
  	} else {
  		tb_port_info(port, "hotplug: scanning
  ");
  		tb_scan_port(port);
  		if (!port->remote) {
  			tb_port_info(port, "hotplug: no switch found
  ");
  		} else if (port->remote->sw->config.depth > 1) {
  			tb_sw_warn(port->remote->sw,
  				   "hotplug: chaining not supported
  ");
3364f0c12   Andreas Noever   thunderbolt: Add ...
281
282
283
284
285
  		} else {
  			tb_sw_info(port->remote->sw,
  				   "hotplug: activating pcie devices
  ");
  			tb_activate_pcie_devices(tb);
053596d9e   Andreas Noever   thunderbolt: Hand...
286
287
  		}
  	}
d6cc51cd1   Andreas Noever   thunderbolt: Setu...
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
  out:
  	mutex_unlock(&tb->lock);
  	kfree(ev);
  }
  
  /**
   * tb_schedule_hotplug_handler() - callback function for the control channel
   *
   * Delegates to tb_handle_hotplug.
   */
  static void tb_schedule_hotplug_handler(void *data, u64 route, u8 port,
  					bool unplug)
  {
  	struct tb *tb = data;
  	struct tb_hotplug_event *ev = kmalloc(sizeof(*ev), GFP_KERNEL);
  	if (!ev)
  		return;
  	INIT_WORK(&ev->work, tb_handle_hotplug);
  	ev->tb = tb;
  	ev->route = route;
  	ev->port = port;
  	ev->unplug = unplug;
  	queue_work(tb->wq, &ev->work);
  }
  
  /**
   * thunderbolt_shutdown_and_free() - shutdown everything
   *
   * Free all switches and the config channel.
   *
   * Used in the error path of thunderbolt_alloc_and_start.
   */
  void thunderbolt_shutdown_and_free(struct tb *tb)
  {
3364f0c12   Andreas Noever   thunderbolt: Add ...
322
323
  	struct tb_pci_tunnel *tunnel;
  	struct tb_pci_tunnel *n;
d6cc51cd1   Andreas Noever   thunderbolt: Setu...
324
  	mutex_lock(&tb->lock);
3364f0c12   Andreas Noever   thunderbolt: Add ...
325
326
327
328
329
  	/* tunnels are only present after everything has been initialized */
  	list_for_each_entry_safe(tunnel, n, &tb->tunnel_list, list) {
  		tb_pci_deactivate(tunnel);
  		tb_pci_free(tunnel);
  	}
a25c8b2fc   Andreas Noever   thunderbolt: Init...
330
331
332
  	if (tb->root_switch)
  		tb_switch_free(tb->root_switch);
  	tb->root_switch = NULL;
d6cc51cd1   Andreas Noever   thunderbolt: Setu...
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
  	if (tb->ctl) {
  		tb_ctl_stop(tb->ctl);
  		tb_ctl_free(tb->ctl);
  	}
  	tb->ctl = NULL;
  	tb->hotplug_active = false; /* signal tb_handle_hotplug to quit */
  
  	/* allow tb_handle_hotplug to acquire the lock */
  	mutex_unlock(&tb->lock);
  	if (tb->wq) {
  		flush_workqueue(tb->wq);
  		destroy_workqueue(tb->wq);
  		tb->wq = NULL;
  	}
  	mutex_destroy(&tb->lock);
  	kfree(tb);
  }
  
  /**
   * thunderbolt_alloc_and_start() - setup the thunderbolt bus
   *
   * Allocates a tb_cfg control channel, initializes the root switch, enables
   * plug events and activates pci devices.
   *
   * Return: Returns NULL on error.
   */
  struct tb *thunderbolt_alloc_and_start(struct tb_nhi *nhi)
  {
  	struct tb *tb;
7adf60972   Andreas Noever   thunderbolt: Add ...
362
363
364
  	BUILD_BUG_ON(sizeof(struct tb_regs_switch_header) != 5 * 4);
  	BUILD_BUG_ON(sizeof(struct tb_regs_port_header) != 8 * 4);
  	BUILD_BUG_ON(sizeof(struct tb_regs_hop) != 2 * 4);
d6cc51cd1   Andreas Noever   thunderbolt: Setu...
365
366
367
368
369
370
371
  	tb = kzalloc(sizeof(*tb), GFP_KERNEL);
  	if (!tb)
  		return NULL;
  
  	tb->nhi = nhi;
  	mutex_init(&tb->lock);
  	mutex_lock(&tb->lock);
3364f0c12   Andreas Noever   thunderbolt: Add ...
372
  	INIT_LIST_HEAD(&tb->tunnel_list);
d6cc51cd1   Andreas Noever   thunderbolt: Setu...
373
374
375
376
377
378
379
380
381
382
383
384
385
  
  	tb->wq = alloc_ordered_workqueue("thunderbolt", 0);
  	if (!tb->wq)
  		goto err_locked;
  
  	tb->ctl = tb_ctl_alloc(tb->nhi, tb_schedule_hotplug_handler, tb);
  	if (!tb->ctl)
  		goto err_locked;
  	/*
  	 * tb_schedule_hotplug_handler may be called as soon as the config
  	 * channel is started. Thats why we have to hold the lock here.
  	 */
  	tb_ctl_start(tb->ctl);
a25c8b2fc   Andreas Noever   thunderbolt: Init...
386
387
388
  	tb->root_switch = tb_switch_alloc(tb, 0);
  	if (!tb->root_switch)
  		goto err_locked;
9da672a42   Andreas Noever   thunderbolt: Scan...
389
390
  	/* Full scan to discover devices added before the driver was loaded. */
  	tb_scan_switch(tb->root_switch);
3364f0c12   Andreas Noever   thunderbolt: Add ...
391
  	tb_activate_pcie_devices(tb);
9da672a42   Andreas Noever   thunderbolt: Scan...
392

d6cc51cd1   Andreas Noever   thunderbolt: Setu...
393
394
395
396
397
398
399
400
401
402
  	/* Allow tb_handle_hotplug to progress events */
  	tb->hotplug_active = true;
  	mutex_unlock(&tb->lock);
  	return tb;
  
  err_locked:
  	mutex_unlock(&tb->lock);
  	thunderbolt_shutdown_and_free(tb);
  	return NULL;
  }
23dd5bb49   Andreas Noever   thunderbolt: Add ...
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
  void thunderbolt_suspend(struct tb *tb)
  {
  	tb_info(tb, "suspending...
  ");
  	mutex_lock(&tb->lock);
  	tb_switch_suspend(tb->root_switch);
  	tb_ctl_stop(tb->ctl);
  	tb->hotplug_active = false; /* signal tb_handle_hotplug to quit */
  	mutex_unlock(&tb->lock);
  	tb_info(tb, "suspend finished
  ");
  }
  
  void thunderbolt_resume(struct tb *tb)
  {
  	struct tb_pci_tunnel *tunnel, *n;
  	tb_info(tb, "resuming...
  ");
  	mutex_lock(&tb->lock);
  	tb_ctl_start(tb->ctl);
  
  	/* remove any pci devices the firmware might have setup */
  	tb_switch_reset(tb, 0);
  
  	tb_switch_resume(tb->root_switch);
  	tb_free_invalid_tunnels(tb);
  	tb_free_unplugged_children(tb->root_switch);
  	list_for_each_entry_safe(tunnel, n, &tb->tunnel_list, list)
  		tb_pci_restart(tunnel);
  	if (!list_empty(&tb->tunnel_list)) {
  		/*
  		 * the pcie links need some time to get going.
  		 * 100ms works for me...
  		 */
  		tb_info(tb, "tunnels restarted, sleeping for 100ms
  ");
  		msleep(100);
  	}
  	 /* Allow tb_handle_hotplug to progress events */
  	tb->hotplug_active = true;
  	mutex_unlock(&tb->lock);
  	tb_info(tb, "resume finished
  ");
  }