hosts.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:6k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. #ifndef _IEEE1394_HOSTS_H
  2. #define _IEEE1394_HOSTS_H
  3. #include <linux/wait.h>
  4. #include <linux/tqueue.h>
  5. #include <linux/list.h>
  6. #include <asm/semaphore.h>
  7. #include "ieee1394_types.h"
  8. #include "csr.h"
  9. struct hpsb_packet;
  10. struct hpsb_host {
  11.         struct list_head host_list;
  12.         void *hostdata;
  13.         atomic_t generation;
  14.         int refcount;
  15.         struct list_head pending_packets;
  16.         spinlock_t pending_pkt_lock;
  17.         struct tq_struct timeout_tq;
  18.         /* A bitmask where a set bit means that this tlabel is in use.
  19.          * FIXME - should be handled per node instead of per bus. */
  20.         u32 tlabel_pool[2];
  21.         struct semaphore tlabel_count;
  22.         spinlock_t tlabel_lock;
  23. u32 tlabel_current;
  24.         unsigned char iso_listen_count[64];
  25.         int node_count; /* number of identified nodes on this bus */
  26.         int selfid_count; /* total number of SelfIDs received */
  27. int nodes_active; /* number of nodes that are actually active */
  28.         nodeid_t node_id; /* node ID of this host */
  29.         nodeid_t irm_id; /* ID of this bus' isochronous resource manager */
  30.         nodeid_t busmgr_id; /* ID of this bus' bus manager */
  31.         /* this nodes state */
  32.         unsigned in_bus_reset:1;
  33.         unsigned is_shutdown:1;
  34.         /* this nodes' duties on the bus */
  35.         unsigned is_root:1;
  36.         unsigned is_cycmst:1;
  37.         unsigned is_irm:1;
  38.         unsigned is_busmgr:1;
  39.         int reset_retries;
  40.         quadlet_t *topology_map;
  41.         u8 *speed_map;
  42.         struct csr_control csr;
  43.         struct hpsb_host_driver *driver;
  44. struct pci_dev *pdev;
  45. };
  46. enum devctl_cmd {
  47.         /* Host is requested to reset its bus and cancel all outstanding async
  48.          * requests.  If arg == 1, it shall also attempt to become root on the
  49.          * bus.  Return void. */
  50.         RESET_BUS,
  51.         /* Arg is void, return value is the hardware cycle counter value. */
  52.         GET_CYCLE_COUNTER,
  53.         /* Set the hardware cycle counter to the value in arg, return void.
  54.          * FIXME - setting is probably not required. */
  55.         SET_CYCLE_COUNTER,
  56.         /* Configure hardware for new bus ID in arg, return void. */
  57.         SET_BUS_ID,
  58.         /* If arg true, start sending cycle start packets, stop if arg == 0.
  59.          * Return void. */
  60.         ACT_CYCLE_MASTER,
  61.         /* Cancel all outstanding async requests without resetting the bus.
  62.          * Return void. */
  63.         CANCEL_REQUESTS,
  64.         /* Decrease host usage count if arg == 0, increase otherwise.  Return
  65.          * 1 for success, 0 for failure.  Increase usage may fail if the driver
  66.          * is in the process of shutting itself down.  Decrease usage can not
  67.          * fail. */
  68.         MODIFY_USAGE,
  69.         /* Start or stop receiving isochronous channel in arg.  Return void.
  70.          * This acts as an optimization hint, hosts are not required not to
  71.          * listen on unrequested channels. */
  72.         ISO_LISTEN_CHANNEL,
  73.         ISO_UNLISTEN_CHANNEL
  74. };
  75. enum reset_types {
  76.         /* 166 microsecond reset -- only type of reset available on
  77.            non-1394a capable IEEE 1394 controllers */
  78.         LONG_RESET,
  79.         /* Short (arbitrated) reset -- only available on 1394a capable
  80.            IEEE 1394 capable controllers */
  81.         SHORT_RESET
  82. };
  83. struct hpsb_host_driver {
  84. const char *name;
  85.         /* This function must store a pointer to the configuration ROM into the
  86.          * location referenced to by pointer and return the size of the ROM. It
  87.          * may not fail.  If any allocation is required, it must be done
  88.          * earlier.
  89.          */
  90.         size_t (*get_rom) (struct hpsb_host *host, const quadlet_t **pointer);
  91.         /* This function shall implement packet transmission based on
  92.          * packet->type.  It shall CRC both parts of the packet (unless
  93.          * packet->type == raw) and do byte-swapping as necessary or instruct
  94.          * the hardware to do so.  It can return immediately after the packet
  95.          * was queued for sending.  After sending, hpsb_sent_packet() has to be
  96.          * called.  Return 0 for failure.
  97.          * NOTE: The function must be callable in interrupt context.
  98.          */
  99.         int (*transmit_packet) (struct hpsb_host *host, 
  100.                                 struct hpsb_packet *packet);
  101.         /* This function requests miscellanous services from the driver, see
  102.          * above for command codes and expected actions.  Return -1 for unknown
  103.          * command, though that should never happen.
  104.          */
  105.         int (*devctl) (struct hpsb_host *host, enum devctl_cmd command, int arg);
  106.         /* This function is mainly to redirect local CSR reads/locks to the iso
  107.          * management registers (bus manager id, bandwidth available, channels
  108.          * available) to the hardware registers in OHCI.  reg is 0,1,2,3 for bus
  109.          * mgr, bwdth avail, ch avail hi, ch avail lo respectively (the same ids
  110.          * as OHCI uses).  data and compare are the new data and expected data
  111.          * respectively, return value is the old value.
  112.          */
  113.         quadlet_t (*hw_csr_reg) (struct hpsb_host *host, int reg,
  114.                                  quadlet_t data, quadlet_t compare);
  115. };
  116. /* core internal use */
  117. void register_builtin_lowlevels(void);
  118. /* high level internal use */
  119. struct hpsb_highlevel;
  120. void hl_all_hosts(void (*function)(struct hpsb_host*));
  121. /*
  122.  * In order to prevent hosts from unloading, use hpsb_ref_host().  This prevents
  123.  * the host from going away (e.g. makes module unloading of the driver
  124.  * impossible), but still can not guarantee it (e.g. PC-Card being pulled by the
  125.  * user).  hpsb_ref_host() returns false if host could not be locked.  If it is
  126.  * successful, host is valid as a pointer until hpsb_unref_host() (not just
  127.  * until after remove_host).
  128.  */
  129. int hpsb_ref_host(struct hpsb_host *host);
  130. void hpsb_unref_host(struct hpsb_host *host);
  131. struct hpsb_host *hpsb_alloc_host(struct hpsb_host_driver *drv, size_t extra);
  132. void hpsb_add_host(struct hpsb_host *host);
  133. void hpsb_remove_host(struct hpsb_host *h);
  134. #endif /* _IEEE1394_HOSTS_H */