參數(shù)資料
型號(hào): S5933Q/7C
廠商: APPLIEDMICRO INC
元件分類: 總線控制器
英文描述: PCI BUS CONTROLLER, PQFP160
封裝: PLASTIC, QFP-160
文件頁數(shù): 205/327頁
文件大?。?/td> 1976K
代理商: S5933Q/7C
第1頁第2頁第3頁第4頁第5頁第6頁第7頁第8頁第9頁第10頁第11頁第12頁第13頁第14頁第15頁第16頁第17頁第18頁第19頁第20頁第21頁第22頁第23頁第24頁第25頁第26頁第27頁第28頁第29頁第30頁第31頁第32頁第33頁第34頁第35頁第36頁第37頁第38頁第39頁第40頁第41頁第42頁第43頁第44頁第45頁第46頁第47頁第48頁第49頁第50頁第51頁第52頁第53頁第54頁第55頁第56頁第57頁第58頁第59頁第60頁第61頁第62頁第63頁第64頁第65頁第66頁第67頁第68頁第69頁第70頁第71頁第72頁第73頁第74頁第75頁第76頁第77頁第78頁第79頁第80頁第81頁第82頁第83頁第84頁第85頁第86頁第87頁第88頁第89頁第90頁第91頁第92頁第93頁第94頁第95頁第96頁第97頁第98頁第99頁第100頁第101頁第102頁第103頁第104頁第105頁第106頁第107頁第108頁第109頁第110頁第111頁第112頁第113頁第114頁第115頁第116頁第117頁第118頁第119頁第120頁第121頁第122頁第123頁第124頁第125頁第126頁第127頁第128頁第129頁第130頁第131頁第132頁第133頁第134頁第135頁第136頁第137頁第138頁第139頁第140頁第141頁第142頁第143頁第144頁第145頁第146頁第147頁第148頁第149頁第150頁第151頁第152頁第153頁第154頁第155頁第156頁第157頁第158頁第159頁第160頁第161頁第162頁第163頁第164頁第165頁第166頁第167頁第168頁第169頁第170頁第171頁第172頁第173頁第174頁第175頁第176頁第177頁第178頁第179頁第180頁第181頁第182頁第183頁第184頁第185頁第186頁第187頁第188頁第189頁第190頁第191頁第192頁第193頁第194頁第195頁第196頁第197頁第198頁第199頁第200頁第201頁第202頁第203頁第204頁當(dāng)前第205頁第206頁第207頁第208頁第209頁第210頁第211頁第212頁第213頁第214頁第215頁第216頁第217頁第218頁第219頁第220頁第221頁第222頁第223頁第224頁第225頁第226頁第227頁第228頁第229頁第230頁第231頁第232頁第233頁第234頁第235頁第236頁第237頁第238頁第239頁第240頁第241頁第242頁第243頁第244頁第245頁第246頁第247頁第248頁第249頁第250頁第251頁第252頁第253頁第254頁第255頁第256頁第257頁第258頁第259頁第260頁第261頁第262頁第263頁第264頁第265頁第266頁第267頁第268頁第269頁第270頁第271頁第272頁第273頁第274頁第275頁第276頁第277頁第278頁第279頁第280頁第281頁第282頁第283頁第284頁第285頁第286頁第287頁第288頁第289頁第290頁第291頁第292頁第293頁第294頁第295頁第296頁第297頁第298頁第299頁第300頁第301頁第302頁第303頁第304頁第305頁第306頁第307頁第308頁第309頁第310頁第311頁第312頁第313頁第314頁第315頁第316頁第317頁第318頁第319頁第320頁第321頁第322頁第323頁第324頁第325頁第326頁第327頁
Applied Micro Circuits Corporation
6195 Lusk Blvd., San Diego, CA 92121 (619) 450-9333
15-56
S5933
PCI CONTROLLER
Access to Configuration Space
Each PCI device contains an address space specifi-
cally devoted to PCI buses, used for device identifi-
cation and memory and I/O configuration. A set of six
functions provides access to the PCI device’s Con-
figuration Space. These functions provide for reading
and writing of a byte (8 bits), double-word (16 bits) or
double-word (32 bits) in the Configuration Space. C-
language prototypes for these functions are:
int read_configuration_byte(byte bus_number,
byte device_and_function,
byte register_number,
byte *byte_read);
int read_configuration_word(byte bus_number,
byte device_and_function,
byte register_number,
word *word_read);
int read_configuration_dword(byte bus_number,
byte device_and_function,
byte register_number,
dword *dword_read);
int write_configuration_byte(byte bus_number,
byte device_and_function,
byte register_number,
byte byte_to_write);
int write_configuration_word(byte bus_number,
byte device_and_function,
byte register_number,
word word_to_write);
int write_configuration_dword(byte bus_number,
byte device_and_function,
byte register_number,
dword dword_to_write);
The return code from each of these functions indi-
cates whether the Configuration Space was read or
written successfully, indicated by the return value of
SUCCESSFUL. The function may also return the
value BAD_REGISTER_NUMBER, indicating that a
register number greater than 255 was requested to
be read or written. Finally, a return value of
NOT_SUCCESSFUL indicates a PCI BIOS error has
occurred.
Each of these functions has input parameters of
bus_number and device_and_function. These pa-
rameters MUST be the values returned by the
find_pci_bios() or find_pci_class_code() functions for
the desired device.
Also, each of the functions has an input parameter of
register_number. This number is a number in the
range 0 to 255 indicating which register in the Con-
figuration Space is to be read or written. The pre-
defined register numbers are described in the
Configuration Space section of this appendix.
The read_configuration_byte/word/dword functions
have an output parameter that contains the byte/
word/dword read from the Configuration Space.
As an example, register 0 contains the Vendor ID of
the device and is one word (16 bits) long. To obtain
the Vendor ID from the device, simply use the follow-
ing function call:
The return value from the function MUST be checked
for the value SUCCESSFUL prior to using the
vendor_id value, otherwise the value is invalid.
Obtaining Interrupt Vector
The Interrupt Line Configuration Space register con-
tains the hardware interrupt assigned to the device
by the host computer (if needed). The valid number
in this register is in the range 0 to 15. A value of FFh
indicates that no hardware interrupt is needed by the
device. Multiple devices may be assigned to a single
hardware interrupt by the host computer. Device driv-
ers for PCI devices must determine if the device it is
servicing generated the interrupt and if not, “chain” or
call the previous interrupt handler to handle the inter-
rupt.
The hardware interrupt number can be translated into
a software interrupt number via the following table:
#define PCI_CS_VENDOR_ID 0
int read_configuration_word(bus_number, device_and_function,
PCI_CS_VENDOR_ID, &vendor_id);
Hardware Interrupt
Interrupt Number
IRQ0
08h
IRQ1
09h
IRQ2
0Ah
IRQ3
0Bh
IRQ4
0Ch
IRQ5
0Dh
IRQ6
0Eh
IRQ7
0Fh
IRQ8
70h
IRQ9
71h
IRQ10
72h
IRQ11
73h
IRQ12
74h
IRQ13
75h
IRQ14
76h
IRQ15
77h
相關(guān)PDF資料
PDF描述
S5933QE PCI BUS CONTROLLER, PQFP160
S6A0032 16 X 80 DOTS DOT MAT LCD DRVR AND DSPL CTLR, UUC138
S6A0069 16 X 40 DOTS DOT MAT LCD DRVR AND DSPL CTLR, UUC80
S6A0078 34 X 120 DOTS DOT MAT LCD DRVR AND DSPL CTLR, UUC183
S80296SA40 16-BIT, 40 MHz, MICROCONTROLLER, PQFP100
相關(guān)代理商/技術(shù)參數(shù)
參數(shù)描述
S5933QC 制造商:AMC 功能描述:IC
S5935 制造商:AMCC 制造商全稱:Applied Micro Circuits Corporation 功能描述:PCI Product
S5935_07 制造商:AMCC 制造商全稱:Applied Micro Circuits Corporation 功能描述:PCI Product
S59355QRC 制造商:AppliedMicro 功能描述:
S5935QF 制造商:AMCC 制造商全稱:Applied Micro Circuits Corporation 功能描述:PCI Product