~ubuntu-branches/ubuntu/precise/linux-ti-omap4/precise

« back to all changes in this revision

Viewing changes to include/linux/firewire.h

  • Committer: Bazaar Package Importer
  • Author(s): Paolo Pisati
  • Date: 2011-06-29 15:23:51 UTC
  • mfrom: (26.1.1 natty-proposed)
  • Revision ID: james.westby@ubuntu.com-20110629152351-xs96tm303d95rpbk
Tags: 3.0.0-1200.2
* Rebased against 3.0.0-6.7
* BSP from TI based on 3.0.0

Show diffs side-by-side

added added

removed removed

Lines of Context:
42
42
#define CSR_BROADCAST_CHANNEL           0x234
43
43
#define CSR_CONFIG_ROM                  0x400
44
44
#define CSR_CONFIG_ROM_END              0x800
 
45
#define CSR_OMPR                        0x900
 
46
#define CSR_OPCR(i)                     (0x904 + (i) * 4)
 
47
#define CSR_IMPR                        0x980
 
48
#define CSR_IPCR(i)                     (0x984 + (i) * 4)
45
49
#define CSR_FCP_COMMAND                 0xB00
46
50
#define CSR_FCP_RESPONSE                0xD00
47
51
#define CSR_FCP_END                     0xF00
89
93
        int current_tlabel;
90
94
        u64 tlabel_mask;
91
95
        struct list_head transaction_list;
92
 
        unsigned long reset_jiffies;
 
96
        u64 reset_jiffies;
93
97
 
94
98
        u32 split_timeout_hi;
95
99
        u32 split_timeout_lo;
121
125
        struct delayed_work bm_work; /* bus manager job */
122
126
        int bm_retries;
123
127
        int bm_generation;
124
 
        __be32 bm_transaction_data[2];
125
128
        int bm_node_id;
126
129
        bool bm_abdicate;
127
130
 
437
440
                         struct fw_iso_packet *packet,
438
441
                         struct fw_iso_buffer *buffer,
439
442
                         unsigned long payload);
 
443
void fw_iso_context_queue_flush(struct fw_iso_context *ctx);
440
444
int fw_iso_context_start(struct fw_iso_context *ctx,
441
445
                         int cycle, int sync, int tags);
442
446
int fw_iso_context_stop(struct fw_iso_context *ctx);
443
447
void fw_iso_context_destroy(struct fw_iso_context *ctx);
 
448
void fw_iso_resource_manage(struct fw_card *card, int generation,
 
449
                            u64 channels_mask, int *channel, int *bandwidth,
 
450
                            bool allocate);
 
451
 
 
452
extern struct workqueue_struct *fw_workqueue;
444
453
 
445
454
#endif /* _LINUX_FIREWIRE_H */