blob: 63474f7ee69d5ac48bf1a6d8670e7450fcb53cc7 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef IEEE1394_HIGHLEVEL_H
2#define IEEE1394_HIGHLEVEL_H
3
Stefan Richterde4394f2006-07-03 12:02:29 -04004#include <linux/list.h>
5#include <linux/spinlock_types.h>
6#include <linux/types.h>
7
8struct module;
9
10#include "ieee1394_types.h"
11
12struct hpsb_host;
13
Stefan Richtere1d118f2006-07-03 12:02:28 -040014/* internal to ieee1394 core */
Linus Torvalds1da177e2005-04-16 15:20:36 -070015struct hpsb_address_serve {
Stefan Richtere1d118f2006-07-03 12:02:28 -040016 struct list_head host_list; /* per host list */
17 struct list_head hl_list; /* hpsb_highlevel list */
18 struct hpsb_address_ops *op;
Linus Torvalds1da177e2005-04-16 15:20:36 -070019 struct hpsb_host *host;
Stefan Richtere1d118f2006-07-03 12:02:28 -040020 u64 start; /* first address handled, quadlet aligned */
21 u64 end; /* first address behind, quadlet aligned */
Linus Torvalds1da177e2005-04-16 15:20:36 -070022};
23
Stefan Richtere1d118f2006-07-03 12:02:28 -040024/* Only the following structures are of interest to actual highlevel drivers. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070025
26struct hpsb_highlevel {
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 const char *name;
28
Stefan Richtere1d118f2006-07-03 12:02:28 -040029 /* Any of the following pointers can legally be NULL, except for
30 * iso_receive which can only be NULL when you don't request
31 * channels. */
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
Stefan Richtere1d118f2006-07-03 12:02:28 -040033 /* New host initialized. Will also be called during
34 * hpsb_register_highlevel for all hosts already installed. */
35 void (*add_host)(struct hpsb_host *host);
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Stefan Richtere1d118f2006-07-03 12:02:28 -040037 /* Host about to be removed. Will also be called during
38 * hpsb_unregister_highlevel once for each host. */
39 void (*remove_host)(struct hpsb_host *host);
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
Stefan Richtere1d118f2006-07-03 12:02:28 -040041 /* Host experienced bus reset with possible configuration changes.
Linus Torvalds1da177e2005-04-16 15:20:36 -070042 * Note that this one may occur during interrupt/bottom half handling.
43 * You can not expect to be able to do stock hpsb_reads. */
Stefan Richtere1d118f2006-07-03 12:02:28 -040044 void (*host_reset)(struct hpsb_host *host);
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
Stefan Richtere1d118f2006-07-03 12:02:28 -040046 /* An isochronous packet was received. Channel contains the channel
47 * number for your convenience, it is also contained in the included
48 * packet header (first quadlet, CRCs are missing). You may get called
49 * for channel/host combinations you did not request. */
50 void (*iso_receive)(struct hpsb_host *host, int channel,
51 quadlet_t *data, size_t length);
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
Stefan Richtere1d118f2006-07-03 12:02:28 -040053 /* A write request was received on either the FCP_COMMAND (direction =
54 * 0) or the FCP_RESPONSE (direction = 1) register. The cts arg
55 * contains the cts field (first byte of data). */
56 void (*fcp_request)(struct hpsb_host *host, int nodeid, int direction,
57 int cts, u8 *data, size_t length);
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
59 /* These are initialized by the subsystem when the
60 * hpsb_higlevel is registered. */
61 struct list_head hl_list;
62 struct list_head irq_list;
63 struct list_head addr_list;
64
65 struct list_head host_info_list;
66 rwlock_t host_info_lock;
67};
68
69struct hpsb_address_ops {
Stefan Richtere1d118f2006-07-03 12:02:28 -040070 /*
71 * Null function pointers will make the respective operation complete
72 * with RCODE_TYPE_ERROR. Makes for easy to implement read-only
73 * registers (just leave everything but read NULL).
74 *
75 * All functions shall return appropriate IEEE 1394 rcodes.
76 */
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Stefan Richtere1d118f2006-07-03 12:02:28 -040078 /* These functions have to implement block reads for themselves.
79 *
80 * These functions either return a response code or a negative number.
81 * In the first case a response will be generated. In the latter case,
82 * no response will be sent and the driver which handled the request
83 * will send the response itself. */
84 int (*read)(struct hpsb_host *host, int nodeid, quadlet_t *buffer,
85 u64 addr, size_t length, u16 flags);
86 int (*write)(struct hpsb_host *host, int nodeid, int destid,
87 quadlet_t *data, u64 addr, size_t length, u16 flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070088
Stefan Richtere1d118f2006-07-03 12:02:28 -040089 /* Lock transactions: write results of ext_tcode operation into
90 * *store. */
91 int (*lock)(struct hpsb_host *host, int nodeid, quadlet_t *store,
92 u64 addr, quadlet_t data, quadlet_t arg, int ext_tcode,
93 u16 flags);
94 int (*lock64)(struct hpsb_host *host, int nodeid, octlet_t *store,
95 u64 addr, octlet_t data, octlet_t arg, int ext_tcode,
96 u16 flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -070097};
98
Linus Torvalds1da177e2005-04-16 15:20:36 -070099void highlevel_add_host(struct hpsb_host *host);
100void highlevel_remove_host(struct hpsb_host *host);
101void highlevel_host_reset(struct hpsb_host *host);
Stefan Richtere1d118f2006-07-03 12:02:28 -0400102int highlevel_read(struct hpsb_host *host, int nodeid, void *data, u64 addr,
103 unsigned int length, u16 flags);
104int highlevel_write(struct hpsb_host *host, int nodeid, int destid, void *data,
105 u64 addr, unsigned int length, u16 flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106int highlevel_lock(struct hpsb_host *host, int nodeid, quadlet_t *store,
Stefan Richtere1d118f2006-07-03 12:02:28 -0400107 u64 addr, quadlet_t data, quadlet_t arg, int ext_tcode,
108 u16 flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109int highlevel_lock64(struct hpsb_host *host, int nodeid, octlet_t *store,
Stefan Richtere1d118f2006-07-03 12:02:28 -0400110 u64 addr, octlet_t data, octlet_t arg, int ext_tcode,
111 u16 flags);
Stefan Richtere1d118f2006-07-03 12:02:28 -0400112void highlevel_iso_receive(struct hpsb_host *host, void *data, size_t length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113void highlevel_fcp_request(struct hpsb_host *host, int nodeid, int direction,
Stefan Richtere1d118f2006-07-03 12:02:28 -0400114 void *data, size_t length);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115
Linus Torvalds1da177e2005-04-16 15:20:36 -0700116void hpsb_register_highlevel(struct hpsb_highlevel *hl);
117void hpsb_unregister_highlevel(struct hpsb_highlevel *hl);
118
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119u64 hpsb_allocate_and_register_addrspace(struct hpsb_highlevel *hl,
120 struct hpsb_host *host,
121 struct hpsb_address_ops *ops,
122 u64 size, u64 alignment,
123 u64 start, u64 end);
124int hpsb_register_addrspace(struct hpsb_highlevel *hl, struct hpsb_host *host,
Stefan Richtere1d118f2006-07-03 12:02:28 -0400125 struct hpsb_address_ops *ops, u64 start, u64 end);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126int hpsb_unregister_addrspace(struct hpsb_highlevel *hl, struct hpsb_host *host,
Stefan Richtere1d118f2006-07-03 12:02:28 -0400127 u64 start);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700128int hpsb_listen_channel(struct hpsb_highlevel *hl, struct hpsb_host *host,
Stefan Richterafd65462007-03-05 03:06:23 +0100129 unsigned int channel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130void hpsb_unlisten_channel(struct hpsb_highlevel *hl, struct hpsb_host *host,
Stefan Richtere1d118f2006-07-03 12:02:28 -0400131 unsigned int channel);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132
Linus Torvalds1da177e2005-04-16 15:20:36 -0700133void *hpsb_get_hostinfo(struct hpsb_highlevel *hl, struct hpsb_host *host);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134void *hpsb_create_hostinfo(struct hpsb_highlevel *hl, struct hpsb_host *host,
135 size_t data_size);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700136void hpsb_destroy_hostinfo(struct hpsb_highlevel *hl, struct hpsb_host *host);
Stefan Richtere1d118f2006-07-03 12:02:28 -0400137void hpsb_set_hostinfo_key(struct hpsb_highlevel *hl, struct hpsb_host *host,
138 unsigned long key);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139void *hpsb_get_hostinfo_bykey(struct hpsb_highlevel *hl, unsigned long key);
Stefan Richtere1d118f2006-07-03 12:02:28 -0400140int hpsb_set_hostinfo(struct hpsb_highlevel *hl, struct hpsb_host *host,
141 void *data);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700142
Linus Torvalds1da177e2005-04-16 15:20:36 -0700143#endif /* IEEE1394_HIGHLEVEL_H */