Ignore:
File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/bus/usb/ohci/hc.h

    r5a6cc679 rb7fd2a0  
    5252#include "ohci_regs.h"
    5353#include "ohci_rh.h"
    54 #include "ohci_bus.h"
    5554#include "endpoint_list.h"
    5655#include "hw_struct/hcca.h"
     
    5857/** Main OHCI driver structure */
    5958typedef struct hc {
    60         /** Common hcd header */
    61         hc_device_t base;
    62 
    6359        /** Memory mapped I/O registers area */
    6460        ohci_regs_t *registers;
    65        
    6661        /** Host controller communication area structure */
    6762        hcca_t *hcca;
     
    6964        /** Transfer schedules */
    7065        endpoint_list_t lists[4];
     66        /** List of active transfers */
     67        list_t pending_batches;
    7168
    72         /** List of active endpoints */
    73         list_t pending_endpoints;
     69        /** Fibril for periodic checks if interrupts can't be used */
     70        fid_t interrupt_emulator;
    7471
    7572        /** Guards schedule and endpoint manipulation */
    7673        fibril_mutex_t guard;
    7774
     75        /** interrupts available */
     76        bool hw_interrupts;
     77
    7878        /** USB hub emulation structure */
    7979        ohci_rh_t rh;
    80 
    81         /** USB bookkeeping */
    82         ohci_bus_t bus;
    8380} hc_t;
    8481
    85 static inline hc_t * hcd_to_hc(hc_device_t *hcd)
    86 {
    87         assert(hcd);
    88         return (hc_t *) hcd;
    89 }
    90 
    91 extern errno_t hc_add(hc_device_t *, const hw_res_list_parsed_t *);
    92 extern errno_t hc_gen_irq_code(irq_code_t *, hc_device_t *, const hw_res_list_parsed_t *, int *);
    93 extern errno_t hc_gain_control(hc_device_t *);
    94 extern errno_t hc_start(hc_device_t *);
    95 extern errno_t hc_setup_roothub(hc_device_t *);
    96 extern errno_t hc_gone(hc_device_t *);
     82extern errno_t hc_init(hc_t *, const hw_res_list_parsed_t *, bool);
     83extern void hc_fini(hc_t *);
    9784
    9885extern void hc_enqueue_endpoint(hc_t *, const endpoint_t *);
    9986extern void hc_dequeue_endpoint(hc_t *, const endpoint_t *);
    10087
    101 extern errno_t ohci_hc_schedule(usb_transfer_batch_t *);
    102 extern errno_t ohci_hc_status(bus_t *, uint32_t *);
    103 extern void ohci_hc_interrupt(bus_t *, uint32_t);
     88errno_t ohci_hc_gen_irq_code(irq_code_t *code, const hw_res_list_parsed_t *hw_res, int *irq);
     89
     90extern void ohci_hc_interrupt(hcd_t *, uint32_t);
     91extern errno_t ohci_hc_status(hcd_t *, uint32_t *);
     92extern errno_t ohci_hc_schedule(hcd_t *, usb_transfer_batch_t *);
    10493
    10594#endif
Note: See TracChangeset for help on using the changeset viewer.