blob: 63527340152b9b2e749af0d1e5ae073f1e940b6d [file] [log] [blame]
Kristian Høgsberg3038e352006-12-19 19:58:27 -05001/* -*- c-basic-offset: 8 -*-
2 *
3 * fw-transaction.h - Header for IEEE1394 transaction logic
4 *
5 * Copyright (C) 2003-2006 Kristian Hoegsberg <krh@bitplanet.net>
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or
10 * (at your option) any later version.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 *
17 * You should have received a copy of the GNU General Public License
18 * along with this program; if not, write to the Free Software Foundation,
19 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
20 */
21
Stefan Richter687198b2006-12-28 16:20:00 +010022#ifndef __fw_transaction_h
23#define __fw_transaction_h
Kristian Høgsberg3038e352006-12-19 19:58:27 -050024
25#include <linux/device.h>
26#include <linux/timer.h>
27#include <linux/interrupt.h>
28#include <linux/list.h>
29#include <linux/fs.h>
Kristian Høgsberg9aad8122007-02-16 17:34:38 -050030#include <linux/dma-mapping.h>
Kristian Høgsberg3038e352006-12-19 19:58:27 -050031
32#define TCODE_WRITE_QUADLET_REQUEST 0
33#define TCODE_WRITE_BLOCK_REQUEST 1
34#define TCODE_WRITE_RESPONSE 2
35#define TCODE_READ_QUADLET_REQUEST 4
36#define TCODE_READ_BLOCK_REQUEST 5
37#define TCODE_READ_QUADLET_RESPONSE 6
38#define TCODE_READ_BLOCK_RESPONSE 7
39#define TCODE_CYCLE_START 8
Stefan Richter5e20c282007-01-21 20:44:09 +010040#define TCODE_LOCK_REQUEST 9
41#define TCODE_STREAM_DATA 10
42#define TCODE_LOCK_RESPONSE 11
Kristian Høgsberg3038e352006-12-19 19:58:27 -050043
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -050044#define TCODE_IS_READ_REQUEST(tcode) (((tcode) & ~1) == 4)
Kristian Høgsberg3038e352006-12-19 19:58:27 -050045#define TCODE_IS_BLOCK_PACKET(tcode) (((tcode) & 1) != 0)
46#define TCODE_IS_REQUEST(tcode) (((tcode) & 2) == 0)
47#define TCODE_IS_RESPONSE(tcode) (((tcode) & 2) != 0)
48#define TCODE_HAS_REQUEST_DATA(tcode) (((tcode) & 12) != 4)
49#define TCODE_HAS_RESPONSE_DATA(tcode) (((tcode) & 12) != 0)
50
51/* Juju specific tcodes */
52#define TCODE_DEALLOCATE 0x10
53#define TCODE_LOCK_MASK_SWAP 0x11
54#define TCODE_LOCK_COMPARE_SWAP 0x12
55#define TCODE_LOCK_FETCH_ADD 0x13
56#define TCODE_LOCK_LITTLE_ADD 0x14
57#define TCODE_LOCK_BOUNDED_ADD 0x15
58#define TCODE_LOCK_WRAP_ADD 0x16
59#define TCODE_LOCK_VENDOR_SPECIFIC 0x17
60
61#define SCODE_100 0x0
62#define SCODE_200 0x1
63#define SCODE_400 0x2
64#define SCODE_BETA 0x3
65
Stefan Richter5e20c282007-01-21 20:44:09 +010066#define EXTCODE_MASK_SWAP 0x1
67#define EXTCODE_COMPARE_SWAP 0x2
68#define EXTCODE_FETCH_ADD 0x3
69#define EXTCODE_LITTLE_ADD 0x4
70#define EXTCODE_BOUNDED_ADD 0x5
71#define EXTCODE_WRAP_ADD 0x6
Kristian Høgsberg3038e352006-12-19 19:58:27 -050072
Stefan Richter5e20c282007-01-21 20:44:09 +010073#define ACK_COMPLETE 0x1
74#define ACK_PENDING 0x2
75#define ACK_BUSY_X 0x4
76#define ACK_BUSY_A 0x5
77#define ACK_BUSY_B 0x6
78#define ACK_DATA_ERROR 0xd
79#define ACK_TYPE_ERROR 0xe
Kristian Høgsberg3038e352006-12-19 19:58:27 -050080
Stefan Richter5e20c282007-01-21 20:44:09 +010081#define RCODE_COMPLETE 0x0
82#define RCODE_CONFLICT_ERROR 0x4
83#define RCODE_DATA_ERROR 0x5
84#define RCODE_TYPE_ERROR 0x6
85#define RCODE_ADDRESS_ERROR 0x7
Kristian Høgsberg3038e352006-12-19 19:58:27 -050086
87/* Juju specific rcodes */
88#define RCODE_SEND_ERROR 0x10
89#define RCODE_CANCELLED 0x11
90#define RCODE_BUSY 0x12
Kristian Høgsberge5f49c32007-01-26 00:38:34 -050091#define RCODE_GENERATION 0x13
92#define RCODE_NO_ACK 0x14
Kristian Høgsberg3038e352006-12-19 19:58:27 -050093
94#define RETRY_1 0x00
95#define RETRY_X 0x01
96#define RETRY_A 0x02
97#define RETRY_B 0x03
98
99#define LOCAL_BUS 0xffc0
100
Stefan Richter5e20c282007-01-21 20:44:09 +0100101#define SELFID_PORT_CHILD 0x3
102#define SELFID_PORT_PARENT 0x2
103#define SELFID_PORT_NCONN 0x1
104#define SELFID_PORT_NONE 0x0
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500105
106#define PHY_PACKET_CONFIG 0x0
107#define PHY_PACKET_LINK_ON 0x1
108#define PHY_PACKET_SELF_ID 0x2
109
Marc Butlerecab4132007-03-23 10:24:02 -0600110/* Bit fields _within_ the PHY registers. */
111#define PHY_LINK_ACTIVE 0x80
112#define PHY_CONTENDER 0x40
113#define PHY_BUS_RESET 0x40
114#define PHY_BUS_SHORT_RESET 0x40
115
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -0500116#define CSR_REGISTER_BASE 0xfffff0000000ULL
117
118/* register offsets relative to CSR_REGISTER_BASE */
119#define CSR_STATE_CLEAR 0x0
120#define CSR_STATE_SET 0x4
121#define CSR_NODE_IDS 0x8
122#define CSR_RESET_START 0xc
123#define CSR_SPLIT_TIMEOUT_HI 0x18
124#define CSR_SPLIT_TIMEOUT_LO 0x1c
125#define CSR_CYCLE_TIME 0x200
126#define CSR_BUS_TIME 0x204
127#define CSR_BUSY_TIMEOUT 0x210
128#define CSR_BUS_MANAGER_ID 0x21c
129#define CSR_BANDWIDTH_AVAILABLE 0x220
130#define CSR_CHANNELS_AVAILABLE 0x224
131#define CSR_CHANNELS_AVAILABLE_HI 0x224
132#define CSR_CHANNELS_AVAILABLE_LO 0x228
133#define CSR_BROADCAST_CHANNEL 0x234
134#define CSR_CONFIG_ROM 0x400
135#define CSR_CONFIG_ROM_END 0x800
136#define CSR_FCP_COMMAND 0xB00
137#define CSR_FCP_RESPONSE 0xD00
138#define CSR_FCP_END 0xF00
139#define CSR_TOPOLOGY_MAP 0x1000
140#define CSR_TOPOLOGY_MAP_END 0x1400
141#define CSR_SPEED_MAP 0x2000
142#define CSR_SPEED_MAP_END 0x3000
143
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500144#define fw_notify(s, args...) printk(KERN_NOTICE KBUILD_MODNAME ": " s, ## args)
145#define fw_error(s, args...) printk(KERN_ERR KBUILD_MODNAME ": " s, ## args)
146#define fw_debug(s, args...) printk(KERN_DEBUG KBUILD_MODNAME ": " s, ## args)
147
148static inline void
149fw_memcpy_from_be32(void *_dst, void *_src, size_t size)
150{
151 u32 *dst = _dst;
152 u32 *src = _src;
153 int i;
154
155 for (i = 0; i < size / 4; i++)
156 dst[i] = cpu_to_be32(src[i]);
157}
158
159static inline void
160fw_memcpy_to_be32(void *_dst, void *_src, size_t size)
161{
162 fw_memcpy_from_be32(_dst, _src, size);
163}
164
165struct fw_card;
166struct fw_packet;
167struct fw_node;
168struct fw_request;
169
170struct fw_descriptor {
171 struct list_head link;
172 size_t length;
Kristian Høgsberg937f6872007-03-07 12:12:36 -0500173 u32 immediate;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500174 u32 key;
Stefan Richter21ebcd12007-01-14 15:29:07 +0100175 const u32 *data;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500176};
177
178int fw_core_add_descriptor (struct fw_descriptor *desc);
179void fw_core_remove_descriptor (struct fw_descriptor *desc);
180
181typedef void (*fw_packet_callback_t) (struct fw_packet *packet,
182 struct fw_card *card, int status);
183
184typedef void (*fw_transaction_callback_t)(struct fw_card *card, int rcode,
185 void *data,
186 size_t length,
187 void *callback_data);
188
189typedef void (*fw_address_callback_t)(struct fw_card *card,
190 struct fw_request *request,
191 int tcode, int destination, int source,
192 int generation, int speed,
193 unsigned long long offset,
194 void *data, size_t length,
195 void *callback_data);
196
197typedef void (*fw_bus_reset_callback_t)(struct fw_card *handle,
198 int node_id, int generation,
199 u32 *self_ids,
200 int self_id_count,
201 void *callback_data);
202
203struct fw_packet {
Stefan Richter5e20c282007-01-21 20:44:09 +0100204 int speed;
205 int generation;
206 u32 header[4];
207 size_t header_length;
208 void *payload;
209 size_t payload_length;
210 u32 timestamp;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500211
Stefan Richter5e20c282007-01-21 20:44:09 +0100212 /* This callback is called when the packet transmission has
213 * completed; for successful transmission, the status code is
214 * the ack received from the destination, otherwise it's a
215 * negative errno: ENOMEM, ESTALE, ETIMEDOUT, ENODEV, EIO.
216 * The callback can be called from tasklet context and thus
217 * must never block.
218 */
219 fw_packet_callback_t callback;
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500220 int ack;
Stefan Richter5e20c282007-01-21 20:44:09 +0100221 struct list_head link;
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500222 void *driver_data;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500223};
224
225struct fw_transaction {
Stefan Richter5e20c282007-01-21 20:44:09 +0100226 int node_id; /* The generation is implied; it is always the current. */
227 int tlabel;
228 int timestamp;
229 struct list_head link;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500230
Stefan Richter5e20c282007-01-21 20:44:09 +0100231 struct fw_packet packet;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500232
233 /* The data passed to the callback is valid only during the
234 * callback. */
Stefan Richter5e20c282007-01-21 20:44:09 +0100235 fw_transaction_callback_t callback;
236 void *callback_data;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500237};
238
Adrian Bunk95688e92007-01-22 19:17:37 +0100239static inline struct fw_packet *
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500240fw_packet(struct list_head *l)
241{
Stefan Richter5e20c282007-01-21 20:44:09 +0100242 return list_entry (l, struct fw_packet, link);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500243}
244
245struct fw_address_handler {
Stefan Richter5e20c282007-01-21 20:44:09 +0100246 u64 offset;
247 size_t length;
248 fw_address_callback_t address_callback;
249 void *callback_data;
250 struct list_head link;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500251};
252
253
254struct fw_address_region {
255 u64 start;
256 u64 end;
257};
258
Stefan Richter21ebcd12007-01-14 15:29:07 +0100259extern const struct fw_address_region fw_low_memory_region;
260extern const struct fw_address_region fw_high_memory_region;
261extern const struct fw_address_region fw_private_region;
262extern const struct fw_address_region fw_csr_region;
263extern const struct fw_address_region fw_unit_space_region;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500264
265int fw_core_add_address_handler(struct fw_address_handler *handler,
Stefan Richter21ebcd12007-01-14 15:29:07 +0100266 const struct fw_address_region *region);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500267void fw_core_remove_address_handler(struct fw_address_handler *handler);
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -0500268void fw_fill_response(struct fw_packet *response, u32 *request_header,
269 int rcode, void *payload, size_t length);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500270void fw_send_response(struct fw_card *card,
271 struct fw_request *request, int rcode);
272
273extern struct bus_type fw_bus_type;
274
275struct fw_card {
Stefan Richter21ebcd12007-01-14 15:29:07 +0100276 const struct fw_card_driver *driver;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500277 struct device *device;
Kristian Høgsberg49e11792007-03-07 12:12:37 -0500278 struct kref kref;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500279
Stefan Richter5e20c282007-01-21 20:44:09 +0100280 int node_id;
281 int generation;
282 /* This is the generation used for timestamping incoming requests. */
283 int request_generation;
284 int current_tlabel, tlabel_mask;
285 struct list_head transaction_list;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500286 struct timer_list flush_timer;
Kristian Høgsberg931c4832007-01-26 00:38:45 -0500287 unsigned long reset_jiffies;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500288
Stefan Richter5e20c282007-01-21 20:44:09 +0100289 unsigned long long guid;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500290 int max_receive;
291 int link_speed;
292 int config_rom_generation;
293
Kristian Høgsberg473d28c2007-03-07 12:12:55 -0500294 /* We need to store up to 4 self ID for a maximum of 63
295 * devices plus 3 words for the topology map header. */
Stefan Richter5e20c282007-01-21 20:44:09 +0100296 int self_id_count;
Kristian Høgsberg473d28c2007-03-07 12:12:55 -0500297 u32 topology_map[252 + 3];
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500298
299 spinlock_t lock; /* Take this lock when handling the lists in
300 * this struct. */
301 struct fw_node *local_node;
302 struct fw_node *root_node;
303 struct fw_node *irm_node;
304 int color;
Kristian Høgsberg83db8012007-01-26 00:37:50 -0500305 int gap_count;
306 int topology_type;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500307
308 int index;
309
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500310 struct list_head link;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500311
Kristian Høgsberg931c4832007-01-26 00:38:45 -0500312 /* Work struct for BM duties. */
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500313 struct delayed_work work;
Kristian Høgsberg931c4832007-01-26 00:38:45 -0500314 int bm_retries;
315 int bm_generation;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500316};
317
318struct fw_card *fw_card_get(struct fw_card *card);
319void fw_card_put(struct fw_card *card);
320
321/* The iso packet format allows for an immediate header/payload part
322 * stored in 'header' immediately after the packet info plus an
323 * indirect payload part that is pointer to by the 'payload' field.
324 * Applications can use one or the other or both to implement simple
325 * low-bandwidth streaming (e.g. audio) or more advanced
326 * scatter-gather streaming (e.g. assembling video frame automatically). */
327
328struct fw_iso_packet {
Stefan Richter5e20c282007-01-21 20:44:09 +0100329 u16 payload_length; /* Length of indirect payload. */
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500330 u32 interrupt : 1; /* Generate interrupt on this packet */
331 u32 skip : 1; /* Set to not send packet at all. */
332 u32 tag : 2;
333 u32 sy : 4;
334 u32 header_length : 8; /* Length of immediate header. */
Stefan Richter5e20c282007-01-21 20:44:09 +0100335 u32 header[0];
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500336};
337
338#define FW_ISO_CONTEXT_TRANSMIT 0
339#define FW_ISO_CONTEXT_RECEIVE 1
340
Kristian Høgsberg98b6cbe2007-02-16 17:34:51 -0500341#define FW_ISO_CONTEXT_MATCH_TAG0 1
342#define FW_ISO_CONTEXT_MATCH_TAG1 2
343#define FW_ISO_CONTEXT_MATCH_TAG2 4
344#define FW_ISO_CONTEXT_MATCH_TAG3 8
345#define FW_ISO_CONTEXT_MATCH_ALL_TAGS 15
346
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500347struct fw_iso_context;
348
349typedef void (*fw_iso_callback_t) (struct fw_iso_context *context,
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -0500350 u32 cycle,
351 size_t header_length,
352 void *header,
353 void *data);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500354
Kristian Høgsberg9aad8122007-02-16 17:34:38 -0500355/* An iso buffer is just a set of pages mapped for DMA in the
356 * specified direction. Since the pages are to be used for DMA, they
357 * are not mapped into the kernel virtual address space. We store the
358 * DMA address in the page private. The helper function
359 * fw_iso_buffer_map() will map the pages into a given vma. */
360
361struct fw_iso_buffer {
362 enum dma_data_direction direction;
363 struct page **pages;
364 int page_count;
365};
366
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500367struct fw_iso_context {
368 struct fw_card *card;
369 int type;
370 int channel;
371 int speed;
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -0500372 size_t header_size;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500373 fw_iso_callback_t callback;
374 void *callback_data;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500375};
376
Kristian Høgsberg9aad8122007-02-16 17:34:38 -0500377int
378fw_iso_buffer_init(struct fw_iso_buffer *buffer,
379 struct fw_card *card,
380 int page_count,
381 enum dma_data_direction direction);
382int
383fw_iso_buffer_map(struct fw_iso_buffer *buffer, struct vm_area_struct *vma);
384void
385fw_iso_buffer_destroy(struct fw_iso_buffer *buffer, struct fw_card *card);
386
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500387struct fw_iso_context *
Kristian Høgsberg21efb3c2007-02-16 17:34:50 -0500388fw_iso_context_create(struct fw_card *card, int type,
Kristian Høgsbergeb0306e2007-03-14 17:34:54 -0400389 int channel, int speed, size_t header_size,
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -0500390 fw_iso_callback_t callback, void *callback_data);
Kristian Høgsberg9aad8122007-02-16 17:34:38 -0500391
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500392void
393fw_iso_context_destroy(struct fw_iso_context *ctx);
394
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500395int
396fw_iso_context_queue(struct fw_iso_context *ctx,
Kristian Høgsberg9aad8122007-02-16 17:34:38 -0500397 struct fw_iso_packet *packet,
398 struct fw_iso_buffer *buffer,
399 unsigned long payload);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500400
401int
Kristian Høgsbergeb0306e2007-03-14 17:34:54 -0400402fw_iso_context_start(struct fw_iso_context *ctx,
403 int cycle, int sync, int tags);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500404
Kristian Høgsbergb8295662007-02-16 17:34:42 -0500405int
406fw_iso_context_stop(struct fw_iso_context *ctx);
407
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500408struct fw_card_driver {
Stefan Richter5e20c282007-01-21 20:44:09 +0100409 const char *name;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500410
Stefan Richter5e20c282007-01-21 20:44:09 +0100411 /* Enable the given card with the given initial config rom.
412 * This function is expected to activate the card, and either
413 * enable the PHY or set the link_on bit and initiate a bus
414 * reset. */
415 int (*enable) (struct fw_card *card, u32 *config_rom, size_t length);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500416
Stefan Richter5e20c282007-01-21 20:44:09 +0100417 int (*update_phy_reg) (struct fw_card *card, int address,
418 int clear_bits, int set_bits);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500419
Stefan Richter5e20c282007-01-21 20:44:09 +0100420 /* Update the config rom for an enabled card. This function
421 * should change the config rom that is presented on the bus
422 * an initiate a bus reset. */
423 int (*set_config_rom) (struct fw_card *card,
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500424 u32 *config_rom, size_t length);
425
Stefan Richter5e20c282007-01-21 20:44:09 +0100426 void (*send_request) (struct fw_card *card, struct fw_packet *packet);
427 void (*send_response) (struct fw_card *card, struct fw_packet *packet);
Kristian Høgsberg730c32f2007-02-06 14:49:32 -0500428 /* Calling cancel is valid once a packet has been submitted. */
429 int (*cancel_packet) (struct fw_card *card, struct fw_packet *packet);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500430
431 /* Allow the specified node ID to do direct DMA out and in of
432 * host memory. The card will disable this for all node when
433 * a bus reset happens, so driver need to reenable this after
434 * bus reset. Returns 0 on success, -ENODEV if the card
435 * doesn't support this, -ESTALE if the generation doesn't
436 * match. */
437 int (*enable_phys_dma) (struct fw_card *card,
438 int node_id, int generation);
439
Kristian Høgsbergd60d7f12007-03-07 12:12:56 -0500440 u64 (*get_bus_time) (struct fw_card *card);
441
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500442 struct fw_iso_context *
Kristian Høgsbergeb0306e2007-03-14 17:34:54 -0400443 (*allocate_iso_context)(struct fw_card *card,
Kristian Høgsbergd2746dc2007-02-16 17:34:46 -0500444 int type, size_t header_size);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500445 void (*free_iso_context)(struct fw_iso_context *ctx);
446
Kristian Høgsbergeb0306e2007-03-14 17:34:54 -0400447 int (*start_iso)(struct fw_iso_context *ctx,
448 s32 cycle, u32 sync, u32 tags);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500449
450 int (*queue_iso)(struct fw_iso_context *ctx,
Kristian Høgsberg9aad8122007-02-16 17:34:38 -0500451 struct fw_iso_packet *packet,
452 struct fw_iso_buffer *buffer,
453 unsigned long payload);
Kristian Høgsbergb8295662007-02-16 17:34:42 -0500454
455 int (*stop_iso)(struct fw_iso_context *ctx);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500456};
457
458int
459fw_core_initiate_bus_reset(struct fw_card *card, int short_reset);
460
461void
462fw_send_request(struct fw_card *card, struct fw_transaction *t,
463 int tcode, int node_id, int generation, int speed,
464 unsigned long long offset,
465 void *data, size_t length,
466 fw_transaction_callback_t callback, void *callback_data);
467
Kristian Høgsberg730c32f2007-02-06 14:49:32 -0500468int fw_cancel_transaction(struct fw_card *card,
469 struct fw_transaction *transaction);
470
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500471void fw_flush_transactions(struct fw_card *card);
472
Kristian Høgsberg83db8012007-01-26 00:37:50 -0500473void fw_send_phy_config(struct fw_card *card,
474 int node_id, int generation, int gap_count);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500475
476/* Called by the topology code to inform the device code of node
477 * activity; found, lost, or updated nodes */
478void
479fw_node_event(struct fw_card *card, struct fw_node *node, int event);
480
481/* API used by card level drivers */
482
483/* Do we need phy speed here also? If we add more args, maybe we
484 should go back to struct fw_card_info. */
485void
Stefan Richter21ebcd12007-01-14 15:29:07 +0100486fw_card_initialize(struct fw_card *card, const struct fw_card_driver *driver,
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500487 struct device *device);
488int
489fw_card_add(struct fw_card *card,
490 u32 max_receive, u32 link_speed, u64 guid);
491
492void
493fw_core_remove_card(struct fw_card *card);
494
495void
496fw_core_handle_bus_reset(struct fw_card *card,
497 int node_id, int generation,
498 int self_id_count, u32 *self_ids);
499void
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500500fw_core_handle_request(struct fw_card *card, struct fw_packet *request);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500501
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500502void
503fw_core_handle_response(struct fw_card *card, struct fw_packet *packet);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500504
Stefan Richter687198b2006-12-28 16:20:00 +0100505#endif /* __fw_transaction_h */