Changeset 8ff0bd2 in mainline for uspace/drv/bus/usb/ohci/hc.h


Ignore:
Timestamp:
2011-09-04T11:30:58Z (15 years ago)
Author:
Maurizio Lombardi <m.lombardi85@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
03bc76a
Parents:
d2c67e7 (diff), deac215e (diff)
Note: this is a merge changeset, the changes displayed below correspond to the merge itself.
Use the (diff) links above to see all the changes relative to each parent.
Message:

Merge mainline changes

File:
1 moved

Legend:

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

    rd2c67e7 r8ff0bd2  
    5151#include "hw_struct/hcca.h"
    5252
    53 #define OHCI_NEEDED_IRQ_COMMANDS 5
    54 
    55 /** Main OHCI drier structure */
     53/** Main OHCI driver structure */
    5654typedef struct hc {
    5755        /** USB bus driver, devices and addresses */
     
    6866        endpoint_list_t lists[4];
    6967        /** List of active transfers */
    70         link_t pending_batches;
     68        list_t pending_batches;
    7169
    7270        /** Fibril for periodic checks if interrupts can't be used */
     
    7674        fibril_mutex_t guard;
    7775
    78         /** Code to be executed in kernel interrupt handler */
    79         irq_code_t interrupt_code;
    80 
    81         /** Commands that form interrupt code */
    82         irq_cmd_t interrupt_commands[OHCI_NEEDED_IRQ_COMMANDS];
    83 
    8476        /** USB hub emulation structure */
    8577        rh_t rh;
    8678} hc_t;
    8779
     80size_t hc_irq_cmd_count(void);
     81int hc_get_irq_commands(
     82    irq_cmd_t cmds[], size_t cmd_size, uintptr_t regs, size_t reg_size);
     83int hc_init(hc_t *instance, uintptr_t regs, size_t reg_size, bool interrupts);
    8884int hc_register_hub(hc_t *instance, ddf_fun_t *hub_fun);
    89 int hc_init(hc_t *instance, uintptr_t regs, size_t reg_size, bool interrupts);
    90 void hc_start_hw(hc_t *instance);
    9185
    9286/** Safely dispose host controller internal structures
Note: See TracChangeset for help on using the changeset viewer.