Leaked source code of windows server 2003
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
|
/*
* * Copyright (c) Microsoft Corporation. All rights reserved. * * CPQOSB.C - COMPAQ OSB PCI chipset routines. * * Notes: * Algorithms from COMPAQ OSB Data Sheet * */
#include "local.h"
#ifdef ALLOC_PRAGMA
#pragma alloc_text(INIT, CPQOSBValidateTable)
#endif //ALLOC_PRAGMA
/****************************************************************************
* * CPQOSBSetIRQ - Set a CPQOSB PCI link to a specific IRQ * * Exported. * * ENTRY: bIRQNumber is the new IRQ to be used. * * bLink is the Link to be set. * * EXIT: Standard PCIMP return value. * ***************************************************************************/ PCIMPRET CDECL CPQOSBSetIRQ(UCHAR bIRQNumber, UCHAR bLink) { UCHAR bOldValue, bOldIndex; //
// Validate link number.
//
if (bLink > 4) {
return(PCIMP_INVALID_LINK); } //
// Convert link to index.
//
bLink+=3;
//
// Save the old index value.
//
bOldIndex=READ_PORT_UCHAR((PUCHAR)0xC00);
//
// Setup to process the desired link.
//
WRITE_PORT_UCHAR((PUCHAR)0xC00, bLink);
//
// Read the old IRQ value.
//
bOldValue=(UCHAR)(READ_PORT_UCHAR((PUCHAR)0xC01) & 0xf0);
bOldValue|=bIRQNumber; //
// Set the OSB IRQ register.
//
WRITE_PORT_UCHAR((PUCHAR)0xC01, bOldValue);
//
// Restore the old index value.
//
WRITE_PORT_UCHAR((PUCHAR)0xC00, bOldIndex);
return(PCIMP_SUCCESS); }
/****************************************************************************
* * CPQOSBGetIRQ - Get the IRQ of a CPQOSB PCI link * * Exported. * * ENTRY: pbIRQNumber is the buffer to fill. * * bLink is the Link to be read. * * EXIT: Standard PCIMP return value. * ***************************************************************************/ PCIMPRET CDECL CPQOSBGetIRQ(PUCHAR pbIRQNumber, UCHAR bLink) { UCHAR bOldValue, bOldIndex; //
// Validate link number.
//
if (bLink > 4) {
return(PCIMP_INVALID_LINK); } //
// Convert link to index.
//
bLink+=3;
//
// Save the old index value.
//
bOldIndex=READ_PORT_UCHAR((PUCHAR)0xC00);
//
// Setup to read the correct link.
//
WRITE_PORT_UCHAR((PUCHAR)0xC00, bLink);
bOldValue=READ_PORT_UCHAR((PUCHAR)0xC01); *pbIRQNumber=bOldValue&0x0f;
//
// Restore the old index value.
//
WRITE_PORT_UCHAR((PUCHAR)0xC00, bOldIndex);
return(PCIMP_SUCCESS); }
/****************************************************************************
* * CPQOSBValidateTable - Validate an IRQ table * * Exported. * * ENTRY: piihIRQInfoHeader points to an IRQInfoHeader followed * by an IRQ Routing Table. * * ulFlags are PCIMP_VALIDATE flags. * * EXIT: Standard PCIMP return value. * ***************************************************************************/ PCIMPRET CDECL CPQOSBValidateTable(PIRQINFOHEADER piihIRQInfoHeader, ULONG ulFlags) { PAGED_CODE();
//
// If any link is above 4, it is an error.
//
if (GetMaxLink(piihIRQInfoHeader)>4) return(PCIMP_FAILURE);
return(PCIMP_SUCCESS); }
|