#ifndef _USB_CONTROLLER_H_
#define _USB_CONTROLLER_H_
#define USB_BUS_DMA_TAG_MAX 8
struct usb_bus;
struct usb_page;
struct usb_endpoint;
struct usb_page_cache;
struct usb_setup_params;
struct usb_hw_ep_profile;
struct usb_fs_isoc_schedule;
struct usb_endpoint_descriptor;
typedef 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);
typedef void (usb_bus_mem_cb_t)(struct usb_bus *bus, usb_bus_mem_sub_cb_t *scb);
struct usb_bus_methods {
usb_handle_req_t *roothub_exec;
void (*endpoint_init) (struct usb_device *,
struct usb_endpoint_descriptor *, struct usb_endpoint *);
void (*xfer_setup) (struct usb_setup_params *);
void (*xfer_unsetup) (struct usb_xfer *);
void (*get_dma_delay) (struct usb_device *, uint32_t *);
void (*device_suspend) (struct usb_device *);
void (*device_resume) (struct usb_device *);
void (*set_hw_power) (struct usb_bus *);
void (*set_hw_power_sleep) (struct usb_bus *, uint32_t);
#define USB_HW_POWER_CONTROL 0x01
#define USB_HW_POWER_BULK 0x02
#define USB_HW_POWER_INTERRUPT 0x04
#define USB_HW_POWER_ISOC 0x08
#define USB_HW_POWER_NON_ROOT_HUB 0x10
#define USB_HW_POWER_SUSPEND 0x20
#define USB_HW_POWER_RESUME 0x40
#define USB_HW_POWER_SHUTDOWN 0x60
void (*get_hw_ep_profile) (struct usb_device *udev, const struct usb_hw_ep_profile **ppf, uint8_t ep_addr);
void (*xfer_stall) (struct usb_xfer *xfer);
void (*set_stall) (struct usb_device *udev, struct usb_endpoint *ep, uint8_t *did_stall);
void (*clear_stall) (struct usb_device *udev, struct usb_endpoint *ep);
void (*xfer_poll) (struct usb_bus *);
void (*get_power_mode) (struct usb_device *udev, int8_t *pmode);
void (*endpoint_uninit) (struct usb_device *, struct usb_endpoint *);
usb_error_t (*device_init) (struct usb_device *);
void (*device_uninit) (struct usb_device *);
void (*start_dma_delay) (struct usb_xfer *);
void (*device_state_change) (struct usb_device *);
usb_error_t (*set_address) (struct usb_device *, struct lock *, uint16_t);
usb_error_t (*set_endpoint_mode) (struct usb_device *, struct usb_endpoint *, uint8_t);
};
struct usb_pipe_methods {
void (*open)(struct usb_xfer *);
void (*close)(struct usb_xfer *);
void (*enter)(struct usb_xfer *);
void (*start)(struct usb_xfer *);
void *info;
};
struct usb_hw_ep_profile {
uint16_t max_in_frame_size;
uint16_t max_out_frame_size;
uint8_t is_simplex:1;
uint8_t support_multi_buffer:1;
uint8_t support_bulk:1;
uint8_t support_control:1;
uint8_t support_interrupt:1;
uint8_t support_isochronous:1;
uint8_t support_in:1;
uint8_t support_out:1;
};
void usb_bus_mem_flush_all(struct usb_bus *bus, usb_bus_mem_cb_t *cb);
uint8_t usb_bus_mem_alloc_all(struct usb_bus *bus, bus_dma_tag_t dmat, usb_bus_mem_cb_t *cb);
void usb_bus_mem_free_all(struct usb_bus *bus, usb_bus_mem_cb_t *cb);
uint16_t usb_isoc_time_expand(struct usb_bus *bus, uint16_t isoc_time_curr);
void usb_bus_reset_async_locked(struct usb_bus *bus);
#if USB_HAVE_TT_SUPPORT
uint8_t usbd_fs_isoc_schedule_alloc_slot(struct usb_xfer *isoc_xfer, uint16_t isoc_time);
#endif
#endif