source: mainline/uspace/lib/usbhost/include/usb/host/hcd.h@ 8a23fef

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 8a23fef was 423c749, checked in by Jan Vesely <jano.vesely@…>, 12 years ago

libusbhost: Remove usb_device_manager.

Functions merged to usb_endpoint_manager.

  • Property mode set to 100644
File size: 3.6 KB
Line 
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
29/** @addtogroup libusbhost
30 * @{
31 */
32/** @file
33 *
34 */
35
36#ifndef LIBUSBHOST_HOST_HCD_H
37#define LIBUSBHOST_HOST_HCD_H
38
39#include <assert.h>
40#include <adt/list.h>
41#include <usbhc_iface.h>
42
43#include <usb/host/usb_endpoint_manager.h>
44#include <usb/host/usb_transfer_batch.h>
45
46typedef struct hcd hcd_t;
47
48typedef int (*schedule_hook_t)(hcd_t *, usb_transfer_batch_t *);
49typedef int (*ep_add_hook_t)(hcd_t *, endpoint_t *);
50typedef void (*ep_remove_hook_t)(hcd_t *, endpoint_t *);
51
52/** Generic host controller driver structure. */
53struct hcd {
54 /** Endpoint manager. */
55 usb_endpoint_manager_t ep_manager;
56
57 /** Device specific driver data. */
58 void *private_data;
59 /** Transfer scheduling, implement in device driver. */
60 schedule_hook_t schedule;
61 /** Hook called upon registering new endpoint. */
62 ep_add_hook_t ep_add_hook;
63 /** Hook called upon removing of an endpoint. */
64 ep_remove_hook_t ep_remove_hook;
65};
66
67void hcd_init(hcd_t *hcd, usb_speed_t max_speed, size_t bandwidth,
68 bw_count_func_t bw_count);
69
70static inline void hcd_set_implementation(hcd_t *hcd, void *data,
71 schedule_hook_t schedule, ep_add_hook_t add_hook, ep_remove_hook_t rem_hook)
72{
73 assert(hcd);
74 hcd->private_data = data;
75 hcd->schedule = schedule;
76 hcd->ep_add_hook = add_hook;
77 hcd->ep_remove_hook = rem_hook;
78
79}
80
81usb_address_t hcd_request_address(hcd_t *hcd, usb_speed_t speed);
82
83int hcd_release_address(hcd_t *hcd, usb_address_t address);
84
85int hcd_reserve_default_address(hcd_t *hcd, usb_speed_t speed);
86
87static inline int hcd_release_default_address(hcd_t *hcd)
88{
89 return hcd_release_address(hcd, USB_ADDRESS_DEFAULT);
90}
91
92int hcd_add_ep(hcd_t *hcd, usb_target_t target, usb_direction_t dir,
93 usb_transfer_type_t type, size_t max_packet_size, size_t size);
94
95int hcd_remove_ep(hcd_t *hcd, usb_target_t target, usb_direction_t dir);
96
97int hcd_send_batch(hcd_t *hcd, usb_target_t target, usb_direction_t direction,
98 void *data, size_t size, uint64_t setup_data,
99 usbhc_iface_transfer_in_callback_t in,
100 usbhc_iface_transfer_out_callback_t out, void *arg, const char* name);
101
102ssize_t hcd_send_batch_sync(hcd_t *hcd, usb_target_t target,
103 usb_direction_t dir, void *data, size_t size, uint64_t setup_data,
104 const char* name);
105
106#endif
107/**
108 * @}
109 */
Note: See TracBrowser for help on using the repository browser.