blob: a1507cf8d764cbec51c1cdf72dd19b0d86cf20f1 [file] [log] [blame]
Kristian Høgsbergc781c062007-05-07 20:33:32 -04001/*
Kristian Høgsberg3038e352006-12-19 19:58:27 -05002 * Copyright (C) 2003-2006 Kristian Hoegsberg <krh@bitplanet.net>
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; either version 2 of the License, or
7 * (at your option) any later version.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write to the Free Software Foundation,
16 * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
17 */
18
Stefan Richter687198b2006-12-28 16:20:00 +010019#ifndef __fw_transaction_h
20#define __fw_transaction_h
Kristian Høgsberg3038e352006-12-19 19:58:27 -050021
22#include <linux/device.h>
23#include <linux/timer.h>
24#include <linux/interrupt.h>
25#include <linux/list.h>
26#include <linux/fs.h>
Kristian Høgsberg9aad8122007-02-16 17:34:38 -050027#include <linux/dma-mapping.h>
Kristian Høgsberg3038e352006-12-19 19:58:27 -050028
29#define TCODE_WRITE_QUADLET_REQUEST 0
30#define TCODE_WRITE_BLOCK_REQUEST 1
31#define TCODE_WRITE_RESPONSE 2
32#define TCODE_READ_QUADLET_REQUEST 4
33#define TCODE_READ_BLOCK_REQUEST 5
34#define TCODE_READ_QUADLET_RESPONSE 6
35#define TCODE_READ_BLOCK_RESPONSE 7
36#define TCODE_CYCLE_START 8
Stefan Richter5e20c282007-01-21 20:44:09 +010037#define TCODE_LOCK_REQUEST 9
38#define TCODE_STREAM_DATA 10
39#define TCODE_LOCK_RESPONSE 11
Kristian Høgsberg3038e352006-12-19 19:58:27 -050040
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -050041#define TCODE_IS_READ_REQUEST(tcode) (((tcode) & ~1) == 4)
Kristian Høgsberg3038e352006-12-19 19:58:27 -050042#define TCODE_IS_BLOCK_PACKET(tcode) (((tcode) & 1) != 0)
43#define TCODE_IS_REQUEST(tcode) (((tcode) & 2) == 0)
44#define TCODE_IS_RESPONSE(tcode) (((tcode) & 2) != 0)
45#define TCODE_HAS_REQUEST_DATA(tcode) (((tcode) & 12) != 4)
46#define TCODE_HAS_RESPONSE_DATA(tcode) (((tcode) & 12) != 0)
47
48/* Juju specific tcodes */
49#define TCODE_DEALLOCATE 0x10
50#define TCODE_LOCK_MASK_SWAP 0x11
51#define TCODE_LOCK_COMPARE_SWAP 0x12
52#define TCODE_LOCK_FETCH_ADD 0x13
53#define TCODE_LOCK_LITTLE_ADD 0x14
54#define TCODE_LOCK_BOUNDED_ADD 0x15
55#define TCODE_LOCK_WRAP_ADD 0x16
56#define TCODE_LOCK_VENDOR_SPECIFIC 0x17
57
58#define SCODE_100 0x0
59#define SCODE_200 0x1
60#define SCODE_400 0x2
61#define SCODE_BETA 0x3
62
Stefan Richter5e20c282007-01-21 20:44:09 +010063#define EXTCODE_MASK_SWAP 0x1
64#define EXTCODE_COMPARE_SWAP 0x2
65#define EXTCODE_FETCH_ADD 0x3
66#define EXTCODE_LITTLE_ADD 0x4
67#define EXTCODE_BOUNDED_ADD 0x5
68#define EXTCODE_WRAP_ADD 0x6
Kristian Høgsberg3038e352006-12-19 19:58:27 -050069
Stefan Richter5e20c282007-01-21 20:44:09 +010070#define ACK_COMPLETE 0x1
71#define ACK_PENDING 0x2
72#define ACK_BUSY_X 0x4
73#define ACK_BUSY_A 0x5
74#define ACK_BUSY_B 0x6
75#define ACK_DATA_ERROR 0xd
76#define ACK_TYPE_ERROR 0xe
Kristian Høgsberg3038e352006-12-19 19:58:27 -050077
Stefan Richter5e20c282007-01-21 20:44:09 +010078#define RCODE_COMPLETE 0x0
79#define RCODE_CONFLICT_ERROR 0x4
80#define RCODE_DATA_ERROR 0x5
81#define RCODE_TYPE_ERROR 0x6
82#define RCODE_ADDRESS_ERROR 0x7
Kristian Høgsberg3038e352006-12-19 19:58:27 -050083
84/* Juju specific rcodes */
85#define RCODE_SEND_ERROR 0x10
86#define RCODE_CANCELLED 0x11
87#define RCODE_BUSY 0x12
Kristian Høgsberge5f49c32007-01-26 00:38:34 -050088#define RCODE_GENERATION 0x13
89#define RCODE_NO_ACK 0x14
Kristian Høgsberg3038e352006-12-19 19:58:27 -050090
91#define RETRY_1 0x00
92#define RETRY_X 0x01
93#define RETRY_A 0x02
94#define RETRY_B 0x03
95
96#define LOCAL_BUS 0xffc0
97
Stefan Richter5e20c282007-01-21 20:44:09 +010098#define SELFID_PORT_CHILD 0x3
99#define SELFID_PORT_PARENT 0x2
100#define SELFID_PORT_NCONN 0x1
101#define SELFID_PORT_NONE 0x0
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500102
103#define PHY_PACKET_CONFIG 0x0
104#define PHY_PACKET_LINK_ON 0x1
105#define PHY_PACKET_SELF_ID 0x2
106
Marc Butlerecab4132007-03-23 10:24:02 -0600107/* Bit fields _within_ the PHY registers. */
108#define PHY_LINK_ACTIVE 0x80
109#define PHY_CONTENDER 0x40
110#define PHY_BUS_RESET 0x40
111#define PHY_BUS_SHORT_RESET 0x40
112
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -0500113#define CSR_REGISTER_BASE 0xfffff0000000ULL
114
115/* register offsets relative to CSR_REGISTER_BASE */
116#define CSR_STATE_CLEAR 0x0
117#define CSR_STATE_SET 0x4
118#define CSR_NODE_IDS 0x8
119#define CSR_RESET_START 0xc
120#define CSR_SPLIT_TIMEOUT_HI 0x18
121#define CSR_SPLIT_TIMEOUT_LO 0x1c
122#define CSR_CYCLE_TIME 0x200
123#define CSR_BUS_TIME 0x204
124#define CSR_BUSY_TIMEOUT 0x210
125#define CSR_BUS_MANAGER_ID 0x21c
126#define CSR_BANDWIDTH_AVAILABLE 0x220
127#define CSR_CHANNELS_AVAILABLE 0x224
128#define CSR_CHANNELS_AVAILABLE_HI 0x224
129#define CSR_CHANNELS_AVAILABLE_LO 0x228
130#define CSR_BROADCAST_CHANNEL 0x234
131#define CSR_CONFIG_ROM 0x400
132#define CSR_CONFIG_ROM_END 0x800
133#define CSR_FCP_COMMAND 0xB00
134#define CSR_FCP_RESPONSE 0xD00
135#define CSR_FCP_END 0xF00
136#define CSR_TOPOLOGY_MAP 0x1000
137#define CSR_TOPOLOGY_MAP_END 0x1400
138#define CSR_SPEED_MAP 0x2000
139#define CSR_SPEED_MAP_END 0x3000
140
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500141#define fw_notify(s, args...) printk(KERN_NOTICE KBUILD_MODNAME ": " s, ## args)
142#define fw_error(s, args...) printk(KERN_ERR KBUILD_MODNAME ": " s, ## args)
143#define fw_debug(s, args...) printk(KERN_DEBUG KBUILD_MODNAME ": " s, ## args)
144
145static inline void
146fw_memcpy_from_be32(void *_dst, void *_src, size_t size)
147{
148 u32 *dst = _dst;
149 u32 *src = _src;
150 int i;
151
152 for (i = 0; i < size / 4; i++)
153 dst[i] = cpu_to_be32(src[i]);
154}
155
156static inline void
157fw_memcpy_to_be32(void *_dst, void *_src, size_t size)
158{
159 fw_memcpy_from_be32(_dst, _src, size);
160}
161
162struct fw_card;
163struct fw_packet;
164struct fw_node;
165struct fw_request;
166
167struct fw_descriptor {
168 struct list_head link;
169 size_t length;
Kristian Høgsberg937f6872007-03-07 12:12:36 -0500170 u32 immediate;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500171 u32 key;
Stefan Richter21ebcd12007-01-14 15:29:07 +0100172 const u32 *data;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500173};
174
Kristian Høgsberga98e2712007-05-07 20:33:34 -0400175int fw_core_add_descriptor(struct fw_descriptor *desc);
176void fw_core_remove_descriptor(struct fw_descriptor *desc);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500177
Kristian Høgsberga98e2712007-05-07 20:33:34 -0400178typedef void (*fw_packet_callback_t)(struct fw_packet *packet,
179 struct fw_card *card, int status);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500180
181typedef void (*fw_transaction_callback_t)(struct fw_card *card, int rcode,
182 void *data,
183 size_t length,
184 void *callback_data);
185
186typedef void (*fw_address_callback_t)(struct fw_card *card,
187 struct fw_request *request,
188 int tcode, int destination, int source,
189 int generation, int speed,
190 unsigned long long offset,
191 void *data, size_t length,
192 void *callback_data);
193
194typedef void (*fw_bus_reset_callback_t)(struct fw_card *handle,
195 int node_id, int generation,
196 u32 *self_ids,
197 int self_id_count,
198 void *callback_data);
199
200struct fw_packet {
Stefan Richter5e20c282007-01-21 20:44:09 +0100201 int speed;
202 int generation;
203 u32 header[4];
204 size_t header_length;
205 void *payload;
206 size_t payload_length;
207 u32 timestamp;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500208
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400209 /*
210 * This callback is called when the packet transmission has
Stefan Richter5e20c282007-01-21 20:44:09 +0100211 * completed; for successful transmission, the status code is
212 * the ack received from the destination, otherwise it's a
213 * negative errno: ENOMEM, ESTALE, ETIMEDOUT, ENODEV, EIO.
214 * The callback can be called from tasklet context and thus
215 * must never block.
216 */
217 fw_packet_callback_t callback;
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500218 int ack;
Stefan Richter5e20c282007-01-21 20:44:09 +0100219 struct list_head link;
Kristian Høgsbergf319b6a2007-03-07 12:12:49 -0500220 void *driver_data;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500221};
222
223struct fw_transaction {
Stefan Richter5e20c282007-01-21 20:44:09 +0100224 int node_id; /* The generation is implied; it is always the current. */
225 int tlabel;
226 int timestamp;
227 struct list_head link;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500228
Stefan Richter5e20c282007-01-21 20:44:09 +0100229 struct fw_packet packet;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500230
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400231 /*
232 * The data passed to the callback is valid only during the
233 * callback.
234 */
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{
Kristian Høgsberga98e2712007-05-07 20:33:34 -0400242 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øgsbergc781c062007-05-07 20:33:32 -0400294 /*
295 * We need to store up to 4 self ID for a maximum of 63
296 * devices plus 3 words for the topology map header.
297 */
Stefan Richter5e20c282007-01-21 20:44:09 +0100298 int self_id_count;
Kristian Høgsberg473d28c2007-03-07 12:12:55 -0500299 u32 topology_map[252 + 3];
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500300
301 spinlock_t lock; /* Take this lock when handling the lists in
302 * this struct. */
303 struct fw_node *local_node;
304 struct fw_node *root_node;
305 struct fw_node *irm_node;
306 int color;
Kristian Høgsberg83db8012007-01-26 00:37:50 -0500307 int gap_count;
308 int topology_type;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500309
310 int index;
311
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500312 struct list_head link;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500313
Kristian Høgsberg931c4832007-01-26 00:38:45 -0500314 /* Work struct for BM duties. */
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500315 struct delayed_work work;
Kristian Høgsberg931c4832007-01-26 00:38:45 -0500316 int bm_retries;
317 int bm_generation;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500318};
319
320struct fw_card *fw_card_get(struct fw_card *card);
321void fw_card_put(struct fw_card *card);
322
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400323/*
324 * The iso packet format allows for an immediate header/payload part
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500325 * stored in 'header' immediately after the packet info plus an
326 * indirect payload part that is pointer to by the 'payload' field.
327 * Applications can use one or the other or both to implement simple
328 * low-bandwidth streaming (e.g. audio) or more advanced
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400329 * scatter-gather streaming (e.g. assembling video frame automatically).
330 */
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500331
332struct fw_iso_packet {
Stefan Richter5e20c282007-01-21 20:44:09 +0100333 u16 payload_length; /* Length of indirect payload. */
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500334 u32 interrupt : 1; /* Generate interrupt on this packet */
335 u32 skip : 1; /* Set to not send packet at all. */
336 u32 tag : 2;
337 u32 sy : 4;
338 u32 header_length : 8; /* Length of immediate header. */
Stefan Richter5e20c282007-01-21 20:44:09 +0100339 u32 header[0];
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500340};
341
342#define FW_ISO_CONTEXT_TRANSMIT 0
343#define FW_ISO_CONTEXT_RECEIVE 1
344
Kristian Høgsberg98b6cbe2007-02-16 17:34:51 -0500345#define FW_ISO_CONTEXT_MATCH_TAG0 1
346#define FW_ISO_CONTEXT_MATCH_TAG1 2
347#define FW_ISO_CONTEXT_MATCH_TAG2 4
348#define FW_ISO_CONTEXT_MATCH_TAG3 8
349#define FW_ISO_CONTEXT_MATCH_ALL_TAGS 15
350
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500351struct fw_iso_context;
352
Kristian Høgsberga98e2712007-05-07 20:33:34 -0400353typedef void (*fw_iso_callback_t)(struct fw_iso_context *context,
354 u32 cycle,
355 size_t header_length,
356 void *header,
357 void *data);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500358
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400359/*
360 * An iso buffer is just a set of pages mapped for DMA in the
Kristian Høgsberg9aad8122007-02-16 17:34:38 -0500361 * specified direction. Since the pages are to be used for DMA, they
362 * are not mapped into the kernel virtual address space. We store the
363 * DMA address in the page private. The helper function
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400364 * fw_iso_buffer_map() will map the pages into a given vma.
365 */
Kristian Høgsberg9aad8122007-02-16 17:34:38 -0500366
367struct fw_iso_buffer {
368 enum dma_data_direction direction;
369 struct page **pages;
370 int page_count;
371};
372
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500373struct fw_iso_context {
374 struct fw_card *card;
375 int type;
376 int channel;
377 int speed;
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -0500378 size_t header_size;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500379 fw_iso_callback_t callback;
380 void *callback_data;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500381};
382
Kristian Høgsberg9aad8122007-02-16 17:34:38 -0500383int
384fw_iso_buffer_init(struct fw_iso_buffer *buffer,
385 struct fw_card *card,
386 int page_count,
387 enum dma_data_direction direction);
388int
389fw_iso_buffer_map(struct fw_iso_buffer *buffer, struct vm_area_struct *vma);
390void
391fw_iso_buffer_destroy(struct fw_iso_buffer *buffer, struct fw_card *card);
392
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500393struct fw_iso_context *
Kristian Høgsberg21efb3c2007-02-16 17:34:50 -0500394fw_iso_context_create(struct fw_card *card, int type,
Kristian Høgsbergeb0306e2007-03-14 17:34:54 -0400395 int channel, int speed, size_t header_size,
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -0500396 fw_iso_callback_t callback, void *callback_data);
Kristian Høgsberg9aad8122007-02-16 17:34:38 -0500397
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500398void
399fw_iso_context_destroy(struct fw_iso_context *ctx);
400
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500401int
402fw_iso_context_queue(struct fw_iso_context *ctx,
Kristian Høgsberg9aad8122007-02-16 17:34:38 -0500403 struct fw_iso_packet *packet,
404 struct fw_iso_buffer *buffer,
405 unsigned long payload);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500406
407int
Kristian Høgsbergeb0306e2007-03-14 17:34:54 -0400408fw_iso_context_start(struct fw_iso_context *ctx,
409 int cycle, int sync, int tags);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500410
Kristian Høgsbergb8295662007-02-16 17:34:42 -0500411int
412fw_iso_context_stop(struct fw_iso_context *ctx);
413
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500414struct fw_card_driver {
Stefan Richter5e20c282007-01-21 20:44:09 +0100415 const char *name;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500416
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400417 /*
418 * Enable the given card with the given initial config rom.
Stefan Richter5e20c282007-01-21 20:44:09 +0100419 * This function is expected to activate the card, and either
420 * enable the PHY or set the link_on bit and initiate a bus
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400421 * reset.
422 */
Kristian Høgsberga98e2712007-05-07 20:33:34 -0400423 int (*enable)(struct fw_card *card, u32 *config_rom, size_t length);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500424
Kristian Høgsberga98e2712007-05-07 20:33:34 -0400425 int (*update_phy_reg)(struct fw_card *card, int address,
426 int clear_bits, int set_bits);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500427
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400428 /*
429 * Update the config rom for an enabled card. This function
Stefan Richter5e20c282007-01-21 20:44:09 +0100430 * should change the config rom that is presented on the bus
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400431 * an initiate a bus reset.
432 */
Kristian Høgsberga98e2712007-05-07 20:33:34 -0400433 int (*set_config_rom)(struct fw_card *card,
434 u32 *config_rom, size_t length);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500435
Kristian Høgsberga98e2712007-05-07 20:33:34 -0400436 void (*send_request)(struct fw_card *card, struct fw_packet *packet);
437 void (*send_response)(struct fw_card *card, struct fw_packet *packet);
Kristian Høgsberg730c32f2007-02-06 14:49:32 -0500438 /* Calling cancel is valid once a packet has been submitted. */
Kristian Høgsberga98e2712007-05-07 20:33:34 -0400439 int (*cancel_packet)(struct fw_card *card, struct fw_packet *packet);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500440
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400441 /*
442 * Allow the specified node ID to do direct DMA out and in of
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500443 * host memory. The card will disable this for all node when
444 * a bus reset happens, so driver need to reenable this after
445 * bus reset. Returns 0 on success, -ENODEV if the card
446 * doesn't support this, -ESTALE if the generation doesn't
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400447 * match.
448 */
Kristian Høgsberga98e2712007-05-07 20:33:34 -0400449 int (*enable_phys_dma)(struct fw_card *card,
450 int node_id, int generation);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500451
Kristian Høgsberga98e2712007-05-07 20:33:34 -0400452 u64 (*get_bus_time)(struct fw_card *card);
Kristian Høgsbergd60d7f12007-03-07 12:12:56 -0500453
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500454 struct fw_iso_context *
Kristian Høgsbergeb0306e2007-03-14 17:34:54 -0400455 (*allocate_iso_context)(struct fw_card *card,
Kristian Høgsbergd2746dc2007-02-16 17:34:46 -0500456 int type, size_t header_size);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500457 void (*free_iso_context)(struct fw_iso_context *ctx);
458
Kristian Høgsbergeb0306e2007-03-14 17:34:54 -0400459 int (*start_iso)(struct fw_iso_context *ctx,
460 s32 cycle, u32 sync, u32 tags);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500461
462 int (*queue_iso)(struct fw_iso_context *ctx,
Kristian Høgsberg9aad8122007-02-16 17:34:38 -0500463 struct fw_iso_packet *packet,
464 struct fw_iso_buffer *buffer,
465 unsigned long payload);
Kristian Høgsbergb8295662007-02-16 17:34:42 -0500466
467 int (*stop_iso)(struct fw_iso_context *ctx);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500468};
469
470int
471fw_core_initiate_bus_reset(struct fw_card *card, int short_reset);
472
473void
474fw_send_request(struct fw_card *card, struct fw_transaction *t,
475 int tcode, int node_id, int generation, int speed,
476 unsigned long long offset,
477 void *data, size_t length,
478 fw_transaction_callback_t callback, void *callback_data);
479
Kristian Høgsberg730c32f2007-02-06 14:49:32 -0500480int fw_cancel_transaction(struct fw_card *card,
481 struct fw_transaction *transaction);
482
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500483void fw_flush_transactions(struct fw_card *card);
484
Kristian Høgsberg83db8012007-01-26 00:37:50 -0500485void fw_send_phy_config(struct fw_card *card,
486 int node_id, int generation, int gap_count);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500487
Kristian Høgsbergc781c062007-05-07 20:33:32 -0400488/*
489 * Called by the topology code to inform the device code of node
490 * activity; found, lost, or updated nodes.
491 */
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500492void
493fw_node_event(struct fw_card *card, struct fw_node *node, int event);
494
495/* API used by card level drivers */
496
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500497void
Stefan Richter21ebcd12007-01-14 15:29:07 +0100498fw_card_initialize(struct fw_card *card, const struct fw_card_driver *driver,
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500499 struct device *device);
500int
501fw_card_add(struct fw_card *card,
502 u32 max_receive, u32 link_speed, u64 guid);
503
504void
505fw_core_remove_card(struct fw_card *card);
506
507void
508fw_core_handle_bus_reset(struct fw_card *card,
509 int node_id, int generation,
510 int self_id_count, u32 *self_ids);
511void
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500512fw_core_handle_request(struct fw_card *card, struct fw_packet *request);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500513
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500514void
515fw_core_handle_response(struct fw_card *card, struct fw_packet *packet);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500516
Stefan Richter687198b2006-12-28 16:20:00 +0100517#endif /* __fw_transaction_h */