Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Andreas Noever | 3364f0c | 2014-06-03 22:04:08 +0200 | [diff] [blame] | 2 | /* |
Mika Westerberg | 93f36ad | 2017-02-19 13:48:29 +0200 | [diff] [blame] | 3 | * Thunderbolt driver - Tunneling support |
Andreas Noever | 3364f0c | 2014-06-03 22:04:08 +0200 | [diff] [blame] | 4 | * |
| 5 | * Copyright (c) 2014 Andreas Noever <andreas.noever@gmail.com> |
Mika Westerberg | 93f36ad | 2017-02-19 13:48:29 +0200 | [diff] [blame] | 6 | * Copyright (C) 2019, Intel Corporation |
Andreas Noever | 3364f0c | 2014-06-03 22:04:08 +0200 | [diff] [blame] | 7 | */ |
| 8 | |
Mika Westerberg | 1752b9f | 2017-02-19 10:58:35 +0200 | [diff] [blame] | 9 | #ifndef TB_TUNNEL_H_ |
| 10 | #define TB_TUNNEL_H_ |
Andreas Noever | 3364f0c | 2014-06-03 22:04:08 +0200 | [diff] [blame] | 11 | |
| 12 | #include "tb.h" |
| 13 | |
Mika Westerberg | 4f807e4 | 2018-09-17 16:30:49 +0300 | [diff] [blame] | 14 | enum tb_tunnel_type { |
| 15 | TB_TUNNEL_PCI, |
| 16 | TB_TUNNEL_DP, |
Mika Westerberg | 44242d6 | 2018-09-28 16:35:32 +0300 | [diff] [blame] | 17 | TB_TUNNEL_DMA, |
Mika Westerberg | 4f807e4 | 2018-09-17 16:30:49 +0300 | [diff] [blame] | 18 | }; |
| 19 | |
Mika Westerberg | 93f36ad | 2017-02-19 13:48:29 +0200 | [diff] [blame] | 20 | /** |
| 21 | * struct tb_tunnel - Tunnel between two ports |
| 22 | * @tb: Pointer to the domain |
| 23 | * @src_port: Source port of the tunnel |
Mika Westerberg | 0414bec | 2017-02-19 23:43:26 +0200 | [diff] [blame] | 24 | * @dst_port: Destination port of the tunnel. For discovered incomplete |
| 25 | * tunnels may be %NULL or null adapter port instead. |
Mika Westerberg | 93f36ad | 2017-02-19 13:48:29 +0200 | [diff] [blame] | 26 | * @paths: All paths required by the tunnel |
| 27 | * @npaths: Number of paths in @paths |
Mika Westerberg | 4f807e4 | 2018-09-17 16:30:49 +0300 | [diff] [blame] | 28 | * @init: Optional tunnel specific initialization |
Mika Westerberg | 93f36ad | 2017-02-19 13:48:29 +0200 | [diff] [blame] | 29 | * @activate: Optional tunnel specific activation/deactivation |
Mika Westerberg | a11b88a | 2019-03-26 16:03:48 +0300 | [diff] [blame] | 30 | * @consumed_bandwidth: Return how much bandwidth the tunnel consumes |
Mika Westerberg | 93f36ad | 2017-02-19 13:48:29 +0200 | [diff] [blame] | 31 | * @list: Tunnels are linked using this field |
Mika Westerberg | 4f807e4 | 2018-09-17 16:30:49 +0300 | [diff] [blame] | 32 | * @type: Type of the tunnel |
Mika Westerberg | a11b88a | 2019-03-26 16:03:48 +0300 | [diff] [blame] | 33 | * @max_bw: Maximum bandwidth (Mb/s) available for the tunnel (only for DP). |
| 34 | * Only set if the bandwidth needs to be limited. |
Mika Westerberg | 93f36ad | 2017-02-19 13:48:29 +0200 | [diff] [blame] | 35 | */ |
| 36 | struct tb_tunnel { |
Andreas Noever | 3364f0c | 2014-06-03 22:04:08 +0200 | [diff] [blame] | 37 | struct tb *tb; |
Mika Westerberg | 93f36ad | 2017-02-19 13:48:29 +0200 | [diff] [blame] | 38 | struct tb_port *src_port; |
| 39 | struct tb_port *dst_port; |
| 40 | struct tb_path **paths; |
| 41 | size_t npaths; |
Mika Westerberg | 4f807e4 | 2018-09-17 16:30:49 +0300 | [diff] [blame] | 42 | int (*init)(struct tb_tunnel *tunnel); |
Mika Westerberg | 93f36ad | 2017-02-19 13:48:29 +0200 | [diff] [blame] | 43 | int (*activate)(struct tb_tunnel *tunnel, bool activate); |
Mika Westerberg | a11b88a | 2019-03-26 16:03:48 +0300 | [diff] [blame] | 44 | int (*consumed_bandwidth)(struct tb_tunnel *tunnel); |
Andreas Noever | 3364f0c | 2014-06-03 22:04:08 +0200 | [diff] [blame] | 45 | struct list_head list; |
Mika Westerberg | 4f807e4 | 2018-09-17 16:30:49 +0300 | [diff] [blame] | 46 | enum tb_tunnel_type type; |
Mika Westerberg | a11b88a | 2019-03-26 16:03:48 +0300 | [diff] [blame] | 47 | unsigned int max_bw; |
Andreas Noever | 3364f0c | 2014-06-03 22:04:08 +0200 | [diff] [blame] | 48 | }; |
| 49 | |
Mika Westerberg | 0414bec | 2017-02-19 23:43:26 +0200 | [diff] [blame] | 50 | struct tb_tunnel *tb_tunnel_discover_pci(struct tb *tb, struct tb_port *down); |
Mika Westerberg | 93f36ad | 2017-02-19 13:48:29 +0200 | [diff] [blame] | 51 | struct tb_tunnel *tb_tunnel_alloc_pci(struct tb *tb, struct tb_port *up, |
| 52 | struct tb_port *down); |
Mika Westerberg | 4f807e4 | 2018-09-17 16:30:49 +0300 | [diff] [blame] | 53 | struct tb_tunnel *tb_tunnel_discover_dp(struct tb *tb, struct tb_port *in); |
| 54 | struct tb_tunnel *tb_tunnel_alloc_dp(struct tb *tb, struct tb_port *in, |
Mika Westerberg | a11b88a | 2019-03-26 16:03:48 +0300 | [diff] [blame] | 55 | struct tb_port *out, int max_bw); |
Mika Westerberg | 44242d6 | 2018-09-28 16:35:32 +0300 | [diff] [blame] | 56 | struct tb_tunnel *tb_tunnel_alloc_dma(struct tb *tb, struct tb_port *nhi, |
| 57 | struct tb_port *dst, int transmit_ring, |
| 58 | int transmit_path, int receive_ring, |
| 59 | int receive_path); |
Mika Westerberg | 4f807e4 | 2018-09-17 16:30:49 +0300 | [diff] [blame] | 60 | |
Mika Westerberg | 93f36ad | 2017-02-19 13:48:29 +0200 | [diff] [blame] | 61 | void tb_tunnel_free(struct tb_tunnel *tunnel); |
| 62 | int tb_tunnel_activate(struct tb_tunnel *tunnel); |
| 63 | int tb_tunnel_restart(struct tb_tunnel *tunnel); |
| 64 | void tb_tunnel_deactivate(struct tb_tunnel *tunnel); |
| 65 | bool tb_tunnel_is_invalid(struct tb_tunnel *tunnel); |
Mika Westerberg | a11b88a | 2019-03-26 16:03:48 +0300 | [diff] [blame] | 66 | bool tb_tunnel_switch_on_path(const struct tb_tunnel *tunnel, |
| 67 | const struct tb_switch *sw); |
| 68 | int tb_tunnel_consumed_bandwidth(struct tb_tunnel *tunnel); |
Andreas Noever | 3364f0c | 2014-06-03 22:04:08 +0200 | [diff] [blame] | 69 | |
Mika Westerberg | 4f807e4 | 2018-09-17 16:30:49 +0300 | [diff] [blame] | 70 | static inline bool tb_tunnel_is_pci(const struct tb_tunnel *tunnel) |
| 71 | { |
| 72 | return tunnel->type == TB_TUNNEL_PCI; |
| 73 | } |
| 74 | |
| 75 | static inline bool tb_tunnel_is_dp(const struct tb_tunnel *tunnel) |
| 76 | { |
| 77 | return tunnel->type == TB_TUNNEL_DP; |
| 78 | } |
| 79 | |
Mika Westerberg | 44242d6 | 2018-09-28 16:35:32 +0300 | [diff] [blame] | 80 | static inline bool tb_tunnel_is_dma(const struct tb_tunnel *tunnel) |
| 81 | { |
| 82 | return tunnel->type == TB_TUNNEL_DMA; |
| 83 | } |
| 84 | |
Andreas Noever | 3364f0c | 2014-06-03 22:04:08 +0200 | [diff] [blame] | 85 | #endif |
| 86 | |