blob: fb46ef78a323773ebb88fabff3f05a4b0876325a [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>
30
31#define TCODE_WRITE_QUADLET_REQUEST 0
32#define TCODE_WRITE_BLOCK_REQUEST 1
33#define TCODE_WRITE_RESPONSE 2
34#define TCODE_READ_QUADLET_REQUEST 4
35#define TCODE_READ_BLOCK_REQUEST 5
36#define TCODE_READ_QUADLET_RESPONSE 6
37#define TCODE_READ_BLOCK_RESPONSE 7
38#define TCODE_CYCLE_START 8
Stefan Richter5e20c282007-01-21 20:44:09 +010039#define TCODE_LOCK_REQUEST 9
40#define TCODE_STREAM_DATA 10
41#define TCODE_LOCK_RESPONSE 11
Kristian Høgsberg3038e352006-12-19 19:58:27 -050042
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -050043#define TCODE_IS_READ_REQUEST(tcode) (((tcode) & ~1) == 4)
Kristian Høgsberg3038e352006-12-19 19:58:27 -050044#define TCODE_IS_BLOCK_PACKET(tcode) (((tcode) & 1) != 0)
45#define TCODE_IS_REQUEST(tcode) (((tcode) & 2) == 0)
46#define TCODE_IS_RESPONSE(tcode) (((tcode) & 2) != 0)
47#define TCODE_HAS_REQUEST_DATA(tcode) (((tcode) & 12) != 4)
48#define TCODE_HAS_RESPONSE_DATA(tcode) (((tcode) & 12) != 0)
49
50/* Juju specific tcodes */
51#define TCODE_DEALLOCATE 0x10
52#define TCODE_LOCK_MASK_SWAP 0x11
53#define TCODE_LOCK_COMPARE_SWAP 0x12
54#define TCODE_LOCK_FETCH_ADD 0x13
55#define TCODE_LOCK_LITTLE_ADD 0x14
56#define TCODE_LOCK_BOUNDED_ADD 0x15
57#define TCODE_LOCK_WRAP_ADD 0x16
58#define TCODE_LOCK_VENDOR_SPECIFIC 0x17
59
60#define SCODE_100 0x0
61#define SCODE_200 0x1
62#define SCODE_400 0x2
63#define SCODE_BETA 0x3
64
Stefan Richter5e20c282007-01-21 20:44:09 +010065#define EXTCODE_MASK_SWAP 0x1
66#define EXTCODE_COMPARE_SWAP 0x2
67#define EXTCODE_FETCH_ADD 0x3
68#define EXTCODE_LITTLE_ADD 0x4
69#define EXTCODE_BOUNDED_ADD 0x5
70#define EXTCODE_WRAP_ADD 0x6
Kristian Høgsberg3038e352006-12-19 19:58:27 -050071
Stefan Richter5e20c282007-01-21 20:44:09 +010072#define ACK_COMPLETE 0x1
73#define ACK_PENDING 0x2
74#define ACK_BUSY_X 0x4
75#define ACK_BUSY_A 0x5
76#define ACK_BUSY_B 0x6
77#define ACK_DATA_ERROR 0xd
78#define ACK_TYPE_ERROR 0xe
Kristian Høgsberg3038e352006-12-19 19:58:27 -050079
Stefan Richter5e20c282007-01-21 20:44:09 +010080#define RCODE_COMPLETE 0x0
81#define RCODE_CONFLICT_ERROR 0x4
82#define RCODE_DATA_ERROR 0x5
83#define RCODE_TYPE_ERROR 0x6
84#define RCODE_ADDRESS_ERROR 0x7
Kristian Høgsberg3038e352006-12-19 19:58:27 -050085
86/* Juju specific rcodes */
87#define RCODE_SEND_ERROR 0x10
88#define RCODE_CANCELLED 0x11
89#define RCODE_BUSY 0x12
90
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
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -0500107#define CSR_REGISTER_BASE 0xfffff0000000ULL
108
109/* register offsets relative to CSR_REGISTER_BASE */
110#define CSR_STATE_CLEAR 0x0
111#define CSR_STATE_SET 0x4
112#define CSR_NODE_IDS 0x8
113#define CSR_RESET_START 0xc
114#define CSR_SPLIT_TIMEOUT_HI 0x18
115#define CSR_SPLIT_TIMEOUT_LO 0x1c
116#define CSR_CYCLE_TIME 0x200
117#define CSR_BUS_TIME 0x204
118#define CSR_BUSY_TIMEOUT 0x210
119#define CSR_BUS_MANAGER_ID 0x21c
120#define CSR_BANDWIDTH_AVAILABLE 0x220
121#define CSR_CHANNELS_AVAILABLE 0x224
122#define CSR_CHANNELS_AVAILABLE_HI 0x224
123#define CSR_CHANNELS_AVAILABLE_LO 0x228
124#define CSR_BROADCAST_CHANNEL 0x234
125#define CSR_CONFIG_ROM 0x400
126#define CSR_CONFIG_ROM_END 0x800
127#define CSR_FCP_COMMAND 0xB00
128#define CSR_FCP_RESPONSE 0xD00
129#define CSR_FCP_END 0xF00
130#define CSR_TOPOLOGY_MAP 0x1000
131#define CSR_TOPOLOGY_MAP_END 0x1400
132#define CSR_SPEED_MAP 0x2000
133#define CSR_SPEED_MAP_END 0x3000
134
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500135#define fw_notify(s, args...) printk(KERN_NOTICE KBUILD_MODNAME ": " s, ## args)
136#define fw_error(s, args...) printk(KERN_ERR KBUILD_MODNAME ": " s, ## args)
137#define fw_debug(s, args...) printk(KERN_DEBUG KBUILD_MODNAME ": " s, ## args)
138
139static inline void
140fw_memcpy_from_be32(void *_dst, void *_src, size_t size)
141{
142 u32 *dst = _dst;
143 u32 *src = _src;
144 int i;
145
146 for (i = 0; i < size / 4; i++)
147 dst[i] = cpu_to_be32(src[i]);
148}
149
150static inline void
151fw_memcpy_to_be32(void *_dst, void *_src, size_t size)
152{
153 fw_memcpy_from_be32(_dst, _src, size);
154}
155
156struct fw_card;
157struct fw_packet;
158struct fw_node;
159struct fw_request;
160
161struct fw_descriptor {
162 struct list_head link;
163 size_t length;
164 u32 key;
Stefan Richter21ebcd12007-01-14 15:29:07 +0100165 const u32 *data;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500166};
167
168int fw_core_add_descriptor (struct fw_descriptor *desc);
169void fw_core_remove_descriptor (struct fw_descriptor *desc);
170
171typedef void (*fw_packet_callback_t) (struct fw_packet *packet,
172 struct fw_card *card, int status);
173
174typedef void (*fw_transaction_callback_t)(struct fw_card *card, int rcode,
175 void *data,
176 size_t length,
177 void *callback_data);
178
179typedef void (*fw_address_callback_t)(struct fw_card *card,
180 struct fw_request *request,
181 int tcode, int destination, int source,
182 int generation, int speed,
183 unsigned long long offset,
184 void *data, size_t length,
185 void *callback_data);
186
187typedef void (*fw_bus_reset_callback_t)(struct fw_card *handle,
188 int node_id, int generation,
189 u32 *self_ids,
190 int self_id_count,
191 void *callback_data);
192
193struct fw_packet {
Stefan Richter5e20c282007-01-21 20:44:09 +0100194 int speed;
195 int generation;
196 u32 header[4];
197 size_t header_length;
198 void *payload;
199 size_t payload_length;
200 u32 timestamp;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500201
Stefan Richter5e20c282007-01-21 20:44:09 +0100202 dma_addr_t payload_bus;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500203
Stefan Richter5e20c282007-01-21 20:44:09 +0100204 /* This callback is called when the packet transmission has
205 * completed; for successful transmission, the status code is
206 * the ack received from the destination, otherwise it's a
207 * negative errno: ENOMEM, ESTALE, ETIMEDOUT, ENODEV, EIO.
208 * The callback can be called from tasklet context and thus
209 * must never block.
210 */
211 fw_packet_callback_t callback;
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500212 int ack;
Stefan Richter5e20c282007-01-21 20:44:09 +0100213 struct list_head link;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500214};
215
216struct fw_transaction {
Stefan Richter5e20c282007-01-21 20:44:09 +0100217 int node_id; /* The generation is implied; it is always the current. */
218 int tlabel;
219 int timestamp;
220 struct list_head link;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500221
Stefan Richter5e20c282007-01-21 20:44:09 +0100222 struct fw_packet packet;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500223
224 /* The data passed to the callback is valid only during the
225 * callback. */
Stefan Richter5e20c282007-01-21 20:44:09 +0100226 fw_transaction_callback_t callback;
227 void *callback_data;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500228};
229
Adrian Bunk95688e92007-01-22 19:17:37 +0100230static inline struct fw_packet *
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500231fw_packet(struct list_head *l)
232{
Stefan Richter5e20c282007-01-21 20:44:09 +0100233 return list_entry (l, struct fw_packet, link);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500234}
235
236struct fw_address_handler {
Stefan Richter5e20c282007-01-21 20:44:09 +0100237 u64 offset;
238 size_t length;
239 fw_address_callback_t address_callback;
240 void *callback_data;
241 struct list_head link;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500242};
243
244
245struct fw_address_region {
246 u64 start;
247 u64 end;
248};
249
Stefan Richter21ebcd12007-01-14 15:29:07 +0100250extern const struct fw_address_region fw_low_memory_region;
251extern const struct fw_address_region fw_high_memory_region;
252extern const struct fw_address_region fw_private_region;
253extern const struct fw_address_region fw_csr_region;
254extern const struct fw_address_region fw_unit_space_region;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500255
256int fw_core_add_address_handler(struct fw_address_handler *handler,
Stefan Richter21ebcd12007-01-14 15:29:07 +0100257 const struct fw_address_region *region);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500258void fw_core_remove_address_handler(struct fw_address_handler *handler);
Kristian Høgsberg93c4cce2007-01-26 00:38:26 -0500259void fw_fill_response(struct fw_packet *response, u32 *request_header,
260 int rcode, void *payload, size_t length);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500261void fw_send_response(struct fw_card *card,
262 struct fw_request *request, int rcode);
263
264extern struct bus_type fw_bus_type;
265
266struct fw_card {
Stefan Richter21ebcd12007-01-14 15:29:07 +0100267 const struct fw_card_driver *driver;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500268 struct device *device;
269
Stefan Richter5e20c282007-01-21 20:44:09 +0100270 int node_id;
271 int generation;
272 /* This is the generation used for timestamping incoming requests. */
273 int request_generation;
274 int current_tlabel, tlabel_mask;
275 struct list_head transaction_list;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500276 struct timer_list flush_timer;
277
Stefan Richter5e20c282007-01-21 20:44:09 +0100278 unsigned long long guid;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500279 int max_receive;
280 int link_speed;
281 int config_rom_generation;
282
Stefan Richter5e20c282007-01-21 20:44:09 +0100283 /* We need to store up to 4 self ID for a maximum of 63 devices. */
284 int self_id_count;
285 u32 self_ids[252];
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500286
287 spinlock_t lock; /* Take this lock when handling the lists in
288 * this struct. */
289 struct fw_node *local_node;
290 struct fw_node *root_node;
291 struct fw_node *irm_node;
292 int color;
Kristian Høgsberg83db8012007-01-26 00:37:50 -0500293 int gap_count;
294 int topology_type;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500295
296 int index;
297
298 struct device card_device;
299
300 struct list_head link;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500301
302 /* Work struct for IRM duties. */
303 struct delayed_work work;
304 int irm_retries;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500305};
306
307struct fw_card *fw_card_get(struct fw_card *card);
308void fw_card_put(struct fw_card *card);
309
310/* The iso packet format allows for an immediate header/payload part
311 * stored in 'header' immediately after the packet info plus an
312 * indirect payload part that is pointer to by the 'payload' field.
313 * Applications can use one or the other or both to implement simple
314 * low-bandwidth streaming (e.g. audio) or more advanced
315 * scatter-gather streaming (e.g. assembling video frame automatically). */
316
317struct fw_iso_packet {
Stefan Richter5e20c282007-01-21 20:44:09 +0100318 u16 payload_length; /* Length of indirect payload. */
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500319 u32 interrupt : 1; /* Generate interrupt on this packet */
320 u32 skip : 1; /* Set to not send packet at all. */
321 u32 tag : 2;
322 u32 sy : 4;
323 u32 header_length : 8; /* Length of immediate header. */
Stefan Richter5e20c282007-01-21 20:44:09 +0100324 u32 header[0];
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500325};
326
327#define FW_ISO_CONTEXT_TRANSMIT 0
328#define FW_ISO_CONTEXT_RECEIVE 1
329
330struct fw_iso_context;
331
332typedef void (*fw_iso_callback_t) (struct fw_iso_context *context,
333 int status, u32 cycle, void *data);
334
335struct fw_iso_context {
336 struct fw_card *card;
337 int type;
338 int channel;
339 int speed;
340 fw_iso_callback_t callback;
341 void *callback_data;
342
343 void *buffer;
344 size_t buffer_size;
345 dma_addr_t *pages;
346 int page_count;
347};
348
349struct fw_iso_context *
350fw_iso_context_create(struct fw_card *card, int type,
351 size_t buffer_size,
352 fw_iso_callback_t callback,
353 void *callback_data);
354
355void
356fw_iso_context_destroy(struct fw_iso_context *ctx);
357
358void
359fw_iso_context_start(struct fw_iso_context *ctx,
360 int channel, int speed, int cycle);
361
362int
363fw_iso_context_queue(struct fw_iso_context *ctx,
364 struct fw_iso_packet *packet, void *payload);
365
366int
367fw_iso_context_send(struct fw_iso_context *ctx,
368 int channel, int speed, int cycle);
369
370struct fw_card_driver {
Stefan Richter5e20c282007-01-21 20:44:09 +0100371 const char *name;
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500372
Stefan Richter5e20c282007-01-21 20:44:09 +0100373 /* Enable the given card with the given initial config rom.
374 * This function is expected to activate the card, and either
375 * enable the PHY or set the link_on bit and initiate a bus
376 * reset. */
377 int (*enable) (struct fw_card *card, u32 *config_rom, size_t length);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500378
Stefan Richter5e20c282007-01-21 20:44:09 +0100379 int (*update_phy_reg) (struct fw_card *card, int address,
380 int clear_bits, int set_bits);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500381
Stefan Richter5e20c282007-01-21 20:44:09 +0100382 /* Update the config rom for an enabled card. This function
383 * should change the config rom that is presented on the bus
384 * an initiate a bus reset. */
385 int (*set_config_rom) (struct fw_card *card,
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500386 u32 *config_rom, size_t length);
387
Stefan Richter5e20c282007-01-21 20:44:09 +0100388 void (*send_request) (struct fw_card *card, struct fw_packet *packet);
389 void (*send_response) (struct fw_card *card, struct fw_packet *packet);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500390
391 /* Allow the specified node ID to do direct DMA out and in of
392 * host memory. The card will disable this for all node when
393 * a bus reset happens, so driver need to reenable this after
394 * bus reset. Returns 0 on success, -ENODEV if the card
395 * doesn't support this, -ESTALE if the generation doesn't
396 * match. */
397 int (*enable_phys_dma) (struct fw_card *card,
398 int node_id, int generation);
399
400 struct fw_iso_context *
401 (*allocate_iso_context)(struct fw_card *card, int type);
402 void (*free_iso_context)(struct fw_iso_context *ctx);
403
404 int (*send_iso)(struct fw_iso_context *ctx, s32 cycle);
405
406 int (*queue_iso)(struct fw_iso_context *ctx,
407 struct fw_iso_packet *packet, void *payload);
408};
409
410int
411fw_core_initiate_bus_reset(struct fw_card *card, int short_reset);
412
413void
414fw_send_request(struct fw_card *card, struct fw_transaction *t,
415 int tcode, int node_id, int generation, int speed,
416 unsigned long long offset,
417 void *data, size_t length,
418 fw_transaction_callback_t callback, void *callback_data);
419
420void fw_flush_transactions(struct fw_card *card);
421
Kristian Høgsberg83db8012007-01-26 00:37:50 -0500422void fw_send_phy_config(struct fw_card *card,
423 int node_id, int generation, int gap_count);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500424
425/* Called by the topology code to inform the device code of node
426 * activity; found, lost, or updated nodes */
427void
428fw_node_event(struct fw_card *card, struct fw_node *node, int event);
429
430/* API used by card level drivers */
431
432/* Do we need phy speed here also? If we add more args, maybe we
433 should go back to struct fw_card_info. */
434void
Stefan Richter21ebcd12007-01-14 15:29:07 +0100435fw_card_initialize(struct fw_card *card, const struct fw_card_driver *driver,
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500436 struct device *device);
437int
438fw_card_add(struct fw_card *card,
439 u32 max_receive, u32 link_speed, u64 guid);
440
441void
442fw_core_remove_card(struct fw_card *card);
443
444void
445fw_core_handle_bus_reset(struct fw_card *card,
446 int node_id, int generation,
447 int self_id_count, u32 *self_ids);
448void
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500449fw_core_handle_request(struct fw_card *card, struct fw_packet *request);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500450
Kristian Høgsberg2639a6f2007-01-26 00:37:57 -0500451void
452fw_core_handle_response(struct fw_card *card, struct fw_packet *packet);
Kristian Høgsberg3038e352006-12-19 19:58:27 -0500453
Stefan Richter687198b2006-12-28 16:20:00 +0100454#endif /* __fw_transaction_h */