Changeset 7f810b3 in mainline


Ignore:
Timestamp:
2011-03-12T15:56:20Z (13 years ago)
Author:
Jan Vesely <jano.vesely@…>
Branches:
lfn, master, serial, ticket/834-toolchain-update, topic/msim-upgrade, topic/simplify-dev-export
Children:
67352d2
Parents:
0db3ad6
Message:

Move port_status.h functionality to port.h

Location:
uspace/drv/uhci-rhd
Files:
1 deleted
2 edited

Legend:

Unmodified
Added
Removed
  • uspace/drv/uhci-rhd/port.c

    r0db3ad6 r7f810b3  
    4444
    4545#include "port.h"
    46 #include "port_status.h"
    4746
    4847static int uhci_port_new_device(uhci_port_t *port, usb_speed_t speed);
     
    126125                port_status_t port_status = uhci_port_read_status(instance);
    127126
    128                 print_port_status(instance->id_string, port_status);
     127                uhci_port_print_status(instance, port_status);
    129128
    130129                if ((port_status & STATUS_CONNECTED_CHANGED) == 0)
     
    158157                        /* Write one to WC bits, to ack changes */
    159158                        uhci_port_write_status(instance, port_status);
    160                         usb_log_debug("%s: Change status ACK.\n",
     159                        usb_log_debug("%s: status change ACK.\n",
    161160                            instance->id_string);
    162161                }
  • uspace/drv/uhci-rhd/port.h

    r0db3ad6 r7f810b3  
    3636
    3737#include <assert.h>
     38#include <stdint.h>
    3839#include <ddf/driver.h>
    39 #include <stdint.h>
     40#include <libarch/ddi.h> /* pio_read and pio_write */
    4041#include <usb/usbdevice.h>
    4142
    42 #include "port_status.h"
     43typedef uint16_t port_status_t;
     44
     45#define STATUS_CONNECTED         (1 << 0)
     46#define STATUS_CONNECTED_CHANGED (1 << 1)
     47#define STATUS_ENABLED           (1 << 2)
     48#define STATUS_ENABLED_CHANGED   (1 << 3)
     49#define STATUS_LINE_D_PLUS       (1 << 4)
     50#define STATUS_LINE_D_MINUS      (1 << 5)
     51#define STATUS_RESUME            (1 << 6)
     52#define STATUS_ALWAYS_ONE        (1 << 7)
     53
     54#define STATUS_LOW_SPEED (1 <<  8)
     55#define STATUS_IN_RESET  (1 <<  9)
     56#define STATUS_SUSPEND   (1 << 12)
    4357
    4458typedef struct uhci_port
     
    7286        pio_write_16(port->address, value);
    7387}
     88
     89static inline void uhci_port_print_status(
     90    uhci_port_t *port, const port_status_t value)
     91{
     92        assert(port);
     93        usb_log_debug2("%s Port status:%s%s%s%s%s%s%s%s.\n",
     94            port->id_string,
     95            (value & STATUS_SUSPEND) ? " SUSPENDED," : "",
     96            (value & STATUS_IN_RESET) ? " IN RESET," : "",
     97            (value & STATUS_LOW_SPEED) ? " LOWSPEED," : "",
     98            (value & STATUS_ENABLED_CHANGED) ? " ENABLED-CHANGE," : "",
     99            (value & STATUS_ENABLED) ? " ENABLED," : "",
     100            (value & STATUS_CONNECTED_CHANGED) ? " CONNECTED-CHANGE," : "",
     101            (value & STATUS_CONNECTED) ? " CONNECTED," : "",
     102            (value & STATUS_ALWAYS_ONE) ? " ALWAYS ONE" : " ERROR: NO ALWAYS ONE"
     103        );
     104}
    74105#endif
    75106/**
Note: See TracChangeset for help on using the changeset viewer.