source: mainline/uspace/lib/usbhost/include/usb/host/endpoint.h@ 6832245

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

usbhost bus: refactor the bus ops

This way, method names better represent the entity it is working with.
Their semantics was shifted a bit.

Regarding the tree of structures:

bus ← device ← endpoint ← batch

Previously, devices were kept in DDF function nodes, and endpoints had
pointer to the bus and device. Now, devices have pointer to bus,
endpoints don't.

Pointer to hcd_t in bus is WIP, and will be removed.

  • Property mode set to 100644
File size: 4.2 KB
RevLine 
[6ce42e85]1/*
2 * Copyright (c) 2011 Jan Vesely
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
[160b75e]29/** @addtogroup libusbhost
[6ce42e85]30 * @{
31 */
32/** @file
[41924f30]33 *
34 * Endpoint structure is tightly coupled to the bus. The bus controls the
35 * life-cycle of endpoint. In order to keep endpoints lightweight, operations
36 * on endpoints are part of the bus structure.
[8dc762e0]37 *
[6ce42e85]38 */
[160b75e]39#ifndef LIBUSBHOST_HOST_ENDPOINT_H
40#define LIBUSBHOST_HOST_ENDPOINT_H
[6ce42e85]41
42#include <adt/list.h>
[64fea02]43#include <atomic.h>
[6a32665d]44#include <fibril_synch.h>
[64fea02]45#include <stdbool.h>
[6ce42e85]46#include <usb/usb.h>
[6832245]47#include <usb/host/bus.h>
[6ce42e85]48
[41924f30]49typedef struct bus bus_t;
[20eaa82]50typedef struct device device_t;
[5fd9c30]51typedef struct usb_transfer_batch usb_transfer_batch_t;
[41924f30]52
[17412546]53/** Host controller side endpoint structure. */
[6ce42e85]54typedef struct endpoint {
[17873ac7]55 /** Part of linked list. */
56 link_t link;
[20eaa82]57 /** USB device */
58 device_t *device;
[6832245]59 /** Reference count. */
60 atomic_t refcnt;
[a5b3de6]61 /** Enpoint number */
62 usb_endpoint_t endpoint;
[17412546]63 /** Communication direction. */
[0aae4a6a]64 usb_direction_t direction;
[17412546]65 /** USB transfer type. */
[6ce42e85]66 usb_transfer_type_t transfer_type;
[17412546]67 /** Maximum size of data packets. */
[6ce42e85]68 size_t max_packet_size;
[4e732f1a]69 /** Additional opportunities per uframe */
70 unsigned packets;
[41924f30]71 /** Reserved bandwidth. */
[83c3123]72 size_t bandwidth;
[17412546]73 /** Value of the toggle bit. */
[f567bcf]74 unsigned toggle:1;
[17873ac7]75 /** The currently active transfer batch. Write using methods, read under guard. */
76 usb_transfer_batch_t *active_batch;
[17412546]77 /** Protects resources and active status changes. */
[6a32665d]78 fibril_mutex_t guard;
[17412546]79 /** Signals change of active status. */
[6a32665d]80 fibril_condvar_t avail;
[41924f30]81
82 /* This structure is meant to be extended by overriding. */
[6ce42e85]83} endpoint_t;
84
[6832245]85extern void endpoint_init(endpoint_t *, device_t *, const usb_endpoint_desc_t *);
[1e70157]86
[58563585]87extern void endpoint_add_ref(endpoint_t *);
88extern void endpoint_del_ref(endpoint_t *);
[f527f58]89
[17873ac7]90/* Pay atention to synchronization of batch access wrt to aborting & finishing from another fibril. */
91
92/* Set currently active batch. The common case is to activate in the same
93 * critical section as scheduling to HW.
94 */
95extern void endpoint_activate_locked(endpoint_t *, usb_transfer_batch_t *);
96
97/* Deactivate the endpoint, allowing others to activate it again. Batch shall
98 * already have an error set. */
99extern void endpoint_deactivate_locked(endpoint_t *);
100
101/* Abort the currenty active batch. */
102void endpoint_abort(endpoint_t *);
[6a32665d]103
[6832245]104/* Manage the toggle bit */
[58563585]105extern int endpoint_toggle_get(endpoint_t *);
[17873ac7]106extern void endpoint_toggle_set(endpoint_t *, bool);
[7265558]107
[6832245]108/* Calculate bandwidth */
109ssize_t endpoint_count_bw(endpoint_t *, size_t);
110
111static inline bus_t *endpoint_get_bus(endpoint_t *ep)
112{
113 return ep->device->bus;
114}
115
[17412546]116/** list_get_instance wrapper.
[58563585]117 *
[17412546]118 * @param item Pointer to link member.
[58563585]119 *
[c59dbdd5]120 * @return Pointer to endpoint_t structure.
[58563585]121 *
[17412546]122 */
[7265558]123static inline endpoint_t * endpoint_get_instance(link_t *item)
124{
[c59dbdd5]125 return item ? list_get_instance(item, endpoint_t, link) : NULL;
[7265558]126}
[a5b3de6]127
[6ce42e85]128#endif
[58563585]129
[6ce42e85]130/**
131 * @}
132 */
Note: See TracBrowser for help on using the repository browser.