blob: 0cc4b082257f9994f0ba58bf48fefdbfe7c03852 [file] [log] [blame]
Kristian Høgsberg19a15b92006-12-19 19:58:31 -05001/* -*- c-basic-offset: 8 -*-
2 *
3 * fw-device-cdev.h -- Char device interface.
4 *
5 * Copyright (C) 2005-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
22#ifndef __fw_cdev_h
23#define __fw_cdev_h
24
25#include <asm/ioctl.h>
26#include <asm/types.h>
27
28#define TCODE_WRITE_QUADLET_REQUEST 0
29#define TCODE_WRITE_BLOCK_REQUEST 1
30#define TCODE_WRITE_RESPONSE 2
31#define TCODE_READ_QUADLET_REQUEST 4
32#define TCODE_READ_BLOCK_REQUEST 5
33#define TCODE_READ_QUADLET_RESPONSE 6
34#define TCODE_READ_BLOCK_RESPONSE 7
35#define TCODE_CYCLE_START 8
Stefan Richter5e20c282007-01-21 20:44:09 +010036#define TCODE_LOCK_REQUEST 9
37#define TCODE_STREAM_DATA 10
38#define TCODE_LOCK_RESPONSE 11
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050039
Kristian Høgsberg746083d862007-01-26 00:38:18 -050040#define TCODE_LOCK_MASK_SWAP 0x11
41#define TCODE_LOCK_COMPARE_SWAP 0x12
42#define TCODE_LOCK_FETCH_ADD 0x13
43#define TCODE_LOCK_LITTLE_ADD 0x14
44#define TCODE_LOCK_BOUNDED_ADD 0x15
45#define TCODE_LOCK_WRAP_ADD 0x16
46#define TCODE_LOCK_VENDOR_DEPENDENT 0x17
47
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050048#define RCODE_COMPLETE 0x0
Stefan Richter5e20c282007-01-21 20:44:09 +010049#define RCODE_CONFLICT_ERROR 0x4
50#define RCODE_DATA_ERROR 0x5
51#define RCODE_TYPE_ERROR 0x6
52#define RCODE_ADDRESS_ERROR 0x7
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050053
54#define SCODE_100 0x0
55#define SCODE_200 0x1
56#define SCODE_400 0x2
57#define SCODE_800 0x3
58#define SCODE_1600 0x4
59#define SCODE_3200 0x5
60
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -050061#define FW_CDEV_EVENT_BUS_RESET 0x00
62#define FW_CDEV_EVENT_RESPONSE 0x01
63#define FW_CDEV_EVENT_REQUEST 0x02
64#define FW_CDEV_EVENT_ISO_INTERRUPT 0x03
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050065
66/* The 'closure' fields are for user space to use. Data passed in the
67 * 'closure' field for a request will be returned in the corresponding
68 * event. It's a 64-bit type so that it's a fixed size type big
69 * enough to hold a pointer on all platforms. */
70
Kristian Høgsberg97bd9ef2007-03-07 12:12:41 -050071struct fw_cdev_event_bus_reset {
72 __u32 type;
73 __u32 node_id;
74 __u32 local_node_id;
75 __u32 bm_node_id;
76 __u32 irm_node_id;
77 __u32 root_node_id;
78 __u32 generation;
79};
80
Kristian Høgsberg19a15b92006-12-19 19:58:31 -050081struct fw_cdev_event_response {
82 __u32 type;
83 __u32 rcode;
84 __u64 closure;
85 __u32 length;
86 __u32 data[0];
87};
88
89struct fw_cdev_event_request {
90 __u32 type;
91 __u32 tcode;
92 __u64 offset;
93 __u64 closure;
94 __u32 serial;
95 __u32 length;
96 __u32 data[0];
97};
98
99struct fw_cdev_event_iso_interrupt {
100 __u32 type;
101 __u32 cycle;
102 __u64 closure;
Kristian Høgsberg9b32d5f2007-02-16 17:34:44 -0500103 __u32 header_length; /* Length in bytes of following headers. */
104 __u32 header[0];
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500105};
106
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500107#define FW_CDEV_IOC_GET_INFO _IO('#', 0x00)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500108#define FW_CDEV_IOC_SEND_REQUEST _IO('#', 0x01)
109#define FW_CDEV_IOC_ALLOCATE _IO('#', 0x02)
110#define FW_CDEV_IOC_SEND_RESPONSE _IO('#', 0x03)
Kristian Høgsberg53718422007-03-07 12:12:42 -0500111#define FW_CDEV_IOC_INITIATE_BUS_RESET _IO('#', 0x04)
112#define FW_CDEV_IOC_CREATE_ISO_CONTEXT _IO('#', 0x05)
113#define FW_CDEV_IOC_QUEUE_ISO _IO('#', 0x06)
114#define FW_CDEV_IOC_START_ISO _IO('#', 0x07)
115#define FW_CDEV_IOC_STOP_ISO _IO('#', 0x08)
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500116
Kristian Høgsberg344bbc42007-03-07 12:12:43 -0500117/* FW_CDEV_VERSION History
118 *
119 * 1 Feb 18, 2007: Initial version.
120 */
121#define FW_CDEV_VERSION 1
122
123struct fw_cdev_get_info {
124 /* The version field is just a running serial number. We
125 * never break backwards compatibility. Userspace passes in
126 * the version it expects and the kernel passes back the
127 * highest version it can provide. Even if the structs in
128 * this interface are extended in a later version, the kernel
129 * will not copy back more data than what was present in the
130 * interface version userspace expects. */
131 __u32 version;
132
133 /* If non-zero, at most rom_length bytes of config rom will be
134 * copied into that user space address. In either case,
135 * rom_length is updated with the actual length of the config
136 * rom. */
137 __u32 rom_length;
138 __u64 rom;
139
140 /* If non-zero, a fw_cdev_event_bus_reset struct will be
141 * copied here with the current state of the bus. */
142 __u64 bus_reset;
Kristian Høgsberge7533502007-03-07 12:12:52 -0500143
144 /* The index of the card this devices belongs to. */
145 __u32 card;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500146};
147
148struct fw_cdev_send_request {
149 __u32 tcode;
150 __u32 length;
151 __u64 offset;
152 __u64 closure;
153 __u64 data;
154};
155
156struct fw_cdev_send_response {
157 __u32 rcode;
158 __u32 length;
159 __u64 data;
160 __u32 serial;
161};
162
163struct fw_cdev_allocate {
164 __u64 offset;
165 __u64 closure;
166 __u32 length;
167};
168
Kristian Høgsberg53718422007-03-07 12:12:42 -0500169#define FW_CDEV_LONG_RESET 0
170#define FW_CDEV_SHORT_RESET 1
171
172struct fw_cdev_initiate_bus_reset {
173 __u32 type;
174};
175
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -0500176#define FW_CDEV_ISO_CONTEXT_TRANSMIT 0
177#define FW_CDEV_ISO_CONTEXT_RECEIVE 1
178
Kristian Høgsberg98b6cbe2007-02-16 17:34:51 -0500179#define FW_CDEV_ISO_CONTEXT_MATCH_TAG0 1
180#define FW_CDEV_ISO_CONTEXT_MATCH_TAG1 2
181#define FW_CDEV_ISO_CONTEXT_MATCH_TAG2 4
182#define FW_CDEV_ISO_CONTEXT_MATCH_TAG3 8
183#define FW_CDEV_ISO_CONTEXT_MATCH_ALL_TAGS 15
184
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500185struct fw_cdev_create_iso_context {
Kristian Høgsberg295e3fe2007-02-16 17:34:40 -0500186 __u32 type;
187 __u32 header_size;
Kristian Høgsberg21efb3c2007-02-16 17:34:50 -0500188 __u32 channel;
189 __u32 speed;
Kristian Høgsberg98b6cbe2007-02-16 17:34:51 -0500190 __u32 sync;
191 __u32 tags;
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500192};
193
194struct fw_cdev_iso_packet {
Stefan Richter5e20c282007-01-21 20:44:09 +0100195 __u16 payload_length; /* Length of indirect payload. */
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500196 __u32 interrupt : 1; /* Generate interrupt on this packet */
197 __u32 skip : 1; /* Set to not send packet at all. */
198 __u32 tag : 2;
199 __u32 sy : 4;
200 __u32 header_length : 8; /* Length of immediate header. */
Stefan Richter5e20c282007-01-21 20:44:09 +0100201 __u32 header[0];
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500202};
203
204struct fw_cdev_queue_iso {
205 __u32 size;
206 __u64 packets;
207 __u64 data;
208};
209
Kristian Høgsberg69cdb722007-02-16 17:34:41 -0500210struct fw_cdev_start_iso {
Kristian Høgsberg19a15b92006-12-19 19:58:31 -0500211 __s32 cycle;
212};
213
Stefan Richter687198b2006-12-28 16:20:00 +0100214#endif /* __fw_cdev_h */