source: mainline/uspace/drv/bus/usb/uhci/hw_struct/queue_head.h@ 47a9633

lfn serial ticket/834-toolchain-update topic/msim-upgrade topic/simplify-dev-export
Last change on this file since 47a9633 was 8d2dd7f2, checked in by Jakub Jermar <jakub@…>, 8 years ago

Reduce the number of files that include <sys/types.h>

  • Property mode set to 100644
File size: 3.4 KB
Line 
1/*
2 * Copyright (c) 2010 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 drvusbuhcihc
30 * @{
31 */
32/** @file
33 * @brief UHCI driver
34 */
35
36#ifndef DRV_UHCI_HW_STRUCT_QH_H
37#define DRV_UHCI_HW_STRUCT_QH_H
38
39#include <assert.h>
40#include <stdint.h>
41#include <usb/host/utils/malloc32.h>
42
43#include "link_pointer.h"
44#include "transfer_descriptor.h"
45
46/** This structure is defined in UHCI design guide p. 31 */
47typedef struct queue_head {
48 /** Pointer to the next entity (another QH or TD */
49 volatile link_pointer_t next;
50 /** Pointer to the contained entities (execution controlled by vertical flag*/
51 volatile link_pointer_t element;
52} __attribute__((packed)) qh_t;
53
54/** Initialize queue head structure
55 *
56 * @param[in] instance qh_t structure to initialize.
57 *
58 * Sets both pointer to terminal NULL.
59 */
60static inline void qh_init(qh_t *instance)
61{
62 assert(instance);
63
64 instance->element = LINK_POINTER_TERM;
65 instance->next = LINK_POINTER_TERM;
66}
67
68/** Set queue head next pointer
69 *
70 * @param[in] instance qh_t structure to use.
71 * @param[in] next Address of the next queue.
72 *
73 * Adds proper flag. If the pointer is NULL, sets next to terminal NULL.
74 */
75static inline void qh_set_next_qh(qh_t *instance, qh_t *next)
76{
77 /* Physical address has to be below 4GB,
78 * it is an UHCI limitation and malloc32
79 * should guarantee this */
80 const uint32_t pa = addr_to_phys(next);
81 if (pa) {
82 instance->next = LINK_POINTER_QH(pa);
83 } else {
84 instance->next = LINK_POINTER_TERM;
85 }
86}
87
88/** Set queue head element pointer
89 *
90 * @param[in] instance qh_t structure to use.
91 * @param[in] td Transfer descriptor to set as the first element.
92 *
93 * Adds proper flag. If the pointer is NULL, sets element to terminal NULL.
94 */
95static inline void qh_set_element_td(qh_t *instance, td_t *td)
96{
97 /* Physical address has to be below 4GB,
98 * it is an UHCI limitation and malloc32
99 * should guarantee this */
100 const uint32_t pa = addr_to_phys(td);
101 if (pa) {
102 instance->element = LINK_POINTER_TD(pa);
103 } else {
104 instance->element = LINK_POINTER_TERM;
105 }
106}
107
108#endif
109
110/**
111 * @}
112 */
Note: See TracBrowser for help on using the repository browser.