iPXE discussion forum

Full Version: Error 2c2260, when trying SRP boot
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello!!

I have MT25208 card with PCI DevID 25208.
I load iPXE from CD-ROM.
There is no indication that the card is initialized.
There are no messages on the screen and the LED is not lit on the card.

Error is http://ipxe.org/err/2c2260 .

Who can tell anything?
(2013-09-09 19:53)CGen Wrote: [ -> ]I have MT25208 card with PCI DevID 25208.
I load iPXE from CD-ROM.
There is no indication that the card is initialized.
There are no messages on the screen and the LED is not lit on the card.

Error is http://ipxe.org/err/2c2260 .

Have you patched iPXE to add this PCI device ID? This ID is not present in the standard codebase.

Michael
(2013-09-10 00:39)mcb30 Wrote: [ -> ]
(2013-09-09 19:53)CGen Wrote: [ -> ]I have MT25208 card with PCI DevID 25208.

Have you patched iPXE to add this PCI device ID? This ID is not present in the standard codebase.

Looking more closely at the code, I see that you can obtain that error even with no recognised Infiniband devices present.

You will probably need to add a suitable PCI_ROM() line to drivers/infiniband/arbel.c. The code has not been tested on your specific adapter. I would recommend that you test IPoIB functionality first, before testing SRP. If iPXE is able to communicate via your 25208 HCA using IPoIB, then please submit the patch containing your PCI_ROM() line to ipxe-devel@lists.ipxe.org, so that I can add it to the codebase.

Michael
I'm afraid I need a driver for the Tavor (mt23108). Unfortunately, it was removed from gPXE.
http://rom-o-matic.net/gpxe/gpxe-0.9.6/s.../mt23108.c
Code:
static struct pci_id tavor_nics[] = {
    PCI_ROM(0x15b3, 0x5a44, "MT23108", "MT23108 HCA driver"),
    PCI_ROM(0x15b3, 0x6278, "MT25208", "MT25208 HCA driver"),
};


Thanks.
Reference URL's