2005-04-17 10:51:05 +00:00
|
|
|
#include "stdint.h"
|
|
|
|
#include "string.h"
|
|
|
|
#include "console.h"
|
2005-04-21 18:18:29 +00:00
|
|
|
#include "nic.h"
|
2005-04-11 13:43:53 +00:00
|
|
|
#include "pci.h"
|
|
|
|
|
2005-04-14 10:10:54 +00:00
|
|
|
/*
|
2005-04-21 18:18:29 +00:00
|
|
|
* pci_io.c may know how many buses we have, in which case it can
|
|
|
|
* overwrite this value.
|
2005-04-14 10:10:54 +00:00
|
|
|
*
|
|
|
|
*/
|
2005-04-21 18:18:29 +00:00
|
|
|
unsigned int pci_max_bus = 0xff;
|
2005-04-14 10:10:54 +00:00
|
|
|
|
2005-04-16 11:16:31 +00:00
|
|
|
/*
|
2005-04-21 18:18:29 +00:00
|
|
|
* Increment a bus_loc structure to the next possible PCI location.
|
|
|
|
* Leave the structure zeroed and return 0 if there are no more valid
|
|
|
|
* locations.
|
2005-04-16 11:16:31 +00:00
|
|
|
*
|
|
|
|
*/
|
2005-04-21 18:18:29 +00:00
|
|
|
static int pci_next_location ( struct bus_loc *bus_loc ) {
|
|
|
|
struct pci_loc *pci_loc = ( struct pci_loc * ) bus_loc;
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Ensure that there is sufficient space in the shared bus
|
|
|
|
* structures for a struct pci_loc and a struct
|
|
|
|
* pci_dev, as mandated by bus.h.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
BUS_LOC_CHECK ( struct pci_loc );
|
|
|
|
BUS_DEV_CHECK ( struct pci_device );
|
|
|
|
|
|
|
|
return ( ++pci_loc->busdevfn );
|
|
|
|
}
|
2005-04-16 11:16:31 +00:00
|
|
|
|
2005-04-11 19:19:35 +00:00
|
|
|
/*
|
|
|
|
* Fill in parameters (vendor & device ids, class, membase etc.) for a
|
|
|
|
* PCI device based on bus & devfn.
|
|
|
|
*
|
|
|
|
* Returns 1 if a device was found, 0 for no device present.
|
2005-04-21 18:18:29 +00:00
|
|
|
*
|
2005-04-11 19:19:35 +00:00
|
|
|
*/
|
2005-04-21 18:18:29 +00:00
|
|
|
static int pci_fill_device ( struct bus_dev *bus_dev,
|
|
|
|
struct bus_loc *bus_loc ) {
|
|
|
|
struct pci_loc *pci_loc = ( struct pci_loc * ) bus_loc;
|
|
|
|
struct pci_device *pci = ( struct pci_device * ) bus_dev;
|
|
|
|
uint16_t busdevfn = pci_loc->busdevfn;
|
2005-04-16 11:42:56 +00:00
|
|
|
static struct {
|
2005-04-22 02:28:16 +00:00
|
|
|
uint16_t busdevfn0;
|
2005-04-16 11:42:56 +00:00
|
|
|
int is_present;
|
|
|
|
} cache = { 0, 1 };
|
2005-04-11 19:19:35 +00:00
|
|
|
uint32_t l;
|
|
|
|
int reg;
|
2005-04-16 11:16:31 +00:00
|
|
|
|
2005-04-21 18:18:29 +00:00
|
|
|
/* Store busdevfn in struct pci_device and set default values */
|
|
|
|
pci->busdevfn = busdevfn;
|
|
|
|
pci->name = "?";
|
|
|
|
|
2005-04-16 11:16:31 +00:00
|
|
|
/* Check bus is within range */
|
2005-04-21 18:18:29 +00:00
|
|
|
if ( PCI_BUS ( busdevfn ) > pci_max_bus ) {
|
2005-04-16 11:16:31 +00:00
|
|
|
return 0;
|
2005-04-16 11:43:16 +00:00
|
|
|
}
|
2005-04-16 11:42:56 +00:00
|
|
|
|
|
|
|
/* Check to see if we've cached the result that this is a
|
|
|
|
* non-zero function on a non-existent card. This is done to
|
|
|
|
* increase scan speed by a factor of 8.
|
|
|
|
*/
|
2005-04-21 18:18:29 +00:00
|
|
|
if ( ( PCI_FUNC ( busdevfn ) != 0 ) &&
|
2005-04-22 02:28:16 +00:00
|
|
|
( PCI_FN0 ( busdevfn ) == cache.busdevfn0 ) &&
|
2005-04-16 11:42:56 +00:00
|
|
|
( ! cache.is_present ) ) {
|
|
|
|
return 0;
|
|
|
|
}
|
2005-04-11 19:19:35 +00:00
|
|
|
|
|
|
|
/* Check to see if there's anything physically present.
|
|
|
|
*/
|
|
|
|
pci_read_config_dword ( pci, PCI_VENDOR_ID, &l );
|
|
|
|
/* some broken boards return 0 if a slot is empty: */
|
|
|
|
if ( ( l == 0xffffffff ) || ( l == 0x00000000 ) ) {
|
2005-04-21 18:18:29 +00:00
|
|
|
if ( PCI_FUNC ( busdevfn ) == 0 ) {
|
2005-04-16 11:42:56 +00:00
|
|
|
/* Don't look for subsequent functions if the
|
|
|
|
* card itself is not present.
|
|
|
|
*/
|
2005-04-22 02:28:16 +00:00
|
|
|
cache.busdevfn0 = busdevfn;
|
2005-04-16 11:42:56 +00:00
|
|
|
cache.is_present = 0;
|
|
|
|
}
|
2005-04-11 19:19:35 +00:00
|
|
|
return 0;
|
|
|
|
}
|
2005-04-21 18:18:29 +00:00
|
|
|
pci->vendor_id = l & 0xffff;
|
|
|
|
pci->device_id = ( l >> 16 ) & 0xffff;
|
2005-04-11 19:19:35 +00:00
|
|
|
|
|
|
|
/* Check that we're not a duplicate function on a
|
|
|
|
* non-multifunction device.
|
|
|
|
*/
|
2005-04-21 18:18:29 +00:00
|
|
|
if ( PCI_FUNC ( busdevfn ) != 0 ) {
|
2005-04-11 19:19:35 +00:00
|
|
|
uint8_t header_type;
|
2005-04-12 16:36:55 +00:00
|
|
|
|
2005-04-21 18:18:29 +00:00
|
|
|
pci->busdevfn &= PCI_FN0 ( busdevfn );
|
2005-04-11 19:19:35 +00:00
|
|
|
pci_read_config_byte ( pci, PCI_HEADER_TYPE, &header_type );
|
2005-04-21 18:18:29 +00:00
|
|
|
pci->busdevfn = busdevfn;
|
2005-04-12 16:36:55 +00:00
|
|
|
|
2005-04-11 19:19:35 +00:00
|
|
|
if ( ! ( header_type & 0x80 ) ) {
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get device class */
|
2005-04-12 16:36:55 +00:00
|
|
|
pci_read_config_word ( pci, PCI_SUBCLASS_CODE, &pci->class );
|
|
|
|
|
|
|
|
/* Get revision */
|
|
|
|
pci_read_config_byte ( pci, PCI_REVISION, &pci->revision );
|
2005-04-11 19:19:35 +00:00
|
|
|
|
|
|
|
/* Get the "membase" */
|
|
|
|
pci_read_config_dword ( pci, PCI_BASE_ADDRESS_1, &pci->membase );
|
|
|
|
|
|
|
|
/* Get the "ioaddr" */
|
|
|
|
pci->ioaddr = 0;
|
|
|
|
for ( reg = PCI_BASE_ADDRESS_0; reg <= PCI_BASE_ADDRESS_5; reg += 4 ) {
|
|
|
|
pci_read_config_dword ( pci, reg, &pci->ioaddr );
|
|
|
|
if ( pci->ioaddr & PCI_BASE_ADDRESS_SPACE_IO ) {
|
|
|
|
pci->ioaddr &= PCI_BASE_ADDRESS_IO_MASK;
|
|
|
|
if ( pci->ioaddr ) {
|
|
|
|
break;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
pci->ioaddr = 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Get the irq */
|
|
|
|
pci_read_config_byte ( pci, PCI_INTERRUPT_PIN, &pci->irq );
|
|
|
|
if ( pci->irq ) {
|
|
|
|
pci_read_config_byte ( pci, PCI_INTERRUPT_LINE, &pci->irq );
|
|
|
|
}
|
|
|
|
|
2005-04-22 02:28:16 +00:00
|
|
|
DBG ( "PCI found device %hhx:%hhx.%d Class %hx: %hx:%hx (rev %hhx)\n",
|
2005-04-12 16:36:55 +00:00
|
|
|
PCI_BUS ( pci->busdevfn ), PCI_DEV ( pci->busdevfn ),
|
2005-04-21 18:18:29 +00:00
|
|
|
PCI_FUNC ( pci->busdevfn ), pci->class, pci->vendor_id,
|
|
|
|
pci->device_id, pci->revision );
|
2005-04-12 16:36:55 +00:00
|
|
|
|
2005-04-11 19:19:35 +00:00
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
2005-04-21 18:18:29 +00:00
|
|
|
/*
|
|
|
|
* Test whether or not a driver is capable of driving the device.
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
static int pci_check_driver ( struct bus_dev *bus_dev,
|
2005-04-21 19:04:53 +00:00
|
|
|
struct device_driver *device_driver ) {
|
2005-04-21 18:18:29 +00:00
|
|
|
struct pci_device *pci = ( struct pci_device * ) bus_dev;
|
2005-04-21 19:04:53 +00:00
|
|
|
struct pci_driver *pci_driver
|
|
|
|
= ( struct pci_driver * ) device_driver->bus_driver_info;
|
2005-04-21 18:18:29 +00:00
|
|
|
unsigned int i;
|
|
|
|
|
|
|
|
/* If driver has a class, and class matches, use it */
|
2005-04-21 19:04:53 +00:00
|
|
|
if ( pci_driver->class &&
|
|
|
|
( pci_driver->class == pci->class ) ) {
|
2005-04-22 02:28:16 +00:00
|
|
|
DBG ( "PCI driver %s matches class %hx\n",
|
2005-04-21 19:04:53 +00:00
|
|
|
device_driver->name, pci_driver->class );
|
2005-04-21 18:18:29 +00:00
|
|
|
pci->name = device_driver->name;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* If any of driver's IDs match, use it */
|
2005-04-21 19:04:53 +00:00
|
|
|
for ( i = 0 ; i < pci_driver->id_count; i++ ) {
|
|
|
|
struct pci_id *id = &pci_driver->ids[i];
|
2005-04-21 18:18:29 +00:00
|
|
|
|
|
|
|
if ( ( pci->vendor_id == id->vendor_id ) &&
|
|
|
|
( pci->device_id == id->device_id ) ) {
|
2005-04-22 02:28:16 +00:00
|
|
|
DBG ( "PCI driver %s device %s matches ID %hx:%hx\n",
|
2005-04-21 18:18:29 +00:00
|
|
|
device_driver->name, id->name,
|
|
|
|
id->vendor_id, id->device_id );
|
|
|
|
pci->name = id->name;
|
|
|
|
return 1;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Describe a PCI device
|
|
|
|
*
|
|
|
|
*/
|
2005-04-25 18:54:15 +00:00
|
|
|
static char * pci_describe_device ( struct bus_dev *bus_dev ) {
|
2005-04-21 18:18:29 +00:00
|
|
|
struct pci_device *pci = ( struct pci_device * ) bus_dev;
|
|
|
|
static char pci_description[] = "PCI 00:00.0";
|
|
|
|
|
|
|
|
sprintf ( pci_description + 4, "%hhx:%hhx.%d",
|
|
|
|
PCI_BUS ( pci->busdevfn ), PCI_DEV ( pci->busdevfn ),
|
|
|
|
PCI_FUNC ( pci->busdevfn ) );
|
|
|
|
return pci_description;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Name a PCI device
|
|
|
|
*
|
|
|
|
*/
|
2005-04-25 18:54:15 +00:00
|
|
|
static const char * pci_name_device ( struct bus_dev *bus_dev ) {
|
2005-04-21 18:18:29 +00:00
|
|
|
struct pci_device *pci = ( struct pci_device * ) bus_dev;
|
|
|
|
|
|
|
|
return pci->name;
|
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* PCI bus operations table
|
|
|
|
*
|
|
|
|
*/
|
|
|
|
struct bus_driver pci_driver __bus_driver = {
|
2005-04-25 18:54:15 +00:00
|
|
|
.name = "PCI",
|
|
|
|
.next_location = pci_next_location,
|
|
|
|
.fill_device = pci_fill_device,
|
|
|
|
.check_driver = pci_check_driver,
|
|
|
|
.describe_device = pci_describe_device,
|
|
|
|
.name_device = pci_name_device,
|
2005-04-21 18:18:29 +00:00
|
|
|
};
|
|
|
|
|
2005-04-12 16:36:55 +00:00
|
|
|
/*
|
|
|
|
* Set device to be a busmaster in case BIOS neglected to do so. Also
|
|
|
|
* adjust PCI latency timer to a reasonable value, 32.
|
|
|
|
*/
|
2005-04-12 18:10:57 +00:00
|
|
|
void adjust_pci_device ( struct pci_device *pci ) {
|
2005-04-12 16:36:55 +00:00
|
|
|
unsigned short new_command, pci_command;
|
|
|
|
unsigned char pci_latency;
|
|
|
|
|
|
|
|
pci_read_config_word ( pci, PCI_COMMAND, &pci_command );
|
|
|
|
new_command = pci_command | PCI_COMMAND_MASTER | PCI_COMMAND_IO;
|
|
|
|
if ( pci_command != new_command ) {
|
2005-04-22 02:28:16 +00:00
|
|
|
DBG ( "PCI BIOS has not enabled device %hhx:%hhx.%d! "
|
2005-04-12 16:36:55 +00:00
|
|
|
"Updating PCI command %hX->%hX\n",
|
|
|
|
PCI_BUS ( pci->busdevfn ), PCI_DEV ( pci->busdevfn ),
|
|
|
|
PCI_FUNC ( pci->busdevfn ), pci_command, new_command );
|
|
|
|
pci_write_config_word ( pci, PCI_COMMAND, new_command );
|
|
|
|
}
|
|
|
|
pci_read_config_byte ( pci, PCI_LATENCY_TIMER, &pci_latency);
|
|
|
|
if ( pci_latency < 32 ) {
|
2005-04-22 02:28:16 +00:00
|
|
|
DBG ( "PCI device %hhx:%hhx.%d latency timer is "
|
2005-04-16 09:57:19 +00:00
|
|
|
"unreasonably low at %d. Setting to 32.\n",
|
2005-04-12 16:36:55 +00:00
|
|
|
PCI_BUS ( pci->busdevfn ), PCI_DEV ( pci->busdevfn ),
|
|
|
|
PCI_FUNC ( pci->busdevfn ), pci_latency );
|
|
|
|
pci_write_config_byte ( pci, PCI_LATENCY_TIMER, 32);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2005-04-11 13:43:53 +00:00
|
|
|
/*
|
|
|
|
* Find the start of a pci resource.
|
|
|
|
*/
|
2005-04-12 16:36:55 +00:00
|
|
|
unsigned long pci_bar_start ( struct pci_device *pci, unsigned int index ) {
|
2005-04-11 13:43:53 +00:00
|
|
|
uint32_t lo, hi;
|
|
|
|
unsigned long bar;
|
|
|
|
|
2005-04-12 16:36:55 +00:00
|
|
|
pci_read_config_dword ( pci, index, &lo );
|
2005-04-11 13:43:53 +00:00
|
|
|
if ( lo & PCI_BASE_ADDRESS_SPACE_IO ) {
|
|
|
|
bar = lo & PCI_BASE_ADDRESS_IO_MASK;
|
|
|
|
} else {
|
|
|
|
bar = 0;
|
|
|
|
if ( ( lo & PCI_BASE_ADDRESS_MEM_TYPE_MASK ) ==
|
|
|
|
PCI_BASE_ADDRESS_MEM_TYPE_64) {
|
2005-04-12 16:36:55 +00:00
|
|
|
pci_read_config_dword ( pci, index + 4, &hi );
|
2005-04-11 13:43:53 +00:00
|
|
|
if ( hi ) {
|
|
|
|
#if ULONG_MAX > 0xffffffff
|
|
|
|
bar = hi;
|
|
|
|
bar <<= 32;
|
|
|
|
#else
|
|
|
|
printf ( "Unhandled 64bit BAR\n" );
|
|
|
|
return -1UL;
|
|
|
|
#endif
|
|
|
|
}
|
|
|
|
}
|
|
|
|
bar |= lo & PCI_BASE_ADDRESS_MEM_MASK;
|
|
|
|
}
|
2005-04-12 16:36:55 +00:00
|
|
|
return bar + pci_bus_base ( pci );
|
2005-04-11 13:43:53 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Find the size of a pci resource.
|
|
|
|
*/
|
2005-04-12 16:36:55 +00:00
|
|
|
unsigned long pci_bar_size ( struct pci_device *pci, unsigned int bar ) {
|
2005-04-11 13:43:53 +00:00
|
|
|
uint32_t start, size;
|
|
|
|
|
|
|
|
/* Save the original bar */
|
2005-04-12 16:36:55 +00:00
|
|
|
pci_read_config_dword ( pci, bar, &start );
|
2005-04-11 13:43:53 +00:00
|
|
|
/* Compute which bits can be set */
|
2005-04-12 16:36:55 +00:00
|
|
|
pci_write_config_dword ( pci, bar, ~0 );
|
|
|
|
pci_read_config_dword ( pci, bar, &size );
|
2005-04-11 13:43:53 +00:00
|
|
|
/* Restore the original size */
|
2005-04-12 16:36:55 +00:00
|
|
|
pci_write_config_dword ( pci, bar, start );
|
2005-04-11 13:43:53 +00:00
|
|
|
/* Find the significant bits */
|
|
|
|
if ( start & PCI_BASE_ADDRESS_SPACE_IO ) {
|
|
|
|
size &= PCI_BASE_ADDRESS_IO_MASK;
|
|
|
|
} else {
|
|
|
|
size &= PCI_BASE_ADDRESS_MEM_MASK;
|
|
|
|
}
|
|
|
|
/* Find the lowest bit set */
|
|
|
|
size = size & ~( size - 1 );
|
|
|
|
return size;
|
|
|
|
}
|
|
|
|
|
|
|
|
/**
|
|
|
|
* pci_find_capability - query for devices' capabilities
|
2005-04-12 16:36:55 +00:00
|
|
|
* @pci: PCI device to query
|
2005-04-11 13:43:53 +00:00
|
|
|
* @cap: capability code
|
|
|
|
*
|
|
|
|
* Tell if a device supports a given PCI capability.
|
|
|
|
* Returns the address of the requested capability structure within the
|
|
|
|
* device's PCI configuration space or 0 in case the device does not
|
|
|
|
* support it. Possible values for @cap:
|
|
|
|
*
|
|
|
|
* %PCI_CAP_ID_PM Power Management
|
|
|
|
*
|
|
|
|
* %PCI_CAP_ID_AGP Accelerated Graphics Port
|
|
|
|
*
|
|
|
|
* %PCI_CAP_ID_VPD Vital Product Data
|
|
|
|
*
|
|
|
|
* %PCI_CAP_ID_SLOTID Slot Identification
|
|
|
|
*
|
|
|
|
* %PCI_CAP_ID_MSI Message Signalled Interrupts
|
|
|
|
*
|
|
|
|
* %PCI_CAP_ID_CHSWP CompactPCI HotSwap
|
|
|
|
*/
|
2005-04-12 16:36:55 +00:00
|
|
|
int pci_find_capability ( struct pci_device *pci, int cap ) {
|
2005-04-11 13:43:53 +00:00
|
|
|
uint16_t status;
|
|
|
|
uint8_t pos, id;
|
|
|
|
uint8_t hdr_type;
|
|
|
|
int ttl = 48;
|
|
|
|
|
2005-04-12 16:36:55 +00:00
|
|
|
pci_read_config_word ( pci, PCI_STATUS, &status );
|
2005-04-11 13:43:53 +00:00
|
|
|
if ( ! ( status & PCI_STATUS_CAP_LIST ) )
|
|
|
|
return 0;
|
|
|
|
|
2005-04-12 16:36:55 +00:00
|
|
|
pci_read_config_byte ( pci, PCI_HEADER_TYPE, &hdr_type );
|
2005-04-11 13:43:53 +00:00
|
|
|
switch ( hdr_type & 0x7F ) {
|
|
|
|
case PCI_HEADER_TYPE_NORMAL:
|
|
|
|
case PCI_HEADER_TYPE_BRIDGE:
|
|
|
|
default:
|
2005-04-12 16:36:55 +00:00
|
|
|
pci_read_config_byte ( pci, PCI_CAPABILITY_LIST, &pos );
|
2005-04-11 13:43:53 +00:00
|
|
|
break;
|
|
|
|
case PCI_HEADER_TYPE_CARDBUS:
|
2005-04-12 16:36:55 +00:00
|
|
|
pci_read_config_byte ( pci, PCI_CB_CAPABILITY_LIST, &pos );
|
2005-04-11 13:43:53 +00:00
|
|
|
break;
|
|
|
|
}
|
|
|
|
while ( ttl-- && pos >= 0x40 ) {
|
|
|
|
pos &= ~3;
|
2005-04-12 16:36:55 +00:00
|
|
|
pci_read_config_byte ( pci, pos + PCI_CAP_LIST_ID, &id );
|
2005-04-22 02:28:16 +00:00
|
|
|
DBG ( "PCI Capability: %d\n", id );
|
2005-04-11 13:43:53 +00:00
|
|
|
if ( id == 0xff )
|
|
|
|
break;
|
|
|
|
if ( id == cap )
|
|
|
|
return pos;
|
2005-04-12 16:36:55 +00:00
|
|
|
pci_read_config_byte ( pci, pos + PCI_CAP_LIST_NEXT, &pos );
|
2005-04-11 13:43:53 +00:00
|
|
|
}
|
|
|
|
return 0;
|
|
|
|
}
|
2005-04-21 18:18:29 +00:00
|
|
|
|
|
|
|
/*
|
2005-04-22 02:28:16 +00:00
|
|
|
* Fill in a nic structure
|
2005-04-21 18:18:29 +00:00
|
|
|
*
|
|
|
|
*/
|
|
|
|
void pci_fill_nic ( struct nic *nic, struct pci_device *pci ) {
|
|
|
|
|
|
|
|
/* Fill in ioaddr and irqno */
|
|
|
|
nic->ioaddr = pci->ioaddr;
|
|
|
|
nic->irqno = pci->irq;
|
|
|
|
|
|
|
|
/* Fill in DHCP device ID structure */
|
|
|
|
nic->dhcp_dev_id.bus_type = PCI_BUS_TYPE;
|
|
|
|
nic->dhcp_dev_id.vendor_id = htons ( pci->vendor_id );
|
|
|
|
nic->dhcp_dev_id.device_id = htons ( pci->device_id );
|
|
|
|
}
|