[fc9f88d] | 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 | */
|
---|
[58563585] | 28 |
|
---|
[fc9f88d] | 29 | /** @addtogroup drvusbohci
|
---|
| 30 | * @{
|
---|
| 31 | */
|
---|
| 32 | /** @file
|
---|
| 33 | * @brief OHCI driver
|
---|
| 34 | */
|
---|
[58563585] | 35 |
|
---|
[fc9f88d] | 36 | #ifndef DRV_OHCI_HW_STRUCT_HCCA_H
|
---|
| 37 | #define DRV_OHCI_HW_STRUCT_HCCA_H
|
---|
| 38 |
|
---|
[38d150e] | 39 | #include <stdlib.h>
|
---|
[8d2dd7f2] | 40 | #include <stdint.h>
|
---|
[81d5f74] | 41 | #include <macros.h>
|
---|
[805552d] | 42 | #include <assert.h>
|
---|
[fc9f88d] | 43 |
|
---|
[1b90e90] | 44 | #include "mem_access.h"
|
---|
| 45 |
|
---|
| 46 | #define HCCA_INT_EP_COUNT 32
|
---|
| 47 |
|
---|
[109d55c] | 48 | /** Host controller communication area.
|
---|
| 49 | * Shared memory used for communication between the controller and the driver.
|
---|
| 50 | */
|
---|
[fc9f88d] | 51 | typedef struct hcca {
|
---|
[1b90e90] | 52 | /** Interrupt endpoints */
|
---|
| 53 | uint32_t int_ep[HCCA_INT_EP_COUNT];
|
---|
| 54 | /** Frame number. */
|
---|
[fc9f88d] | 55 | uint16_t frame_number;
|
---|
[af60409] | 56 | PADD16(1);
|
---|
[1b90e90] | 57 | /** Pointer to the last completed TD. (useless) */
|
---|
[fc9f88d] | 58 | uint32_t done_head;
|
---|
[1b90e90] | 59 | /** Padding to make the size 256B */
|
---|
[af60409] | 60 | PADD32(30);
|
---|
[6c76e75] | 61 | } hcca_t;
|
---|
[fc9f88d] | 62 |
|
---|
[0a520db] | 63 | static_assert(sizeof(hcca_t) == 256, "");
|
---|
[3e48c93] | 64 |
|
---|
[1b90e90] | 65 | /** Allocate properly aligned structure.
|
---|
| 66 | *
|
---|
| 67 | * The returned structure is zeroed upon allocation.
|
---|
| 68 | *
|
---|
| 69 | * @return Usable HCCA memory structure.
|
---|
| 70 | */
|
---|
[1433ecda] | 71 | static inline hcca_t *hcca_get(void)
|
---|
[f8dfb40] | 72 | {
|
---|
[3e48c93] | 73 | hcca_t *hcca = memalign(sizeof(hcca_t), sizeof(hcca_t));
|
---|
[1b90e90] | 74 | if (hcca)
|
---|
[acdb5bac] | 75 | memset(hcca, 0, sizeof(hcca_t));
|
---|
[1b90e90] | 76 | return hcca;
|
---|
| 77 | }
|
---|
| 78 |
|
---|
| 79 | /** Set HCCA interrupt endpoint pointer table entry.
|
---|
| 80 | * @param hcca HCCA memory structure.
|
---|
| 81 | * @param index table index.
|
---|
| 82 | * @param pa Physical address.
|
---|
| 83 | */
|
---|
| 84 | static inline void hcca_set_int_ep(hcca_t *hcca, unsigned index, uintptr_t pa)
|
---|
| 85 | {
|
---|
| 86 | assert(hcca);
|
---|
[81d5f74] | 87 | assert(index < ARRAY_SIZE(hcca->int_ep));
|
---|
[1b90e90] | 88 | OHCI_MEM32_WR(hcca->int_ep[index], pa);
|
---|
[f8dfb40] | 89 | }
|
---|
[58563585] | 90 |
|
---|
[fc9f88d] | 91 | #endif
|
---|
[58563585] | 92 |
|
---|
[fc9f88d] | 93 | /**
|
---|
| 94 | * @}
|
---|
| 95 | */
|
---|