ieee1394_core.h 5.2 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3
#ifndef _IEEE1394_CORE_H
#define _IEEE1394_CORE_H

4 5 6 7
#include <linux/device.h>
#include <linux/fs.h>
#include <linux/list.h>
#include <linux/types.h>
L
Linus Torvalds 已提交
8 9
#include <asm/atomic.h>

10 11
#include "hosts.h"
#include "ieee1394_types.h"
L
Linus Torvalds 已提交
12 13

struct hpsb_packet {
14
	/* This struct is basically read-only for hosts with the exception of
15
	 * the data buffer contents and driver_list. */
L
Linus Torvalds 已提交
16 17 18 19 20 21 22 23 24

	/* This can be used for host driver internal linking.
	 *
	 * NOTE: This must be left in init state when the driver is done
	 * with it (e.g. by using list_del_init()), since the core does
	 * some sanity checks to make sure the packet is not on a
	 * driver_list when free'ing it. */
	struct list_head driver_list;

25
	nodeid_t node_id;
L
Linus Torvalds 已提交
26

27 28 29
	/* Async and Iso types should be clear, raw means send-as-is, do not
	 * CRC!  Byte swapping shall still be done in this case. */
	enum { hpsb_async, hpsb_iso, hpsb_raw } __attribute__((packed)) type;
L
Linus Torvalds 已提交
30

31 32 33 34 35 36 37 38
	/* Okay, this is core internal and a no care for hosts.
	 * queued   = queued for sending
	 * pending  = sent, waiting for response
	 * complete = processing completed, successful or not
	 */
	enum {
		hpsb_unused, hpsb_queued, hpsb_pending, hpsb_complete
	} __attribute__((packed)) state;
L
Linus Torvalds 已提交
39

40 41
	/* These are core internal. */
	signed char tlabel;
42 43
	signed char ack_code;
	unsigned char tcode;
L
Linus Torvalds 已提交
44

45 46
	unsigned expect_response:1;
	unsigned no_waiter:1;
L
Linus Torvalds 已提交
47

48 49
	/* Speed to transmit with: 0 = 100Mbps, 1 = 200Mbps, 2 = 400Mbps */
	unsigned speed_code:2;
L
Linus Torvalds 已提交
50

51 52
	struct hpsb_host *host;
	unsigned int generation;
L
Linus Torvalds 已提交
53 54

	atomic_t refcnt;
55
	struct list_head queue;
L
Linus Torvalds 已提交
56 57 58 59 60 61

	/* Function (and possible data to pass to it) to call when this
	 * packet is completed.  */
	void (*complete_routine)(void *);
	void *complete_data;

62 63
	/* Store jiffies for implementing bus timeouts. */
	unsigned long sendtime;
L
Linus Torvalds 已提交
64

65 66 67 68 69 70 71
	/* Sizes are in bytes. *data can be DMA-mapped. */
	size_t allocated_data_size;	/* as allocated */
	size_t data_size;		/* as filled in */
	size_t header_size;		/* as filled in, not counting the CRC */
	quadlet_t *data;
	quadlet_t header[5];
	quadlet_t embedded_data[0];	/* keep as last member */
L
Linus Torvalds 已提交
72 73 74
};

void hpsb_set_packet_complete_task(struct hpsb_packet *packet,
75
				   void (*routine)(void *), void *data);
L
Linus Torvalds 已提交
76 77 78 79 80 81 82 83
static inline struct hpsb_packet *driver_packet(struct list_head *l)
{
	return list_entry(l, struct hpsb_packet, driver_list);
}
void abort_timedouts(unsigned long __opaque);
struct hpsb_packet *hpsb_alloc_packet(size_t data_size);
void hpsb_free_packet(struct hpsb_packet *packet);

84 85
/**
 * get_hpsb_generation - generation counter for the complete 1394 subsystem
L
Linus Torvalds 已提交
86
 *
87 88
 * Generation gets incremented on every change in the subsystem (notably on bus
 * resets). Use the functions, not the variable.
L
Linus Torvalds 已提交
89 90 91
 */
static inline unsigned int get_hpsb_generation(struct hpsb_host *host)
{
92
	return atomic_read(&host->generation);
L
Linus Torvalds 已提交
93 94 95 96 97 98
}

int hpsb_send_phy_config(struct hpsb_host *host, int rootid, int gapcnt);
int hpsb_send_packet(struct hpsb_packet *packet);
int hpsb_send_packet_and_wait(struct hpsb_packet *packet);
int hpsb_reset_bus(struct hpsb_host *host, int type);
99 100 101
int hpsb_read_cycle_timer(struct hpsb_host *host, u32 *cycle_timer,
			  u64 *local_time);

L
Linus Torvalds 已提交
102 103 104 105
int hpsb_bus_reset(struct hpsb_host *host);
void hpsb_selfid_received(struct hpsb_host *host, quadlet_t sid);
void hpsb_selfid_complete(struct hpsb_host *host, int phyid, int isroot);
void hpsb_packet_sent(struct hpsb_host *host, struct hpsb_packet *packet,
106
		      int ackcode);
L
Linus Torvalds 已提交
107
void hpsb_packet_received(struct hpsb_host *host, quadlet_t *data, size_t size,
108
			  int write_acked);
L
Linus Torvalds 已提交
109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132

/*
 * CHARACTER DEVICE DISPATCHING
 *
 * All ieee1394 character device drivers share the same major number
 * (major 171).  The 256 minor numbers are allocated to the various
 * task-specific interfaces (raw1394, video1394, dv1394, etc) in
 * blocks of 16.
 *
 * The core ieee1394.o module allocates the device number region
 * 171:0-255, the various drivers must then cdev_add() their cdev
 * objects to handle their respective sub-regions.
 *
 * Minor device number block allocations:
 *
 * Block 0  (  0- 15)  raw1394
 * Block 1  ( 16- 31)  video1394
 * Block 2  ( 32- 47)  dv1394
 *
 * Blocks 3-14 free for future allocation
 *
 * Block 15 (240-255)  reserved for drivers under development, etc.
 */

133
#define IEEE1394_MAJOR			 171
L
Linus Torvalds 已提交
134

135 136 137
#define IEEE1394_MINOR_BLOCK_RAW1394	   0
#define IEEE1394_MINOR_BLOCK_VIDEO1394	   1
#define IEEE1394_MINOR_BLOCK_DV1394	   2
L
Linus Torvalds 已提交
138 139
#define IEEE1394_MINOR_BLOCK_EXPERIMENTAL 15

140
#define IEEE1394_CORE_DEV	  MKDEV(IEEE1394_MAJOR, 0)
141 142 143 144 145 146 147 148
#define IEEE1394_RAW1394_DEV	  MKDEV(IEEE1394_MAJOR, \
					IEEE1394_MINOR_BLOCK_RAW1394 * 16)
#define IEEE1394_VIDEO1394_DEV	  MKDEV(IEEE1394_MAJOR, \
					IEEE1394_MINOR_BLOCK_VIDEO1394 * 16)
#define IEEE1394_DV1394_DEV	  MKDEV(IEEE1394_MAJOR, \
					IEEE1394_MINOR_BLOCK_DV1394 * 16)
#define IEEE1394_EXPERIMENTAL_DEV MKDEV(IEEE1394_MAJOR, \
					IEEE1394_MINOR_BLOCK_EXPERIMENTAL * 16)
L
Linus Torvalds 已提交
149

150 151 152
/**
 * ieee1394_file_to_instance - get the index within a minor number block
 */
L
Linus Torvalds 已提交
153 154
static inline unsigned char ieee1394_file_to_instance(struct file *file)
{
155
	return file->f_path.dentry->d_inode->i_cindex;
L
Linus Torvalds 已提交
156 157 158 159 160 161 162
}

extern int hpsb_disable_irm;

/* Our sysfs bus entry */
extern struct bus_type ieee1394_bus_type;
extern struct class hpsb_host_class;
163
extern struct class *hpsb_protocol_class;
L
Linus Torvalds 已提交
164 165

#endif /* _IEEE1394_CORE_H */