blob: 62f57a4331e3f3146e531f058186c748fdd571e0 [file] [log] [blame]
Stefan Richter77c9a5d2009-06-05 16:26:18 +02001#ifndef _FIREWIRE_CORE_H
2#define _FIREWIRE_CORE_H
3
Stefan Richter26b49502012-02-18 22:03:14 +01004#include <linux/compiler.h>
Stefan Richter21076222011-08-27 18:53:03 +02005#include <linux/device.h>
Stefan Richter77c9a5d2009-06-05 16:26:18 +02006#include <linux/fs.h>
7#include <linux/list.h>
8#include <linux/idr.h>
9#include <linux/mm_types.h>
10#include <linux/rwsem.h>
11#include <linux/slab.h>
12#include <linux/types.h>
13
Arun Sharma600634972011-07-26 16:09:06 -070014#include <linux/atomic.h>
Stefan Richter77c9a5d2009-06-05 16:26:18 +020015
16struct device;
17struct fw_card;
18struct fw_device;
19struct fw_iso_buffer;
20struct fw_iso_context;
21struct fw_iso_packet;
22struct fw_node;
23struct fw_packet;
24
25
26/* -card */
27
Stefan Richter26b49502012-02-18 22:03:14 +010028extern __printf(2, 3)
29void fw_err(const struct fw_card *card, const char *fmt, ...);
30extern __printf(2, 3)
31void fw_notice(const struct fw_card *card, const char *fmt, ...);
32
Stefan Richter77c9a5d2009-06-05 16:26:18 +020033/* bitfields within the PHY registers */
34#define PHY_LINK_ACTIVE 0x80
35#define PHY_CONTENDER 0x40
36#define PHY_BUS_RESET 0x40
Clemens Ladisch925e7a62010-04-04 15:19:54 +020037#define PHY_EXTENDED_REGISTERS 0xe0
Stefan Richter77c9a5d2009-06-05 16:26:18 +020038#define PHY_BUS_SHORT_RESET 0x40
Clemens Ladische7014da2010-04-01 16:40:18 +020039#define PHY_INT_STATUS_BITS 0x3c
Clemens Ladisch925e7a62010-04-04 15:19:54 +020040#define PHY_ENABLE_ACCEL 0x02
41#define PHY_ENABLE_MULTI 0x01
42#define PHY_PAGE_SELECT 0xe0
Stefan Richter77c9a5d2009-06-05 16:26:18 +020043
44#define BANDWIDTH_AVAILABLE_INITIAL 4915
45#define BROADCAST_CHANNEL_INITIAL (1 << 31 | 31)
46#define BROADCAST_CHANNEL_VALID (1 << 30)
47
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +020048#define CSR_STATE_BIT_CMSTR (1 << 8)
Clemens Ladisch7e0e314f2010-06-10 08:37:15 +020049#define CSR_STATE_BIT_ABDICATE (1 << 10)
Clemens Ladisch4ffb7a62010-06-10 08:36:37 +020050
Stefan Richter77c9a5d2009-06-05 16:26:18 +020051struct fw_card_driver {
52 /*
53 * Enable the given card with the given initial config rom.
54 * This function is expected to activate the card, and either
55 * enable the PHY or set the link_on bit and initiate a bus
56 * reset.
57 */
Stefan Richter8e859732009-10-08 00:41:59 +020058 int (*enable)(struct fw_card *card,
59 const __be32 *config_rom, size_t length);
Stefan Richter77c9a5d2009-06-05 16:26:18 +020060
Stefan Richter02d37be2010-07-08 16:09:06 +020061 int (*read_phy_reg)(struct fw_card *card, int address);
Stefan Richter77c9a5d2009-06-05 16:26:18 +020062 int (*update_phy_reg)(struct fw_card *card, int address,
63 int clear_bits, int set_bits);
64
65 /*
66 * Update the config rom for an enabled card. This function
67 * should change the config rom that is presented on the bus
Stefan Richter8e859732009-10-08 00:41:59 +020068 * and initiate a bus reset.
Stefan Richter77c9a5d2009-06-05 16:26:18 +020069 */
70 int (*set_config_rom)(struct fw_card *card,
Stefan Richter8e859732009-10-08 00:41:59 +020071 const __be32 *config_rom, size_t length);
Stefan Richter77c9a5d2009-06-05 16:26:18 +020072
73 void (*send_request)(struct fw_card *card, struct fw_packet *packet);
74 void (*send_response)(struct fw_card *card, struct fw_packet *packet);
75 /* Calling cancel is valid once a packet has been submitted. */
76 int (*cancel_packet)(struct fw_card *card, struct fw_packet *packet);
77
78 /*
79 * Allow the specified node ID to do direct DMA out and in of
80 * host memory. The card will disable this for all node when
81 * a bus reset happens, so driver need to reenable this after
82 * bus reset. Returns 0 on success, -ENODEV if the card
83 * doesn't support this, -ESTALE if the generation doesn't
84 * match.
85 */
86 int (*enable_phys_dma)(struct fw_card *card,
87 int node_id, int generation);
88
Stefan Richter0fcff4e2010-06-12 20:35:52 +020089 u32 (*read_csr)(struct fw_card *card, int csr_offset);
90 void (*write_csr)(struct fw_card *card, int csr_offset, u32 value);
Stefan Richter77c9a5d2009-06-05 16:26:18 +020091
92 struct fw_iso_context *
93 (*allocate_iso_context)(struct fw_card *card,
94 int type, int channel, size_t header_size);
95 void (*free_iso_context)(struct fw_iso_context *ctx);
96
97 int (*start_iso)(struct fw_iso_context *ctx,
98 s32 cycle, u32 sync, u32 tags);
99
Stefan Richter872e3302010-07-29 18:19:22 +0200100 int (*set_iso_channels)(struct fw_iso_context *ctx, u64 *channels);
101
Stefan Richter77c9a5d2009-06-05 16:26:18 +0200102 int (*queue_iso)(struct fw_iso_context *ctx,
103 struct fw_iso_packet *packet,
104 struct fw_iso_buffer *buffer,
105 unsigned long payload);
106
Clemens Ladisch13882a82011-05-02 09:33:56 +0200107 void (*flush_queue_iso)(struct fw_iso_context *ctx);
108
Stefan Richter77c9a5d2009-06-05 16:26:18 +0200109 int (*stop_iso)(struct fw_iso_context *ctx);
110};
111
112void fw_card_initialize(struct fw_card *card,
113 const struct fw_card_driver *driver, struct device *device);
114int fw_card_add(struct fw_card *card,
115 u32 max_receive, u32 link_speed, u64 guid);
116void fw_core_remove_card(struct fw_card *card);
Stefan Richtercb7c96da32009-10-08 00:42:53 +0200117int fw_compute_block_crc(__be32 *block);
Stefan Richter02d37be2010-07-08 16:09:06 +0200118void fw_schedule_bus_reset(struct fw_card *card, bool delayed, bool short_reset);
Stefan Richter77c9a5d2009-06-05 16:26:18 +0200119void fw_schedule_bm_work(struct fw_card *card, unsigned long delay);
120
Stefan Richter18668ff2009-09-06 18:49:48 +0200121static inline struct fw_card *fw_card_get(struct fw_card *card)
122{
123 kref_get(&card->kref);
124
125 return card;
126}
127
128void fw_card_release(struct kref *kref);
129
130static inline void fw_card_put(struct fw_card *card)
131{
132 kref_put(&card->kref, fw_card_release);
133}
134
Stefan Richter77c9a5d2009-06-05 16:26:18 +0200135
136/* -cdev */
137
138extern const struct file_operations fw_device_ops;
139
140void fw_device_cdev_update(struct fw_device *device);
141void fw_device_cdev_remove(struct fw_device *device);
Stefan Richterbf54e142010-07-16 22:25:51 +0200142void fw_cdev_handle_phy_packet(struct fw_card *card, struct fw_packet *p);
Stefan Richter77c9a5d2009-06-05 16:26:18 +0200143
144
145/* -device */
146
147extern struct rw_semaphore fw_device_rwsem;
148extern struct idr fw_device_idr;
149extern int fw_cdev_major;
150
Stefan Richter21076222011-08-27 18:53:03 +0200151static inline struct fw_device *fw_device_get(struct fw_device *device)
152{
153 get_device(&device->device);
154
155 return device;
156}
157
158static inline void fw_device_put(struct fw_device *device)
159{
160 put_device(&device->device);
161}
162
Stefan Richter77c9a5d2009-06-05 16:26:18 +0200163struct fw_device *fw_device_get_by_devt(dev_t devt);
Stefan Richter099d5412009-06-06 18:37:25 +0200164int fw_device_set_broadcast_channel(struct device *dev, void *gen);
Stefan Richter77c9a5d2009-06-05 16:26:18 +0200165void fw_node_event(struct fw_card *card, struct fw_node *node, int event);
166
167
168/* -iso */
169
Stefan Richter77c9a5d2009-06-05 16:26:18 +0200170int fw_iso_buffer_map(struct fw_iso_buffer *buffer, struct vm_area_struct *vma);
Stefan Richter77c9a5d2009-06-05 16:26:18 +0200171
172
173/* -topology */
174
175enum {
176 FW_NODE_CREATED,
177 FW_NODE_UPDATED,
178 FW_NODE_DESTROYED,
179 FW_NODE_LINK_ON,
180 FW_NODE_LINK_OFF,
181 FW_NODE_INITIATED_RESET,
182};
183
184struct fw_node {
185 u16 node_id;
186 u8 color;
187 u8 port_count;
188 u8 link_on:1;
189 u8 initiated_reset:1;
190 u8 b_path:1;
191 u8 phy_speed:2; /* As in the self ID packet. */
192 u8 max_speed:2; /* Minimum of all phy-speeds on the path from the
193 * local node to this node. */
194 u8 max_depth:4; /* Maximum depth to any leaf node */
195 u8 max_hops:4; /* Max hops in this sub tree */
196 atomic_t ref_count;
197
198 /* For serializing node topology into a list. */
199 struct list_head link;
200
201 /* Upper layer specific data. */
202 void *data;
203
204 struct fw_node *ports[0];
205};
206
207static inline struct fw_node *fw_node_get(struct fw_node *node)
208{
209 atomic_inc(&node->ref_count);
210
211 return node;
212}
213
214static inline void fw_node_put(struct fw_node *node)
215{
216 if (atomic_dec_and_test(&node->ref_count))
217 kfree(node);
218}
219
220void fw_core_handle_bus_reset(struct fw_card *card, int node_id,
Stefan Richterc8a94de2010-06-12 20:34:50 +0200221 int generation, int self_id_count, u32 *self_ids, bool bm_abdicate);
Stefan Richter77c9a5d2009-06-05 16:26:18 +0200222void fw_destroy_nodes(struct fw_card *card);
223
224/*
225 * Check whether new_generation is the immediate successor of old_generation.
226 * Take counter roll-over at 255 (as per OHCI) into account.
227 */
228static inline bool is_next_generation(int new_generation, int old_generation)
229{
230 return (new_generation & 0xff) == ((old_generation + 1) & 0xff);
231}
232
233
234/* -transaction */
235
Clemens Ladisch5b06db12010-11-30 08:24:47 +0100236#define TCODE_LINK_INTERNAL 0xe
237
Stefan Richter77c9a5d2009-06-05 16:26:18 +0200238#define TCODE_IS_READ_REQUEST(tcode) (((tcode) & ~1) == 4)
239#define TCODE_IS_BLOCK_PACKET(tcode) (((tcode) & 1) != 0)
Clemens Ladisch5b06db12010-11-30 08:24:47 +0100240#define TCODE_IS_LINK_INTERNAL(tcode) ((tcode) == TCODE_LINK_INTERNAL)
Stefan Richter77c9a5d2009-06-05 16:26:18 +0200241#define TCODE_IS_REQUEST(tcode) (((tcode) & 2) == 0)
242#define TCODE_IS_RESPONSE(tcode) (((tcode) & 2) != 0)
243#define TCODE_HAS_REQUEST_DATA(tcode) (((tcode) & 12) != 4)
244#define TCODE_HAS_RESPONSE_DATA(tcode) (((tcode) & 12) != 0)
245
246#define LOCAL_BUS 0xffc0
247
248void fw_core_handle_request(struct fw_card *card, struct fw_packet *request);
249void fw_core_handle_response(struct fw_card *card, struct fw_packet *packet);
Clemens Ladischa10c0ce72010-05-19 08:28:32 +0200250int fw_get_response_length(struct fw_request *request);
Stefan Richter77c9a5d2009-06-05 16:26:18 +0200251void fw_fill_response(struct fw_packet *response, u32 *request_header,
252 int rcode, void *payload, size_t length);
Stefan Richter02d37be2010-07-08 16:09:06 +0200253
254#define FW_PHY_CONFIG_NO_NODE_ID -1
255#define FW_PHY_CONFIG_CURRENT_GAP_COUNT -1
Stefan Richter77c9a5d2009-06-05 16:26:18 +0200256void fw_send_phy_config(struct fw_card *card,
257 int node_id, int generation, int gap_count);
258
Stefan Richtercc550212010-07-18 13:00:50 +0200259static inline bool is_ping_packet(u32 *data)
260{
261 return (data[0] & 0xc0ffffff) == 0 && ~data[0] == data[1];
262}
263
Stefan Richter77c9a5d2009-06-05 16:26:18 +0200264#endif /* _FIREWIRE_CORE_H */