1 // SPDX-License-Identifier: GPL-2.0
3 * Thunderbolt driver - control channel and configuration commands
5 * Copyright (c) 2014 Andreas Noever <andreas.noever@gmail.com>
6 * Copyright (C) 2018, Intel Corporation
9 #include <linux/crc32.h>
10 #include <linux/delay.h>
11 #include <linux/slab.h>
12 #include <linux/pci.h>
13 #include <linux/dmapool.h>
14 #include <linux/workqueue.h>
19 #define TB_CTL_RX_PKG_COUNT 10
20 #define TB_CTL_RETRIES 4
23 * struct tb_cfg - thunderbolt control channel
30 struct dma_pool
*frame_pool
;
31 struct ctl_pkg
*rx_packets
[TB_CTL_RX_PKG_COUNT
];
32 struct mutex request_queue_lock
;
33 struct list_head request_queue
;
41 #define tb_ctl_WARN(ctl, format, arg...) \
42 dev_WARN(&(ctl)->nhi->pdev->dev, format, ## arg)
44 #define tb_ctl_err(ctl, format, arg...) \
45 dev_err(&(ctl)->nhi->pdev->dev, format, ## arg)
47 #define tb_ctl_warn(ctl, format, arg...) \
48 dev_warn(&(ctl)->nhi->pdev->dev, format, ## arg)
50 #define tb_ctl_info(ctl, format, arg...) \
51 dev_info(&(ctl)->nhi->pdev->dev, format, ## arg)
53 #define tb_ctl_dbg(ctl, format, arg...) \
54 dev_dbg(&(ctl)->nhi->pdev->dev, format, ## arg)
56 static DECLARE_WAIT_QUEUE_HEAD(tb_cfg_request_cancel_queue
);
57 /* Serializes access to request kref_get/put */
58 static DEFINE_MUTEX(tb_cfg_request_lock
);
61 * tb_cfg_request_alloc() - Allocates a new config request
63 * This is refcounted object so when you are done with this, call
64 * tb_cfg_request_put() to it.
66 struct tb_cfg_request
*tb_cfg_request_alloc(void)
68 struct tb_cfg_request
*req
;
70 req
= kzalloc(sizeof(*req
), GFP_KERNEL
);
74 kref_init(&req
->kref
);
80 * tb_cfg_request_get() - Increase refcount of a request
81 * @req: Request whose refcount is increased
83 void tb_cfg_request_get(struct tb_cfg_request
*req
)
85 mutex_lock(&tb_cfg_request_lock
);
87 mutex_unlock(&tb_cfg_request_lock
);
90 static void tb_cfg_request_destroy(struct kref
*kref
)
92 struct tb_cfg_request
*req
= container_of(kref
, typeof(*req
), kref
);
98 * tb_cfg_request_put() - Decrease refcount and possibly release the request
99 * @req: Request whose refcount is decreased
101 * Call this function when you are done with the request. When refcount
102 * goes to %0 the object is released.
104 void tb_cfg_request_put(struct tb_cfg_request
*req
)
106 mutex_lock(&tb_cfg_request_lock
);
107 kref_put(&req
->kref
, tb_cfg_request_destroy
);
108 mutex_unlock(&tb_cfg_request_lock
);
111 static int tb_cfg_request_enqueue(struct tb_ctl
*ctl
,
112 struct tb_cfg_request
*req
)
114 WARN_ON(test_bit(TB_CFG_REQUEST_ACTIVE
, &req
->flags
));
117 mutex_lock(&ctl
->request_queue_lock
);
119 mutex_unlock(&ctl
->request_queue_lock
);
123 list_add_tail(&req
->list
, &ctl
->request_queue
);
124 set_bit(TB_CFG_REQUEST_ACTIVE
, &req
->flags
);
125 mutex_unlock(&ctl
->request_queue_lock
);
129 static void tb_cfg_request_dequeue(struct tb_cfg_request
*req
)
131 struct tb_ctl
*ctl
= req
->ctl
;
133 mutex_lock(&ctl
->request_queue_lock
);
134 list_del(&req
->list
);
135 clear_bit(TB_CFG_REQUEST_ACTIVE
, &req
->flags
);
136 if (test_bit(TB_CFG_REQUEST_CANCELED
, &req
->flags
))
137 wake_up(&tb_cfg_request_cancel_queue
);
138 mutex_unlock(&ctl
->request_queue_lock
);
141 static bool tb_cfg_request_is_active(struct tb_cfg_request
*req
)
143 return test_bit(TB_CFG_REQUEST_ACTIVE
, &req
->flags
);
146 static struct tb_cfg_request
*
147 tb_cfg_request_find(struct tb_ctl
*ctl
, struct ctl_pkg
*pkg
)
149 struct tb_cfg_request
*req
;
152 mutex_lock(&pkg
->ctl
->request_queue_lock
);
153 list_for_each_entry(req
, &pkg
->ctl
->request_queue
, list
) {
154 tb_cfg_request_get(req
);
155 if (req
->match(req
, pkg
)) {
159 tb_cfg_request_put(req
);
161 mutex_unlock(&pkg
->ctl
->request_queue_lock
);
163 return found
? req
: NULL
;
166 /* utility functions */
169 static int check_header(const struct ctl_pkg
*pkg
, u32 len
,
170 enum tb_cfg_pkg_type type
, u64 route
)
172 struct tb_cfg_header
*header
= pkg
->buffer
;
174 /* check frame, TODO: frame flags */
175 if (WARN(len
!= pkg
->frame
.size
,
176 "wrong framesize (expected %#x, got %#x)\n",
177 len
, pkg
->frame
.size
))
179 if (WARN(type
!= pkg
->frame
.eof
, "wrong eof (expected %#x, got %#x)\n",
180 type
, pkg
->frame
.eof
))
182 if (WARN(pkg
->frame
.sof
, "wrong sof (expected 0x0, got %#x)\n",
187 if (WARN(header
->unknown
!= 1 << 9,
188 "header->unknown is %#x\n", header
->unknown
))
190 if (WARN(route
!= tb_cfg_get_route(header
),
191 "wrong route (expected %llx, got %llx)",
192 route
, tb_cfg_get_route(header
)))
197 static int check_config_address(struct tb_cfg_address addr
,
198 enum tb_cfg_space space
, u32 offset
,
201 if (WARN(addr
.zero
, "addr.zero is %#x\n", addr
.zero
))
203 if (WARN(space
!= addr
.space
, "wrong space (expected %x, got %x\n)",
206 if (WARN(offset
!= addr
.offset
, "wrong offset (expected %x, got %x\n)",
207 offset
, addr
.offset
))
209 if (WARN(length
!= addr
.length
, "wrong space (expected %x, got %x\n)",
210 length
, addr
.length
))
213 * We cannot check addr->port as it is set to the upstream port of the
219 static struct tb_cfg_result
decode_error(const struct ctl_pkg
*response
)
221 struct cfg_error_pkg
*pkg
= response
->buffer
;
222 struct tb_cfg_result res
= { 0 };
223 res
.response_route
= tb_cfg_get_route(&pkg
->header
);
224 res
.response_port
= 0;
225 res
.err
= check_header(response
, sizeof(*pkg
), TB_CFG_PKG_ERROR
,
226 tb_cfg_get_route(&pkg
->header
));
230 WARN(pkg
->zero1
, "pkg->zero1 is %#x\n", pkg
->zero1
);
231 WARN(pkg
->zero2
, "pkg->zero1 is %#x\n", pkg
->zero1
);
232 WARN(pkg
->zero3
, "pkg->zero1 is %#x\n", pkg
->zero1
);
234 res
.tb_error
= pkg
->error
;
235 res
.response_port
= pkg
->port
;
240 static struct tb_cfg_result
parse_header(const struct ctl_pkg
*pkg
, u32 len
,
241 enum tb_cfg_pkg_type type
, u64 route
)
243 struct tb_cfg_header
*header
= pkg
->buffer
;
244 struct tb_cfg_result res
= { 0 };
246 if (pkg
->frame
.eof
== TB_CFG_PKG_ERROR
)
247 return decode_error(pkg
);
249 res
.response_port
= 0; /* will be updated later for cfg_read/write */
250 res
.response_route
= tb_cfg_get_route(header
);
251 res
.err
= check_header(pkg
, len
, type
, route
);
255 static void tb_cfg_print_error(struct tb_ctl
*ctl
,
256 const struct tb_cfg_result
*res
)
258 WARN_ON(res
->err
!= 1);
259 switch (res
->tb_error
) {
260 case TB_CFG_ERROR_PORT_NOT_CONNECTED
:
261 /* Port is not connected. This can happen during surprise
262 * removal. Do not warn. */
264 case TB_CFG_ERROR_INVALID_CONFIG_SPACE
:
266 * Invalid cfg_space/offset/length combination in
267 * cfg_read/cfg_write.
270 "CFG_ERROR(%llx:%x): Invalid config space or offset\n",
271 res
->response_route
, res
->response_port
);
273 case TB_CFG_ERROR_NO_SUCH_PORT
:
275 * - The route contains a non-existent port.
276 * - The route contains a non-PHY port (e.g. PCIe).
277 * - The port in cfg_read/cfg_write does not exist.
279 tb_ctl_WARN(ctl
, "CFG_ERROR(%llx:%x): Invalid port\n",
280 res
->response_route
, res
->response_port
);
282 case TB_CFG_ERROR_LOOP
:
283 tb_ctl_WARN(ctl
, "CFG_ERROR(%llx:%x): Route contains a loop\n",
284 res
->response_route
, res
->response_port
);
287 /* 5,6,7,9 and 11 are also valid error codes */
288 tb_ctl_WARN(ctl
, "CFG_ERROR(%llx:%x): Unknown error\n",
289 res
->response_route
, res
->response_port
);
294 static __be32
tb_crc(const void *data
, size_t len
)
296 return cpu_to_be32(~__crc32c_le(~0, data
, len
));
299 static void tb_ctl_pkg_free(struct ctl_pkg
*pkg
)
302 dma_pool_free(pkg
->ctl
->frame_pool
,
303 pkg
->buffer
, pkg
->frame
.buffer_phy
);
308 static struct ctl_pkg
*tb_ctl_pkg_alloc(struct tb_ctl
*ctl
)
310 struct ctl_pkg
*pkg
= kzalloc(sizeof(*pkg
), GFP_KERNEL
);
314 pkg
->buffer
= dma_pool_alloc(ctl
->frame_pool
, GFP_KERNEL
,
315 &pkg
->frame
.buffer_phy
);
326 static void tb_ctl_tx_callback(struct tb_ring
*ring
, struct ring_frame
*frame
,
329 struct ctl_pkg
*pkg
= container_of(frame
, typeof(*pkg
), frame
);
330 tb_ctl_pkg_free(pkg
);
334 * tb_cfg_tx() - transmit a packet on the control channel
336 * len must be a multiple of four.
338 * Return: Returns 0 on success or an error code on failure.
340 static int tb_ctl_tx(struct tb_ctl
*ctl
, const void *data
, size_t len
,
341 enum tb_cfg_pkg_type type
)
345 if (len
% 4 != 0) { /* required for le->be conversion */
346 tb_ctl_WARN(ctl
, "TX: invalid size: %zu\n", len
);
349 if (len
> TB_FRAME_SIZE
- 4) { /* checksum is 4 bytes */
350 tb_ctl_WARN(ctl
, "TX: packet too large: %zu/%d\n",
351 len
, TB_FRAME_SIZE
- 4);
354 pkg
= tb_ctl_pkg_alloc(ctl
);
357 pkg
->frame
.callback
= tb_ctl_tx_callback
;
358 pkg
->frame
.size
= len
+ 4;
359 pkg
->frame
.sof
= type
;
360 pkg
->frame
.eof
= type
;
361 cpu_to_be32_array(pkg
->buffer
, data
, len
/ 4);
362 *(__be32
*) (pkg
->buffer
+ len
) = tb_crc(pkg
->buffer
, len
);
364 res
= tb_ring_tx(ctl
->tx
, &pkg
->frame
);
365 if (res
) /* ring is stopped */
366 tb_ctl_pkg_free(pkg
);
371 * tb_ctl_handle_event() - acknowledge a plug event, invoke ctl->callback
373 static bool tb_ctl_handle_event(struct tb_ctl
*ctl
, enum tb_cfg_pkg_type type
,
374 struct ctl_pkg
*pkg
, size_t size
)
376 return ctl
->callback(ctl
->callback_data
, type
, pkg
->buffer
, size
);
379 static void tb_ctl_rx_submit(struct ctl_pkg
*pkg
)
381 tb_ring_rx(pkg
->ctl
->rx
, &pkg
->frame
); /*
382 * We ignore failures during stop.
383 * All rx packets are referenced
384 * from ctl->rx_packets, so we do
389 static int tb_async_error(const struct ctl_pkg
*pkg
)
391 const struct cfg_error_pkg
*error
= (const struct cfg_error_pkg
*)pkg
;
393 if (pkg
->frame
.eof
!= TB_CFG_PKG_ERROR
)
396 switch (error
->error
) {
397 case TB_CFG_ERROR_LINK_ERROR
:
398 case TB_CFG_ERROR_HEC_ERROR_DETECTED
:
399 case TB_CFG_ERROR_FLOW_CONTROL_ERROR
:
407 static void tb_ctl_rx_callback(struct tb_ring
*ring
, struct ring_frame
*frame
,
410 struct ctl_pkg
*pkg
= container_of(frame
, typeof(*pkg
), frame
);
411 struct tb_cfg_request
*req
;
416 * ring is stopped, packet is referenced from
420 if (frame
->size
< 4 || frame
->size
% 4 != 0) {
421 tb_ctl_err(pkg
->ctl
, "RX: invalid size %#x, dropping packet\n",
426 frame
->size
-= 4; /* remove checksum */
427 crc32
= tb_crc(pkg
->buffer
, frame
->size
);
428 be32_to_cpu_array(pkg
->buffer
, pkg
->buffer
, frame
->size
/ 4);
430 switch (frame
->eof
) {
431 case TB_CFG_PKG_READ
:
432 case TB_CFG_PKG_WRITE
:
433 case TB_CFG_PKG_ERROR
:
434 case TB_CFG_PKG_OVERRIDE
:
435 case TB_CFG_PKG_RESET
:
436 if (*(__be32
*)(pkg
->buffer
+ frame
->size
) != crc32
) {
438 "RX: checksum mismatch, dropping packet\n");
441 if (tb_async_error(pkg
)) {
442 tb_ctl_handle_event(pkg
->ctl
, frame
->eof
,
448 case TB_CFG_PKG_EVENT
:
449 case TB_CFG_PKG_XDOMAIN_RESP
:
450 case TB_CFG_PKG_XDOMAIN_REQ
:
451 if (*(__be32
*)(pkg
->buffer
+ frame
->size
) != crc32
) {
453 "RX: checksum mismatch, dropping packet\n");
457 case TB_CFG_PKG_ICM_EVENT
:
458 if (tb_ctl_handle_event(pkg
->ctl
, frame
->eof
, pkg
, frame
->size
))
467 * The received packet will be processed only if there is an
468 * active request and that the packet is what is expected. This
469 * prevents packets such as replies coming after timeout has
470 * triggered from messing with the active requests.
472 req
= tb_cfg_request_find(pkg
->ctl
, pkg
);
474 if (req
->copy(req
, pkg
))
475 schedule_work(&req
->work
);
476 tb_cfg_request_put(req
);
480 tb_ctl_rx_submit(pkg
);
483 static void tb_cfg_request_work(struct work_struct
*work
)
485 struct tb_cfg_request
*req
= container_of(work
, typeof(*req
), work
);
487 if (!test_bit(TB_CFG_REQUEST_CANCELED
, &req
->flags
))
488 req
->callback(req
->callback_data
);
490 tb_cfg_request_dequeue(req
);
491 tb_cfg_request_put(req
);
495 * tb_cfg_request() - Start control request not waiting for it to complete
496 * @ctl: Control channel to use
497 * @req: Request to start
498 * @callback: Callback called when the request is completed
499 * @callback_data: Data to be passed to @callback
501 * This queues @req on the given control channel without waiting for it
502 * to complete. When the request completes @callback is called.
504 int tb_cfg_request(struct tb_ctl
*ctl
, struct tb_cfg_request
*req
,
505 void (*callback
)(void *), void *callback_data
)
510 req
->callback
= callback
;
511 req
->callback_data
= callback_data
;
512 INIT_WORK(&req
->work
, tb_cfg_request_work
);
513 INIT_LIST_HEAD(&req
->list
);
515 tb_cfg_request_get(req
);
516 ret
= tb_cfg_request_enqueue(ctl
, req
);
520 ret
= tb_ctl_tx(ctl
, req
->request
, req
->request_size
,
526 schedule_work(&req
->work
);
531 tb_cfg_request_dequeue(req
);
533 tb_cfg_request_put(req
);
539 * tb_cfg_request_cancel() - Cancel a control request
540 * @req: Request to cancel
541 * @err: Error to assign to the request
543 * This function can be used to cancel ongoing request. It will wait
544 * until the request is not active anymore.
546 void tb_cfg_request_cancel(struct tb_cfg_request
*req
, int err
)
548 set_bit(TB_CFG_REQUEST_CANCELED
, &req
->flags
);
549 schedule_work(&req
->work
);
550 wait_event(tb_cfg_request_cancel_queue
, !tb_cfg_request_is_active(req
));
551 req
->result
.err
= err
;
554 static void tb_cfg_request_complete(void *data
)
560 * tb_cfg_request_sync() - Start control request and wait until it completes
561 * @ctl: Control channel to use
562 * @req: Request to start
563 * @timeout_msec: Timeout how long to wait @req to complete
565 * Starts a control request and waits until it completes. If timeout
566 * triggers the request is canceled before function returns. Note the
567 * caller needs to make sure only one message for given switch is active
570 struct tb_cfg_result
tb_cfg_request_sync(struct tb_ctl
*ctl
,
571 struct tb_cfg_request
*req
,
574 unsigned long timeout
= msecs_to_jiffies(timeout_msec
);
575 struct tb_cfg_result res
= { 0 };
576 DECLARE_COMPLETION_ONSTACK(done
);
579 ret
= tb_cfg_request(ctl
, req
, tb_cfg_request_complete
, &done
);
585 if (!wait_for_completion_timeout(&done
, timeout
))
586 tb_cfg_request_cancel(req
, -ETIMEDOUT
);
588 flush_work(&req
->work
);
593 /* public interface, alloc/start/stop/free */
596 * tb_ctl_alloc() - allocate a control channel
598 * cb will be invoked once for every hot plug event.
600 * Return: Returns a pointer on success or NULL on failure.
602 struct tb_ctl
*tb_ctl_alloc(struct tb_nhi
*nhi
, event_cb cb
, void *cb_data
)
605 struct tb_ctl
*ctl
= kzalloc(sizeof(*ctl
), GFP_KERNEL
);
610 ctl
->callback_data
= cb_data
;
612 mutex_init(&ctl
->request_queue_lock
);
613 INIT_LIST_HEAD(&ctl
->request_queue
);
614 ctl
->frame_pool
= dma_pool_create("thunderbolt_ctl", &nhi
->pdev
->dev
,
615 TB_FRAME_SIZE
, 4, 0);
616 if (!ctl
->frame_pool
)
619 ctl
->tx
= tb_ring_alloc_tx(nhi
, 0, 10, RING_FLAG_NO_SUSPEND
);
623 ctl
->rx
= tb_ring_alloc_rx(nhi
, 0, 10, RING_FLAG_NO_SUSPEND
, 0xffff,
628 for (i
= 0; i
< TB_CTL_RX_PKG_COUNT
; i
++) {
629 ctl
->rx_packets
[i
] = tb_ctl_pkg_alloc(ctl
);
630 if (!ctl
->rx_packets
[i
])
632 ctl
->rx_packets
[i
]->frame
.callback
= tb_ctl_rx_callback
;
635 tb_ctl_dbg(ctl
, "control channel created\n");
643 * tb_ctl_free() - free a control channel
645 * Must be called after tb_ctl_stop.
647 * Must NOT be called from ctl->callback.
649 void tb_ctl_free(struct tb_ctl
*ctl
)
657 tb_ring_free(ctl
->rx
);
659 tb_ring_free(ctl
->tx
);
661 /* free RX packets */
662 for (i
= 0; i
< TB_CTL_RX_PKG_COUNT
; i
++)
663 tb_ctl_pkg_free(ctl
->rx_packets
[i
]);
666 dma_pool_destroy(ctl
->frame_pool
);
671 * tb_cfg_start() - start/resume the control channel
673 void tb_ctl_start(struct tb_ctl
*ctl
)
676 tb_ctl_dbg(ctl
, "control channel starting...\n");
677 tb_ring_start(ctl
->tx
); /* is used to ack hotplug packets, start first */
678 tb_ring_start(ctl
->rx
);
679 for (i
= 0; i
< TB_CTL_RX_PKG_COUNT
; i
++)
680 tb_ctl_rx_submit(ctl
->rx_packets
[i
]);
686 * control() - pause the control channel
688 * All invocations of ctl->callback will have finished after this method
691 * Must NOT be called from ctl->callback.
693 void tb_ctl_stop(struct tb_ctl
*ctl
)
695 mutex_lock(&ctl
->request_queue_lock
);
696 ctl
->running
= false;
697 mutex_unlock(&ctl
->request_queue_lock
);
699 tb_ring_stop(ctl
->rx
);
700 tb_ring_stop(ctl
->tx
);
702 if (!list_empty(&ctl
->request_queue
))
703 tb_ctl_WARN(ctl
, "dangling request in request_queue\n");
704 INIT_LIST_HEAD(&ctl
->request_queue
);
705 tb_ctl_dbg(ctl
, "control channel stopped\n");
708 /* public interface, commands */
711 * tb_cfg_ack_plug() - Ack hot plug/unplug event
712 * @ctl: Control channel to use
713 * @route: Router that originated the event
714 * @port: Port where the hot plug/unplug happened
715 * @unplug: Ack hot plug or unplug
717 * Call this as response for hot plug/unplug event to ack it.
718 * Returns %0 on success or an error code on failure.
720 int tb_cfg_ack_plug(struct tb_ctl
*ctl
, u64 route
, u32 port
, bool unplug
)
722 struct cfg_error_pkg pkg
= {
723 .header
= tb_cfg_make_header(route
),
725 .error
= TB_CFG_ERROR_ACK_PLUG_EVENT
,
726 .pg
= unplug
? TB_CFG_ERROR_PG_HOT_UNPLUG
727 : TB_CFG_ERROR_PG_HOT_PLUG
,
729 tb_ctl_dbg(ctl
, "acking hot %splug event on %llx:%x\n",
730 unplug
? "un" : "", route
, port
);
731 return tb_ctl_tx(ctl
, &pkg
, sizeof(pkg
), TB_CFG_PKG_ERROR
);
734 static bool tb_cfg_match(const struct tb_cfg_request
*req
,
735 const struct ctl_pkg
*pkg
)
737 u64 route
= tb_cfg_get_route(pkg
->buffer
) & ~BIT_ULL(63);
739 if (pkg
->frame
.eof
== TB_CFG_PKG_ERROR
)
742 if (pkg
->frame
.eof
!= req
->response_type
)
744 if (route
!= tb_cfg_get_route(req
->request
))
746 if (pkg
->frame
.size
!= req
->response_size
)
749 if (pkg
->frame
.eof
== TB_CFG_PKG_READ
||
750 pkg
->frame
.eof
== TB_CFG_PKG_WRITE
) {
751 const struct cfg_read_pkg
*req_hdr
= req
->request
;
752 const struct cfg_read_pkg
*res_hdr
= pkg
->buffer
;
754 if (req_hdr
->addr
.seq
!= res_hdr
->addr
.seq
)
761 static bool tb_cfg_copy(struct tb_cfg_request
*req
, const struct ctl_pkg
*pkg
)
763 struct tb_cfg_result res
;
765 /* Now make sure it is in expected format */
766 res
= parse_header(pkg
, req
->response_size
, req
->response_type
,
767 tb_cfg_get_route(req
->request
));
769 memcpy(req
->response
, pkg
->buffer
, req
->response_size
);
773 /* Always complete when first response is received */
778 * tb_cfg_reset() - send a reset packet and wait for a response
780 * If the switch at route is incorrectly configured then we will not receive a
781 * reply (even though the switch will reset). The caller should check for
782 * -ETIMEDOUT and attempt to reconfigure the switch.
784 struct tb_cfg_result
tb_cfg_reset(struct tb_ctl
*ctl
, u64 route
,
787 struct cfg_reset_pkg request
= { .header
= tb_cfg_make_header(route
) };
788 struct tb_cfg_result res
= { 0 };
789 struct tb_cfg_header reply
;
790 struct tb_cfg_request
*req
;
792 req
= tb_cfg_request_alloc();
798 req
->match
= tb_cfg_match
;
799 req
->copy
= tb_cfg_copy
;
800 req
->request
= &request
;
801 req
->request_size
= sizeof(request
);
802 req
->request_type
= TB_CFG_PKG_RESET
;
803 req
->response
= &reply
;
804 req
->response_size
= sizeof(reply
);
805 req
->response_type
= TB_CFG_PKG_RESET
;
807 res
= tb_cfg_request_sync(ctl
, req
, timeout_msec
);
809 tb_cfg_request_put(req
);
815 * tb_cfg_read() - read from config space into buffer
817 * Offset and length are in dwords.
819 struct tb_cfg_result
tb_cfg_read_raw(struct tb_ctl
*ctl
, void *buffer
,
820 u64 route
, u32 port
, enum tb_cfg_space space
,
821 u32 offset
, u32 length
, int timeout_msec
)
823 struct tb_cfg_result res
= { 0 };
824 struct cfg_read_pkg request
= {
825 .header
= tb_cfg_make_header(route
),
833 struct cfg_write_pkg reply
;
836 while (retries
< TB_CTL_RETRIES
) {
837 struct tb_cfg_request
*req
;
839 req
= tb_cfg_request_alloc();
845 request
.addr
.seq
= retries
++;
847 req
->match
= tb_cfg_match
;
848 req
->copy
= tb_cfg_copy
;
849 req
->request
= &request
;
850 req
->request_size
= sizeof(request
);
851 req
->request_type
= TB_CFG_PKG_READ
;
852 req
->response
= &reply
;
853 req
->response_size
= 12 + 4 * length
;
854 req
->response_type
= TB_CFG_PKG_READ
;
856 res
= tb_cfg_request_sync(ctl
, req
, timeout_msec
);
858 tb_cfg_request_put(req
);
860 if (res
.err
!= -ETIMEDOUT
)
863 /* Wait a bit (arbitrary time) until we send a retry */
864 usleep_range(10, 100);
870 res
.response_port
= reply
.addr
.port
;
871 res
.err
= check_config_address(reply
.addr
, space
, offset
, length
);
873 memcpy(buffer
, &reply
.data
, 4 * length
);
878 * tb_cfg_write() - write from buffer into config space
880 * Offset and length are in dwords.
882 struct tb_cfg_result
tb_cfg_write_raw(struct tb_ctl
*ctl
, const void *buffer
,
883 u64 route
, u32 port
, enum tb_cfg_space space
,
884 u32 offset
, u32 length
, int timeout_msec
)
886 struct tb_cfg_result res
= { 0 };
887 struct cfg_write_pkg request
= {
888 .header
= tb_cfg_make_header(route
),
896 struct cfg_read_pkg reply
;
899 memcpy(&request
.data
, buffer
, length
* 4);
901 while (retries
< TB_CTL_RETRIES
) {
902 struct tb_cfg_request
*req
;
904 req
= tb_cfg_request_alloc();
910 request
.addr
.seq
= retries
++;
912 req
->match
= tb_cfg_match
;
913 req
->copy
= tb_cfg_copy
;
914 req
->request
= &request
;
915 req
->request_size
= 12 + 4 * length
;
916 req
->request_type
= TB_CFG_PKG_WRITE
;
917 req
->response
= &reply
;
918 req
->response_size
= sizeof(reply
);
919 req
->response_type
= TB_CFG_PKG_WRITE
;
921 res
= tb_cfg_request_sync(ctl
, req
, timeout_msec
);
923 tb_cfg_request_put(req
);
925 if (res
.err
!= -ETIMEDOUT
)
928 /* Wait a bit (arbitrary time) until we send a retry */
929 usleep_range(10, 100);
935 res
.response_port
= reply
.addr
.port
;
936 res
.err
= check_config_address(reply
.addr
, space
, offset
, length
);
940 static int tb_cfg_get_error(struct tb_ctl
*ctl
, enum tb_cfg_space space
,
941 const struct tb_cfg_result
*res
)
944 * For unimplemented ports access to port config space may return
945 * TB_CFG_ERROR_INVALID_CONFIG_SPACE (alternatively their type is
946 * set to TB_TYPE_INACTIVE). In the former case return -ENODEV so
947 * that the caller can mark the port as disabled.
949 if (space
== TB_CFG_PORT
&&
950 res
->tb_error
== TB_CFG_ERROR_INVALID_CONFIG_SPACE
)
953 tb_cfg_print_error(ctl
, res
);
957 int tb_cfg_read(struct tb_ctl
*ctl
, void *buffer
, u64 route
, u32 port
,
958 enum tb_cfg_space space
, u32 offset
, u32 length
)
960 struct tb_cfg_result res
= tb_cfg_read_raw(ctl
, buffer
, route
, port
,
961 space
, offset
, length
, TB_CFG_DEFAULT_TIMEOUT
);
968 /* Thunderbolt error, tb_error holds the actual number */
969 return tb_cfg_get_error(ctl
, space
, &res
);
972 tb_ctl_warn(ctl
, "%llx: timeout reading config space %u from %#x\n",
973 route
, space
, offset
);
977 WARN(1, "tb_cfg_read: %d\n", res
.err
);
983 int tb_cfg_write(struct tb_ctl
*ctl
, const void *buffer
, u64 route
, u32 port
,
984 enum tb_cfg_space space
, u32 offset
, u32 length
)
986 struct tb_cfg_result res
= tb_cfg_write_raw(ctl
, buffer
, route
, port
,
987 space
, offset
, length
, TB_CFG_DEFAULT_TIMEOUT
);
994 /* Thunderbolt error, tb_error holds the actual number */
995 return tb_cfg_get_error(ctl
, space
, &res
);
998 tb_ctl_warn(ctl
, "%llx: timeout writing config space %u to %#x\n",
999 route
, space
, offset
);
1003 WARN(1, "tb_cfg_write: %d\n", res
.err
);
1010 * tb_cfg_get_upstream_port() - get upstream port number of switch at route
1012 * Reads the first dword from the switches TB_CFG_SWITCH config area and
1013 * returns the port number from which the reply originated.
1015 * Return: Returns the upstream port number on success or an error code on
1018 int tb_cfg_get_upstream_port(struct tb_ctl
*ctl
, u64 route
)
1021 struct tb_cfg_result res
= tb_cfg_read_raw(ctl
, &dummy
, route
, 0,
1022 TB_CFG_SWITCH
, 0, 1,
1023 TB_CFG_DEFAULT_TIMEOUT
);
1028 return res
.response_port
;