summaryrefslogtreecommitdiff
path: root/usr/src/uts/common/sys/bscv_impl.h
blob: da4654393df10b7059fb5a4ae4c39a5fd8da59b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
/*
 * CDDL HEADER START
 *
 * The contents of this file are subject to the terms of the
 * Common Development and Distribution License (the "License").
 * You may not use this file except in compliance with the License.
 *
 * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
 * or http://www.opensolaris.org/os/licensing.
 * See the License for the specific language governing permissions
 * and limitations under the License.
 *
 * When distributing Covered Code, include this CDDL HEADER in each
 * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
 * If applicable, add the following below this CDDL HEADER, with the
 * fields enclosed by brackets "[]" replaced with your own identifying
 * information: Portions Copyright [yyyy] [name of copyright owner]
 *
 * CDDL HEADER END
 */
/*
 * Copyright 2004 Sun Microsystems, Inc.  All rights reserved.
 * Use is subject to license terms.
 */

#ifndef _SYS_BSCV_IMPL_H
#define	_SYS_BSCV_IMPL_H

#pragma ident	"%Z%%M%	%I%	%E% SMI"

/*
 * Implementation private header file for bscv driver.
 */

#ifdef __cplusplus
extern "C" {
#endif

#include <sys/lom_priv.h>


/*
 * Local #defines
 */

#define	BSCV_SUCCESS	DDI_SUCCESS
#define	BSCV_FAILURE	DDI_FAILURE

/*
 * The following are used as progress indicators in bscv_attach()
 */

#define	BSCV_LOCKS		0x01
#define	BSCV_MAPPED_REGS	0x02
#define	BSCV_NODES		0x04
#define	BSCV_THREAD		0x08
#define	BSCV_HOSTNAME_DONE	0x10
#define	BSCV_WDOG_CFG		0x20
#define	BSCV_SIG_SENT		0x40

/*
 * macros to encode device minors and provide mapping to device instances.
 * The following is designed to get around the problem of a 32-bit app not
 * supporting a 32-bit minor number on an LP64 model system.
 */

#ifdef NBITSMINOR
#undef NBITSMINOR
#define	NBITSMINOR	18
#endif

#define	BSCV_MONITOR_NODE	0
#define	BSCV_CONTROL_NODE	(1 << (NBITSMINOR - 1))

#define	DEVICETOINSTANCE(x)	((getminor(x)) & (~BSCV_CONTROL_NODE));

/*
 * The maximum number of leds which are supported by this lom implementation.
 */
#define	MAX_LED_ID	7

/*
 * general driver configuration constants which may be changed to improve
 * performance/efficiency.
 */

#define	 INIT_BUSY_WAIT		10	/* 10 microsecs */

#define	 MAX_WDOGTIMEOUT	127	/* maximum wdog timout - 127s */


/*
 * Event processing task status flags.
 */
#define	TASK_ALIVE_FLG		0x01
#define	TASK_STOP_FLG		0x02
#define	TASK_SLEEPING_FLG	0x04
#define	TASK_PAUSE_FLG		0x08
#define	TASK_EVENT_PENDING_FLG	0x10
#define	TASK_EVENT_CONSUMER_FLG	0x20

/*
 * strace(1M) prints out the debug data once the debug value is set in
 * the bscv.conf file and the debug driver is installed.
 *
 * Debug flags
 *
 * '@' - Register (@)ccess
 * 'A' - (A)ttach
 * 'B' - (B)lom1 attach extra
 * 'C' - lom1 (C)allback
 * 'D' - (D)aemon
 * 'E' - (E)vents
 * 'F' - Sel(F)test
 * 'I' - (I)octl
 * 'L' - TSa(L)arms
 * 'M' - (M)odel parameters
 * 'N' - I(N)terrupt Service Routine
 * 'O' - (O)pen/Close
 * 'P' - (P)rogramming
 * 'Q' - (Q)ueue things
 * 'R' - Read/Write (R)etry summary.
 * 'S' - Event (S)trings
 * 'U' - Programming ioctls
 * 'V' - ???
 * 'W' - (W)atchdog
 * 'X' - additional X86 functional calls
 * 'Z' - Temporary - just log things
 */

/*
 * Debug tips :
 *
 * strace(1M) prints out the debug data.
 * A nice way to work out the debug value set in bscv.conf is to use mdb
 * Say we want to show 'D' Daemon and 'I' IOCTL processing,
 * you calculate the debug value with the following mdb session :
 * 	# mdb
 * 	> 1<<('D'-'@') | 1<<('I'-'@') = X
 *			210
 *	> $q
 * When you insert "debug=0x210;" into bscv.conf, it causes the next
 * reboot with the debug driver to trace Daemon and IOCTL functionality.
 */

/*
 * Xbus channel access data
 */

struct xbus_channel {
	ddi_acc_handle_t	handle;
	uint8_t			*regs;
};

#define	BSCV_MINCHANNELS	2
#define	BSCV_MAXCHANNELS	16

/*
 * soft state structure
 */

typedef
struct {
	/*
	 * Hardware instance variables
	 */
	uint64_t	debug;		/* debugging turned on */
	major_t		majornum;	/* debugging - major number */
	minor_t		minornum;	/* debugging - minor number */

	dev_info_t	*dip;		/* pointer to device info tree */
	int		instance;	/* instance number for the device */
	ddi_device_acc_attr_t	attr;	/* device access attributes */

	struct xbus_channel	channel[BSCV_MAXCHANNELS];
	int			nchannels;

	int		progress;	/* progress indicator for attach */

	int		bad_resync;	/* Number of bad resyncs */

	/*
	 * lom data variables/arrays
	 */
	uint8_t		lom_regs[0x80]; /* registers on the lomlite */
	int		serial_reporting;
	int		reporting_level;

	/*
	 * lom2 static information.
	 * setup at driver attach and restart after programming.
	 */
	int		num_fans;
	char		fan_names[MAX_FANS][MAX_LOM2_NAME_STR];
	uint8_t		fanspeed[MAX_FANS];
	char		led_names[MAX_LED_ID][MAX_LOM2_NAME_STR];
	lom_volts_t	volts;		/* keep a static copy of this so */
					/* dont have to re-read names */
	lom_temp_t	temps;		/* keep a static copy of this so */
					/* dont have to re-read names */
	lom_sflags_t	sflags;		/* keep a static copy of this so */
					/* dont have to re-read names */
	char		escape_chars[6];	/* local copy */

	uint_t		watchdog_timeout;
	uint8_t		watchdog_reset_on_timeout;

	/*
	 * lom2 firmware communication
	 */

	/*
	 * cmd_mutex protects the lom2 command progress variables.
	 * These should only be read/updated with the mutex held.
	 *
	 * command_error - acts as a return code and may be read
	 * without the mutex held if a command is not in progress.
	 * Note a read only returns failure if the lom does not respond.
	 * So you might need to check the error code to see if things really
	 * did work!
	 *
	 * addr_mu is used to protect stopping and starting of the queue.
	 * BUT when programming it has different semantics and relies
	 * on only the programming thread being in the ioctl routine
	 * whilst programming is in progress. The event queue must also
	 * be paused at this time.
	 */
	kmutex_t	cmd_mutex;	/* LOM command mutual exclusion */

	int		command_error;	/* error code from last command */
					/* valid until the next command */
					/* starts. */

	boolean_t	had_fault;	/* Current command sequence faulted */
	boolean_t	had_session_error;	/* Current session had error */

	uint8_t		pat_seq;	/* Watchdog patting sequence number */
	uint8_t		cap0;		/* capability byte */
	uint8_t		cap1;		/* capability byte */
	uint8_t		cap2;		/* capability byte */

	/*
	 * Programming variables
	 */
	kmutex_t	prog_mu;	/* Programming mutex. - lom 2 */
	boolean_t	prog_mode_only;	/* If true we can only reprogram */
					/* the lom */
	boolean_t	programming;	/* TRUE is actually programming */
					/* the BSC */
	boolean_t	cssp_prog;	/* TRUE is CSSP programming the BSC */

	int		prog_index;	/* data buffer number - bit */
					/* 0x8000 set if last buffer */
	int		image_ptr;	/* ptr to next byte in image buffer */
					/* for programming */
	uint8_t 	*image;		/* ptr to image buffer for */
					/* programming */
	boolean_t	image2_processing;	/* boolean to say which of */
					/* 2 BSC images being processed */
	boolean_t	loader_running;	/* Still have the loader running */

	/*
	 * LOM eeprom window access state
	 * Access under bscv_enter/bscv_exit protection.
	 */
	boolean_t	eeinfo_valid;
	uint32_t	eeprom_size;
	uint32_t	eventlog_start;
	uint32_t	eventlog_size;
	boolean_t	oldeeptr_valid;
	uint16_t	oldeeptr;

	/*
	 * Communication with the event processing thread
	 *
	 * Change these variables with task_mu held and signal task_cv
	 * if an event/task needs processing.
	 */
	kmutex_t	task_mu;	/* mutex for wait on event thread */
	kcondvar_t	task_cv;	/* cv for wait on event thread */
	kcondvar_t	task_evnt_cv;	/* cv for lom2 wait on event */
	int		task_flags;	/* To monitor/stop the event thread */
	volatile int	event_active_count; /* Count of event thread runs */
	boolean_t	event_waiting;	/* New events are waiting in the lom */
	boolean_t	status_change;	/* A status change is waiting */
	boolean_t	nodename_change; /* Nodename has changed */
	boolean_t	event_sleep;	/* Error reading events - wait a bit */
	boolean_t	event_fault_reported;	/* Event fault reported */
	boolean_t	watchdog_change; /* Watchdog config has changed */
#ifdef __sparc
	bscv_sig_t	last_sig;	/* Record of last signature sent */
#endif /* __sparc */
	uint8_t		last_event[8];	/* last event read and reported */
#if defined(__i386) || defined(__amd64)
	cyclic_id_t	cyclic_id;	/* watchdog patter cyclic timer */
	callb_id_t	callb_id;	/* Need to store the ID so we can */
					/* unschedule the panic callback */
	char		last_nodename[128]; /* copy of last utsname.nodename */
#endif /* __i386 || __amd64 */
} bscv_soft_state_t;

struct bscv_idi_callout {
	enum bscv_idi_type type;	/* Type of service */
	boolean_t (*fn)(struct bscv_idi_info);	/* Function's address */
};

#define	BSCV_IDI_CALLOUT_MAGIC		0xb5c1ca11
#define	BSCV_IDI_ERR_MSG_THRESHOLD	10
struct bscv_idi_callout_mgr {
	/*
	 * To allow for sanity check.
	 */
	uint32_t magic;

	/*
	 * The instance number of "an" instance of the driver.  This is assigned
	 * during driver attach.
	 */
	uint32_t valid_inst;

	/*
	 * Table of services offered via the idi interface.
	 */
	struct bscv_idi_callout *tbl;

	/*
	 * Error message count since last successful use of the idi interface.
	 */
	uint64_t errs;
};



#define	BSC_IMAGE_MAX_SIZE (0x20000 + sizeof (lom_prog_data_t))

#define	BSC_PROBE_FAULT_LIMIT	8	/* Tries before declaring lom dead */
#define	BSC_EVENT_POLL_NORMAL	(drv_usectohz(1000000))		/* 1 second */
#define	BSC_EVENT_POLL_FAULTY	(drv_usectohz(10000000))	/* 10 second */

#define	BSC_FAILURE_RETRY_LIMIT	5	/* Access retries before giving up */
#define	BSC_ERASE_RETRY_LIMIT	5	/* Erase retries */
#define	BSC_PAGE_RETRY_LIMIT	5	/* Page write retries */

#define	BSC_ADDR_CACHE_LIMIT	\
		(sizeof (((bscv_soft_state_t *)NULL)->lom_regs))
#define	BSC_INFORM_ONLINE	0x4f530100
#define	BSC_INFORM_OFFLINE	0x4f530201
#define	BSC_INFORM_PANIC	0x4f530204

#include <sys/lom_ebuscodes.h>

typedef uint32_t bscv_addr_t;

#define	BSC_NEXUS_ADDR(ssp, chan, as, index) \
	(&((ssp)->channel[chan].regs[((as) * 256) + (index)]))

#define	BSC_NEXUS_OFFSET(as, index) (((as) * 256) + (index))

#define	BSCVA(as, index) (((as) * 256) + (index))

#define	PSR_SUCCESS(status)	(((status) & EBUS_PROGRAM_PSR_STATUS_MASK) == \
    EBUS_PROGRAM_PSR_SUCCESS)

#define	PSR_PROG(status)	(((status) & EBUS_PROGRAM_PSR_PROG_MODE) != 0)
#ifdef	__cplusplus
}
#endif

#endif	/* _SYS_BSCV_IMPL_H */