prism2_plx.c File Reference

#include <gpxe/pci.h>
#include <nic.h>
#include "prism2.c"

Go to the source code of this file.

Defines

#define WLAN_HOSTIF   WLAN_PLX

Functions

 FILE_LICENCE (GPL2_OR_LATER)
static int prism2_find_plx (hfa384x_t *hw, struct pci_device *p)
static int prism2_plx_probe (struct nic *nic, struct pci_device *pci)
static void prism2_plx_disable (struct nic *nic)
 PCI_DRIVER (prism2_plx_driver, prism2_plx_nics, PCI_NO_CLASS)
 DRIVER ("Prism2/PLX", nic_driver, pci_driver, prism2_plx_driver, prism2_plx_probe, prism2_plx_disable)

Variables

static struct pci_device_id prism2_plx_nics []


Define Documentation

#define WLAN_HOSTIF   WLAN_PLX

Definition at line 22 of file prism2_plx.c.


Function Documentation

FILE_LICENCE ( GPL2_OR_LATER   ) 

static int prism2_find_plx ( hfa384x_t hw,
struct pci_device p 
) [static]

Definition at line 36 of file prism2_plx.c.

References bus_to_virt(), CIS_STEP, CISTPL_END, CISTPL_HEADER_LEN, CISTPL_LEN_OFF, CISTPL_VERS_1, CISTPL_VERS_1_STR_OFF, COR_OFFSET, COR_VALUE, hfa384x::iobase, NULL, PCI_BASE_ADDRESS_IO_MASK, pci_read_config_dword(), PLX_LOCAL_CONFIG_REGISTER_BASE, printf(), PRISM2_PLX_ATTR_MEM_BASE, and PRISM2_PLX_IO_BASE.

Referenced by prism2_plx_probe().

00037 {
00038   int found = 0;
00039   uint32_t plx_lcr  = 0; /* PLX9052 Local Configuration Register Base (I/O) */
00040   uint32_t attr_mem = 0; /* Prism2 Attribute Memory Base */
00041   uint32_t iobase   = 0; /* Prism2 I/O Base */
00042   unsigned char *cis_tpl  = NULL;
00043   unsigned char *cis_string;
00044   
00045   /* Obtain all memory and IO base addresses */
00046   pci_read_config_dword( p, PLX_LOCAL_CONFIG_REGISTER_BASE, &plx_lcr);
00047   plx_lcr &= PCI_BASE_ADDRESS_IO_MASK;
00048   pci_read_config_dword( p, PRISM2_PLX_ATTR_MEM_BASE, &attr_mem);
00049   pci_read_config_dword( p, PRISM2_PLX_IO_BASE, &iobase);
00050   iobase &= PCI_BASE_ADDRESS_IO_MASK;
00051 
00052   /* Fill out hw structure */
00053   hw->iobase = iobase;
00054   printf ( "PLX9052 has local config registers at %#x\n", plx_lcr );
00055   printf ( "Prism2 has attribute memory at %#x and I/O base at %#x\n", attr_mem, iobase );
00056 
00057   /* Search for CIS strings */
00058   printf ( "Searching for PCMCIA card...\n" );
00059   cis_tpl = bus_to_virt(attr_mem);
00060   while ( *cis_tpl != CISTPL_END ) {
00061     if ( *cis_tpl == CISTPL_VERS_1 ) {
00062       /* CISTPL_VERS_1 contains some nice text strings */
00063       printf ( "...found " );
00064       found = 1;
00065       cis_string = cis_tpl + CISTPL_VERS_1_STR_OFF;
00066       while ( ! ( ( *cis_string == 0 ) && ( *(cis_string+CIS_STEP) == 0 ) ) ) {
00067         printf ( "%c", *cis_string == 0 ? ' ' : *cis_string );
00068         cis_string += CIS_STEP;
00069       }
00070       printf ( "\n" );
00071     }
00072     /* printf ( "CIS tuple type %#hhx, length %#hhx\n", *cis_tpl, *(cis_tpl+CISTPL_LEN_OFF) ); */
00073     cis_tpl += CISTPL_HEADER_LEN + CIS_STEP * ( *(cis_tpl+CISTPL_LEN_OFF) );
00074   }
00075   if ( found == 0 ) {
00076     printf ( "...nothing found\n" );
00077   }
00078   ((unsigned char *)bus_to_virt(attr_mem))[COR_OFFSET] = COR_VALUE; /* Write COR to enable PC card */
00079   return found;
00080 }

static int prism2_plx_probe ( struct nic nic,
struct pci_device pci 
) [static]

Definition at line 82 of file prism2_plx.c.

References hw_global, nic::ioaddr, hfa384x::iobase, nic::irqno, prism2_find_plx(), and prism2_probe().

00082                                                                         {
00083   hfa384x_t *hw = &hw_global;
00084   
00085   /* Find and intialise PLX Prism2 card */
00086   if ( ! prism2_find_plx ( hw, pci ) ) return 0;
00087   nic->ioaddr = hw->iobase;
00088   nic->irqno  = 0;
00089   return prism2_probe ( nic, hw );
00090 }

static void prism2_plx_disable ( struct nic nic  )  [static]

Definition at line 92 of file prism2_plx.c.

References prism2_disable().

00092                                                    {
00093   prism2_disable ( nic );
00094 }

PCI_DRIVER ( prism2_plx_driver  ,
prism2_plx_nics  ,
PCI_NO_CLASS   
)

DRIVER ( "Prism2/PLX"  ,
nic_driver  ,
pci_driver  ,
prism2_plx_driver  ,
prism2_plx_probe  ,
prism2_plx_disable   
)


Variable Documentation

struct pci_device_id prism2_plx_nics[] [static]

Initial value:

 {
PCI_ROM(0x1385, 0x4100, "ma301",         "Netgear MA301", 0),
PCI_ROM(0x10b7, 0x7770, "3c-airconnect", "3Com AirConnect", 0),
PCI_ROM(0x111a, 0x1023, "ss1023",        "Siemens SpeedStream SS1023", 0),
PCI_ROM(0x15e8, 0x0130, "correga",       "Correga", 0),
PCI_ROM(0x1638, 0x1100, "smc2602w",      "SMC EZConnect SMC2602W", 0),  
PCI_ROM(0x16ab, 0x1100, "gl24110p",      "Global Sun Tech GL24110P", 0),
PCI_ROM(0x16ab, 0x1101, "16ab-1101",     "Unknown", 0),
PCI_ROM(0x16ab, 0x1102, "wdt11",         "Linksys WDT11", 0),
PCI_ROM(0x16ec, 0x3685, "usr2415",       "USR 2415", 0),
PCI_ROM(0xec80, 0xec00, "f5d6000",       "Belkin F5D6000", 0),
PCI_ROM(0x126c, 0x8030, "emobility",     "Nortel emobility", 0),
}

Definition at line 96 of file prism2_plx.c.


Generated on Tue Apr 6 20:01:38 2010 for gPXE by  doxygen 1.5.7.1