]> git.proxmox.com Git - mirror_ubuntu-artful-kernel.git/blame - drivers/firewire/fw-transaction.h
firewire: Let an fw_descriptor specify a leading immediate key/value pair.
[mirror_ubuntu-artful-kernel.git] / drivers / firewire / fw-transaction.h
CommitLineData
3038e353
KH
1/* -*- 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
687198bb
SR
22#ifndef __fw_transaction_h
23#define __fw_transaction_h
3038e353
KH
24
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>
9aad8125 30#include <linux/dma-mapping.h>
3038e353
KH
31
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
5e20c282
SR
40#define TCODE_LOCK_REQUEST 9
41#define TCODE_STREAM_DATA 10
42#define TCODE_LOCK_RESPONSE 11
3038e353 43
93c4cceb 44#define TCODE_IS_READ_REQUEST(tcode) (((tcode) & ~1) == 4)
3038e353
KH
45#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
5e20c282
SR
66#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
72
73#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
80
81#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
3038e353
KH
86
87/* Juju specific rcodes */
88#define RCODE_SEND_ERROR 0x10
89#define RCODE_CANCELLED 0x11
90#define RCODE_BUSY 0x12
e5f49c3b
KH
91#define RCODE_GENERATION 0x13
92#define RCODE_NO_ACK 0x14
3038e353
KH
93
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
5e20c282
SR
101#define SELFID_PORT_CHILD 0x3
102#define SELFID_PORT_PARENT 0x2
103#define SELFID_PORT_NCONN 0x1
104#define SELFID_PORT_NONE 0x0
3038e353
KH
105
106#define PHY_PACKET_CONFIG 0x0
107#define PHY_PACKET_LINK_ON 0x1
108#define PHY_PACKET_SELF_ID 0x2
109
93c4cceb
KH
110#define CSR_REGISTER_BASE 0xfffff0000000ULL
111
112/* register offsets relative to CSR_REGISTER_BASE */
113#define CSR_STATE_CLEAR 0x0
114#define CSR_STATE_SET 0x4
115#define CSR_NODE_IDS 0x8
116#define CSR_RESET_START 0xc
117#define CSR_SPLIT_TIMEOUT_HI 0x18
118#define CSR_SPLIT_TIMEOUT_LO 0x1c
119#define CSR_CYCLE_TIME 0x200
120#define CSR_BUS_TIME 0x204
121#define CSR_BUSY_TIMEOUT 0x210
122#define CSR_BUS_MANAGER_ID 0x21c
123#define CSR_BANDWIDTH_AVAILABLE 0x220
124#define CSR_CHANNELS_AVAILABLE 0x224
125#define CSR_CHANNELS_AVAILABLE_HI 0x224
126#define CSR_CHANNELS_AVAILABLE_LO 0x228
127#define CSR_BROADCAST_CHANNEL 0x234
128#define CSR_CONFIG_ROM 0x400
129#define CSR_CONFIG_ROM_END 0x800
130#define CSR_FCP_COMMAND 0xB00
131#define CSR_FCP_RESPONSE 0xD00
132#define CSR_FCP_END 0xF00
133#define CSR_TOPOLOGY_MAP 0x1000
134#define CSR_TOPOLOGY_MAP_END 0x1400
135#define CSR_SPEED_MAP 0x2000
136#define CSR_SPEED_MAP_END 0x3000
137
3038e353
KH
138#define fw_notify(s, args...) printk(KERN_NOTICE KBUILD_MODNAME ": " s, ## args)
139#define fw_error(s, args...) printk(KERN_ERR KBUILD_MODNAME ": " s, ## args)
140#define fw_debug(s, args...) printk(KERN_DEBUG KBUILD_MODNAME ": " s, ## args)
141
142static inline void
143fw_memcpy_from_be32(void *_dst, void *_src, size_t size)
144{
145 u32 *dst = _dst;
146 u32 *src = _src;
147 int i;
148
149 for (i = 0; i < size / 4; i++)
150 dst[i] = cpu_to_be32(src[i]);
151}
152
153static inline void
154fw_memcpy_to_be32(void *_dst, void *_src, size_t size)
155{
156 fw_memcpy_from_be32(_dst, _src, size);
157}
158
159struct fw_card;
160struct fw_packet;
161struct fw_node;
162struct fw_request;
163
164struct fw_descriptor {
165 struct list_head link;
166 size_t length;
937f6879 167 u32 immediate;
3038e353 168 u32 key;
21ebcd12 169 const u32 *data;
3038e353
KH
170};
171
172int fw_core_add_descriptor (struct fw_descriptor *desc);
173void fw_core_remove_descriptor (struct fw_descriptor *desc);
174
175typedef void (*fw_packet_callback_t) (struct fw_packet *packet,
176 struct fw_card *card, int status);
177
178typedef void (*fw_transaction_callback_t)(struct fw_card *card, int rcode,
179 void *data,
180 size_t length,
181 void *callback_data);
182
183typedef void (*fw_address_callback_t)(struct fw_card *card,
184 struct fw_request *request,
185 int tcode, int destination, int source,
186 int generation, int speed,
187 unsigned long long offset,
188 void *data, size_t length,
189 void *callback_data);
190
191typedef void (*fw_bus_reset_callback_t)(struct fw_card *handle,
192 int node_id, int generation,
193 u32 *self_ids,
194 int self_id_count,
195 void *callback_data);
196
197struct fw_packet {
5e20c282
SR
198 int speed;
199 int generation;
200 u32 header[4];
201 size_t header_length;
202 void *payload;
203 size_t payload_length;
204 u32 timestamp;
205
206 dma_addr_t payload_bus;
207
208 /* This callback is called when the packet transmission has
209 * completed; for successful transmission, the status code is
210 * the ack received from the destination, otherwise it's a
211 * negative errno: ENOMEM, ESTALE, ETIMEDOUT, ENODEV, EIO.
212 * The callback can be called from tasklet context and thus
213 * must never block.
214 */
215 fw_packet_callback_t callback;
2639a6fb 216 int ack;
5e20c282 217 struct list_head link;
3038e353
KH
218};
219
220struct fw_transaction {
5e20c282
SR
221 int node_id; /* The generation is implied; it is always the current. */
222 int tlabel;
223 int timestamp;
224 struct list_head link;
3038e353 225
5e20c282 226 struct fw_packet packet;
3038e353
KH
227
228 /* The data passed to the callback is valid only during the
229 * callback. */
5e20c282
SR
230 fw_transaction_callback_t callback;
231 void *callback_data;
3038e353
KH
232};
233
95688e97 234static inline struct fw_packet *
3038e353
KH
235fw_packet(struct list_head *l)
236{
5e20c282 237 return list_entry (l, struct fw_packet, link);
3038e353
KH
238}
239
240struct fw_address_handler {
5e20c282
SR
241 u64 offset;
242 size_t length;
243 fw_address_callback_t address_callback;
244 void *callback_data;
245 struct list_head link;
3038e353
KH
246};
247
248
249struct fw_address_region {
250 u64 start;
251 u64 end;
252};
253
21ebcd12
SR
254extern const struct fw_address_region fw_low_memory_region;
255extern const struct fw_address_region fw_high_memory_region;
256extern const struct fw_address_region fw_private_region;
257extern const struct fw_address_region fw_csr_region;
258extern const struct fw_address_region fw_unit_space_region;
3038e353
KH
259
260int fw_core_add_address_handler(struct fw_address_handler *handler,
21ebcd12 261 const struct fw_address_region *region);
3038e353 262void fw_core_remove_address_handler(struct fw_address_handler *handler);
93c4cceb
KH
263void fw_fill_response(struct fw_packet *response, u32 *request_header,
264 int rcode, void *payload, size_t length);
3038e353
KH
265void fw_send_response(struct fw_card *card,
266 struct fw_request *request, int rcode);
267
268extern struct bus_type fw_bus_type;
269
270struct fw_card {
21ebcd12 271 const struct fw_card_driver *driver;
3038e353
KH
272 struct device *device;
273
5e20c282
SR
274 int node_id;
275 int generation;
276 /* This is the generation used for timestamping incoming requests. */
277 int request_generation;
278 int current_tlabel, tlabel_mask;
279 struct list_head transaction_list;
3038e353 280 struct timer_list flush_timer;
931c4834 281 unsigned long reset_jiffies;
3038e353 282
5e20c282 283 unsigned long long guid;
3038e353
KH
284 int max_receive;
285 int link_speed;
286 int config_rom_generation;
287
5e20c282
SR
288 /* We need to store up to 4 self ID for a maximum of 63 devices. */
289 int self_id_count;
290 u32 self_ids[252];
3038e353
KH
291
292 spinlock_t lock; /* Take this lock when handling the lists in
293 * this struct. */
294 struct fw_node *local_node;
295 struct fw_node *root_node;
296 struct fw_node *irm_node;
297 int color;
83db801c
KH
298 int gap_count;
299 int topology_type;
3038e353
KH
300
301 int index;
302
303 struct device card_device;
304
305 struct list_head link;
19a15b93 306
931c4834 307 /* Work struct for BM duties. */
19a15b93 308 struct delayed_work work;
931c4834
KH
309 int bm_retries;
310 int bm_generation;
3038e353
KH
311};
312
313struct fw_card *fw_card_get(struct fw_card *card);
314void fw_card_put(struct fw_card *card);
315
316/* The iso packet format allows for an immediate header/payload part
317 * stored in 'header' immediately after the packet info plus an
318 * indirect payload part that is pointer to by the 'payload' field.
319 * Applications can use one or the other or both to implement simple
320 * low-bandwidth streaming (e.g. audio) or more advanced
321 * scatter-gather streaming (e.g. assembling video frame automatically). */
322
323struct fw_iso_packet {
5e20c282 324 u16 payload_length; /* Length of indirect payload. */
3038e353
KH
325 u32 interrupt : 1; /* Generate interrupt on this packet */
326 u32 skip : 1; /* Set to not send packet at all. */
327 u32 tag : 2;
328 u32 sy : 4;
329 u32 header_length : 8; /* Length of immediate header. */
5e20c282 330 u32 header[0];
3038e353
KH
331};
332
333#define FW_ISO_CONTEXT_TRANSMIT 0
334#define FW_ISO_CONTEXT_RECEIVE 1
335
98b6cbe8
KH
336#define FW_ISO_CONTEXT_MATCH_TAG0 1
337#define FW_ISO_CONTEXT_MATCH_TAG1 2
338#define FW_ISO_CONTEXT_MATCH_TAG2 4
339#define FW_ISO_CONTEXT_MATCH_TAG3 8
340#define FW_ISO_CONTEXT_MATCH_ALL_TAGS 15
341
3038e353
KH
342struct fw_iso_context;
343
344typedef void (*fw_iso_callback_t) (struct fw_iso_context *context,
9b32d5f3
KH
345 u32 cycle,
346 size_t header_length,
347 void *header,
348 void *data);
3038e353 349
9aad8125
KH
350/* An iso buffer is just a set of pages mapped for DMA in the
351 * specified direction. Since the pages are to be used for DMA, they
352 * are not mapped into the kernel virtual address space. We store the
353 * DMA address in the page private. The helper function
354 * fw_iso_buffer_map() will map the pages into a given vma. */
355
356struct fw_iso_buffer {
357 enum dma_data_direction direction;
358 struct page **pages;
359 int page_count;
360};
361
3038e353
KH
362struct fw_iso_context {
363 struct fw_card *card;
364 int type;
365 int channel;
366 int speed;
98b6cbe8
KH
367 int sync;
368 int tags;
295e3feb 369 size_t header_size;
3038e353
KH
370 fw_iso_callback_t callback;
371 void *callback_data;
3038e353
KH
372};
373
9aad8125
KH
374int
375fw_iso_buffer_init(struct fw_iso_buffer *buffer,
376 struct fw_card *card,
377 int page_count,
378 enum dma_data_direction direction);
379int
380fw_iso_buffer_map(struct fw_iso_buffer *buffer, struct vm_area_struct *vma);
381void
382fw_iso_buffer_destroy(struct fw_iso_buffer *buffer, struct fw_card *card);
383
3038e353 384struct fw_iso_context *
21efb3cf 385fw_iso_context_create(struct fw_card *card, int type,
98b6cbe8
KH
386 int channel, int speed,
387 int sync, int tags, size_t header_size,
295e3feb 388 fw_iso_callback_t callback, void *callback_data);
9aad8125 389
3038e353
KH
390void
391fw_iso_context_destroy(struct fw_iso_context *ctx);
392
3038e353
KH
393int
394fw_iso_context_queue(struct fw_iso_context *ctx,
9aad8125
KH
395 struct fw_iso_packet *packet,
396 struct fw_iso_buffer *buffer,
397 unsigned long payload);
3038e353
KH
398
399int
21efb3cf 400fw_iso_context_start(struct fw_iso_context *ctx, int cycle);
3038e353 401
b8295668
KH
402int
403fw_iso_context_stop(struct fw_iso_context *ctx);
404
3038e353 405struct fw_card_driver {
5e20c282 406 const char *name;
3038e353 407
5e20c282
SR
408 /* Enable the given card with the given initial config rom.
409 * This function is expected to activate the card, and either
410 * enable the PHY or set the link_on bit and initiate a bus
411 * reset. */
412 int (*enable) (struct fw_card *card, u32 *config_rom, size_t length);
3038e353 413
5e20c282
SR
414 int (*update_phy_reg) (struct fw_card *card, int address,
415 int clear_bits, int set_bits);
3038e353 416
5e20c282
SR
417 /* Update the config rom for an enabled card. This function
418 * should change the config rom that is presented on the bus
419 * an initiate a bus reset. */
420 int (*set_config_rom) (struct fw_card *card,
3038e353
KH
421 u32 *config_rom, size_t length);
422
5e20c282
SR
423 void (*send_request) (struct fw_card *card, struct fw_packet *packet);
424 void (*send_response) (struct fw_card *card, struct fw_packet *packet);
730c32f5
KH
425 /* Calling cancel is valid once a packet has been submitted. */
426 int (*cancel_packet) (struct fw_card *card, struct fw_packet *packet);
3038e353
KH
427
428 /* Allow the specified node ID to do direct DMA out and in of
429 * host memory. The card will disable this for all node when
430 * a bus reset happens, so driver need to reenable this after
431 * bus reset. Returns 0 on success, -ENODEV if the card
432 * doesn't support this, -ESTALE if the generation doesn't
433 * match. */
434 int (*enable_phys_dma) (struct fw_card *card,
435 int node_id, int generation);
436
437 struct fw_iso_context *
98b6cbe8 438 (*allocate_iso_context)(struct fw_card *card, int sync, int tags,
d2746dc1 439 int type, size_t header_size);
3038e353
KH
440 void (*free_iso_context)(struct fw_iso_context *ctx);
441
69cdb726 442 int (*start_iso)(struct fw_iso_context *ctx, s32 cycle);
3038e353
KH
443
444 int (*queue_iso)(struct fw_iso_context *ctx,
9aad8125
KH
445 struct fw_iso_packet *packet,
446 struct fw_iso_buffer *buffer,
447 unsigned long payload);
b8295668
KH
448
449 int (*stop_iso)(struct fw_iso_context *ctx);
3038e353
KH
450};
451
452int
453fw_core_initiate_bus_reset(struct fw_card *card, int short_reset);
454
455void
456fw_send_request(struct fw_card *card, struct fw_transaction *t,
457 int tcode, int node_id, int generation, int speed,
458 unsigned long long offset,
459 void *data, size_t length,
460 fw_transaction_callback_t callback, void *callback_data);
461
730c32f5
KH
462int fw_cancel_transaction(struct fw_card *card,
463 struct fw_transaction *transaction);
464
3038e353
KH
465void fw_flush_transactions(struct fw_card *card);
466
83db801c
KH
467void fw_send_phy_config(struct fw_card *card,
468 int node_id, int generation, int gap_count);
3038e353
KH
469
470/* Called by the topology code to inform the device code of node
471 * activity; found, lost, or updated nodes */
472void
473fw_node_event(struct fw_card *card, struct fw_node *node, int event);
474
475/* API used by card level drivers */
476
477/* Do we need phy speed here also? If we add more args, maybe we
478 should go back to struct fw_card_info. */
479void
21ebcd12 480fw_card_initialize(struct fw_card *card, const struct fw_card_driver *driver,
3038e353
KH
481 struct device *device);
482int
483fw_card_add(struct fw_card *card,
484 u32 max_receive, u32 link_speed, u64 guid);
485
486void
487fw_core_remove_card(struct fw_card *card);
488
489void
490fw_core_handle_bus_reset(struct fw_card *card,
491 int node_id, int generation,
492 int self_id_count, u32 *self_ids);
493void
2639a6fb 494fw_core_handle_request(struct fw_card *card, struct fw_packet *request);
3038e353 495
2639a6fb
KH
496void
497fw_core_handle_response(struct fw_card *card, struct fw_packet *packet);
3038e353 498
687198bb 499#endif /* __fw_transaction_h */