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
59 #define CSR_SPECIFIER_ID 0x12
60 #define CSR_VERSION 0x13
61 #define CSR_DEPENDENT_INFO 0x14
62 #define CSR_MODEL 0x17
63 #define CSR_DIRECTORY_ID 0x20
65 struct fw_csr_iterator
{
70 void fw_csr_iterator_init(struct fw_csr_iterator
*ci
, const u32
*p
);
71 int fw_csr_iterator_next(struct fw_csr_iterator
*ci
, int *key
, int *value
);
72 int fw_csr_string(const u32
*directory
, int key
, char *buf
, size_t size
);
74 extern struct bus_type fw_bus_type
;
76 struct fw_card_driver
;
80 const struct fw_card_driver
*driver
;
81 struct device
*device
;
83 struct completion done
;
89 struct list_head transaction_list
;
90 unsigned long reset_jiffies
;
92 unsigned long long guid
;
95 int config_rom_generation
;
97 spinlock_t lock
; /* Take this lock when handling the lists in
99 struct fw_node
*local_node
;
100 struct fw_node
*root_node
;
101 struct fw_node
*irm_node
;
102 u8 color
; /* must be u8 to match the definition in struct fw_node */
104 bool beta_repeaters_present
;
108 struct list_head link
;
110 /* Work struct for BM duties. */
111 struct delayed_work work
;
114 __be32 bm_transaction_data
[2];
116 bool broadcast_channel_allocated
;
117 u32 broadcast_channel
;
118 __be32 topology_map
[(CSR_TOPOLOGY_MAP_END
- CSR_TOPOLOGY_MAP
) / 4];
121 struct fw_attribute_group
{
122 struct attribute_group
*groups
[2];
123 struct attribute_group group
;
124 struct attribute
*attrs
[12];
127 enum fw_device_state
{
128 FW_DEVICE_INITIALIZING
,
135 * Note, fw_device.generation always has to be read before fw_device.node_id.
136 * Use SMP memory barriers to ensure this. Otherwise requests will be sent
137 * to an outdated node_id if the generation was updated in the meantime due
140 * Likewise, fw-core will take care to update .node_id before .generation so
141 * that whenever fw_device.generation is current WRT the actual bus generation,
142 * fw_device.node_id is guaranteed to be current too.
144 * The same applies to fw_device.card->node_id vs. fw_device.generation.
146 * fw_device.config_rom and fw_device.config_rom_length may be accessed during
147 * the lifetime of any fw_unit belonging to the fw_device, before device_del()
148 * was called on the last fw_unit. Alternatively, they may be accessed while
149 * holding fw_device_rwsem.
153 struct fw_node
*node
;
157 struct fw_card
*card
;
158 struct device device
;
160 struct mutex client_list_mutex
;
161 struct list_head client_list
;
163 const u32
*config_rom
;
164 size_t config_rom_length
;
165 int config_rom_retries
;
170 unsigned bc_implemented
:2;
172 struct delayed_work work
;
173 struct fw_attribute_group attribute_group
;
176 static inline struct fw_device
*fw_device(struct device
*dev
)
178 return container_of(dev
, struct fw_device
, device
);
181 static inline int fw_device_is_shutdown(struct fw_device
*device
)
183 return atomic_read(&device
->state
) == FW_DEVICE_SHUTDOWN
;
186 static inline struct fw_device
*fw_device_get(struct fw_device
*device
)
188 get_device(&device
->device
);
193 static inline void fw_device_put(struct fw_device
*device
)
195 put_device(&device
->device
);
198 int fw_device_enable_phys_dma(struct fw_device
*device
);
201 * fw_unit.directory must not be accessed after device_del(&fw_unit.device).
204 struct device device
;
205 const u32
*directory
;
206 struct fw_attribute_group attribute_group
;
209 static inline struct fw_unit
*fw_unit(struct device
*dev
)
211 return container_of(dev
, struct fw_unit
, device
);
214 static inline struct fw_unit
*fw_unit_get(struct fw_unit
*unit
)
216 get_device(&unit
->device
);
221 static inline void fw_unit_put(struct fw_unit
*unit
)
223 put_device(&unit
->device
);
226 static inline struct fw_device
*fw_parent_device(struct fw_unit
*unit
)
228 return fw_device(unit
->device
.parent
);
231 struct ieee1394_device_id
;
234 struct device_driver driver
;
235 /* Called when the parent device sits through a bus reset. */
236 void (*update
)(struct fw_unit
*unit
);
237 const struct ieee1394_device_id
*id_table
;
243 typedef void (*fw_packet_callback_t
)(struct fw_packet
*packet
,
244 struct fw_card
*card
, int status
);
245 typedef void (*fw_transaction_callback_t
)(struct fw_card
*card
, int rcode
,
246 void *data
, size_t length
,
247 void *callback_data
);
249 * Important note: Except for the FCP registers, the callback must guarantee
250 * that either fw_send_response() or kfree() is called on the @request.
252 typedef void (*fw_address_callback_t
)(struct fw_card
*card
,
253 struct fw_request
*request
,
254 int tcode
, int destination
, int source
,
255 int generation
, int speed
,
256 unsigned long long offset
,
257 void *data
, size_t length
,
258 void *callback_data
);
264 size_t header_length
;
266 size_t payload_length
;
267 dma_addr_t payload_bus
;
272 * This callback is called when the packet transmission has
273 * completed; for successful transmission, the status code is
274 * the ack received from the destination, otherwise it's a
275 * negative errno: ENOMEM, ESTALE, ETIMEDOUT, ENODEV, EIO.
276 * The callback can be called from tasklet context and thus
279 fw_packet_callback_t callback
;
281 struct list_head link
;
285 struct fw_transaction
{
286 int node_id
; /* The generation is implied; it is always the current. */
289 struct list_head link
;
290 struct fw_card
*card
;
291 struct timer_list split_timeout_timer
;
293 struct fw_packet packet
;
296 * The data passed to the callback is valid only during the
299 fw_transaction_callback_t callback
;
303 struct fw_address_handler
{
306 fw_address_callback_t address_callback
;
308 struct list_head link
;
311 struct fw_address_region
{
316 extern const struct fw_address_region fw_high_memory_region
;
318 int fw_core_add_address_handler(struct fw_address_handler
*handler
,
319 const struct fw_address_region
*region
);
320 void fw_core_remove_address_handler(struct fw_address_handler
*handler
);
321 void fw_send_response(struct fw_card
*card
,
322 struct fw_request
*request
, int rcode
);
323 void fw_send_request(struct fw_card
*card
, struct fw_transaction
*t
,
324 int tcode
, int destination_id
, int generation
, int speed
,
325 unsigned long long offset
, void *payload
, size_t length
,
326 fw_transaction_callback_t callback
, void *callback_data
);
327 int fw_cancel_transaction(struct fw_card
*card
,
328 struct fw_transaction
*transaction
);
329 int fw_run_transaction(struct fw_card
*card
, int tcode
, int destination_id
,
330 int generation
, int speed
, unsigned long long offset
,
331 void *payload
, size_t length
);
333 static inline int fw_stream_packet_destination_id(int tag
, int channel
, int sy
)
335 return tag
<< 14 | channel
<< 8 | sy
;
338 struct fw_descriptor
{
339 struct list_head link
;
346 int fw_core_add_descriptor(struct fw_descriptor
*desc
);
347 void fw_core_remove_descriptor(struct fw_descriptor
*desc
);
350 * The iso packet format allows for an immediate header/payload part
351 * stored in 'header' immediately after the packet info plus an
352 * indirect payload part that is pointer to by the 'payload' field.
353 * Applications can use one or the other or both to implement simple
354 * low-bandwidth streaming (e.g. audio) or more advanced
355 * scatter-gather streaming (e.g. assembling video frame automatically).
357 struct fw_iso_packet
{
358 u16 payload_length
; /* Length of indirect payload. */
359 u32 interrupt
:1; /* Generate interrupt on this packet */
360 u32 skip
:1; /* Set to not send packet at all. */
363 u32 header_length
:8; /* Length of immediate header. */
367 #define FW_ISO_CONTEXT_TRANSMIT 0
368 #define FW_ISO_CONTEXT_RECEIVE 1
370 #define FW_ISO_CONTEXT_MATCH_TAG0 1
371 #define FW_ISO_CONTEXT_MATCH_TAG1 2
372 #define FW_ISO_CONTEXT_MATCH_TAG2 4
373 #define FW_ISO_CONTEXT_MATCH_TAG3 8
374 #define FW_ISO_CONTEXT_MATCH_ALL_TAGS 15
377 * An iso buffer is just a set of pages mapped for DMA in the
378 * specified direction. Since the pages are to be used for DMA, they
379 * are not mapped into the kernel virtual address space. We store the
380 * DMA address in the page private. The helper function
381 * fw_iso_buffer_map() will map the pages into a given vma.
383 struct fw_iso_buffer
{
384 enum dma_data_direction direction
;
389 int fw_iso_buffer_init(struct fw_iso_buffer
*buffer
, struct fw_card
*card
,
390 int page_count
, enum dma_data_direction direction
);
391 void fw_iso_buffer_destroy(struct fw_iso_buffer
*buffer
, struct fw_card
*card
);
393 struct fw_iso_context
;
394 typedef void (*fw_iso_callback_t
)(struct fw_iso_context
*context
,
395 u32 cycle
, size_t header_length
,
396 void *header
, void *data
);
397 struct fw_iso_context
{
398 struct fw_card
*card
;
403 fw_iso_callback_t callback
;
407 struct fw_iso_context
*fw_iso_context_create(struct fw_card
*card
,
408 int type
, int channel
, int speed
, size_t header_size
,
409 fw_iso_callback_t callback
, void *callback_data
);
410 int fw_iso_context_queue(struct fw_iso_context
*ctx
,
411 struct fw_iso_packet
*packet
,
412 struct fw_iso_buffer
*buffer
,
413 unsigned long payload
);
414 int fw_iso_context_start(struct fw_iso_context
*ctx
,
415 int cycle
, int sync
, int tags
);
416 int fw_iso_context_stop(struct fw_iso_context
*ctx
);
417 void fw_iso_context_destroy(struct fw_iso_context
*ctx
);
419 #endif /* _LINUX_FIREWIRE_H */