Operating System - HP-UX
1754359 Members
4701 Online
108813 Solutions
New Discussion юеВ

How to verify version of HBA firmware

 
SOLVED
Go to solution
David Land
Frequent Advisor

How to verify version of HBA firmware

I have an A6826A HBA on my rp4410 server and would like to know how I can verify what firmware version I am running for this card?

Does anyone know?
4 REPLIES 4
Olivier Masse
Honored Contributor
Solution

Re: How to verify version of HBA firmware

Use the "vpd" option to fcmsutils.

Example:
# fcmsutil /dev/fcd0 vpd

Mark S Meadows
Valued Contributor

Re: How to verify version of HBA firmware

Hi David,

You could try the following commands to identify the HBA device files and then check out the card(s):

# ioscan -funC fc
Class I H/W Path Driver S/W State H/W Type Description
==================================================================
fc 0 0/0/4/1/0 fcd CLAIMED INTERFACE HP AB378-60101 4Gb Singl
e Port PCI/PCI-X Fibre Channel Adapter (FC Port 1)
/dev/fcd0
fc 1 0/0/5/1/0 fcd CLAIMED INTERFACE HP AB378-60101 4Gb Singl
e Port PCI/PCI-X Fibre Channel Adapter (FC Port 1)
/dev/fcd1
fc 2 0/0/12/1/0 fcd CLAIMED INTERFACE HP AB378-60101 4Gb Singl
e Port PCI/PCI-X Fibre Channel Adapter (FC Port 1)
/dev/fcd2
fc 3 0/0/13/1/0 fcd CLAIMED INTERFACE HP AB378-60101 4Gb Singl
e Port PCI/PCI-X Fibre Channel Adapter (FC Port 1)
/dev/fcd3

# fcmsutil /dev/fcd0

Vendor ID is = 0x1077
Device ID is = 0x2422
PCI Sub-system Vendor ID is = 0x103C
PCI Sub-system ID is = 0x12D6
PCI Mode = PCI-X 133 MHz
ISP Code version = 4.0.86
ISP Chip version = 3
Topology = PTTOPT_FABRIC
Link Speed = 4Gb
Local N_Port_id is = 0x301500
Previous N_Port_id is = None
N_Port Node World Wide Name = 0x50060b0000612cf5
N_Port Port World Wide Name = 0x50060b0000612cf4
Switch Port World Wide Name = 0x2009000dec95aa40
Switch Node World Wide Name = 0x2001000dec473f81
Driver state = ONLINE
Hardware Path is = 0/0/4/1/0
Maximum Frame Size = 2048
Driver-Firmware Dump Available = NO
Driver-Firmware Dump Timestamp = N/A
Driver Version = @(#) fcd B.11.31.01 Jan 7 2007

I hope it is of some help.

Regards,

Mark
Administrating HP-UX systems for more years than I care to admit, but still enjoying it (most of the time!).
Mark S Meadows
Valued Contributor

Re: How to verify version of HBA firmware

You can also add the "vpd" option for the fcmsutil command :

# fcmsutil /dev/fcd0 vpd
V I T A L P R O D U C T D A T A
--------- ------------- -------

Product Description : HP PCI-X 2.0 4Gb Fibre Channel HBA

Part number : AB378-60101

Engineering Date Code : A-4713

Part Serial number : JP47210650

Misc. Information : PW=7.5W;PCI=66MHZ;PCI-X=266MHZ

Mfd. Date : 4721

Mfd. ID : AB378-60101

Check Sum : 0x30

EFI version : 01.09

ROM Firmware version : 04.00.90

BIOS version : 01.26

FCODE version : 01.17

Asset Tag : NA

Regards,

Mark
Administrating HP-UX systems for more years than I care to admit, but still enjoying it (most of the time!).
David Land
Frequent Advisor

Re: How to verify version of HBA firmware

Guys this is perfect. The fcmsutil with the vpd option is exactly what I needed. Thanks.