1 #ifndef _LINUX_FIREWIRE_H
2 #define _LINUX_FIREWIRE_H
4 #include <linux/completion.h>
5 #include <linux/device.h>
6 #include <linux/dma-mapping.h>
7 #include <linux/kernel.h>
8 #include <linux/kref.h>
9 #include <linux/list.h>
10 #include <linux/mutex.h>
11 #include <linux/spinlock.h>
12 #include <linux/sysfs.h>
13 #include <linux/timer.h>
14 #include <linux/types.h>
15 #include <linux/workqueue.h>
17 #include <asm/atomic.h>
18 #include <asm/byteorder.h>
20 #define fw_notify(s, args...) printk(KERN_NOTICE KBUILD_MODNAME ": " s, ## args)
21 #define fw_error(s, args...) printk(KERN_ERR KBUILD_MODNAME ": " s, ## args)
23 #define CSR_REGISTER_BASE 0xfffff0000000ULL
25 /* register offsets are relative to CSR_REGISTER_BASE */
26 #define CSR_STATE_CLEAR 0x0
27 #define CSR_STATE_SET 0x4
28 #define CSR_NODE_IDS 0x8
29 #define CSR_RESET_START 0xc
30 #define CSR_SPLIT_TIMEOUT_HI 0x18
31 #define CSR_SPLIT_TIMEOUT_LO 0x1c
32 #define CSR_CYCLE_TIME 0x200
33 #define CSR_BUS_TIME 0x204
34 #define CSR_BUSY_TIMEOUT 0x210
35 #define CSR_BUS_MANAGER_ID 0x21c
36 #define CSR_BANDWIDTH_AVAILABLE 0x220
37 #define CSR_CHANNELS_AVAILABLE 0x224
38 #define CSR_CHANNELS_AVAILABLE_HI 0x224
39 #define CSR_CHANNELS_AVAILABLE_LO 0x228
40 #define CSR_BROADCAST_CHANNEL 0x234
41 #define CSR_CONFIG_ROM 0x400
42 #define CSR_CONFIG_ROM_END 0x800
43 #define CSR_FCP_COMMAND 0xB00
44 #define CSR_FCP_RESPONSE 0xD00
45 #define CSR_FCP_END 0xF00
46 #define CSR_TOPOLOGY_MAP 0x1000
47 #define CSR_TOPOLOGY_MAP_END 0x1400
48 #define CSR_SPEED_MAP 0x2000
49 #define CSR_SPEED_MAP_END 0x3000
51 #define CSR_OFFSET 0x40
53 #define CSR_DIRECTORY 0xc0
55 #define CSR_DESCRIPTOR 0x01
56 #define CSR_VENDOR 0x03
57 #define CSR_HARDWARE_VERSION 0x04
58 #define CSR_NODE_CAPABILITIES 0x0c
60 #define CSR_SPECIFIER_ID 0x12
61 #define CSR_VERSION 0x13
62 #define CSR_DEPENDENT_INFO 0x14
63 #define CSR_MODEL 0x17
64 #define CSR_INSTANCE 0x18
65 #define CSR_DIRECTORY_ID 0x20
67 struct fw_csr_iterator
{
72 void fw_csr_iterator_init(struct fw_csr_iterator
*ci
, const u32
*p
);
73 int fw_csr_iterator_next(struct fw_csr_iterator
*ci
, int *key
, int *value
);
74 int fw_csr_string(const u32
*directory
, int key
, char *buf
, size_t size
);
76 extern struct bus_type fw_bus_type
;
78 struct fw_card_driver
;
82 const struct fw_card_driver
*driver
;
83 struct device
*device
;
85 struct completion done
;
91 struct list_head transaction_list
;
92 struct timer_list flush_timer
;
93 unsigned long reset_jiffies
;
95 unsigned long long guid
;
98 int config_rom_generation
;
100 spinlock_t lock
; /* Take this lock when handling the lists in
102 struct fw_node
*local_node
;
103 struct fw_node
*root_node
;
104 struct fw_node
*irm_node
;
105 u8 color
; /* must be u8 to match the definition in struct fw_node */
107 bool beta_repeaters_present
;
111 struct list_head link
;
113 /* Work struct for BM duties. */
114 struct delayed_work work
;
117 __be32 bm_transaction_data
[2];
119 bool broadcast_channel_allocated
;
120 u32 broadcast_channel
;
121 __be32 topology_map
[(CSR_TOPOLOGY_MAP_END
- CSR_TOPOLOGY_MAP
) / 4];
124 struct fw_attribute_group
{
125 struct attribute_group
*groups
[2];
126 struct attribute_group group
;
127 struct attribute
*attrs
[12];
130 enum fw_device_state
{
131 FW_DEVICE_INITIALIZING
,
138 * Note, fw_device.generation always has to be read before fw_device.node_id.
139 * Use SMP memory barriers to ensure this. Otherwise requests will be sent
140 * to an outdated node_id if the generation was updated in the meantime due
143 * Likewise, fw-core will take care to update .node_id before .generation so
144 * that whenever fw_device.generation is current WRT the actual bus generation,
145 * fw_device.node_id is guaranteed to be current too.
147 * The same applies to fw_device.card->node_id vs. fw_device.generation.
149 * fw_device.config_rom and fw_device.config_rom_length may be accessed during
150 * the lifetime of any fw_unit belonging to the fw_device, before device_del()
151 * was called on the last fw_unit. Alternatively, they may be accessed while
152 * holding fw_device_rwsem.
156 struct fw_node
*node
;
160 struct fw_card
*card
;
161 struct device device
;
163 struct mutex client_list_mutex
;
164 struct list_head client_list
;
166 const u32
*config_rom
;
167 size_t config_rom_length
;
168 int config_rom_retries
;
173 unsigned bc_implemented
:2;
175 struct delayed_work work
;
176 struct fw_attribute_group attribute_group
;
179 static inline struct fw_device
*fw_device(struct device
*dev
)
181 return container_of(dev
, struct fw_device
, device
);
184 static inline int fw_device_is_shutdown(struct fw_device
*device
)
186 return atomic_read(&device
->state
) == FW_DEVICE_SHUTDOWN
;
189 static inline struct fw_device
*fw_device_get(struct fw_device
*device
)
191 get_device(&device
->device
);
196 static inline void fw_device_put(struct fw_device
*device
)
198 put_device(&device
->device
);
201 int fw_device_enable_phys_dma(struct fw_device
*device
);
204 * fw_unit.directory must not be accessed after device_del(&fw_unit.device).
207 struct device device
;
208 const u32
*directory
;
209 struct fw_attribute_group attribute_group
;
212 static inline struct fw_unit
*fw_unit(struct device
*dev
)
214 return container_of(dev
, struct fw_unit
, device
);
217 static inline struct fw_unit
*fw_unit_get(struct fw_unit
*unit
)
219 get_device(&unit
->device
);
224 static inline void fw_unit_put(struct fw_unit
*unit
)
226 put_device(&unit
->device
);
229 static inline struct fw_device
*fw_parent_device(struct fw_unit
*unit
)
231 return fw_device(unit
->device
.parent
);
234 struct ieee1394_device_id
;
237 struct device_driver driver
;
238 /* Called when the parent device sits through a bus reset. */
239 void (*update
)(struct fw_unit
*unit
);
240 const struct ieee1394_device_id
*id_table
;
246 typedef void (*fw_packet_callback_t
)(struct fw_packet
*packet
,
247 struct fw_card
*card
, int status
);
248 typedef void (*fw_transaction_callback_t
)(struct fw_card
*card
, int rcode
,
249 void *data
, size_t length
,
250 void *callback_data
);
252 * Important note: Except for the FCP registers, the callback must guarantee
253 * that either fw_send_response() or kfree() is called on the @request.
255 typedef void (*fw_address_callback_t
)(struct fw_card
*card
,
256 struct fw_request
*request
,
257 int tcode
, int destination
, int source
,
258 int generation
, int speed
,
259 unsigned long long offset
,
260 void *data
, size_t length
,
261 void *callback_data
);
267 size_t header_length
;
269 size_t payload_length
;
270 dma_addr_t payload_bus
;
275 * This callback is called when the packet transmission has
276 * completed; for successful transmission, the status code is
277 * the ack received from the destination, otherwise it's a
278 * negative errno: ENOMEM, ESTALE, ETIMEDOUT, ENODEV, EIO.
279 * The callback can be called from tasklet context and thus
282 fw_packet_callback_t callback
;
284 struct list_head link
;
288 struct fw_transaction
{
289 int node_id
; /* The generation is implied; it is always the current. */
292 struct list_head link
;
294 struct fw_packet packet
;
297 * The data passed to the callback is valid only during the
300 fw_transaction_callback_t callback
;
304 struct fw_address_handler
{
307 fw_address_callback_t address_callback
;
309 struct list_head link
;
312 struct fw_address_region
{
317 extern const struct fw_address_region fw_high_memory_region
;
319 int fw_core_add_address_handler(struct fw_address_handler
*handler
,
320 const struct fw_address_region
*region
);
321 void fw_core_remove_address_handler(struct fw_address_handler
*handler
);
322 void fw_send_response(struct fw_card
*card
,
323 struct fw_request
*request
, int rcode
);
324 void fw_send_request(struct fw_card
*card
, struct fw_transaction
*t
,
325 int tcode
, int destination_id
, int generation
, int speed
,
326 unsigned long long offset
, void *payload
, size_t length
,
327 fw_transaction_callback_t callback
, void *callback_data
);
328 int fw_cancel_transaction(struct fw_card
*card
,
329 struct fw_transaction
*transaction
);
330 int fw_run_transaction(struct fw_card
*card
, int tcode
, int destination_id
,
331 int generation
, int speed
, unsigned long long offset
,
332 void *payload
, size_t length
);
334 static inline int fw_stream_packet_destination_id(int tag
, int channel
, int sy
)
336 return tag
<< 14 | channel
<< 8 | sy
;
339 struct fw_descriptor
{
340 struct list_head link
;
347 int fw_core_add_descriptor(struct fw_descriptor
*desc
);
348 void fw_core_remove_descriptor(struct fw_descriptor
*desc
);
351 * The iso packet format allows for an immediate header/payload part
352 * stored in 'header' immediately after the packet info plus an
353 * indirect payload part that is pointer to by the 'payload' field.
354 * Applications can use one or the other or both to implement simple
355 * low-bandwidth streaming (e.g. audio) or more advanced
356 * scatter-gather streaming (e.g. assembling video frame automatically).
358 struct fw_iso_packet
{
359 u16 payload_length
; /* Length of indirect payload. */
360 u32 interrupt
:1; /* Generate interrupt on this packet */
361 u32 skip
:1; /* Set to not send packet at all. */
364 u32 header_length
:8; /* Length of immediate header. */
368 #define FW_ISO_CONTEXT_TRANSMIT 0
369 #define FW_ISO_CONTEXT_RECEIVE 1
371 #define FW_ISO_CONTEXT_MATCH_TAG0 1
372 #define FW_ISO_CONTEXT_MATCH_TAG1 2
373 #define FW_ISO_CONTEXT_MATCH_TAG2 4
374 #define FW_ISO_CONTEXT_MATCH_TAG3 8
375 #define FW_ISO_CONTEXT_MATCH_ALL_TAGS 15
378 * An iso buffer is just a set of pages mapped for DMA in the
379 * specified direction. Since the pages are to be used for DMA, they
380 * are not mapped into the kernel virtual address space. We store the
381 * DMA address in the page private. The helper function
382 * fw_iso_buffer_map() will map the pages into a given vma.
384 struct fw_iso_buffer
{
385 enum dma_data_direction direction
;
390 int fw_iso_buffer_init(struct fw_iso_buffer
*buffer
, struct fw_card
*card
,
391 int page_count
, enum dma_data_direction direction
);
392 void fw_iso_buffer_destroy(struct fw_iso_buffer
*buffer
, struct fw_card
*card
);
394 struct fw_iso_context
;
395 typedef void (*fw_iso_callback_t
)(struct fw_iso_context
*context
,
396 u32 cycle
, size_t header_length
,
397 void *header
, void *data
);
398 struct fw_iso_context
{
399 struct fw_card
*card
;
404 fw_iso_callback_t callback
;
408 struct fw_iso_context
*fw_iso_context_create(struct fw_card
*card
,
409 int type
, int channel
, int speed
, size_t header_size
,
410 fw_iso_callback_t callback
, void *callback_data
);
411 int fw_iso_context_queue(struct fw_iso_context
*ctx
,
412 struct fw_iso_packet
*packet
,
413 struct fw_iso_buffer
*buffer
,
414 unsigned long payload
);
415 int fw_iso_context_start(struct fw_iso_context
*ctx
,
416 int cycle
, int sync
, int tags
);
417 int fw_iso_context_stop(struct fw_iso_context
*ctx
);
418 void fw_iso_context_destroy(struct fw_iso_context
*ctx
);
420 #endif /* _LINUX_FIREWIRE_H */