blob: 6bdc4afb248380d7180f7d9a68bf869cd09fd4c1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * Parallel SCSI (SPI) transport specific attributes exported to sysfs.
3 *
4 * Copyright (c) 2003 Silicon Graphics, Inc. All rights reserved.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19 */
20#ifndef SCSI_TRANSPORT_SPI_H
21#define SCSI_TRANSPORT_SPI_H
22
23#include <linux/config.h>
24#include <linux/transport_class.h>
25
26struct scsi_transport_template;
27
28struct spi_transport_attrs {
29 int period; /* value in the PPR/SDTR command */
James Bottomley 62a86122005-05-06 18:05:20 -050030 int min_period;
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 int offset;
James Bottomley 62a86122005-05-06 18:05:20 -050032 int max_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -070033 unsigned int width:1; /* 0 - narrow, 1 - wide */
James Bottomley 62a86122005-05-06 18:05:20 -050034 unsigned int max_width:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070035 unsigned int iu:1; /* Information Units enabled */
36 unsigned int dt:1; /* DT clocking enabled */
37 unsigned int qas:1; /* Quick Arbitration and Selection enabled */
38 unsigned int wr_flow:1; /* Write Flow control enabled */
39 unsigned int rd_strm:1; /* Read streaming enabled */
40 unsigned int rti:1; /* Retain Training Information */
41 unsigned int pcomp_en:1;/* Precompensation enabled */
James Bottomleyd872ebe2005-08-03 15:43:52 -050042 unsigned int hold_mcs:1;/* Hold Margin Control Settings */
Linus Torvalds1da177e2005-04-16 15:20:36 -070043 unsigned int initial_dv:1; /* DV done to this target yet */
44 unsigned long flags; /* flags field for drivers to use */
45 /* Device Properties fields */
46 unsigned int support_sync:1; /* synchronous support */
47 unsigned int support_wide:1; /* wide support */
48 unsigned int support_dt:1; /* allows DT phases */
49 unsigned int support_dt_only; /* disallows ST phases */
50 unsigned int support_ius; /* support Information Units */
51 unsigned int support_qas; /* supports quick arbitration and selection */
52 /* Private Fields */
53 unsigned int dv_pending:1; /* Internal flag */
54 struct semaphore dv_sem; /* semaphore to serialise dv */
55};
56
57enum spi_signal_type {
58 SPI_SIGNAL_UNKNOWN = 1,
59 SPI_SIGNAL_SE,
60 SPI_SIGNAL_LVD,
61 SPI_SIGNAL_HVD,
62};
63
64struct spi_host_attrs {
65 enum spi_signal_type signalling;
66};
67
68/* accessor functions */
69#define spi_period(x) (((struct spi_transport_attrs *)&(x)->starget_data)->period)
James Bottomley 62a86122005-05-06 18:05:20 -050070#define spi_min_period(x) (((struct spi_transport_attrs *)&(x)->starget_data)->min_period)
Linus Torvalds1da177e2005-04-16 15:20:36 -070071#define spi_offset(x) (((struct spi_transport_attrs *)&(x)->starget_data)->offset)
James Bottomley 62a86122005-05-06 18:05:20 -050072#define spi_max_offset(x) (((struct spi_transport_attrs *)&(x)->starget_data)->max_offset)
Linus Torvalds1da177e2005-04-16 15:20:36 -070073#define spi_width(x) (((struct spi_transport_attrs *)&(x)->starget_data)->width)
James Bottomley 62a86122005-05-06 18:05:20 -050074#define spi_max_width(x) (((struct spi_transport_attrs *)&(x)->starget_data)->max_width)
Linus Torvalds1da177e2005-04-16 15:20:36 -070075#define spi_iu(x) (((struct spi_transport_attrs *)&(x)->starget_data)->iu)
76#define spi_dt(x) (((struct spi_transport_attrs *)&(x)->starget_data)->dt)
77#define spi_qas(x) (((struct spi_transport_attrs *)&(x)->starget_data)->qas)
78#define spi_wr_flow(x) (((struct spi_transport_attrs *)&(x)->starget_data)->wr_flow)
79#define spi_rd_strm(x) (((struct spi_transport_attrs *)&(x)->starget_data)->rd_strm)
80#define spi_rti(x) (((struct spi_transport_attrs *)&(x)->starget_data)->rti)
81#define spi_pcomp_en(x) (((struct spi_transport_attrs *)&(x)->starget_data)->pcomp_en)
James Bottomleyd872ebe2005-08-03 15:43:52 -050082#define spi_hold_mcs(x) (((struct spi_transport_attrs *)&(x)->starget_data)->hold_mcs)
Linus Torvalds1da177e2005-04-16 15:20:36 -070083#define spi_initial_dv(x) (((struct spi_transport_attrs *)&(x)->starget_data)->initial_dv)
84
85#define spi_support_sync(x) (((struct spi_transport_attrs *)&(x)->starget_data)->support_sync)
86#define spi_support_wide(x) (((struct spi_transport_attrs *)&(x)->starget_data)->support_wide)
87#define spi_support_dt(x) (((struct spi_transport_attrs *)&(x)->starget_data)->support_dt)
88#define spi_support_dt_only(x) (((struct spi_transport_attrs *)&(x)->starget_data)->support_dt_only)
89#define spi_support_ius(x) (((struct spi_transport_attrs *)&(x)->starget_data)->support_ius)
90#define spi_support_qas(x) (((struct spi_transport_attrs *)&(x)->starget_data)->support_qas)
91
92#define spi_flags(x) (((struct spi_transport_attrs *)&(x)->starget_data)->flags)
93#define spi_signalling(h) (((struct spi_host_attrs *)(h)->shost_data)->signalling)
94
95
96
97/* The functions by which the transport class and the driver communicate */
98struct spi_function_template {
99 void (*get_period)(struct scsi_target *);
100 void (*set_period)(struct scsi_target *, int);
101 void (*get_offset)(struct scsi_target *);
102 void (*set_offset)(struct scsi_target *, int);
103 void (*get_width)(struct scsi_target *);
104 void (*set_width)(struct scsi_target *, int);
105 void (*get_iu)(struct scsi_target *);
106 void (*set_iu)(struct scsi_target *, int);
107 void (*get_dt)(struct scsi_target *);
108 void (*set_dt)(struct scsi_target *, int);
109 void (*get_qas)(struct scsi_target *);
110 void (*set_qas)(struct scsi_target *, int);
111 void (*get_wr_flow)(struct scsi_target *);
112 void (*set_wr_flow)(struct scsi_target *, int);
113 void (*get_rd_strm)(struct scsi_target *);
114 void (*set_rd_strm)(struct scsi_target *, int);
115 void (*get_rti)(struct scsi_target *);
116 void (*set_rti)(struct scsi_target *, int);
117 void (*get_pcomp_en)(struct scsi_target *);
118 void (*set_pcomp_en)(struct scsi_target *, int);
James Bottomleyd872ebe2005-08-03 15:43:52 -0500119 void (*get_hold_mcs)(struct scsi_target *);
120 void (*set_hold_mcs)(struct scsi_target *, int);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 void (*get_signalling)(struct Scsi_Host *);
122 void (*set_signalling)(struct Scsi_Host *, enum spi_signal_type);
James Bottomley10c1b882005-08-14 14:34:06 -0500123 int (*deny_binding)(struct scsi_target *);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700124 /* The driver sets these to tell the transport class it
125 * wants the attributes displayed in sysfs. If the show_ flag
126 * is not set, the attribute will be private to the transport
127 * class */
128 unsigned long show_period:1;
129 unsigned long show_offset:1;
130 unsigned long show_width:1;
131 unsigned long show_iu:1;
132 unsigned long show_dt:1;
133 unsigned long show_qas:1;
134 unsigned long show_wr_flow:1;
135 unsigned long show_rd_strm:1;
136 unsigned long show_rti:1;
137 unsigned long show_pcomp_en:1;
James Bottomleyd872ebe2005-08-03 15:43:52 -0500138 unsigned long show_hold_mcs:1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700139};
140
141struct scsi_transport_template *spi_attach_transport(struct spi_function_template *);
142void spi_release_transport(struct scsi_transport_template *);
143void spi_schedule_dv_device(struct scsi_device *);
144void spi_dv_device(struct scsi_device *);
145void spi_display_xfer_agreement(struct scsi_target *);
146
147#endif /* SCSI_TRANSPORT_SPI_H */