summaryrefslogtreecommitdiff
path: root/usr/src/uts/common/io/wpi/wpireg.h
blob: 72782ec1c8e8d68ea395e545fa6cb20fbd904433 (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
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
/*
 * Copyright 2008 Sun Microsystems, Inc.  All rights reserved.
 * Use is subject to license terms.
 */

/*
 * Copyright (c) 2006
 *	Damien Bergamini <damien.bergamini@free.fr>
 *
 * Permission to use, copy, modify, and distribute this software for any
 * purpose with or without fee is hereby granted, provided that the above
 * copyright notice and this permission notice appear in all copies.
 *
 * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
 * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
 * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
 * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
 * WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
 * ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
 * OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
 */

#ifndef	_WPIREG_H_
#define	_WPIREG_H_

#ifdef	__cplusplus
extern "C" {
#endif

#define	WPI_TX_RING_COUNT	256
#define	WPI_SVC_RING_COUNT	256
#define	WPI_CMD_RING_COUNT	256
#define	WPI_RX_RING_COUNT	64

/*
 * Rings must be aligned on a four 4K-pages boundary.
 * I had a hard time figuring this out.
 */
#define	WPI_RING_DMA_ALIGN	0x4000

/*
 * maximum scatter/gather
 */
#define	WPI_MAX_SCATTER	4

/*
 * Control and status registers.
 */
#define	WPI_HWCONFIG		0x000
#define	WPI_INTR		0x008
#define	WPI_MASK		0x00c
#define	WPI_INTR_STATUS		0x010
#define	WPI_GPIO_STATUS		0x018
#define	WPI_RESET		0x020
#define	WPI_GPIO_CTL		0x024
#define	WPI_EEPROM_CTL		0x02c
#define	WPI_EEPROM_STATUS	0x030
#define	WPI_UCODE_CLR		0x05c
#define	WPI_TEMPERATURE		0x060
#define	WPI_CHICKEN		0x100
#define	WPI_PLL_CTL		0x20c
#define	WPI_FW_TARGET		0x410
#define	WPI_WRITE_MEM_ADDR  	0x444
#define	WPI_READ_MEM_ADDR   	0x448
#define	WPI_WRITE_MEM_DATA  	0x44c
#define	WPI_READ_MEM_DATA   	0x450
#define	WPI_TX_WIDX		0x460
#define	WPI_TX_CTL(qid)		(0x940 + (qid) * 8)
#define	WPI_TX_BASE(qid)	(0x944 + (qid) * 8)
#define	WPI_TX_DESC(qid)	(0x980 + (qid) * 80)
#define	WPI_RX_CONFIG		0xc00
#define	WPI_RX_BASE		0xc04
#define	WPI_RX_WIDX		0xc20
#define	WPI_RX_RIDX_PTR		0xc24
#define	WPI_RX_CTL		0xcc0
#define	WPI_RX_STATUS		0xcc4
#define	WPI_TX_CONFIG(qid)	(0xd00 + (qid) * 32)
#define	WPI_TX_CREDIT(qid)	(0xd04 + (qid) * 32)
#define	WPI_TX_STATE(qid)	(0xd08 + (qid) * 32)
#define	WPI_TX_BASE_PTR		0xe80
#define	WPI_MSG_CONFIG		0xe88
#define	WPI_TX_STATUS		0xe90


/*
 * NIC internal memory offsets.
 */
#define	WPI_MEM_MODE		0x2e00
#define	WPI_MEM_RA		0x2e04
#define	WPI_MEM_TXCFG		0x2e10
#define	WPI_MEM_MAGIC4		0x2e14
#define	WPI_MEM_MAGIC5		0x2e20
#define	WPI_MEM_BYPASS1		0x2e2c
#define	WPI_MEM_BYPASS2		0x2e30
#define	WPI_MEM_CLOCK1		0x3004
#define	WPI_MEM_CLOCK2		0x3008
#define	WPI_MEM_POWER		0x300c
#define	WPI_MEM_PCIDEV		0x3010
#define	WPI_MEM_UCODE_CTL	0x3400
#define	WPI_MEM_UCODE_SRC	0x3404
#define	WPI_MEM_UCODE_DST	0x3408
#define	WPI_MEM_UCODE_SIZE	0x340c
#define	WPI_MEM_UCODE_BASE	0x3800


/*
 * possible flags for register WPI_HWCONFIG
 */
#define	WPI_HW_ALM_MB	(1 << 8)
#define	WPI_HW_ALM_MM	(1 << 9)
#define	WPI_HW_SKU_MRC	(1 << 10)
#define	WPI_HW_REV_D	(1 << 11)
#define	WPI_HW_TYPE_B	(1 << 12)

/*
 * possible flags for registers WPI_READ_MEM_ADDR/WPI_WRITE_MEM_ADDR
 */
#define	WPI_MEM_4	((sizeof (uint32_t) - 1) << 24)

/*
 * possible values for WPI_FW_TARGET
 */
#define	WPI_FW_TEXT	0x00000000
#define	WPI_FW_DATA	0x00800000

/*
 * possible flags for WPI_GPIO_STATUS
 */
#define	WPI_POWERED		(1 << 9)

/*
 * possible flags for register WPI_RESET
 */
#define	WPI_NEVO_RESET		(1 << 0)
#define	WPI_SW_RESET		(1 << 7)
#define	WPI_MASTER_DISABLED	(1 << 8)
#define	WPI_STOP_MASTER		(1 << 9)

/*
 * possible flags for register WPI_GPIO_CTL
 */
#define	WPI_GPIO_CLOCK		(1 << 0)
#define	WPI_GPIO_INIT		(1 << 2)
#define	WPI_GPIO_MAC		(1 << 3)
#define	WPI_GPIO_SLEEP		(1 << 4)
#define	WPI_GPIO_PWR_STATUS	0x07000000
#define	WPI_GPIO_PWR_SLEEP	(4 << 24)
#define	WPI_GPIO_HW_RF_KILL	(1 << 27)

/*
 * possible flags for register WPI_CHICKEN
 */
#define	WPI_CHICKEN_RXNOLOS	(1 << 23)

/*
 * possible flags for register WPI_PLL_CTL
 */
#define	WPI_PLL_INIT		(1 << 24)

/*
 * possible flags for register WPI_UCODE_CLR
 */
#define	WPI_RADIO_OFF		(1 << 1)
#define	WPI_DISABLE_CMD		(1 << 2)

/*
 * possible flags for WPI_RX_STATUS
 */
#define	WPI_RX_IDLE	(1 << 24)

/*
 * possible flags for register WPI_UC_CTL
 */
#define	WPI_UC_RUN	(1 << 30)

/*
 * possible flags for register WPI_INTR_CSR
 */
#define	WPI_ALIVE_INTR	(1 << 0)
#define	WPI_WAKEUP_INTR	(1 << 1)
#define	WPI_RX_SWINT	(1 << 3)
#define	WPI_RF_KILL	(1 << 7)
#define	WPI_SW_ERROR	(1 << 25)
#define	WPI_TX_INTR	(1 << 27)
#define	WPI_HW_ERROR	(1 << 29)
#define	WPI_RX_INTR	(((uint32_t)1) << 31)

#define	WPI_INTR_MASK							\
	(WPI_SW_ERROR | WPI_HW_ERROR | WPI_TX_INTR | WPI_RX_INTR |	\
	WPI_ALIVE_INTR | WPI_WAKEUP_INTR)

/*
 * possible flags for register WPI_TX_STATUS
 */
#define	WPI_TX_IDLE(qid)	(1 << ((qid) + 24) | 1 << ((qid) + 16))

/*
 * possible flags for register WPI_EEPROM_CTL
 */
#define	WPI_EEPROM_READY	(1 << 0)

/*
 * possible flags for register WPI_EEPROM_STATUS
 */
#define	WPI_EEPROM_VERSION	0x00000007
#define	WPI_EEPROM_LOCKED	0x00000180


typedef struct wpi_shared {
	uint32_t	txbase[8];
	uint32_t	next;
	uint32_t	reserved[2];
} wpi_shared_t;

#define	WPI_MAX_SEG_LEN	65520
typedef struct wpi_tx_desc {
	uint32_t	flags;
#define	WPI_PAD32(x)	(roundup(x, 4) - (x))

	struct {
		uint32_t	addr;
		uint32_t	len;
	} segs[WPI_MAX_SCATTER];
	uint8_t		reserved[28];
} wpi_tx_desc_t;

typedef struct wpi_tx_stat {
	uint8_t		nrts;
	uint8_t		ntries;
	uint8_t		nkill;
	uint8_t		rate;
	uint32_t	duration;
	uint32_t	status;
} wpi_tx_stat_t;

typedef struct wpi_rx_desc {
	uint32_t	len;
	uint8_t		type;
#define	WPI_UC_READY		  1
#define	WPI_RX_DONE		 27
#define	WPI_TX_DONE		 28
#define	WPI_START_SCAN		130
#define	WPI_START_RESULT	131
#define	WPI_STOP_SCAN		132
#define	WPI_STATE_CHANGED	161

	uint8_t		flags;
	uint8_t		idx;
	uint8_t		qid;
} wpi_rx_desc_t;

typedef struct wpi_rx_stat {
	uint8_t		len;
#define	WPI_STAT_MAXLEN	20

	uint8_t		id;
	uint8_t		rssi;	/* received signal strength */
#define	WPI_RSSI_OFFSET	95

	uint8_t		agc;	/* access gain control */
	uint16_t	signal;
	uint16_t	noise;
} wpi_rx_stat_t;

typedef struct wpi_rx_head {
	uint16_t	chan;
	uint16_t	flags;
	uint8_t		reserved;
	uint8_t		rate;
	uint16_t	len;
} wpi_rx_head_t;

typedef struct wpi_rx_tail {
	uint32_t	flags;
#define	WPI_RX_NO_CRC_ERR	(1 << 0)
#define	WPI_RX_NO_OVFL_ERR	(1 << 1)
#define	WPI_RX_NOERROR		(WPI_RX_NO_CRC_ERR | WPI_RX_NO_OVFL_ERR)

	uint64_t	tstamp;
	uint32_t	tbeacon;
} wpi_rx_tail_t;

typedef struct wpi_tx_cmd {
	uint8_t	code;
#define	WPI_CMD_CONFIGURE	 16
#define	WPI_CMD_ASSOCIATE	 17
#define	WPI_CMD_SET_WME		 19
#define	WPI_CMD_TSF		 20
#define	WPI_CMD_ADD_NODE	 24
#define	WPI_CMD_TX_DATA		 28
#define	WPI_CMD_MRR_SETUP	 71
#define	WPI_CMD_SET_LED		 72
#define	WPI_CMD_SET_POWER_MODE	119
#define	WPI_CMD_SCAN		128
#define	WPI_CMD_SET_BEACON	145
#define	WPI_CMD_BLUETOOTH	155
#define	WPI_CMD_TXPOWER		176

	uint8_t	flags;
	uint8_t	idx;
	uint8_t	qid;
	uint8_t	data[124];
} wpi_tx_cmd_t;

/*
 * structure for WPI_CMD_CONFIGURE
 */
typedef struct wpi_config {
	uint8_t		myaddr[IEEE80211_ADDR_LEN];
	uint16_t	reserved1;
	uint8_t		bssid[IEEE80211_ADDR_LEN];
	uint16_t	reserved2;
	uint32_t	reserved3[2];
	uint8_t		mode;
#define	WPI_MODE_HOSTAP		1
#define	WPI_MODE_STA		3
#define	WPI_MODE_IBSS		4
#define	WPI_MODE_MONITOR	6

	uint8_t		reserved4[3];
	uint8_t		ofdm_mask;
	uint8_t		cck_mask;
	uint16_t	state;
#define	WPI_CONFIG_ASSOCIATED	4

	uint32_t	flags;
#define	WPI_CONFIG_24GHZ	(1 << 0)
#define	WPI_CONFIG_CCK		(1 << 1)
#define	WPI_CONFIG_AUTO		(1 << 2)
#define	WPI_CONFIG_SHSLOT	(1 << 4)
#define	WPI_CONFIG_SHPREAMBLE	(1 << 5)
#define	WPI_CONFIG_NODIVERSITY	(1 << 7)
#define	WPI_CONFIG_ANTENNA_A	(1 << 8)
#define	WPI_CONFIG_ANTENNA_B	(1 << 9)
#define	WPI_CONFIG_TSF		(1 << 15)

	uint32_t	filter;
#define	WPI_FILTER_PROMISC	(1 << 0)
#define	WPI_FILTER_CTL		(1 << 1)
#define	WPI_FILTER_MULTICAST	(1 << 2)
#define	WPI_FILTER_NODECRYPTUNI	(1 << 3)
#define	WPI_FILTER_NODECRYPTMUL	(1 << 4)
#define	WPI_FILTER_BSS		(1 << 5)
#define	WPI_FILTER_BEACON	(1 << 6)

	uint8_t		chan;
	uint8_t		reserved6[3];
} wpi_config_t;

/*
 * structure for command WPI_CMD_ASSOCIATE
 */
typedef struct wpi_assoc {
	uint32_t	flags;
	uint32_t	filter;
	uint8_t		ofdm_mask;
	uint8_t		cck_mask;
	uint16_t	reserved;
} wpi_assoc_t;

/*
 * structure for command WPI_CMD_SET_WME
 */
typedef struct wpi_wme_setup {
	uint32_t	flags;
	struct {
		uint16_t	cwmin;
		uint16_t	cwmax;
		uint8_t		aifsn;
		uint8_t		reserved;
		uint16_t	txop;
	} ac[WME_NUM_AC];
} wpi_wme_setup_t;

/*
 * structure for command WPI_CMD_TSF
 */
typedef struct wpi_cmd_tsf {
	uint64_t	tstamp;
	uint16_t	bintval;
	uint16_t	atim;
	uint32_t	binitval;
	uint16_t	lintval;
	uint16_t	reserved;
} wpi_cmd_tsf_t;

/*
 * structure for WPI_CMD_ADD_NODE
 */
typedef struct wpi_node {
	uint8_t		control;
#define	WPI_NODE_UPDATE	(1 << 0)

	uint8_t		reserved1[3];
	uint8_t		bssid[IEEE80211_ADDR_LEN];
	uint16_t	reserved2;
	uint8_t		id;
#define	WPI_ID_BSS		0
#define	WPI_ID_BROADCAST	24

	uint8_t		sta_mask;
	uint16_t	reserved3;
	uint16_t	key_flags;
	uint8_t		tkip;
	uint8_t		reserved4;
	uint16_t	ttak[5];
	uint8_t		keyp;
	uint8_t		reserved5;
	uint8_t		key[16];
	uint32_t	flags;
	uint32_t	mask;
	uint16_t	tid;
	uint8_t		rate;
	uint8_t		reserved6;
	uint8_t		add_imm;
	uint8_t		del_imm;
	uint16_t	add_imm_start;
} wpi_node_t;

/*
 * structure for command WPI_CMD_TX_DATA
 */
typedef struct wpi_cmd_data {
	uint16_t	len;
	uint16_t	lnext;
	uint32_t	flags;
#define	WPI_TX_NEED_RTS		(1 <<  1)
#define	WPI_TX_NEED_ACK		(1 <<  3)
#define	WPI_TX_FULL_TXOP	(1 <<  7)
#define	WPI_TX_BT_DISABLE	(1 << 12)
#define	WPI_TX_AUTO_SEQ		(1 << 13)
#define	WPI_TX_INSERT_TSTAMP	(1 << 16)
#define	WPI_TX_CALIBRATION	(1 << 17)

	uint8_t		rate;
	uint8_t		id;
	uint8_t		tid;
	uint8_t		security;
	uint8_t		key[16];
	uint8_t		tkip[8];
	uint32_t	fnext;
	uint32_t	lifetime;
	uint8_t		ofdm_mask;
	uint8_t		cck_mask;
	uint8_t		rts_ntries;
	uint8_t		data_ntries;
	uint16_t	timeout;
	uint16_t	txop;
} wpi_cmd_data_t;

/*
 * structure for command WPI_CMD_SET_BEACON
 */
typedef struct wpi_cmd_beacon {
	uint16_t	len;
	uint16_t	reserved1;
	uint32_t	flags;	/* same as wpi_cmd_data */
	uint8_t		rate;
	uint8_t		id;
	uint8_t		reserved2[30];
	uint32_t	lifetime;
	uint8_t		ofdm_mask;
	uint8_t		cck_mask;
	uint16_t	reserved3[3];
	uint16_t	tim;
	uint8_t		timsz;
	uint8_t		reserved4;
	struct		ieee80211_frame wh;
} wpi_cmd_beacon_t;

/*
 * structure for WPI_CMD_MRR_SETUP
 */
typedef struct wpi_mrr_setup {
	uint32_t	which;
#define	WPI_MRR_CTL	0
#define	WPI_MRR_DATA	1

	struct {
		uint8_t	signal;
		uint8_t	flags;
		uint8_t	ntries;
		uint8_t	next;
#define	WPI_OFDM6	0
#define	WPI_OFDM54	7
#define	WPI_CCK1	8
#define	WPI_CCK11	11

	} rates[WPI_CCK11 + 1];
} wpi_mrr_setup_t;

/*
 * structure for WPI_CMD_SET_LED
 */
typedef struct wpi_cmd_led {
	uint32_t	unit;	/* multiplier (in usecs) */
	uint8_t		which;
#define	WPI_LED_ACTIVITY	1
#define	WPI_LED_LINK		2

	uint8_t		off;
	uint8_t		on;
	uint8_t		reserved;
} wpi_cmd_led_t;

/*
 * structure for WPI_CMD_SET_POWER_MODE
 */
typedef struct wpi_power {
	uint32_t	flags;
	uint32_t	rx_timeout;
	uint32_t	tx_timeout;
	uint32_t	sleep[5];
} wpi_power_t;

/*
 * structure for command WPI_CMD_SCAN
 */
typedef struct wpi_scan_hdr {
	uint8_t		len;
	uint8_t		first;
	uint8_t		reserved1;
	uint8_t		nchan;
	uint16_t	quiet;
	uint16_t	threshold;
	uint32_t	reserved2[3];
	uint32_t	filter;
	uint32_t	reserved3;
	uint16_t	pbrlen;
	uint16_t	reserved4;
	uint32_t	magic1;
	uint8_t		rate;
	uint8_t		id;
	uint16_t	reserved5;
	uint32_t	reserved6[7];
	uint32_t	mask;
	uint32_t	reserved7[2];
	uint8_t		reserved8;
	uint8_t		esslen;
	uint8_t		essid[134];

	/* followed by probe request body */
	/* followed by nchan x wpi_scan_chan */
} wpi_scan_hdr_t;

typedef struct wpi_scan_chan {
	uint8_t		flags;
	uint8_t		chan;
	uint16_t	magic;		/* XXX */
	uint16_t	active;		/* dwell time */
	uint16_t	passive;	/* dwell time */
} wpi_scan_chan_t;

/*
 * structure for WPI_CMD_BLUETOOTH
 */
typedef struct wpi_bluetooth {
	uint8_t		flags;
	uint8_t		lead;
	uint8_t		kill;
	uint8_t		reserved;
	uint32_t	ack;
	uint32_t	cts;
} wpi_bluetooth_t;

/*
 * structure for command WPI_CMD_TXPOWER
 */
typedef struct wpi_txpower {
	uint32_t	reserved1;
	uint16_t	pwr1[14];
	uint32_t	reserved2[2];
	uint16_t	pwr2[14];
	uint32_t	reserved3[2];
} wpi_txpower_t;


/*
 * firmware image header
 */
typedef struct wpi_firmware_hdr {
	uint32_t	version;
	uint32_t	textsz;
	uint32_t	datasz;
	uint32_t	bootsz;
} wpi_firmware_hdr_t;

/*
 * structure for WPI_UC_READY notification
 */
typedef struct wpi_ucode_info {
	uint32_t	version;
	uint8_t		revision[8];
	uint8_t		type;
	uint8_t		subtype;
	uint16_t	reserved;
	uint32_t	logptr;
	uint32_t	errorptr;
	uint32_t	timestamp;
	uint32_t	valid;
} wpi_ucode_info_t;

/*
 * structure for WPI_START_SCAN notification
 */
typedef struct wpi_start_scan {
	uint64_t	tstamp;
	uint32_t	tbeacon;
	uint8_t		chan;
	uint8_t		band;
	uint16_t	reserved;
	uint32_t	status;
} wpi_start_scan_t;

/*
 * structure for WPI_STOP_SCAN notification
 */
typedef struct wpi_stop_scan {
	uint8_t		nchan;
	uint8_t		status;
	uint8_t		reserved;
	uint8_t		chan;
	uint64_t	tsf;
} wpi_stop_scan_t;

#define	WPI_EEPROM_MAC		0x015
#define	WPI_EEPROM_REVISION	0x035
#define	WPI_EEPROM_CAPABILITIES	0x045
#define	WPI_EEPROM_TYPE		0x04a
#define	WPI_EEPROM_PWR1		0x1ae
#define	WPI_EEPROM_PWR2		0x1bc

#define	WPI_READ(sc, reg)						\
	ddi_get32((sc)->sc_handle, (uint32_t *)((sc)->sc_base + (reg)))

#define	WPI_WRITE(sc, reg, val)						\
	ddi_put32((sc)->sc_handle, (uint32_t *)((sc)->sc_base + (reg)), (val))

#define	WPI_WRITE_REGION_4(sc, offset, datap, count) {			\
	uint32_t *p = (datap);						\
	uint32_t s = (offset);						\
	uint32_t c = (count);						\
	while (--c > 0) {						\
		ddi_put32((sc)->sc_handle,				\
		    (uint32_t *)((sc)->sc_base + s), *p);		\
		p++;							\
		s += 4;							\
	}								\
}

#ifdef __cplusplus
}
#endif

#endif /* _WPIREG_H_ */