Ignore:
Timestamp:
2012-03-05T20:33:48Z (12 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
1b90e90
Parents:
d1ca752
Message:

ohci: Use different macros for register and memory access.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/bus/usb/ohci/hw_struct/endpoint_descriptor.c

    rd1ca752 r45f4f19  
    5858                /* Mark as dead, used for dummy EDs at the beginning of
    5959                 * endpoint lists. */
    60                 OHCI_WR(instance->status, ED_STATUS_K_FLAG);
     60                OHCI_MEM32_WR(instance->status, ED_STATUS_K_FLAG);
    6161                return;
    6262        }
     
    6565
    6666        /* Status: address, endpoint nr, direction mask and max packet size. */
    67         OHCI_WR(instance->status,
     67        OHCI_MEM32_WR(instance->status,
    6868            ((ep->address & ED_STATUS_FA_MASK) << ED_STATUS_FA_SHIFT)
    6969            | ((ep->endpoint & ED_STATUS_EN_MASK) << ED_STATUS_EN_SHIFT)
     
    7474        /* Low speed flag */
    7575        if (ep->speed == USB_SPEED_LOW)
    76                 OHCI_SET(instance->status, ED_STATUS_S_FLAG);
     76                OHCI_MEM32_SET(instance->status, ED_STATUS_S_FLAG);
    7777
    7878        /* Isochronous format flag */
    7979        if (ep->transfer_type == USB_TRANSFER_ISOCHRONOUS)
    80                 OHCI_SET(instance->status, ED_STATUS_F_FLAG);
     80                OHCI_MEM32_SET(instance->status, ED_STATUS_F_FLAG);
    8181
    8282        /* Set TD to the list */
    8383        const uintptr_t pa = addr_to_phys(td);
    84         OHCI_WR(instance->td_head, pa & ED_TDHEAD_PTR_MASK);
    85         OHCI_WR(instance->td_tail, pa & ED_TDTAIL_PTR_MASK);
     84        OHCI_MEM32_WR(instance->td_head, pa & ED_TDHEAD_PTR_MASK);
     85        OHCI_MEM32_WR(instance->td_tail, pa & ED_TDTAIL_PTR_MASK);
    8686
    8787        /* Set toggle bit */
    8888        if (ep->toggle)
    89                 OHCI_SET(instance->td_head, ED_TDHEAD_TOGGLE_CARRY);
     89                OHCI_MEM32_SET(instance->td_head, ED_TDHEAD_TOGGLE_CARRY);
    9090
    9191}
Note: See TracChangeset for help on using the changeset viewer.