source: mainline/uspace/drv/bus/usb/xhci/commands.c@ 1f76b7d

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 1f76b7d was 1f76b7d, checked in by Ondřej Hlavatý <aearsis@…>, 8 years ago

fix: unlock rather than deadlock

  • Property mode set to 100644
File size: 13.1 KB
RevLine 
[c9c0e41]1/*
2 * Copyright (c) 2017 Jaroslav Jindrak
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
7 * are met:
8 *
9 * - Redistributions of source code must retain the above copyright
10 * notice, this list of conditions and the following disclaimer.
11 * - Redistributions in binary form must reproduce the above copyright
12 * notice, this list of conditions and the following disclaimer in the
13 * documentation and/or other materials provided with the distribution.
14 * - The name of the author may not be used to endorse or promote products
15 * derived from this software without specific prior written permission.
16 *
17 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 */
28
29/** @addtogroup drvusbxhci
30 * @{
31 */
32/** @file
33 * @brief Command sending functions.
34 */
35
36#include <errno.h>
37#include <str_error.h>
38#include <usb/debug.h>
39#include <usb/host/utils/malloc32.h>
40#include "commands.h"
41#include "debug.h"
42#include "hc.h"
[8db42f7]43#include "hw_struct/context.h"
[c9c0e41]44#include "hw_struct/trb.h"
45
[1b78a7c1]46#define TRB_SET_TCS(trb, tcs) (trb).control |= host2xhci(32, ((tcs &0x1) << 9))
47#define TRB_SET_TYPE(trb, type) (trb).control |= host2xhci(32, (type) << 10)
48#define TRB_SET_EP(trb, ep) (trb).control |= host2xhci(32, ((ep) & 0x5) << 16)
[0cabd10]49#define TRB_SET_STREAM(trb, st) (trb).control |= host2xhci(32, ((st) & 0xFFFF) << 16)
[1b78a7c1]50#define TRB_SET_SUSP(trb, susp) (trb).control |= host2xhci(32, ((susp) & 0x1) << 23)
51#define TRB_SET_SLOT(trb, slot) (trb).control |= host2xhci(32, (slot) << 24)
52
[0cabd10]53/**
54 * TODO: Not sure about SCT and DCS (see section 6.4.3.9).
55 */
56#define TRB_SET_DEQUEUE_PTR(trb, dptr) (trb).parameter |= host2xhci(64, (dptr))
[548c123]57#define TRB_SET_ICTX(trb, phys) (trb).parameter |= host2xhci(64, phys_addr & (~0xF))
[1b78a7c1]58
59#define TRB_GET_CODE(trb) XHCI_DWORD_EXTRACT((trb).status, 31, 24)
60#define TRB_GET_SLOT(trb) XHCI_DWORD_EXTRACT((trb).control, 31, 24)
61#define TRB_GET_PHYS(trb) (XHCI_QWORD_EXTRACT((trb).parameter, 63, 4) << 4)
62
[110d795]63int xhci_init_commands(xhci_hc_t *hc)
64{
65 assert(hc);
66
67 list_initialize(&hc->commands);
68 return EOK;
69}
70
[c46c356]71void xhci_fini_commands(xhci_hc_t *hc)
72{
73 // Note: Untested.
74 assert(hc);
75}
76
[04df063]77int xhci_cmd_wait(xhci_cmd_t *cmd, suseconds_t timeout)
[110d795]78{
[4688350b]79 int rv = EOK;
80
81 fibril_mutex_lock(&cmd->completed_mtx);
[110d795]82 while (!cmd->completed) {
[4688350b]83 usb_log_debug2("Waiting for event completion: going to sleep.");
84 rv = fibril_condvar_wait_timeout(&cmd->completed_cv, &cmd->completed_mtx, timeout);
[110d795]85
[4688350b]86 usb_log_debug2("Waiting for event completion: woken: %s", str_error(rv));
87 if (rv == ETIMEOUT)
88 break;
[110d795]89 }
[1f76b7d]90 fibril_mutex_unlock(&cmd->completed_mtx);
[110d795]91
[4688350b]92 return rv;
[110d795]93}
94
[04df063]95xhci_cmd_t *xhci_cmd_alloc(void)
[110d795]96{
97 xhci_cmd_t *cmd = malloc32(sizeof(xhci_cmd_t));
[4688350b]98 xhci_cmd_init(cmd);
[04df063]99
100 usb_log_debug2("Allocating cmd on the heap. Don't forget to deallocate it!");
[4688350b]101 return cmd;
102}
103
104void xhci_cmd_init(xhci_cmd_t *cmd)
105{
106 memset(cmd, 0, sizeof(*cmd));
[110d795]107
108 link_initialize(&cmd->link);
109
[4688350b]110 fibril_mutex_initialize(&cmd->completed_mtx);
111 fibril_condvar_initialize(&cmd->completed_cv);
[110d795]112}
113
[04df063]114void xhci_cmd_fini(xhci_cmd_t *cmd)
[110d795]115{
[9304b66]116 list_remove(&cmd->link);
[04df063]117}
[9304b66]118
[04df063]119void xhci_cmd_free(xhci_cmd_t *cmd)
120{
121 xhci_cmd_fini(cmd);
[110d795]122 free32(cmd);
123}
124
[2fa43d1]125static inline xhci_cmd_t *get_command(xhci_hc_t *hc, uint64_t phys)
[110d795]126{
127 link_t *cmd_link = list_first(&hc->commands);
128
[548c123]129
130 usb_log_debug2("Searching TRB %lu...", phys);
131
[2fa43d1]132 while (cmd_link != NULL) {
133 xhci_cmd_t *cmd = list_get_instance(cmd_link, xhci_cmd_t, link);
134
[548c123]135 if (cmd->trb_phys == phys)
[2fa43d1]136 break;
137
138 cmd_link = list_next(cmd_link, &hc->commands);
139 }
140
[110d795]141 if (cmd_link != NULL) {
142 list_remove(cmd_link);
[9f5b613]143
[110d795]144 return list_get_instance(cmd_link, xhci_cmd_t, link);
145 }
146
147 return NULL;
148}
149
[481af21e]150static inline int ring_doorbell(xhci_hc_t *hc, unsigned doorbell, unsigned target)
[c9c0e41]151{
[c058a388]152 assert(hc);
[c9c0e41]153 uint32_t v = host2xhci(32, target & BIT_RRANGE(uint32_t, 7));
154 pio_write_32(&hc->db_arry[doorbell], v);
155 return EOK;
156}
157
[548c123]158static inline int enqueue_command(xhci_hc_t *hc, xhci_cmd_t *cmd, unsigned doorbell, unsigned target)
[481af21e]159{
[c058a388]160 assert(hc);
[548c123]161 assert(cmd);
162
163 list_append(&cmd->link, &hc->commands);
[c058a388]164
[548c123]165 xhci_trb_ring_enqueue(&hc->command_ring, &cmd->trb, &cmd->trb_phys);
[481af21e]166 ring_doorbell(hc, doorbell, target);
167
[548c123]168 usb_log_debug2("HC(%p): Sent command:", hc);
169 xhci_dump_trb(&cmd->trb);
[481af21e]170
171 return EOK;
172}
173
[3dc519f]174void xhci_stop_command_ring(xhci_hc_t *hc)
175{
176 assert(hc);
177
178 XHCI_REG_SET(hc->op_regs, XHCI_OP_CS, 1);
179
180 /**
181 * Note: There is a bug in qemu that checks CS only when CRCR_HI
182 * is written, this (and the read/write in abort) ensures
183 * the command rings stops.
184 */
185 XHCI_REG_WR(hc->op_regs, XHCI_OP_CRCR_HI, XHCI_REG_RD(hc->op_regs, XHCI_OP_CRCR_HI));
186}
187
188void xhci_abort_command_ring(xhci_hc_t *hc)
189{
190 assert(hc);
191
192 XHCI_REG_WR(hc->op_regs, XHCI_OP_CA, 1);
193 XHCI_REG_WR(hc->op_regs, XHCI_OP_CRCR_HI, XHCI_REG_RD(hc->op_regs, XHCI_OP_CRCR_HI));
194}
195
196void xhci_start_command_ring(xhci_hc_t *hc)
197{
198 assert(hc);
199
200 XHCI_REG_WR(hc->op_regs, XHCI_OP_CRR, 1);
201 ring_doorbell(hc, 0, 0);
202}
203
[4fa5342]204static const char *trb_codes [] = {
205#define TRBC(t) [XHCI_TRBC_##t] = #t
206 TRBC(INVALID),
207 TRBC(SUCCESS),
208 TRBC(DATA_BUFFER_ERROR),
209 TRBC(BABBLE_DETECTED_ERROR),
210 TRBC(USB_TRANSACTION_ERROR),
211 TRBC(TRB_ERROR),
212 TRBC(STALL_ERROR),
213 TRBC(RESOURCE_ERROR),
214 TRBC(BANDWIDTH_ERROR),
215 TRBC(NO_SLOTS_ERROR),
216 TRBC(INVALID_STREAM_ERROR),
217 TRBC(SLOT_NOT_ENABLED_ERROR),
218 TRBC(EP_NOT_ENABLED_ERROR),
219 TRBC(SHORT_PACKET),
220 TRBC(RING_UNDERRUN),
221 TRBC(RING_OVERRUN),
222 TRBC(VF_EVENT_RING_FULL),
223 TRBC(PARAMETER_ERROR),
224 TRBC(BANDWIDTH_OVERRUN_ERROR),
225 TRBC(CONTEXT_STATE_ERROR),
226 TRBC(NO_PING_RESPONSE_ERROR),
227 TRBC(EVENT_RING_FULL_ERROR),
228 TRBC(INCOMPATIBLE_DEVICE_ERROR),
229 TRBC(MISSED_SERVICE_ERROR),
230 TRBC(COMMAND_RING_STOPPED),
231 TRBC(COMMAND_ABORTED),
232 TRBC(STOPPED),
233 TRBC(STOPPED_LENGTH_INVALID),
234 TRBC(STOPPED_SHORT_PACKET),
235 TRBC(MAX_EXIT_LATENCY_TOO_LARGE_ERROR),
236 [30] = "<reserved>",
237 TRBC(ISOCH_BUFFER_OVERRUN),
238 TRBC(EVENT_LOST_ERROR),
239 TRBC(UNDEFINED_ERROR),
240 TRBC(INVALID_STREAM_ID_ERROR),
241 TRBC(SECONDARY_BANDWIDTH_ERROR),
242 TRBC(SPLIT_TRANSACTION_ERROR),
243 [XHCI_TRBC_MAX] = NULL
244#undef TRBC
245};
246
247static void report_error(int code)
248{
249 if (code < XHCI_TRBC_MAX && trb_codes[code] != NULL)
250 usb_log_error("Command resulted in error: %s.", trb_codes[code]);
251 else
252 usb_log_error("Command resulted in reserved or vendor specific error.");
253}
254
[110d795]255int xhci_send_no_op_command(xhci_hc_t *hc, xhci_cmd_t *cmd)
[c9c0e41]256{
[c058a388]257 assert(hc);
258
[548c123]259 xhci_trb_clean(&cmd->trb);
[c9c0e41]260
[548c123]261 TRB_SET_TYPE(cmd->trb, XHCI_TRB_TYPE_NO_OP_CMD);
[110d795]262
[548c123]263 return enqueue_command(hc, cmd, 0, 0);
[c9c0e41]264}
265
[110d795]266int xhci_send_enable_slot_command(xhci_hc_t *hc, xhci_cmd_t *cmd)
[c9c0e41]267{
[c058a388]268 assert(hc);
269
[548c123]270 xhci_trb_clean(&cmd->trb);
[c9c0e41]271
[548c123]272 TRB_SET_TYPE(cmd->trb, XHCI_TRB_TYPE_ENABLE_SLOT_CMD);
273 cmd->trb.control |= host2xhci(32, XHCI_REG_RD(hc->xecp, XHCI_EC_SP_SLOT_TYPE) << 16);
[110d795]274
[548c123]275 return enqueue_command(hc, cmd, 0, 0);
[5ac5eb1]276}
277
[110d795]278int xhci_send_disable_slot_command(xhci_hc_t *hc, xhci_cmd_t *cmd)
[5ac5eb1]279{
[c058a388]280 assert(hc);
[110d795]281 assert(cmd);
[c058a388]282
[548c123]283 xhci_trb_clean(&cmd->trb);
[5ac5eb1]284
[548c123]285 TRB_SET_TYPE(cmd->trb, XHCI_TRB_TYPE_DISABLE_SLOT_CMD);
286 TRB_SET_SLOT(cmd->trb, cmd->slot_id);
[110d795]287
[548c123]288 return enqueue_command(hc, cmd, 0, 0);
[c9c0e41]289}
290
[04df063]291int xhci_send_address_device_command(xhci_hc_t *hc, xhci_cmd_t *cmd, xhci_input_ctx_t *ictx)
[8db42f7]292{
[c058a388]293 assert(hc);
[110d795]294 assert(cmd);
[04df063]295 assert(ictx);
[c058a388]296
[8db42f7]297 /**
298 * TODO: Requirements for this command:
299 * dcbaa[slot_id] is properly sized and initialized
300 * ictx has valids slot context and endpoint 0, all
301 * other should be ignored at this point (see section 4.6.5).
302 */
[04df063]303
[548c123]304 xhci_trb_clean(&cmd->trb);
[8db42f7]305
[04df063]306 uint64_t phys_addr = (uint64_t) addr_to_phys(ictx);
[548c123]307 TRB_SET_ICTX(cmd->trb, phys_addr);
[8db42f7]308
309 /**
310 * Note: According to section 6.4.3.4, we can set the 9th bit
311 * of the control field of the trb (BSR) to 1 and then the xHC
312 * will not issue the SET_ADDRESS request to the USB device.
313 * This can be used to provide compatibility with legacy USB devices
314 * that require their device descriptor to be read before such request.
315 */
[548c123]316 TRB_SET_TYPE(cmd->trb, XHCI_TRB_TYPE_ADDRESS_DEVICE_CMD);
317 TRB_SET_SLOT(cmd->trb, cmd->slot_id);
[8db42f7]318
[548c123]319 return enqueue_command(hc, cmd, 0, 0);
[8db42f7]320}
321
[04df063]322int xhci_send_configure_endpoint_command(xhci_hc_t *hc, xhci_cmd_t *cmd, xhci_input_ctx_t *ictx)
[665bf3c]323{
[c058a388]324 assert(hc);
[110d795]325 assert(cmd);
[04df063]326 assert(ictx);
[c058a388]327
[548c123]328 xhci_trb_clean(&cmd->trb);
[665bf3c]329
[04df063]330 uint64_t phys_addr = (uint64_t) addr_to_phys(ictx);
[548c123]331 TRB_SET_ICTX(cmd->trb, phys_addr);
[110d795]332
[548c123]333 TRB_SET_TYPE(cmd->trb, XHCI_TRB_TYPE_CONFIGURE_ENDPOINT_CMD);
334 TRB_SET_SLOT(cmd->trb, cmd->slot_id);
[665bf3c]335
[548c123]336 return enqueue_command(hc, cmd, 0, 0);
[665bf3c]337}
338
[04df063]339int xhci_send_evaluate_context_command(xhci_hc_t *hc, xhci_cmd_t *cmd, xhci_input_ctx_t *ictx)
[c9ce62ae]340{
[c058a388]341 assert(hc);
[110d795]342 assert(cmd);
[04df063]343 assert(ictx);
[c058a388]344
[c9ce62ae]345 /**
346 * Note: All Drop Context flags of the input context shall be 0,
347 * all Add Context flags shall be initialize to indicate IDs
348 * of the contexts affected by the command.
349 * Refer to sections 6.2.2.3 and 6.3.3.3 for further info.
350 */
[548c123]351 xhci_trb_clean(&cmd->trb);
[c9ce62ae]352
[04df063]353 uint64_t phys_addr = (uint64_t) addr_to_phys(ictx);
[548c123]354 TRB_SET_ICTX(cmd->trb, phys_addr);
[c9ce62ae]355
[548c123]356 TRB_SET_TYPE(cmd->trb, XHCI_TRB_TYPE_EVALUATE_CONTEXT_CMD);
357 TRB_SET_SLOT(cmd->trb, cmd->slot_id);
[110d795]358
[548c123]359 return enqueue_command(hc, cmd, 0, 0);
[c9ce62ae]360}
361
[110d795]362int xhci_send_reset_endpoint_command(xhci_hc_t *hc, xhci_cmd_t *cmd, uint32_t ep_id, uint8_t tcs)
[05aeee0e]363{
[c058a388]364 assert(hc);
[110d795]365 assert(cmd);
[c058a388]366
[05aeee0e]367 /**
368 * Note: TCS can have values 0 or 1. If it is set to 0, see sectuon 4.5.8 for
369 * information about this flag.
370 */
[548c123]371 xhci_trb_clean(&cmd->trb);
[05aeee0e]372
[548c123]373 TRB_SET_TYPE(cmd->trb, XHCI_TRB_TYPE_RESET_ENDPOINT_CMD);
374 TRB_SET_TCS(cmd->trb, tcs);
375 TRB_SET_EP(cmd->trb, ep_id);
376 TRB_SET_SLOT(cmd->trb, cmd->slot_id);
[c9bec1c]377
[548c123]378 return enqueue_command(hc, cmd, 0, 0);
[05aeee0e]379}
380
[110d795]381int xhci_send_stop_endpoint_command(xhci_hc_t *hc, xhci_cmd_t *cmd, uint32_t ep_id, uint8_t susp)
[05aeee0e]382{
[c058a388]383 assert(hc);
[110d795]384 assert(cmd);
[c058a388]385
[548c123]386 xhci_trb_clean(&cmd->trb);
[110d795]387
[548c123]388 TRB_SET_TYPE(cmd->trb, XHCI_TRB_TYPE_STOP_ENDPOINT_CMD);
389 TRB_SET_EP(cmd->trb, ep_id);
390 TRB_SET_SUSP(cmd->trb, susp);
391 TRB_SET_SLOT(cmd->trb, cmd->slot_id);
[05aeee0e]392
[548c123]393 return enqueue_command(hc, cmd, 0, 0);
[c058a388]394}
[05aeee0e]395
[0cabd10]396int xhci_send_set_dequeue_ptr_command(xhci_hc_t *hc, xhci_cmd_t *cmd,
397 uintptr_t dequeue_ptr, uint16_t stream_id,
398 uint32_t ep_id)
399{
400 assert(hc);
401 assert(cmd);
402
[548c123]403 xhci_trb_clean(&cmd->trb);
[0cabd10]404
[548c123]405 TRB_SET_TYPE(cmd->trb, XHCI_TRB_TYPE_SET_TR_DEQUEUE_POINTER_CMD);
406 TRB_SET_EP(cmd->trb, ep_id);
407 TRB_SET_STREAM(cmd->trb, stream_id);
408 TRB_SET_SLOT(cmd->trb, cmd->slot_id);
409 TRB_SET_DEQUEUE_PTR(cmd->trb, dequeue_ptr);
[0cabd10]410
411 /**
412 * TODO: Set DCS (see section 4.6.10).
413 */
414
[548c123]415 return enqueue_command(hc, cmd, 0, 0);
[0cabd10]416}
417
[110d795]418int xhci_send_reset_device_command(xhci_hc_t *hc, xhci_cmd_t *cmd)
[c058a388]419{
420 assert(hc);
[110d795]421 assert(cmd);
[c058a388]422
[548c123]423 xhci_trb_clean(&cmd->trb);
[c058a388]424
[548c123]425 TRB_SET_TYPE(cmd->trb, XHCI_TRB_TYPE_RESET_DEVICE_CMD);
426 TRB_SET_SLOT(cmd->trb, cmd->slot_id);
[c9bec1c]427
[548c123]428 return enqueue_command(hc, cmd, 0, 0);
[05aeee0e]429}
430
[f9e7fe8]431int xhci_handle_command_completion(xhci_hc_t *hc, xhci_trb_t *trb)
432{
[110d795]433 // TODO: Update dequeue ptrs.
[c058a388]434 assert(hc);
435 assert(trb);
436
[5ac5eb1]437 usb_log_debug("HC(%p) Command completed.", hc);
[f9e7fe8]438
[5ac5eb1]439 int code;
[2fa43d1]440 uint64_t phys;
[110d795]441 xhci_cmd_t *command;
[f711f06]442
[1b78a7c1]443 code = TRB_GET_CODE(*trb);
444 phys = TRB_GET_PHYS(*trb);;
[2fa43d1]445 command = get_command(hc, phys);
446 if (command == NULL) {
447 // TODO: STOP & ABORT may not have command structs in the list!
[04df063]448 usb_log_debug("No command struct for this completion event found.");
[2fa43d1]449
450 if (code != XHCI_TRBC_SUCCESS)
451 report_error(code);
452
453 return EOK;
454 }
[110d795]455
456 command->status = code;
[1b78a7c1]457 command->slot_id = TRB_GET_SLOT(*trb);
[110d795]458
[548c123]459 usb_log_debug2("Completed command trb: %s", xhci_trb_str_type(TRB_TYPE(command->trb)));
460 if (TRB_TYPE(command->trb) != XHCI_TRB_TYPE_NO_OP_CMD) {
[665bf3c]461 if (code != XHCI_TRBC_SUCCESS) {
[4fa5342]462 report_error(code);
[548c123]463 xhci_dump_trb(&command->trb);
[665bf3c]464 }
465 }
[c362127]466
[548c123]467 switch (TRB_TYPE(command->trb)) {
[c362127]468 case XHCI_TRB_TYPE_NO_OP_CMD:
[9f5b613]469 assert(code == XHCI_TRBC_TRB_ERROR);
[110d795]470 break;
[c362127]471 case XHCI_TRB_TYPE_ENABLE_SLOT_CMD:
[110d795]472 break;
[5ac5eb1]473 case XHCI_TRB_TYPE_DISABLE_SLOT_CMD:
[110d795]474 break;
[8db42f7]475 case XHCI_TRB_TYPE_ADDRESS_DEVICE_CMD:
[110d795]476 break;
[665bf3c]477 case XHCI_TRB_TYPE_CONFIGURE_ENDPOINT_CMD:
[110d795]478 break;
[c9ce62ae]479 case XHCI_TRB_TYPE_EVALUATE_CONTEXT_CMD:
[110d795]480 break;
[05aeee0e]481 case XHCI_TRB_TYPE_RESET_ENDPOINT_CMD:
[110d795]482 break;
[05aeee0e]483 case XHCI_TRB_TYPE_STOP_ENDPOINT_CMD:
484 // Note: If the endpoint was in the middle of a transfer, then the xHC
485 // will add a Transfer TRB before the Event TRB, research that and
486 // handle it appropriately!
[110d795]487 break;
[c058a388]488 case XHCI_TRB_TYPE_RESET_DEVICE_CMD:
[110d795]489 break;
[c362127]490 default:
[548c123]491 usb_log_debug2("Unsupported command trb: %s", xhci_trb_str_type(TRB_TYPE(command->trb)));
[110d795]492
493 command->completed = true;
[665bf3c]494 return ENAK;
[f711f06]495 }
[110d795]496
[4688350b]497 fibril_mutex_lock(&command->completed_mtx);
[110d795]498 command->completed = true;
[4688350b]499 fibril_condvar_broadcast(&command->completed_cv);
500 fibril_mutex_unlock(&command->completed_mtx);
501
[110d795]502 return EOK;
[f9e7fe8]503}
[c9c0e41]504
505
506/**
507 * @}
508 */
Note: See TracBrowser for help on using the repository browser.