Sponsored Content
Full Discussion: Update firmware HBA
Operating Systems AIX Update firmware HBA Post 302337595 by lo-lp-kl on Friday 24th of July 2009 12:24:43 PM
Old 07-24-2009
Update firmware HBA

Hello

I have a question

I have several partitions P550 Aix 5.3 and I need to update the HBA firmware, in some partitions I have two HBA and in others I have one HBA only.

My question is if I have to reboot my partitions after update the firmware level. and If I can do it online or I have to stop something.

This is one output from the lscfg -vl fcs0 command

lscfg -vl fcs0

Part Number.................03N6441
EC Level....................A
Serial Number...............1B54804DF5
Manufacturer................001B
Customer Card ID Number.....280B
FRU Number.................. 03N6441
Device Specific.(ZM)........3
Network Address.............10000000C94EC287
ROS Level and ID............02881914
Device Specific.(Z0)........1001206D
Device Specific.(Z1)........00000000
Device Specific.(Z2)........00000000
Device Specific.(Z3)........03000909
Device Specific.(Z4)........FF801315
Device Specific.(Z5)........02881914
Device Specific.(Z6)........06831914
Device Specific.(Z7)........07831914
Device Specific.(Z8)........20000000C94EC287
Device Specific.(Z9)........TS1.90A4
Device Specific.(ZA)........T1D1.90A4
Device Specific.(ZB)........T2D1.90A4
Device Specific.(ZC)........00000000


Thanks for your comments


Greetings
 

9 More Discussions You Might Find Interesting

1. UNIX for Dummies Questions & Answers

how to do firmware update

Hi, am a new comer to the AIX side. i had 3 specific questions. 1) what is firmware 2) how to locate the firmware running on a unix server 3) how to do firmware update(is it something i download from IBM site) thanks everybody for taking the time and plz reply. karthik (5 Replies)
Discussion started by: karthikosu
5 Replies

2. Solaris

How do i update firmware on X4500??

I have solaris X4500 with ILOM version 1.1.1. I want to update the firmware. I know that we need to use load -source tftp://tftpserver/image file But I do not understand what is the IP address of the tftp server that we need to type in there. Kindly, help me with this. Thank you (5 Replies)
Discussion started by: bharu_sri
5 Replies

3. Solaris

firmware update on t5120

Hi, I am using 3 t5120 sparc systems, OS solaris 10. I am confused by update manager behaviour and sun support. Sun support guy, tells me install patch : 136932-09 (#136932-09: Hardware/PROM: SPARC Enterprise T5120 & T5220 Sun System Firmware with LDOMS support) When I checked... (4 Replies)
Discussion started by: upengan78
4 Replies

4. Solaris

Update MX000 XCP firmware

how can we download the firmware form the host to the XSCF , My host is not configured with either FTP,HTTPS or proxy server. Someone told me we can do it with getflashimage but i did not find any info getflashimage man page to do it. Any help will be appreciated. (3 Replies)
Discussion started by: fugitive
3 Replies

5. Solaris

After update Solaris version, HBA driver still need to install?

Hi all I had update a server from Solaris 8 to Solaris 10 is it the HBA driver still need to reinstall? since i can get the driver info as below: root@sgerpdev # fcinfo hba-port HBA Port WWN: 21000003ba9b58a3 OS Device Name: /dev/cfg/c1 Manufacturer: QLogic Corp. ... (1 Reply)
Discussion started by: SmartAntz
1 Replies

6. AIX

I need command for HBA model & firmware please

Hi All, I have a task to complete on several server, I need advice from u guys,i need to know that , how can i check the following thing in AIX server. 1)HBA vendor, HBA model, HBA driver version & HBA firmware. 2) Multipath software & multipath version. 3) Cluster software & cluster... (2 Replies)
Discussion started by: gulamibrahim
2 Replies

7. AIX

How to obtain old version of HBA firmware ?

Hi all: I have a need to down-rev my AIX HBA firmware due to storage instability after upgrading, but IBM support only makes the latest version of firmware available for download. Can anyone provide pointer/tips for obtaining old HBA firmware ? Specifics: 280B HBA df1000fa driver... (1 Reply)
Discussion started by: kwachtler
1 Replies

8. AIX

System P firmware update

I am interested whether should AIX Admin make upgrade of firmware on power systems or IBM support should do it thanks in advance :-) (3 Replies)
Discussion started by: Vit0_Corleone
3 Replies

9. Hardware

2540 firmware update

Hi Guys and Gals, does anyone know how to update the firmware on the drives in a storagetek 2540? Thanks in advance Rgrds Martin (0 Replies)
Discussion started by: callmebob
0 Replies
scsi_hba_init(9F)					   Kernel Functions for Drivers 					 scsi_hba_init(9F)

NAME
scsi_hba_init, scsi_hba_fini - SCSI Host Bus Adapter system initialization and completion routines SYNOPSIS
#include <sys/scsi/scsi.h> int scsi_hba_init(struct modlinkage *modlp); void scsi_hba_fini(struct modlinkage *modlp); INTERFACE LEVEL
Solaris architecture specific (Solaris DDI). PARAMETERS
modlp Pointer to the Host Bus Adapters module linkage structure. DESCRIPTION
scsi_hba_init() scsi_hba_init() is the system-provided initialization routine for SCSI HBA drivers. The scsi_hba_init() function registers the HBA in the system and allows the driver to accept configuration requests on behalf of SCSI target drivers. The scsi_hba_init() routine must be called in the HBA's _init(9E) routine before mod_install(9F) is called. If mod_install(9F) fails, the HBA's _init(9E) should call scsi_hba_fini() before returning failure. scsi_hba_fini() scsi_hba_fini() is the system provided completion routine for SCSI HBA drivers. scsi_hba_fini() removes all of the system references for the HBA that were created in scsi_hba_init(). The scsi_hba_fini() routine should be called in the HBA's _fini(9E) routine if mod_remove(9F) is successful. RETURN VALUES
scsi_hba_init() returns 0 if successful, and a non-zero value otherwise. If scsi_hba_init() fails, the HBA's _init() entry point should return the value returned by scsi_hba_init(). CONTEXT
scsi_hba_init() and scsi_hba_fini() should be called from _init(9E) or _fini(9E), respectively. SEE ALSO
_fini(9E), _init(9E), mod_install(9F), mod_remove(9F), scsi_pktalloc(9F), scsi_pktfree(9F), scsi_hba_tran(9S) Writing Device Drivers NOTES
The HBA is responsible for ensuring that no DDI request routines are called on behalf of its SCSI target drivers once scsi_hba_fini() is called. SunOS 5.10 1 Nov 1993 scsi_hba_init(9F)
All times are GMT -4. The time now is 08:04 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy