blob: 74af9d4929ab4450a7d1cdff03cd7dd7f8a8d8f0 [file] [log] [blame]
Andreas Noeverd6cc51c2014-06-03 22:04:00 +02001/*
2 * Thunderbolt Cactus Ridge driver - bus logic (NHI independent)
3 *
4 * Copyright (c) 2014 Andreas Noever <andreas.noever@gmail.com>
5 */
6
7#ifndef TB_H_
8#define TB_H_
9
Mika Westerberge6b245c2017-06-06 15:25:17 +030010#include <linux/nvmem-provider.h>
Andreas Noevera25c8b22014-06-03 22:04:02 +020011#include <linux/pci.h>
Mika Westerbergd1ff7022017-10-02 13:38:34 +030012#include <linux/thunderbolt.h>
Mika Westerbergbfe778a2017-06-06 15:25:01 +030013#include <linux/uuid.h>
Andreas Noevera25c8b22014-06-03 22:04:02 +020014
15#include "tb_regs.h"
Andreas Noeverd6cc51c2014-06-03 22:04:00 +020016#include "ctl.h"
Mika Westerberg3e136762017-06-06 15:25:14 +030017#include "dma_port.h"
Andreas Noeverd6cc51c2014-06-03 22:04:00 +020018
19/**
Mika Westerberge6b245c2017-06-06 15:25:17 +030020 * struct tb_switch_nvm - Structure holding switch NVM information
21 * @major: Major version number of the active NVM portion
22 * @minor: Minor version number of the active NVM portion
23 * @id: Identifier used with both NVM portions
24 * @active: Active portion NVMem device
25 * @non_active: Non-active portion NVMem device
26 * @buf: Buffer where the NVM image is stored before it is written to
27 * the actual NVM flash device
28 * @buf_data_size: Number of bytes actually consumed by the new NVM
29 * image
30 * @authenticating: The switch is authenticating the new NVM
31 */
32struct tb_switch_nvm {
33 u8 major;
34 u8 minor;
35 int id;
36 struct nvmem_device *active;
37 struct nvmem_device *non_active;
38 void *buf;
39 size_t buf_data_size;
40 bool authenticating;
41};
42
Mika Westerbergf67cf492017-06-06 15:25:16 +030043#define TB_SWITCH_KEY_SIZE 32
Mika Westerbergf67cf492017-06-06 15:25:16 +030044
45/**
Andreas Noevera25c8b22014-06-03 22:04:02 +020046 * struct tb_switch - a thunderbolt switch
Mika Westerbergbfe778a2017-06-06 15:25:01 +030047 * @dev: Device for the switch
48 * @config: Switch configuration
49 * @ports: Ports in this switch
Mika Westerberg3e136762017-06-06 15:25:14 +030050 * @dma_port: If the switch has port supporting DMA configuration based
51 * mailbox this will hold the pointer to that (%NULL
Mika Westerberge6b245c2017-06-06 15:25:17 +030052 * otherwise). If set it also means the switch has
53 * upgradeable NVM.
Mika Westerbergbfe778a2017-06-06 15:25:01 +030054 * @tb: Pointer to the domain the switch belongs to
55 * @uid: Unique ID of the switch
56 * @uuid: UUID of the switch (or %NULL if not supported)
57 * @vendor: Vendor ID of the switch
58 * @device: Device ID of the switch
Mika Westerberg72ee3392017-06-06 15:25:05 +030059 * @vendor_name: Name of the vendor (or %NULL if not known)
60 * @device_name: Name of the device (or %NULL if not known)
Mika Westerberg2c3c4192017-06-06 15:25:13 +030061 * @generation: Switch Thunderbolt generation
Mika Westerbergbfe778a2017-06-06 15:25:01 +030062 * @cap_plug_events: Offset to the plug events capability (%0 if not found)
63 * @is_unplugged: The switch is going away
64 * @drom: DROM of the switch (%NULL if not found)
Mika Westerberge6b245c2017-06-06 15:25:17 +030065 * @nvm: Pointer to the NVM if the switch has one (%NULL otherwise)
66 * @no_nvm_upgrade: Prevent NVM upgrade of this switch
67 * @safe_mode: The switch is in safe-mode
Mika Westerbergf67cf492017-06-06 15:25:16 +030068 * @authorized: Whether the switch is authorized by user or policy
69 * @work: Work used to automatically authorize a switch
70 * @security_level: Switch supported security level
71 * @key: Contains the key used to challenge the device or %NULL if not
72 * supported. Size of the key is %TB_SWITCH_KEY_SIZE.
73 * @connection_id: Connection ID used with ICM messaging
74 * @connection_key: Connection key used with ICM messaging
75 * @link: Root switch link this switch is connected (ICM only)
76 * @depth: Depth in the chain this switch is connected (ICM only)
77 *
78 * When the switch is being added or removed to the domain (other
79 * switches) you need to have domain lock held. For switch authorization
80 * internal switch_lock is enough.
Andreas Noevera25c8b22014-06-03 22:04:02 +020081 */
82struct tb_switch {
Mika Westerbergbfe778a2017-06-06 15:25:01 +030083 struct device dev;
Andreas Noevera25c8b22014-06-03 22:04:02 +020084 struct tb_regs_switch_header config;
85 struct tb_port *ports;
Mika Westerberg3e136762017-06-06 15:25:14 +030086 struct tb_dma_port *dma_port;
Andreas Noevera25c8b22014-06-03 22:04:02 +020087 struct tb *tb;
Andreas Noeverc90553b2014-06-03 22:04:11 +020088 u64 uid;
Christoph Hellwig7c39ffe2017-07-18 15:30:05 +020089 uuid_t *uuid;
Mika Westerbergbfe778a2017-06-06 15:25:01 +030090 u16 vendor;
91 u16 device;
Mika Westerberg72ee3392017-06-06 15:25:05 +030092 const char *vendor_name;
93 const char *device_name;
Mika Westerberg2c3c4192017-06-06 15:25:13 +030094 unsigned int generation;
Mika Westerbergbfe778a2017-06-06 15:25:01 +030095 int cap_plug_events;
96 bool is_unplugged;
Andreas Noevercd22e732014-06-12 23:11:46 +020097 u8 *drom;
Mika Westerberge6b245c2017-06-06 15:25:17 +030098 struct tb_switch_nvm *nvm;
99 bool no_nvm_upgrade;
100 bool safe_mode;
Mika Westerbergf67cf492017-06-06 15:25:16 +0300101 unsigned int authorized;
102 struct work_struct work;
103 enum tb_security_level security_level;
104 u8 *key;
105 u8 connection_id;
106 u8 connection_key;
107 u8 link;
108 u8 depth;
Andreas Noevera25c8b22014-06-03 22:04:02 +0200109};
110
111/**
112 * struct tb_port - a thunderbolt port, part of a tb_switch
Mika Westerbergd1ff7022017-10-02 13:38:34 +0300113 * @config: Cached port configuration read from registers
114 * @sw: Switch the port belongs to
115 * @remote: Remote port (%NULL if not connected)
116 * @xdomain: Remote host (%NULL if not connected)
117 * @cap_phy: Offset, zero if not found
118 * @port: Port number on switch
119 * @disabled: Disabled by eeprom
120 * @dual_link_port: If the switch is connected using two ports, points
121 * to the other port.
122 * @link_nr: Is this primary or secondary port on the dual_link.
Andreas Noevera25c8b22014-06-03 22:04:02 +0200123 */
124struct tb_port {
125 struct tb_regs_port_header config;
126 struct tb_switch *sw;
Mika Westerbergd1ff7022017-10-02 13:38:34 +0300127 struct tb_port *remote;
128 struct tb_xdomain *xdomain;
129 int cap_phy;
130 u8 port;
131 bool disabled;
Andreas Noevercd22e732014-06-12 23:11:46 +0200132 struct tb_port *dual_link_port;
133 u8 link_nr:1;
Andreas Noevera25c8b22014-06-03 22:04:02 +0200134};
135
136/**
Andreas Noever520b6702014-06-03 22:04:07 +0200137 * struct tb_path_hop - routing information for a tb_path
138 *
139 * Hop configuration is always done on the IN port of a switch.
140 * in_port and out_port have to be on the same switch. Packets arriving on
141 * in_port with "hop" = in_hop_index will get routed to through out_port. The
142 * next hop to take (on out_port->remote) is determined by next_hop_index.
143 *
144 * in_counter_index is the index of a counter (in TB_CFG_COUNTERS) on the in
145 * port.
146 */
147struct tb_path_hop {
148 struct tb_port *in_port;
149 struct tb_port *out_port;
150 int in_hop_index;
151 int in_counter_index; /* write -1 to disable counters for this hop. */
152 int next_hop_index;
153};
154
155/**
156 * enum tb_path_port - path options mask
157 */
158enum tb_path_port {
159 TB_PATH_NONE = 0,
160 TB_PATH_SOURCE = 1, /* activate on the first hop (out of src) */
161 TB_PATH_INTERNAL = 2, /* activate on other hops (not the first/last) */
162 TB_PATH_DESTINATION = 4, /* activate on the last hop (into dst) */
163 TB_PATH_ALL = 7,
164};
165
166/**
167 * struct tb_path - a unidirectional path between two ports
168 *
169 * A path consists of a number of hops (see tb_path_hop). To establish a PCIe
170 * tunnel two paths have to be created between the two PCIe ports.
171 *
172 */
173struct tb_path {
174 struct tb *tb;
175 int nfc_credits; /* non flow controlled credits */
176 enum tb_path_port ingress_shared_buffer;
177 enum tb_path_port egress_shared_buffer;
178 enum tb_path_port ingress_fc_enable;
179 enum tb_path_port egress_fc_enable;
180
181 int priority:3;
182 int weight:4;
183 bool drop_packages;
184 bool activated;
185 struct tb_path_hop *hops;
186 int path_length; /* number of hops */
187};
188
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300189/**
190 * struct tb_cm_ops - Connection manager specific operations vector
Mika Westerbergf67cf492017-06-06 15:25:16 +0300191 * @driver_ready: Called right after control channel is started. Used by
192 * ICM to send driver ready message to the firmware.
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300193 * @start: Starts the domain
194 * @stop: Stops the domain
195 * @suspend_noirq: Connection manager specific suspend_noirq
196 * @resume_noirq: Connection manager specific resume_noirq
Mika Westerbergf67cf492017-06-06 15:25:16 +0300197 * @suspend: Connection manager specific suspend
198 * @complete: Connection manager specific complete
Mika Westerberg81a54b52017-06-06 15:25:09 +0300199 * @handle_event: Handle thunderbolt event
Mika Westerbergf67cf492017-06-06 15:25:16 +0300200 * @approve_switch: Approve switch
201 * @add_switch_key: Add key to switch
202 * @challenge_switch_key: Challenge switch using key
Mika Westerberge6b245c2017-06-06 15:25:17 +0300203 * @disconnect_pcie_paths: Disconnects PCIe paths before NVM update
Mika Westerbergd1ff7022017-10-02 13:38:34 +0300204 * @approve_xdomain_paths: Approve (establish) XDomain DMA paths
205 * @disconnect_xdomain_paths: Disconnect XDomain DMA paths
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300206 */
207struct tb_cm_ops {
Mika Westerbergf67cf492017-06-06 15:25:16 +0300208 int (*driver_ready)(struct tb *tb);
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300209 int (*start)(struct tb *tb);
210 void (*stop)(struct tb *tb);
211 int (*suspend_noirq)(struct tb *tb);
212 int (*resume_noirq)(struct tb *tb);
Mika Westerbergf67cf492017-06-06 15:25:16 +0300213 int (*suspend)(struct tb *tb);
214 void (*complete)(struct tb *tb);
Mika Westerberg81a54b52017-06-06 15:25:09 +0300215 void (*handle_event)(struct tb *tb, enum tb_cfg_pkg_type,
216 const void *buf, size_t size);
Mika Westerbergf67cf492017-06-06 15:25:16 +0300217 int (*approve_switch)(struct tb *tb, struct tb_switch *sw);
218 int (*add_switch_key)(struct tb *tb, struct tb_switch *sw);
219 int (*challenge_switch_key)(struct tb *tb, struct tb_switch *sw,
220 const u8 *challenge, u8 *response);
Mika Westerberge6b245c2017-06-06 15:25:17 +0300221 int (*disconnect_pcie_paths)(struct tb *tb);
Mika Westerbergd1ff7022017-10-02 13:38:34 +0300222 int (*approve_xdomain_paths)(struct tb *tb, struct tb_xdomain *xd);
223 int (*disconnect_xdomain_paths)(struct tb *tb, struct tb_xdomain *xd);
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300224};
Andreas Noever520b6702014-06-03 22:04:07 +0200225
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300226static inline void *tb_priv(struct tb *tb)
227{
228 return (void *)tb->privdata;
229}
230
Andreas Noevera25c8b22014-06-03 22:04:02 +0200231/* helper functions & macros */
232
233/**
234 * tb_upstream_port() - return the upstream port of a switch
235 *
236 * Every switch has an upstream port (for the root switch it is the NHI).
237 *
238 * During switch alloc/init tb_upstream_port()->remote may be NULL, even for
239 * non root switches (on the NHI port remote is always NULL).
240 *
241 * Return: Returns the upstream port of the switch.
242 */
243static inline struct tb_port *tb_upstream_port(struct tb_switch *sw)
244{
245 return &sw->ports[sw->config.upstream_port_number];
246}
247
248static inline u64 tb_route(struct tb_switch *sw)
249{
250 return ((u64) sw->config.route_hi) << 32 | sw->config.route_lo;
251}
252
Mika Westerbergf67cf492017-06-06 15:25:16 +0300253static inline struct tb_port *tb_port_at(u64 route, struct tb_switch *sw)
254{
255 u8 port;
256
257 port = route >> (sw->config.depth * 8);
258 if (WARN_ON(port > sw->config.max_port_number))
259 return NULL;
260 return &sw->ports[port];
261}
262
Andreas Noevera25c8b22014-06-03 22:04:02 +0200263static inline int tb_sw_read(struct tb_switch *sw, void *buffer,
264 enum tb_cfg_space space, u32 offset, u32 length)
265{
266 return tb_cfg_read(sw->tb->ctl,
267 buffer,
268 tb_route(sw),
269 0,
270 space,
271 offset,
272 length);
273}
274
275static inline int tb_sw_write(struct tb_switch *sw, void *buffer,
276 enum tb_cfg_space space, u32 offset, u32 length)
277{
278 return tb_cfg_write(sw->tb->ctl,
279 buffer,
280 tb_route(sw),
281 0,
282 space,
283 offset,
284 length);
285}
286
287static inline int tb_port_read(struct tb_port *port, void *buffer,
288 enum tb_cfg_space space, u32 offset, u32 length)
289{
290 return tb_cfg_read(port->sw->tb->ctl,
291 buffer,
292 tb_route(port->sw),
293 port->port,
294 space,
295 offset,
296 length);
297}
298
Mika Westerberg16a12582017-06-06 15:24:53 +0300299static inline int tb_port_write(struct tb_port *port, const void *buffer,
Andreas Noevera25c8b22014-06-03 22:04:02 +0200300 enum tb_cfg_space space, u32 offset, u32 length)
301{
302 return tb_cfg_write(port->sw->tb->ctl,
303 buffer,
304 tb_route(port->sw),
305 port->port,
306 space,
307 offset,
308 length);
309}
310
311#define tb_err(tb, fmt, arg...) dev_err(&(tb)->nhi->pdev->dev, fmt, ## arg)
312#define tb_WARN(tb, fmt, arg...) dev_WARN(&(tb)->nhi->pdev->dev, fmt, ## arg)
313#define tb_warn(tb, fmt, arg...) dev_warn(&(tb)->nhi->pdev->dev, fmt, ## arg)
314#define tb_info(tb, fmt, arg...) dev_info(&(tb)->nhi->pdev->dev, fmt, ## arg)
315
316
317#define __TB_SW_PRINT(level, sw, fmt, arg...) \
318 do { \
319 struct tb_switch *__sw = (sw); \
320 level(__sw->tb, "%llx: " fmt, \
321 tb_route(__sw), ## arg); \
322 } while (0)
323#define tb_sw_WARN(sw, fmt, arg...) __TB_SW_PRINT(tb_WARN, sw, fmt, ##arg)
324#define tb_sw_warn(sw, fmt, arg...) __TB_SW_PRINT(tb_warn, sw, fmt, ##arg)
325#define tb_sw_info(sw, fmt, arg...) __TB_SW_PRINT(tb_info, sw, fmt, ##arg)
326
327
328#define __TB_PORT_PRINT(level, _port, fmt, arg...) \
329 do { \
330 struct tb_port *__port = (_port); \
331 level(__port->sw->tb, "%llx:%x: " fmt, \
332 tb_route(__port->sw), __port->port, ## arg); \
333 } while (0)
334#define tb_port_WARN(port, fmt, arg...) \
335 __TB_PORT_PRINT(tb_WARN, port, fmt, ##arg)
336#define tb_port_warn(port, fmt, arg...) \
337 __TB_PORT_PRINT(tb_warn, port, fmt, ##arg)
338#define tb_port_info(port, fmt, arg...) \
339 __TB_PORT_PRINT(tb_info, port, fmt, ##arg)
340
Mika Westerbergf67cf492017-06-06 15:25:16 +0300341struct tb *icm_probe(struct tb_nhi *nhi);
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300342struct tb *tb_probe(struct tb_nhi *nhi);
Andreas Noevera25c8b22014-06-03 22:04:02 +0200343
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300344extern struct device_type tb_domain_type;
Mika Westerbergbfe778a2017-06-06 15:25:01 +0300345extern struct device_type tb_switch_type;
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300346
347int tb_domain_init(void);
348void tb_domain_exit(void);
Mika Westerberge6b245c2017-06-06 15:25:17 +0300349void tb_switch_exit(void);
Mika Westerbergd1ff7022017-10-02 13:38:34 +0300350int tb_xdomain_init(void);
351void tb_xdomain_exit(void);
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300352
353struct tb *tb_domain_alloc(struct tb_nhi *nhi, size_t privsize);
354int tb_domain_add(struct tb *tb);
355void tb_domain_remove(struct tb *tb);
356int tb_domain_suspend_noirq(struct tb *tb);
357int tb_domain_resume_noirq(struct tb *tb);
Mika Westerbergf67cf492017-06-06 15:25:16 +0300358int tb_domain_suspend(struct tb *tb);
359void tb_domain_complete(struct tb *tb);
360int tb_domain_approve_switch(struct tb *tb, struct tb_switch *sw);
361int tb_domain_approve_switch_key(struct tb *tb, struct tb_switch *sw);
362int tb_domain_challenge_switch_key(struct tb *tb, struct tb_switch *sw);
Mika Westerberge6b245c2017-06-06 15:25:17 +0300363int tb_domain_disconnect_pcie_paths(struct tb *tb);
Mika Westerbergd1ff7022017-10-02 13:38:34 +0300364int tb_domain_approve_xdomain_paths(struct tb *tb, struct tb_xdomain *xd);
365int tb_domain_disconnect_xdomain_paths(struct tb *tb, struct tb_xdomain *xd);
366int tb_domain_disconnect_all_paths(struct tb *tb);
Mika Westerberg9d3cce02017-06-06 15:25:00 +0300367
368static inline void tb_domain_put(struct tb *tb)
369{
370 put_device(&tb->dev);
371}
Andreas Noeverd6cc51c2014-06-03 22:04:00 +0200372
Mika Westerbergbfe778a2017-06-06 15:25:01 +0300373struct tb_switch *tb_switch_alloc(struct tb *tb, struct device *parent,
374 u64 route);
Mika Westerberge6b245c2017-06-06 15:25:17 +0300375struct tb_switch *tb_switch_alloc_safe_mode(struct tb *tb,
376 struct device *parent, u64 route);
Mika Westerbergbfe778a2017-06-06 15:25:01 +0300377int tb_switch_configure(struct tb_switch *sw);
378int tb_switch_add(struct tb_switch *sw);
379void tb_switch_remove(struct tb_switch *sw);
Andreas Noever23dd5bb2014-06-03 22:04:12 +0200380void tb_switch_suspend(struct tb_switch *sw);
381int tb_switch_resume(struct tb_switch *sw);
382int tb_switch_reset(struct tb *tb, u64 route);
Lukas Wunneraae20bb2016-03-20 13:57:20 +0100383void tb_sw_set_unplugged(struct tb_switch *sw);
Andreas Noever053596d2014-06-03 22:04:06 +0200384struct tb_switch *get_switch_at_route(struct tb_switch *sw, u64 route);
Mika Westerbergf67cf492017-06-06 15:25:16 +0300385struct tb_switch *tb_switch_find_by_link_depth(struct tb *tb, u8 link,
386 u8 depth);
Christoph Hellwig7c39ffe2017-07-18 15:30:05 +0200387struct tb_switch *tb_switch_find_by_uuid(struct tb *tb, const uuid_t *uuid);
Mika Westerbergf67cf492017-06-06 15:25:16 +0300388
Mika Westerbergbfe778a2017-06-06 15:25:01 +0300389static inline void tb_switch_put(struct tb_switch *sw)
390{
391 put_device(&sw->dev);
392}
393
394static inline bool tb_is_switch(const struct device *dev)
395{
396 return dev->type == &tb_switch_type;
397}
398
399static inline struct tb_switch *tb_to_switch(struct device *dev)
400{
401 if (tb_is_switch(dev))
402 return container_of(dev, struct tb_switch, dev);
403 return NULL;
404}
405
Andreas Noever9da672a2014-06-03 22:04:05 +0200406int tb_wait_for_port(struct tb_port *port, bool wait_if_unplugged);
Andreas Noever520b6702014-06-03 22:04:07 +0200407int tb_port_add_nfc_credits(struct tb_port *port, int credits);
408int tb_port_clear_counter(struct tb_port *port, int counter);
Andreas Noever9da672a2014-06-03 22:04:05 +0200409
Mika Westerbergda2da042017-06-06 15:24:58 +0300410int tb_switch_find_vse_cap(struct tb_switch *sw, enum tb_switch_vse_cap vsec);
411int tb_port_find_cap(struct tb_port *port, enum tb_port_cap cap);
Andreas Noevere2b87852014-06-03 22:04:03 +0200412
Andreas Noever520b6702014-06-03 22:04:07 +0200413struct tb_path *tb_path_alloc(struct tb *tb, int num_hops);
414void tb_path_free(struct tb_path *path);
415int tb_path_activate(struct tb_path *path);
416void tb_path_deactivate(struct tb_path *path);
417bool tb_path_is_invalid(struct tb_path *path);
418
Andreas Noevercd22e732014-06-12 23:11:46 +0200419int tb_drom_read(struct tb_switch *sw);
420int tb_drom_read_uid_only(struct tb_switch *sw, u64 *uid);
Andreas Noeverc90553b2014-06-03 22:04:11 +0200421
Andreas Noevera25c8b22014-06-03 22:04:02 +0200422
423static inline int tb_route_length(u64 route)
424{
425 return (fls64(route) + TB_ROUTE_SHIFT - 1) / TB_ROUTE_SHIFT;
426}
427
428static inline bool tb_is_upstream_port(struct tb_port *port)
429{
430 return port == tb_upstream_port(port->sw);
431}
432
Andreas Noever9da672a2014-06-03 22:04:05 +0200433/**
434 * tb_downstream_route() - get route to downstream switch
435 *
436 * Port must not be the upstream port (otherwise a loop is created).
437 *
438 * Return: Returns a route to the switch behind @port.
439 */
440static inline u64 tb_downstream_route(struct tb_port *port)
441{
442 return tb_route(port->sw)
443 | ((u64) port->port << (port->sw->config.depth * 8));
444}
445
Mika Westerbergd1ff7022017-10-02 13:38:34 +0300446bool tb_xdomain_handle_request(struct tb *tb, enum tb_cfg_pkg_type type,
447 const void *buf, size_t size);
448struct tb_xdomain *tb_xdomain_alloc(struct tb *tb, struct device *parent,
449 u64 route, const uuid_t *local_uuid,
450 const uuid_t *remote_uuid);
451void tb_xdomain_add(struct tb_xdomain *xd);
452void tb_xdomain_remove(struct tb_xdomain *xd);
453struct tb_xdomain *tb_xdomain_find_by_link_depth(struct tb *tb, u8 link,
454 u8 depth);
455
Andreas Noeverd6cc51c2014-06-03 22:04:00 +0200456#endif