File: raid_bcd.cpp

package info (click to toggle)
raidutils 0.0.6-23
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 10,840 kB
  • sloc: cpp: 39,794; ansic: 22,774; sh: 8,306; makefile: 19
file content (766 lines) | stat: -rw-r--r-- 18,820 bytes parent folder | download | duplicates (9)
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
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
/* Copyright (c) 1996-2004, Adaptec Corporation
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without
 * modification, are permitted provided that the following conditions are met:
 *
 * - Redistributions of source code must retain the above copyright notice, this
 *   list of conditions and the following disclaimer.
 * - Redistributions in binary form must reproduce the above copyright notice,
 *   this list of conditions and the following disclaimer in the documentation
 *   and/or other materials provided with the distribution.
 * - Neither the name of the Adaptec Corporation nor the names of its
 *   contributors may be used to endorse or promote products derived from this
 *   software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
 * AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
 * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
 * LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
 * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
 * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
 * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
 * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 * POSSIBILITY OF SUCH DAMAGE.
 */

//File - RAID_BCD.CPP
//**************************************************************************
//
//Description:
//
//    This file contains the function definitions for the dptRAIDbcd_C
//class.
//
//Author:	Doug Anderson
//Date:		3/25/93
//
//Editors:
//
//Remarks:
//
//
//***************************************************************************

//Include Files -------------------------------------------------------------

#include	"allfiles.hpp"	// All engine include files

//Function - dptRAIDbcd_C::dptRAIDbcd_C() - start
//===========================================================================
//
//Description:
//
//    This function is the constructor for the dptRAIDbcd_C class.
//
//Parameters:
//
//Return Value:
//
//Global Variables Affected:
//
//Remarks: (Side effects, Assumptions, Warnings...)
//
//
//---------------------------------------------------------------------------

dptRAIDbcd_C::dptRAIDbcd_C()
{

  // RAID BCDs do not bubble there physical devices
setNoBubble();

  // Set the engine object type
engType = DPT_RAID_BCD;

  // Set the default physical address limits
phyRange.setMaxChan(5);
phyRange.setMinChan(1);
for (uINT i=1; i<=5; i++) {
	phyRange.setMaxId(i, 15);
	phyRange.setMaxLun(i, 0);
}
addr = phyRange.getMaxAddr();
addr.lun = 0;

  // Physical ID this controller appears on
phyID = 6;
  // Logical LUN to access controller
logLUN = 0;
  // Initialize the NCR information
memset(boardID,0,5);
memset(boardRevision,0,3);
memset(boardDate,0,10);
memset(fwVerDate,0,6);
memset(swVerDate,0,6);

  // Create the default RAID definitions
setDefRAID();

}
//dptRAIDbcd_C::dptRAIDbcd_C() - end


//Function - dptRAIDbcd_C::getRAIDaddr() - start
//===========================================================================
//
//Description:
//
//    This function gets the next available SCSI address for the
//specified RAID device.
//
//Parameters:
//
//Return Value:
//
//Global Variables Affected:
//
//Remarks: (Side effects, Assumptions, Warnings...)
//
//
//---------------------------------------------------------------------------

void	dptRAIDbcd_C::getRAIDaddr(dptRAIDdev_C *dev_P)
{

  // Attempt to use one of the component's SCSI address
getLogAddr(dev_P->addr);

}
//dptRAIDbcd_C::getRAIDaddr() - end


//Function - dptRAIDbcd_C::realInit() - start
//===========================================================================
//
//Description:
//
//    This function initializes a real device.
//
//Parameters:
//
//Return Value:
//
//Global Variables Affected:
//
//Remarks: (Side effects, Assumptions, Warnings...)
//
//
//---------------------------------------------------------------------------

void	dptRAIDbcd_C::realInit()
{

  // Get the SCSI inquiry information
selfInquiry();

  // Get the device's DPT name
getNCRinfo();

}
//dptRAIDbcd_C::realInit() - end


//Function - dptRAIDbcd_C::getNCRinfo() - start
//===========================================================================
//
//Description:
//
//
//Parameters:
//
//Return Value:
//
//Global Variables Affected:
//
//Remarks: (Side effects, Assumptions, Warnings...)
//
//
//---------------------------------------------------------------------------

void	dptRAIDbcd_C::getNCRinfo()
{

engCCB_C *ccb_P = getCCB();
if (ccb_P!=NULL) {
   ccb_P->target(this);
     // Get the hardware information page
   ccb_P->inquiry(0xc0);
   if (launchCCB(ccb_P)==MSG_RTN_COMPLETED) {
      if (ccb_P->ok()) {
	 memcpy(boardID,&ccb_P->defData[154],4);
	 boardID[4] = 0;
	 memcpy(boardDate,&ccb_P->defData[144],8);
	 boardDate[8] = 0;
	 boardRevision[0] = ccb_P->defData[152];
	 boardRevision[1] = ccb_P->defData[153];
	 boardRevision[2] = 0;
      }
   }
   ccb_P->target(this);
     // Get the firmware information page
   ccb_P->inquiry(0xc1);
   if (launchCCB(ccb_P)==MSG_RTN_COMPLETED) {
      if (ccb_P->ok()) {
	   // Copy the firmware information
	 memcpy(fwVerDate,&ccb_P->defData[8],6);
      }
   }
   ccb_P->target(this);
     // Get the software information page
   ccb_P->inquiry(0xc2);
   if (launchCCB(ccb_P)==MSG_RTN_COMPLETED) {
      if (ccb_P->ok()) {
	   // Copy the software information
	 memcpy(swVerDate,&ccb_P->defData[8],6);
      }
   }
     // Free the CCB
   ccb_P->clrInUse();
}

}
//dptRAIDbcd_C::getNCRinfo() - end


//Function - dptRAIDbcd_C::rtnInfo() - start
//===========================================================================
//
//Description:
//
//    This function returns SCSI HBA information to the specified
//output buffer.
//
//Parameters:
//
//Return Value:
//
//Global Variables Affected:
//
//Remarks: (Side effects, Assumptions, Warnings...)
//
//
//---------------------------------------------------------------------------

DPT_RTN_T	dptRAIDbcd_C::rtnInfo(dptBuffer_S *fromEng_P)
{

   DPT_RTN_T	retVal = MSG_RTN_DATA_OVERFLOW;
#if defined (_DPT_STRICT_ALIGN)
   uSHORT       tempShort = 0;
#endif

  // Return base class information
dptSCSImgr_C::rtnInfo(fromEng_P);

  // Return the BCD's board ID
fromEng_P->insert(boardID,5);
  // Return the BCD's board revision
fromEng_P->insert(boardRevision,3);
  // Return the board date of manufacture
fromEng_P->insert(boardDate,10);
  // Return the firmware version and date
fromEng_P->insert(fwVerDate,6);
  // Return the software version and date
#ifdef SNI_MIPS
fromEng_P->insert(tempShort);
#endif
if (fromEng_P->insert(swVerDate,6))
   retVal = MSG_RTN_COMPLETED;

return (retVal);

}
//dptRAIDbcd_C::rtnInfo() - end


//Function - dptRAIDbcd_C::handleMessage() - start
//===========================================================================
//
//Description:
//
//    This routine handles DPT events for the dptRAIDmgr_C class.
//
//Parameters:
//
//Return Value:
//
//Global Variables Affected:
//
//Remarks: (Side effects, Assumptions, Warnings...)
//
//
//---------------------------------------------------------------------------

DPT_RTN_T	dptRAIDbcd_C::handleMessage(DPT_MSG_T	message,
					    dptBuffer_S *fromEng_P,
					    dptBuffer_S *toEng_P
					   )
{

   DPT_RTN_T	retVal = MSG_RTN_IGNORED;

switch (message) {

     // Create a new RAID device
   case MSG_RAID_NEW:
	retVal = newRAID(fromEng_P,toEng_P,0);
	break;

     // Create an invalid (ghosted) RAID device
   case MSG_RAID_GHOST:
	retVal = newRAID(fromEng_P,toEng_P,1);
	break;

   default:
	  // Call base class event handler
	retVal = dptManager_C::handleMessage(message,fromEng_P,toEng_P);
	break;

} // end switch

return (retVal);

}
//dptRAIDbcd_C::handleMessage() - end


//Function - dptRAIDbcd_C::setDefRAID() - start
//===========================================================================
//
//Description:
//
//    This function sets up default RAID definitions.
//
//Parameters:
//
//Return Value:
//
//Global Variables Affected:
//
//Remarks: (Side effects, Assumptions, Warnings...)
//
//
//---------------------------------------------------------------------------

void	dptRAIDbcd_C::setDefRAID()
{

   raidDef_S	*def_P;

  // Define RAID 0
def_P = new raidDef_S;
if (def_P!=NULL) {
     // Initialize the RAID definition data
//   def_P->refNum	= 0;
//   def_P->type		= 0;
//   def_P->minDrives	= 2;
   def_P->maxDrives	= 10;
   def_P->redundants	= 0;
//   def_P->minStripe	= 1;
   def_P->maxStripe	= 32 * 2048L;
//   def_P->chanCount	= 0xffff;
   def_P->required	|= FLG_REQ_SAME_STRIPE_SZ |
			   FLG_REQ_SAME_NUM_STRIPE |
			   FLG_REQ_UNDER_MULTIPLE;
//   def_P->devType	= DPT_SCSI_DASD;
   def_P->permit	|= FLG_COMP_SAME_VENDOR |
			   FLG_COMP_SAME_PRODUCT |
			   FLG_COMP_SAME_CAPACITY;

     // Add to the RAID definition list
   enterRAIDdef(def_P);

     // Set the RAID support flag
   raidSupport		|= FLG_RAID_0;
}

  // Define RAID 1
def_P = new raidDef_S;
if (def_P!=NULL) {
     // Initialize the RAID definition data
   def_P->refNum	= 1;
   def_P->type		= 1;
   def_P->minDrives	= 2;
   def_P->maxDrives	= 10;
   def_P->redundants	= 0x82;
//   def_P->minStripe	= 1;
//   def_P->maxStripe	= 0xffffffffL;
   def_P->chanCount	= 2;
   def_P->required	|= FLG_REQ_SAME_STRIPE_SZ |
			   FLG_REQ_SAME_NUM_STRIPE |
			   FLG_REQ_UNDER_MULTIPLE |
			   FLG_REQ_CHAN_COUNT |
			   FLG_REQ_EVEN_DRIVES;
//   def_P->devType	= DPT_SCSI_DASD;
   def_P->permit	|= FLG_COMP_SAME_VENDOR |
			   FLG_COMP_SAME_PRODUCT |
			   FLG_COMP_SAME_CAPACITY;

     // Add to the RAID definition list
   enterRAIDdef(def_P);

     // Set the RAID support flag
   raidSupport		|= FLG_RAID_1;
}

  // Define RAID 3
def_P = new raidDef_S;
if (def_P!=NULL) {
     // Initialize the RAID definition data
   def_P->refNum	= 3;
   def_P->type		= 3;
   def_P->minDrives	= 3;
   def_P->maxDrives	= 5;
//   def_P->redundants	= 1;
   def_P->minStripe	= 1;
   def_P->maxStripe	= 1;
//   def_P->chanCount	= 0xffff;
   def_P->required	|= FLG_REQ_SAME_STRIPE_SZ |
			   FLG_REQ_SAME_NUM_STRIPE |
			   FLG_REQ_UNDER_MULTIPLE |
			   FLG_REQ_MIN_CHAN |
			   FLG_REQ_SEQ_CHAN |
			   FLG_REQ_POWER_2_PLUS;
//   def_P->devType	= DPT_SCSI_DASD;
   def_P->permit	|= FLG_COMP_SAME_VENDOR |
			   FLG_COMP_SAME_PRODUCT |
			   FLG_COMP_SAME_CAPACITY;

     // Add to the RAID definition list
   enterRAIDdef(def_P);

     // Set the RAID support flag
   raidSupport		|= FLG_RAID_3;
}

  // Define RAID 5
def_P = new raidDef_S;
if (def_P!=NULL) {
     // Initialize the RAID definition data
   def_P->refNum	= 5;
   def_P->type		= 5;
   def_P->minDrives	= 3;
   def_P->maxDrives	= 5;
//   def_P->redundants	= 1;
   def_P->minStripe	= 4 * 2;
   def_P->maxStripe	= 32 * 2048L;
   def_P->chanCount	= 1;
   def_P->required	|= FLG_REQ_SAME_STRIPE_SZ |
			   FLG_REQ_SAME_NUM_STRIPE |
			   FLG_REQ_UNDER_MULTIPLE |
			   FLG_REQ_CHAN_COUNT;
//   def_P->devType	= DPT_SCSI_DASD;
   def_P->permit	|= FLG_COMP_SAME_VENDOR |
			   FLG_COMP_SAME_PRODUCT |
			   FLG_COMP_SAME_CAPACITY;

     // Add to the RAID definition list
   enterRAIDdef(def_P);

     // Set the RAID support flag
   raidSupport		|= FLG_RAID_5;
}

}
//dptRAIDbcd_C::setDefRAID() - end


//Function - dptRAIDbcd_C::passCCB() - start
//===========================================================================
//
//Description:
//
//    This function makes adjustments to the CCB and then passes
//the send CCB request up the attachment chain.
//
//Parameters:
//
//Return Value:
//
//Global Variables Affected:
//
//Remarks: (Side effects, Assumptions, Warnings...)
//
//
//---------------------------------------------------------------------------

DPT_RTN_T	dptRAIDbcd_C::passCCB(engCCB_C *ccb_P)
{

   DPT_RTN_T	retVal;

  // If the command came from a physical device...
if (ccb_P->isPhy()) {
     // Send a pass thru command
   if ((retVal=sendPassThru(ccb_P))==MSG_RTN_COMPLETED) {
	// Change the CCB to target the bridge controller
      ccb_P->target(this);
	// Communicate thru the logical LUN
      ccb_P->setLUN(logLUN);
	// Always physical origin to the next level
      ccb_P->setPhy();
	// Send the CCB to the next level in the attachment chain
      retVal = myMgr_P()->passCCB(ccb_P);
   }
}
else {
     // Always physical origin to the next level
   ccb_P->setPhy();
     // Send the CCB to the next level in the attachment chain
   retVal = myMgr_P()->passCCB(ccb_P);
}

return (retVal);

}
//dptRAIDbcd_C::passCCB() - end


//Function - dptRAIDbcd_C::sendPassThru() - start
//===========================================================================
//
//Description:
//
//    This function issues a pass thru command to the specified
//channel & ID.  The pass through command enables an external
//source to communicate directly with a RAID BCD physical device.
//
//Parameters:
//
//Return Value:
//
//Global Variables Affected:
//
//Remarks: (Side effects, Assumptions, Warnings...)
//
//    This command should be followed immediately by the SCSI command
//to be passed directly through to the SCSI device.
//
//---------------------------------------------------------------------------

DPT_RTN_T	dptRAIDbcd_C::sendPassThru(engCCB_C *ccb_P)
{

   DPT_RTN_T	retVal = MSG_RTN_FAILED | ERR_GET_CCB;

  // Get a CCB
engCCB_C *passCCB_P = getCCB();
if (passCCB_P!=NULL) {

     // Initialize the SCSI CDB
   passCCB_P->ncrPassThru(ccb_P);

     // Target the bridge controller
   passCCB_P->target(this);
     // Communicate thru the logical LUN
   passCCB_P->setLUN(logLUN);
     // This device is physical to the next level
   passCCB_P->setPhy();

     // Send the pass thru CCB
   retVal = myMgr_P()->passCCB(passCCB_P);

     // Free the pass thru CCB
   passCCB_P->clrInUse();

}

return (retVal);

}
//dptRAIDbcd_C::sendPassThru() - end


//Function - dptRAIDbcd_C::findMyPhysicals() - start
//===========================================================================
//
//Description:
//
//    This function finds all the physical devices attached to this
//RAID bridge controller.
//
//Parameters:
//
//Return Value:
//
//   1 = OK
//   0 = Failed
//
//Global Variables Affected:
//
//Remarks: (Side effects, Assumptions, Warnings...)
//
//
//---------------------------------------------------------------------------

uSHORT	dptRAIDbcd_C::findMyPhysicals()
{

   uCHAR		chan,id;
   uCHAR		maxID,maxChan;
   uCHAR		mainStatus,subStatus;
   uSHORT		index;
   dptDevice_C *	newDev_P;
   uSHORT		retVal = 0;

engCCB_C *ccb_P = getCCB();
if (ccb_P!=NULL) {
	 // Initialize the CCB to get the physical array page
	ccb_P->modeSense6(PAP_NCR1);
	 // Target this RAID BCD
	ccb_P->target(this);
	 // Indicate that this is a RAID command
	ccb_P->setRAIDcmd();
	 // Send the CCB to hardware
	if (launchCCB(ccb_P)==MSG_RTN_COMPLETED) {
		// Insure the proper mode page was returned
		if ((ccb_P->modeParam_P->getPageCode() & 0x3f)==0x2a) {
			retVal = 1;
			index = 0;
			maxID = maxChan = 0;
			// Check all IDs
			for (id=0;id<=15;id++) {
				  // Check all channels
				for (chan=1;chan<=15;chan++) {
					mainStatus = ccb_P->modeParam_P->getData()[index] & 0x0f;
					subStatus =  ccb_P->modeParam_P->getData()[index] & 0x70;
					if (mainStatus==0x07)
						// Set the BCD's physical ID
						phyID = id;
					else if (mainStatus!=0x01) {
						// Create a new device
						newDev_P = (dptDevice_C *) newObject(DPT_SCSI_DASD);
						if (newDev_P!=NULL) {
							// Initialize the new object's SCSI address
							newDev_P->addr.chan	= chan;
							newDev_P->addr.id	= id;
							newDev_P->addr.lun	= 0;
							// Indicate that this is a real object
							newDev_P->status.flags	|= FLG_STAT_REAL;
							// Enter into the physical device list
							enterPhy(newDev_P);
						}
					}
					// If this channel is supported...
					else if (!(subStatus & 0x10))
						if (chan>maxChan)
							maxChan = chan;
					index++;
				} // end for (chan)
				  // If this ID is supported...
				if ((mainStatus==1) && !(subStatus & 0x20))
					maxID = id;
			} // end for (id)

			// Set the maximum channel supported
			phyRange.setMaxChan(maxChan);
		} // end if (pageCode==0x2a)
	} // end if (launchCCB() == MSG_RTN_COMPLETED)

	 // Free the CCB
	ccb_P->clrInUse();
}

return (retVal);

}
//dptRAIDbcd_C::findMyPhysicals() - end


//Function - dptRAIDbcd_C::findMyLogicals() - start
//===========================================================================
//
//Description:
//
//    This function finds all FW logical devices associated with this HBA.
//
//Parameters:
//
//Return Value:
//
//   1 = OK
//   0 = Failed
//
//Global Variables Affected:
//
//Remarks: (Side effects, Assumptions, Warnings...)
//
//
//---------------------------------------------------------------------------

uSHORT	dptRAIDbcd_C::findMyLogicals()
{

   dptDevice_C		*dev_P;

// Note: The RAID BCD's logical devices have already been found by the
//       HBA's physical device scan.

  // Initialize all RAID devices
dev_P = (dptDevice_C *) logList.reset();
while (dev_P!=NULL) {
     // Initialize the RAID device
   dev_P->initRealLogical();
     // Get the next logical device
   dev_P = (dptDevice_C *) logList.next();
}

return (1);

}
//dptRAIDbcd_C::findMyLogicals() - end


//Function - dptRAIDbcd_C::findComponent() - start
//===========================================================================
//
//Description:
//
//    This function finds a component device with the specified SCSI
//address.  The HBA field of the SCSI address is assumed to be set to
//the HBA's index #.
//
//Parameters:
//
//Return Value:
//
//Global Variables Affected:
//
//Remarks: (Side effects, Assumptions, Warnings...)
//
//
//---------------------------------------------------------------------------

dptDevice_C *	dptRAIDbcd_C::findComponent(dptAddr_S addr,uSHORT,uLONG, dptCoreList_C *)
{

   dptDevice_C	*comp_P;

  // Update the BCD's HBA #
updateHBAnum();
  // Assume the component is attached to this manager's HBA
addr.hba = getHBA();
  // Attempt to find the component
comp_P = (dptDevice_C *) findObjectAt(phyList,addr);
if (comp_P==NULL) {
     // Create an absent device
   comp_P = (dptDevice_C *) newObject(DPT_SCSI_DASD);
   if (comp_P!=NULL) {
	// Set the device's SCSI address
      comp_P->addr = addr;
	// Set the device's status to missing
      comp_P->status.display = DSPLY_STAT_MISSING;
	// Add the device to the BCD's physical object list
      enterPhy(comp_P);
   }
}

return (comp_P);

}
//dptRAIDbcd_C::findComponent() - end