1f9f848faSopenharmony_ci/*- 2f9f848faSopenharmony_ci * SPDX-License-Identifier: BSD-2-Clause 3f9f848faSopenharmony_ci * 4f9f848faSopenharmony_ci * Copyright (c) 2008 Hans Petter Selasky. All rights reserved. 5f9f848faSopenharmony_ci * 6f9f848faSopenharmony_ci * Redistribution and use in source and binary forms, with or without 7f9f848faSopenharmony_ci * modification, are permitted provided that the following conditions 8f9f848faSopenharmony_ci * are met: 9f9f848faSopenharmony_ci * 1. Redistributions of source code must retain the above copyright 10f9f848faSopenharmony_ci * notice, this list of conditions and the following disclaimer. 11f9f848faSopenharmony_ci * 2. Redistributions in binary form must reproduce the above copyright 12f9f848faSopenharmony_ci * notice, this list of conditions and the following disclaimer in the 13f9f848faSopenharmony_ci * documentation and/or other materials provided with the distribution. 14f9f848faSopenharmony_ci * 15f9f848faSopenharmony_ci * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 16f9f848faSopenharmony_ci * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 17f9f848faSopenharmony_ci * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 18f9f848faSopenharmony_ci * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 19f9f848faSopenharmony_ci * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 20f9f848faSopenharmony_ci * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 21f9f848faSopenharmony_ci * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 22f9f848faSopenharmony_ci * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 23f9f848faSopenharmony_ci * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 24f9f848faSopenharmony_ci * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 25f9f848faSopenharmony_ci * SUCH DAMAGE. 26f9f848faSopenharmony_ci */ 27f9f848faSopenharmony_ci 28f9f848faSopenharmony_ci#ifndef _USB_CONTROLLER_H_ 29f9f848faSopenharmony_ci#define _USB_CONTROLLER_H_ 30f9f848faSopenharmony_ci 31f9f848faSopenharmony_ci/* defines */ 32f9f848faSopenharmony_ci 33f9f848faSopenharmony_ci#define USB_BUS_DMA_TAG_MAX 8 34f9f848faSopenharmony_ci 35f9f848faSopenharmony_ci/* structure prototypes */ 36f9f848faSopenharmony_ci 37f9f848faSopenharmony_cistruct usb_bus; 38f9f848faSopenharmony_cistruct usb_page; 39f9f848faSopenharmony_cistruct usb_endpoint; 40f9f848faSopenharmony_cistruct usb_page_cache; 41f9f848faSopenharmony_cistruct usb_setup_params; 42f9f848faSopenharmony_cistruct usb_hw_ep_profile; 43f9f848faSopenharmony_cistruct usb_fs_isoc_schedule; 44f9f848faSopenharmony_cistruct usb_endpoint_descriptor; 45f9f848faSopenharmony_ci 46f9f848faSopenharmony_ci/* typedefs */ 47f9f848faSopenharmony_ci 48f9f848faSopenharmony_citypedef void (usb_bus_mem_sub_cb_t)(struct usb_bus *bus, struct usb_page_cache *pc, struct usb_page *pg, usb_size_t size, usb_size_t align); 49f9f848faSopenharmony_citypedef void (usb_bus_mem_cb_t)(struct usb_bus *bus, usb_bus_mem_sub_cb_t *scb); 50f9f848faSopenharmony_ci 51f9f848faSopenharmony_ci/* 52f9f848faSopenharmony_ci * The following structure is used to define all the USB BUS 53f9f848faSopenharmony_ci * callbacks. 54f9f848faSopenharmony_ci */ 55f9f848faSopenharmony_cistruct usb_bus_methods { 56f9f848faSopenharmony_ci /* USB Device and Host mode - Mandatory */ 57f9f848faSopenharmony_ci 58f9f848faSopenharmony_ci usb_handle_req_t *roothub_exec; 59f9f848faSopenharmony_ci 60f9f848faSopenharmony_ci void (*endpoint_init) (struct usb_device *, 61f9f848faSopenharmony_ci struct usb_endpoint_descriptor *, struct usb_endpoint *); 62f9f848faSopenharmony_ci void (*xfer_setup) (struct usb_setup_params *); 63f9f848faSopenharmony_ci void (*xfer_unsetup) (struct usb_xfer *); 64f9f848faSopenharmony_ci void (*get_dma_delay) (struct usb_device *, uint32_t *); 65f9f848faSopenharmony_ci void (*device_suspend) (struct usb_device *); 66f9f848faSopenharmony_ci void (*device_resume) (struct usb_device *); 67f9f848faSopenharmony_ci void (*set_hw_power) (struct usb_bus *); 68f9f848faSopenharmony_ci void (*set_hw_power_sleep) (struct usb_bus *, uint32_t); 69f9f848faSopenharmony_ci /* 70f9f848faSopenharmony_ci * The following flag is set if one or more control transfers are 71f9f848faSopenharmony_ci * active: 72f9f848faSopenharmony_ci */ 73f9f848faSopenharmony_ci#define USB_HW_POWER_CONTROL 0x01 74f9f848faSopenharmony_ci /* 75f9f848faSopenharmony_ci * The following flag is set if one or more bulk transfers are 76f9f848faSopenharmony_ci * active: 77f9f848faSopenharmony_ci */ 78f9f848faSopenharmony_ci#define USB_HW_POWER_BULK 0x02 79f9f848faSopenharmony_ci /* 80f9f848faSopenharmony_ci * The following flag is set if one or more interrupt transfers are 81f9f848faSopenharmony_ci * active: 82f9f848faSopenharmony_ci */ 83f9f848faSopenharmony_ci#define USB_HW_POWER_INTERRUPT 0x04 84f9f848faSopenharmony_ci /* 85f9f848faSopenharmony_ci * The following flag is set if one or more isochronous transfers 86f9f848faSopenharmony_ci * are active: 87f9f848faSopenharmony_ci */ 88f9f848faSopenharmony_ci#define USB_HW_POWER_ISOC 0x08 89f9f848faSopenharmony_ci /* 90f9f848faSopenharmony_ci * The following flag is set if one or more non-root-HUB devices 91f9f848faSopenharmony_ci * are present on the given USB bus: 92f9f848faSopenharmony_ci */ 93f9f848faSopenharmony_ci#define USB_HW_POWER_NON_ROOT_HUB 0x10 94f9f848faSopenharmony_ci /* 95f9f848faSopenharmony_ci * The following flag is set if we are suspending 96f9f848faSopenharmony_ci */ 97f9f848faSopenharmony_ci#define USB_HW_POWER_SUSPEND 0x20 98f9f848faSopenharmony_ci /* 99f9f848faSopenharmony_ci * The following flag is set if we are resuming 100f9f848faSopenharmony_ci */ 101f9f848faSopenharmony_ci#define USB_HW_POWER_RESUME 0x40 102f9f848faSopenharmony_ci /* 103f9f848faSopenharmony_ci * The following flag is set if we are shutting down 104f9f848faSopenharmony_ci */ 105f9f848faSopenharmony_ci#define USB_HW_POWER_SHUTDOWN 0x60 106f9f848faSopenharmony_ci 107f9f848faSopenharmony_ci /* USB Device mode only - Mandatory */ 108f9f848faSopenharmony_ci 109f9f848faSopenharmony_ci void (*get_hw_ep_profile) (struct usb_device *udev, const struct usb_hw_ep_profile **ppf, uint8_t ep_addr); 110f9f848faSopenharmony_ci void (*xfer_stall) (struct usb_xfer *xfer); 111f9f848faSopenharmony_ci void (*set_stall) (struct usb_device *udev, struct usb_endpoint *ep, uint8_t *did_stall); 112f9f848faSopenharmony_ci 113f9f848faSopenharmony_ci /* USB Device mode mandatory. USB Host mode optional. */ 114f9f848faSopenharmony_ci 115f9f848faSopenharmony_ci void (*clear_stall) (struct usb_device *udev, struct usb_endpoint *ep); 116f9f848faSopenharmony_ci 117f9f848faSopenharmony_ci /* Optional transfer polling support */ 118f9f848faSopenharmony_ci 119f9f848faSopenharmony_ci void (*xfer_poll) (struct usb_bus *); 120f9f848faSopenharmony_ci 121f9f848faSopenharmony_ci /* Optional fixed power mode support */ 122f9f848faSopenharmony_ci 123f9f848faSopenharmony_ci void (*get_power_mode) (struct usb_device *udev, int8_t *pmode); 124f9f848faSopenharmony_ci 125f9f848faSopenharmony_ci /* Optional endpoint uninit */ 126f9f848faSopenharmony_ci 127f9f848faSopenharmony_ci void (*endpoint_uninit) (struct usb_device *, struct usb_endpoint *); 128f9f848faSopenharmony_ci 129f9f848faSopenharmony_ci /* Optional device init */ 130f9f848faSopenharmony_ci 131f9f848faSopenharmony_ci usb_error_t (*device_init) (struct usb_device *); 132f9f848faSopenharmony_ci 133f9f848faSopenharmony_ci /* Optional device uninit */ 134f9f848faSopenharmony_ci 135f9f848faSopenharmony_ci void (*device_uninit) (struct usb_device *); 136f9f848faSopenharmony_ci 137f9f848faSopenharmony_ci /* Optional for device and host mode */ 138f9f848faSopenharmony_ci 139f9f848faSopenharmony_ci void (*start_dma_delay) (struct usb_xfer *); 140f9f848faSopenharmony_ci 141f9f848faSopenharmony_ci void (*device_state_change) (struct usb_device *); 142f9f848faSopenharmony_ci 143f9f848faSopenharmony_ci /* Optional for host mode */ 144f9f848faSopenharmony_ci 145f9f848faSopenharmony_ci usb_error_t (*set_address) (struct usb_device *, struct mtx *, uint16_t); 146f9f848faSopenharmony_ci 147f9f848faSopenharmony_ci /* Optional for device and host mode */ 148f9f848faSopenharmony_ci 149f9f848faSopenharmony_ci usb_error_t (*set_endpoint_mode) (struct usb_device *, struct usb_endpoint *, uint8_t); 150f9f848faSopenharmony_ci}; 151f9f848faSopenharmony_ci 152f9f848faSopenharmony_ci/* 153f9f848faSopenharmony_ci * The following structure is used to define all the USB pipe 154f9f848faSopenharmony_ci * callbacks. 155f9f848faSopenharmony_ci */ 156f9f848faSopenharmony_cistruct usb_pipe_methods { 157f9f848faSopenharmony_ci /* Mandatory USB Device and Host mode callbacks: */ 158f9f848faSopenharmony_ci 159f9f848faSopenharmony_ci void (*open)(struct usb_xfer *); 160f9f848faSopenharmony_ci void (*close)(struct usb_xfer *); 161f9f848faSopenharmony_ci 162f9f848faSopenharmony_ci void (*enter)(struct usb_xfer *); 163f9f848faSopenharmony_ci void (*start)(struct usb_xfer *); 164f9f848faSopenharmony_ci 165f9f848faSopenharmony_ci /* Optional */ 166f9f848faSopenharmony_ci 167f9f848faSopenharmony_ci void *info; 168f9f848faSopenharmony_ci}; 169f9f848faSopenharmony_ci 170f9f848faSopenharmony_ci/* 171f9f848faSopenharmony_ci * The following structure keeps information about what a hardware USB 172f9f848faSopenharmony_ci * endpoint supports. 173f9f848faSopenharmony_ci */ 174f9f848faSopenharmony_cistruct usb_hw_ep_profile { 175f9f848faSopenharmony_ci uint16_t max_in_frame_size; /* IN-token direction */ 176f9f848faSopenharmony_ci uint16_t max_out_frame_size; /* OUT-token direction */ 177f9f848faSopenharmony_ci uint8_t is_simplex:1; 178f9f848faSopenharmony_ci uint8_t support_multi_buffer:1; 179f9f848faSopenharmony_ci uint8_t support_bulk:1; 180f9f848faSopenharmony_ci uint8_t support_control:1; 181f9f848faSopenharmony_ci uint8_t support_interrupt:1; 182f9f848faSopenharmony_ci uint8_t support_isochronous:1; 183f9f848faSopenharmony_ci uint8_t support_in:1; /* IN-token is supported */ 184f9f848faSopenharmony_ci uint8_t support_out:1; /* OUT-token is supported */ 185f9f848faSopenharmony_ci}; 186f9f848faSopenharmony_ci 187f9f848faSopenharmony_ciextern int hi_xhci_take_controller(device_t self); 188f9f848faSopenharmony_ci/* prototypes */ 189f9f848faSopenharmony_ci 190f9f848faSopenharmony_civoid usb_bus_mem_flush_all(struct usb_bus *bus, usb_bus_mem_cb_t *cb); 191f9f848faSopenharmony_ciuint8_t usb_bus_mem_alloc_all(struct usb_bus *bus, bus_dma_tag_t dmat, usb_bus_mem_cb_t *cb); 192f9f848faSopenharmony_civoid usb_bus_mem_free_all(struct usb_bus *bus, usb_bus_mem_cb_t *cb); 193f9f848faSopenharmony_ciuint16_t usb_isoc_time_expand(struct usb_bus *bus, uint16_t isoc_time_curr); 194f9f848faSopenharmony_civoid usb_bus_reset_async_locked(struct usb_bus *bus); 195f9f848faSopenharmony_ci#if USB_HAVE_TT_SUPPORT 196f9f848faSopenharmony_ciuint8_t usbd_fs_isoc_schedule_alloc_slot(struct usb_xfer *isoc_xfer, uint16_t isoc_time); 197f9f848faSopenharmony_ci#endif 198f9f848faSopenharmony_ci 199f9f848faSopenharmony_ci#endif /* _USB_CONTROLLER_H_ */ 200