Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: DS10 bus number is updated

Anchor
TopConfPage
TopConfPage
Include Page
KBCOMMON:KB-CSSstyle
KBCOMMON:KB-CSSstyle

Table of Contents

Table of Contents
excludeTable of Contents

Back to Table of Contents

General Description

Each peripheral device of CHARON-AXP offers a one- (OPA0) or two-port serial console, depending on the specified HP Alpha model. 

The AlphaServer DS10, AlphaServer DS10L, AlphaServer DS15, AlphaServer 400, AlphaServer 800, AlphaServer 1000 and AlphaServer 1000A has an additional on-board serial line controller providing a serial line TTA0.

The regular console is already preloaded, so you need to specify just its mapping to the host resources, for example:

load physical_serial_line OPA0 line="COM1:"

In case of the TTA0 console the mapping looks like that:

load virtual_serial_line TTA0 port=10000
set COM2 line=TTA0

The first line specifies a mapping to some TCP/IP host port ("10000" in this example), while the second line connects this mapping (TTA0) to the on-board serial line controller having the name "COM2" in CHARON environment.

Refer to this section for details of mapping.

Back to Table of Contents

Console Parameters

CHARON-AXP console lines have some specific parameters:

...

rts

...

Text string

...

  • "On" - assert the RTS (Request To Send) signal

  • "Off" - clear the RTS signal (default)

  • "DTR" - assert the RTS signal as soon as the DTR signal is asserted

...

dsr

...

Text string

...

  • "On" - always reports DSR signal assertion

  • "Off" - always reports DSR signal deassertion

  • "DSR" - use the DSR signal of the physical serial line (if configured)

  • "CD", "DCD", "RLSD" - use the CD (carrier detect) signal of the physical serial line (if configured)

...

communication

...

Text string

...

  • "ASCII" - for connection to terminals  (default)

  • "BINARY" - for serial lines carrying binary (packet) protocols, which are used mainly for communicating with PLCs

...

line

...

Identifier

...

This parameter is used to connect a particular serial line mapping interface to the controller. It is applicable only to the additional console line TTA0

Example:

set COM2 line=TTA0

All the values in this table are case insensitive.

Example for OPA0:

set COM1 rts="DTR"
set COM1 dsr="On"
set COM1 communication="binary"

 

Example for TTA0:

set COM2 rts="DTR"
set COM2 dsr="On"
set COM2 communication="binary"

 

Back to Table of Contents

Mapping Serial line controllers to system resources

Types of serial line mapping

...

This type of mapping associates a COM port on a host system with an emulated HP Alpha serial line controller virtual "line".

The COM port can be a physical hardware port or a logical COM port.

...

Example:

load physical_serial_line TTA0

Back to Table of Contents

physical_serial_line

 

...

A defined COM port on a host system in the form of "\\.\COMn" (or "COM<n>:")

Example:

set OPA0 line="\\.\COM1"

...

Forces the baud rate of the corresponding COM port to be a specified value.

The variety of supported values depends on the underlying physical communication resource (COM port). The most widely used values are: 300, 1200, 9600, 19200, 38400.

Example:

set OPA0 baud=38400

...

Specifies what byte sequences received over the physical serial line will trigger a HALT command.

This parameter works only for the console line (for the one UART line and "line[3]" of QUART).

Specify the following values: "Crtl-P", "Break" or "none" ("none" disables triggering a HALT condition).

Example:

set OPA0 break_on="Crtl-P"

The default value is "Break" for line 3 of QUART and "none" for other lines.

...

Specifies what byte sequences received over the physical serial line will trigger a STOP condition. The STOP condition causes CHARON-AXP to exit.

Specify the one of the following values: “F6” or “none” ("none" disables triggering a STOP condition).

Example:

set OPA0 stop_on="F6"

The default value is "none".

Setting "F6" triggers the STOP condition upon receipt of the "<ESC>[17~" sequence. Terminals usually send these sequences by pressing the F6 button

...

A string specifying a file name to store the content of the console sessions or a directory where the log files for each individual session will be stored.

If an existing directory is specified, CHARON-AXP automatically enables creation of individual log files, one for each session using the same scheme as used for the generation of the rotating log files. If the "log" parameter is omitted, CHARON-AXP does not create a console log.

Examples:

set OPA0 log=”log.txt”

.

set OPA0 log=C:\Charon\Logs

Example of mapping a console line to a host physical serial line:

load physical_serial_line OPA0
set OPA0 line="\\.\COM1"

Back to Table of Contents

virtual_serial_line

...

A remote host’s IP address or hostname (and optionally a remote TCP/IP port number) for the virtual serial line connection. If omitted, the virtual serial line does not initiate a connection to the remote host and will listen for incoming connection requests.

Specify the value in the following form:

set OPA0 host="<host-name>[:<port-no>]"

If the "<port-no>" is not specified, the virtual serial line uses the TCP/IP port number specified by the "port" parameter (see below).

...

The TCP/IP port number for the virtual serial line. A virtual serial line always listens on this port for incoming connection requests.

...

An application (a terminal emulator is assumed in most cases) to be started on initialization of this serial line emulation. The specified application startup string may contain all required parameters.

Example:

set OPA application = "putty.exe -load OPA0"

In this example the terminal emulator application: "putty" is started with the parameters "-load OPA0" telling it to load a specific saved session named "OPA0", (created separately) from the host registry.

The "application" parameter is often combined with a "port" parameter:

set TTA0 port = 10003 application = "putty.exe -load TTA1"

...

Specifies what byte sequences received over a virtual serial line triggers a HALT command.

Specify one of the following values: "Crtl-P", "Break" or "none" to disable triggering a HALT condition. The commands are case insensitive.

Example:

set OPA0 break_on="Crtl-P"

The default value is "Break" for line 3 of QUART and "none" for other lines.

...

Specifies what byte sequences received over the virtual serial line will trigger a STOP condition. The STOP condition causes CHARON-AXP to exit.

Specify one of the following values: “F6” or “none” ("none" disables triggering a STOP condition). The commands are case insensitive.

Example:

set OPA0 stop_on="F6"

The default value is "none".

Setting "F6" triggers the STOP condition upon receipt of the "<ESC>[17~" sequence.

...

A string specifying the filename to store the content of the console sessions or a directory where log files for each individual session will be stored.

If an existing directory is specified, CHARON-AXP automatically enables the creation of individual log files, one for each session using the same scheme as used for the generation of the rotating log files. If the "log" parameter is omitted, CHARON-AXP does not create any console log.

Examples:

set OPA0 log=”log.txt”
set OPA0 log=”C:\Charon\Logs

Example of mapping a console line to a host TCP/IP port 10003 and starting a "Putty" terminal emulator with a configuration "OPA" directing it to connect to the port 10003:

load virtual_serial_line OPA0
set OPA port = 10003 application = "putty.exe -load OPA0"

Notes on "virtual_serial_line" options:

 

Use the combination of "port" and "host" parameters as follows to connect a 3rd party terminal emulator or similar program.

load virtual_serial_line TTA0 host="192.168.1.1" port=10000

In this example CHARON-AXP connects to port 10000 of a host with TCP/IP address "192.168.1.1" and at the same time it accepts connections on local port 10000.

     

It is possible to specify a port on a remote host (note that CHARON always acts as a server). The syntax is:

load virtual_serial_line TTA0 host="192.168.1.1:20000" port=10000

In this example CHARON-AXP accepts connection on local port 10000 and connects to remote port 20000 of a host with TCP/IP address "192.168.1.1"

Note: the examples above are mainly used for inter-CHARON communications. They are used to connect CHARON-AXP to an application that communicates to CHARON-AXP as described below.

Example of two CHARON systems connected to each other:

On host "A":

load virtual_serial_line TTA0 port=5500 host="B"

On host "B":

load virtual_serial_line TTA0 port=5500 host="A"

On these two hosts, executing CHARON-AXP, the two TTA0 lines connect to each other, thus creating a "serial" cable between the two emulated VAXes. The sequential order in which the instances of CHARON-AXP are started makes no difference.

...

connects to CHARON-AXP emulated PCI bus with the following configuration parameters:

bus

Parameterbus
TypeText string
Value

Value formats:

ModelsFormat
AlphaServer 400-4100, DS, ES"pci_<X>"
AlphaServer GS"qbb_<X>_pca_<Y>_pci_<Z>"

When specified, the bus configuration parameter tells the CHARON-AXP software the virtual PCI bus to which virtual HP Alpha system shall connect a certain virtual PCI adapter.

By default the bus configuration parameter is not specified.

If the bus configuration parameter is not specified, CHARON-AXP software connects the virtual PCI adapter to the first available virtual PCI bus.

Example (AlphaServer ES40):

load KZPBA PKA bus=pci_1

Example (AlphaServer GS80):

load KZPBA PKA bus=qbb_1_pca_1_pci_0


device

Parameterdevice
TypeNumeric
Value

When specified, the device configuration parameter specifies position of a virtual PCI adapter on virtual PCI bus.

By default the device configuration parameter is not specified.

If the device configuration parameter is not specified, the CHARON software connects the virtual PCI adapter at the first available position of the virtual PCI bus.

Example:

load KZPBA PKA device=2


function

Parameterfunction
TypeNumeric
Value

When specified, the function configuration parameter specifies position of a virtual PCI adapter on virtual PCI bus.

By default the function configuration parameter is not specified.

If the function configuration parameter is not specified, the CHARON software connects the virtual PCI a dapter at the first available position of the virtual PCI bus.

Example:

load KZPBA PKA function=0


irq_bus

Parameterirq_bus
TypeText string
Value

When specified, the "irq_bus" configuration parameter specifies virtual bus routing interrupt requests from virtual PCI adapter to CHARON-AXP virtual Alpha CPUs.

By default the "irq_bus" configuration parameter is not specified.

The "irq_bus" configuration parameter must be set to “isa” for AlphaServer 400. For HP Alpha systems other than AlphaServer 400 the "irq_bus" configuration parameter must be left as is (i.e. not specified).

Example:

load KZPBA PKA irq_bus=isa


irq

Parameterirq
TypeNumeric
Value

When specified, the "irq" configuration parameter assigns interrupt request to the virtual PCI adapter in HP Alpha system.

By default the irq configuration parameter is not specified.

If the irq configuration parameter is not specified, the CHARON-AXP software uses the correct values depending on the selected PCI position of a virtual PCI adapter.

Example:

load KZPBA PKA irq=24


Note that typically all or some of those parameters are specified on loading of some PCI controller in the following way:

load KZPBA PKA bus=pci_1 device=1 function=0 irq_bus=isa irq=24

Back to Table of Contents

Available PCI slots per each HP Alpha model emulated by CHARON-AXP

The tables below specifies a map of preloaded devices and available slots for each HP Alpha models emulated by CHARON-AXP.

AlphaServer 400 (3 PCI slots)

In addition to 3 PCI vacant slots there are 2 PCI positions occupied by on-board devices. All 5 PCI positions are listed in the following table in the order in which Alpha SRM console enumerates them.

Slotpci_<N>devicefunctionirqDescriptionPreloaded
Name
PCI0 (bus=pci_0)
-06011NCR 53C810 PCI SCSI AdapterPKA
-070-Intel i82378 PCI ISA Bridge (SATURN) 
0011010<option> 
1012015<option> 
201309<option> 

The IRQ stands for ISA IRQ Number because all interrupts are routed through the Intel i82378 PCI ISA Bridge (SATURN) resident cascade of Intel i8259 interrupt controllers.

So far the CHARON-AXP emulators do not support virtual NCR 53C810 PCI SCSI adapter. Instead, virtual QLOGIC ISP1040B PCI SCSI adapter is used.

(info) No support for Multi-Function PCI devices in AlphaServer 400.

Example: Loading DE435 into slot 0

load DE435/dec21x4x EWA bus=pci_0 device=11 function=0 irq_bus=isa

(info) The "irq_bus=isa" setting is specific to AlphaServer 400 only.

Back to Table of Contents

Div
classpagebreak

 

AlphaServer 800 (4 PCI slots)

In addition to 4 PCI vacant slots there are 3 PCI positions occupied by on-board devices. All 7 PCI positions are listed in the following table in the order in which Alpha SRM console enumerates them.

Slotpci_<N>devicefunctionirqDescription

Preloaded
Name

PCI0 (bus=pci_0)
-0500QLOGIC ISP1020 PCI SCSI AdapterPKA
-0600S3 Trio32/64 Display Adapter 
-070-Intel i82375 PCI EISA Bridge (MERCURY) 
001101<option> 
 12<option>, function 1 
217<option>, function 2 
318<option>, function 3 
101203<option> 
 14<option>, function 1 
219<option>, function 2 
320<option>, function 3 
201305<option> 
 16<option>, function 1 
221<option>, function 2 
322<option>, function 3 
301407<option> 
 18<option>, function 1 
223<option>, function 2 
324<option>, function 3 

The IRQ stands for input line of ASIC interrupt controllers. It has nothing to do with "EISA" style interrupts. So far, the CHARON-AXP emulators do not emulate S3 Trio32/64 Display Adapter. So position of the device 6, function 0 on the PCI 0 remains empty.

Example 1Loading DE500BA into slot 0

load DE500BA/dec21x4x EWA bus=pci_0 device=11 function=0

Example 2Loading multiple DE500BA’s into slot 3, populating all 4 functions (gives 4 Ethernet ports)

load DE500BA/dec21x4x EWA bus=pci_0 device=14 function=0
load DE500BA/dec21x4x EWB bus=pci_0 device=14 function=1
load DE500BA/dec21x4x EWC bus=pci_0 device=14 function=2
load DE500BA/dec21x4x EWD bus=pci_0 device=14 function=3

 

Div
classpagebreak

 

Example 3: Loading mixture of KZPBA and DE500BA into slot 1, populating 2 functions out of 4

load KZPBA PKB bus=pci_0 device=12 function=0
load DE500BA/dec21x4x EWA bus=pci_0 device=12 function=1

(info) In the above example device name is PKB as there is a built-in PK-like PCI SCSI Adapter located “closer” to CPU and therefore assigned name PKA.

Back to Table of Contents

Div
classpagebreak

 

AlphaServer 1000 (3 PCI slots)

In addition to 3 PCI vacant slots there are 2 PCI positions occupied by on-board devices. All 5 PCI positions are listed in the following table in the order in which Alpha SRM console enumerates them.

Slotpci_<N>devicefunctionirqDescriptionPreloaded
Name
PCI0 (bus=pci_0)
-06012NCR 53C810 PCI SCSI AdapterPKA
-070-Intel i82375 PCI EISA Bridge (MERCURY) 
001100<option> 
 11<option>, function 1 
22<option>, function 2 
33<option>, function 3 
101204<option> 
 15<option>, function 1 
26<option>, function 2 
37<option>, function 3 
201308<option> 
 19<option>, function 1 
210<option>, function 2 
311<option>, function 3 

The IRQ stands for input line of ASIC interrupt controllers. It has nothing to do with "EISA" style interrupts. So far, the CHARON-AXP emulators do not emulate NCR 53C810 PCI SCSI adapter. Instead, emulation of QLOGIC ISP1040B PCI SCSI adapter is used.

Example 1Loading DE500BA into slot 0

load DE500BA/dec21x4x EWA bus=pci_0 device=11 function=0

Example 2Loading multiple DE500BA’s into slot 0, populating all 4 functions (gives 4 Ethernet ports)

load DE500BA/dec21x4x EWA bus=pci_0 device=11 function=0
load DE500BA/dec21x4x EWB bus=pci_0 device=11 function=1
load DE500BA/dec21x4x EWC bus=pci_0 device=11 function=2
load DE500BA/dec21x4x EWD bus=pci_0 device=11 function=3

Example 3: Loading mixture of KZPBA and DE500BA into slot 2, populating 2 functions out of 4

load KZPBA PKB bus=pci_0 device=13 function=0
load DE500BA/dec21x4x EWA bus=pci_0 device=13 function=1

(info) In the above example device name is PKB as there is a built-in PK-like PCI SCSI Adapter located “closer” to CPU and therefore assigned name PKA.

Back to Table of Contents

Div
classpagebreak

 

AlphaServer 1000A (7 PCI slots)

In addition to 7 PCI vacant slots there are 3 PCI positions occupied by on-board devices. All 10 PCI positions are listed in the following table in the order in which Alpha SRM console enumerates them.

Slotpci_<N>devicefunctionirqDescriptionPreloaded
Name
PCI0 (bus=pci_0)
-060-Intel i82375 PCI EISA Bridge (MERCURY) 
-070-DECchip 21050 PCI-to-PCI Bridge) 
001101<option> 
 12<option>, function 1 
217<option>, function 2 
318<option>, function 3 
101202<option> 
 13<option>, function 1 
219<option>, function 2 
320<option>, function 3 
201303<option> 
 14<option>, function 1 
221<option>, function 2 
322

<option>, function 3

 
PCI1 (bus=pci_1)
-1000NCR 53C810 PCI SCSI AdapterPKA
31107<option> 
 18<option>, function 1 
223<option>, function 2 
324<option>, function 3 
41209<option> 
 110<option>, function 1 
225<option>, function 2 
326<option>, function 3 
513011<option> 
 112<option>, function 1 
227<option>, function 2 
328<option>, function 3 
614013<option> 
 114<option>, function 1 
229<option>, function 2 
330<option>, function 3 

The IRQ stands for input line of ASIC interrupt controllers. It has nothing to do with "EISA" style interrupts. So far, the CHARON-AXP emulators do not emulate NCR 53C810 PCI SCSI adapter. Instead, emulation of QLOGIC ISP1040B PCI SCSI adapter is used.

Example 1Loading DE500BA into slot 0

load DE500BA EWA bus=pci_0 device=11 function=0

Example 2Loading multiple DE500BA’s into slot 0, populating all 4 functions (gives 4 Ethernet ports)

load DE500BA EWA bus=pci_0 device=11 function=0
load DE500BA EWB bus=pci_0 device=11 function=1
load DE500BA EWC bus=pci_0 device=11 function=2
load DE500BA EWD bus=pci_0 device=11 function=3

Example 3: Loading mixture of KZPBA and DE500BA into slot 3, populating 2 functions out of 4

load KZPBA PKB bus=pci_1 device=1 function=0
load DE500BA EWA bus=pci_1 device=1 function=1

(info) In the above example device name is PKB as there is a built-in PK-like PCI SCSI Adapter located “closer” to CPU and therefore assigned name PKA.

Back to Table of Contents

Div
classpagebreak

 

AlphaServer 1200 (6 PCI slots)

In addition to 6 PCI vacant slots there are 2 PCI positions occupied by on-board devices. All 8 PCI positions are listed in the following table in the order in which Alpha SRM console enumerates them.

Slotpci_<N>devicefunctionirqDescriptionPreloaded
Name
PCI1 (bus=pci_1) 
-1104NCR 53C810 PCI SCSI AdapterPKA
01208<option> 
   19<option>, function 1 
   210<option>, function 2 
   311<option>, function 3 
113012<option> 
   113<option>, function 1 
   214<option>, function 2 
   316<option>, function 3 
214016<option> 
   117<option>, function 1 
   218<option>, function 2 
   319<option>, function 3 
PCI0 (bus=pci_0) 
-010-Intel i82375 PCI EISA Bridge (MERCURY) 
40208<option> 
   19<option>, function 1 
   210<option>, function 2 
   311<option>, function 3 
503012<option> 
   113<option>, function 1 
   214<option>, function 2 
   315<option>, function 3 
604016<option> 
   117<option>, function 1 
   218<option>, function 2 
   319<option>, function 3 

So far, the CHARON-AXP emulators do not emulate NCR 53C810 PCI SCSI adapter. Instead, emulation of QLOGIC ISP1040B PCI SCSI adapter is used.

Div
classpagebreak

 

Example 1Loading DE500BA into slot 4

load DE500BA/dec21x4x EWA bus=pci_0 device=2 function=0

Example 2Loading multiple DE500BA’s into slot 4, populating all 4 functions (gives 4 Ethernet ports)

load DE500BA/dec21x4x EWA bus=pci_0 device=2 function=0
load DE500BA/dec21x4x EWB bus=pci_0 device=2 function=1
load DE500BA/dec21x4x EWC bus=pci_0 device=2 function=2
load DE500BA/dec21x4x EWD bus=pci_0 device=2 function=3

Example 3: Loading mixture of KZPBA and DE500BA into slot 1, populating 2 functions out of 4

load KZPBA PKB bus=pci_1 device=2 function=0
load DE500BA/dec21x4x EWA bus=pci_1 device=2 function=1

(info) In the above example device name is PKB as there is a built-in PK-like PCI SCSI Adapter located “closer” to CPU and therefore assigned name PKA.

Back to Table of Contents

Div
classpagebreak

 

AlphaServer 2000 (3 PCI slots)

In addition to 3 PCI vacant slots there are 3 PCI positions occupied by on-board devices. All 6 PCI positions are listed in the following table in the order in which Alpha SRM console enumerates them.

Slotpci_<N>devicefunctionirqDescriptionPreloaded
Name
PCI0 (bus=pci_0)  
-0002DEC TULIP PCI Ethernet adapterEWA
-0101NCR 53C810 PCI SCSI AdapterPKA
-020-Intel i82375 PCI EISA Bridge (MERCURY) 
00600<option> 
 124<option>, function 1 
226<option>, function 2 
329<option>, function 3 
10704<option> 
 125<option>, function 1 
227<option>, function 2 
330<option>, function 3 
20805<option> 
 120<option>, function 1 
228<option>, function 2 
331<option>, function 3 

The IRQ stands for input line of T2 resident cascade of Intel i8259 interrupt controllers. It has nothing to do with “EISA” style interrupts.

So far the CHARON-AXP emulators do not support virtual NCR 53C810 PCI SCSI adapter. Instead, virtual QLOGIC ISP1040B PCI SCSI adapter is used.

Example 1Loading DE500BA into slot 0

load DE500BA/dec21x4x EWB bus=pci_0 device=6 function=0

Example 2Loading multiple DE500BA’s into slot 0, populating all 4 functions (gives 4 Ethernet ports)

load DE500BA/dec21x4x EWB bus=pci_0 device=6 function=0
load DE500BA/dec21x4x EWC bus=pci_0 device=6 function=1
load DE500BA/dec21x4x EWD bus=pci_0 device=6 function=2
load DE500BA/dec21x4x EWE bus=pci_0 device=6 function=3

(info) In the above examples device name is EWB as there is a built-in EW-like PCI Ethernet Adapter located “closer” to CPU and therefore assigned name EWA.

Example 3: Loading mixture of KZPBA and DE500BA into slot 1, populating 2 functions out of 4

load KZPBA PKB bus=pci_0 device=7 function=0
load DE500BA/dec21x4x EWB bus=pci_0 device=7 function=1

(info) In the above example device name is PKB as there is a built-in PK-like PCI SCSI Adapter located “closer” to CPU and therefore assigned name PKA, and device name is EWB as there is a built-in EW-like PCI Ethernet Adapter located “closer” to CPU and therefore assigned name EWA.

Back to Table of Contents

Div
classpagebreak

 

AlphaServer 2100 (3 PCI slots)

In addition to 3 PCI vacant slots there are 3 PCI positions occupied by on-board devices. All 6 PCI positions are listed in the following table in the order in which Alpha SRM console enumerates them.

Slotpci_<N>devicefunctionirqDescriptionPreloaded
Name
PCI0 (bus=pci_0)    
-0002DEC TULIP PCI Ethernet adapterEWA
-0101NCR 53C810 PCI SCSI AdapterPKA
-020-Intel i82375 PCI EISA Bridge (MERCURY) 
00600<option> 
 124<option>, function 1 
226<option>, function 2 
329<option>, function 3 
10704<option> 
 125<option>, function 1 
227<option>, function 2 
330<option>, function 3 
20805<option> 
 120<option>, function 1 
228<option>, function 2 
331<option>, function 3 

The IRQ stands for input line of T2 resident cascade of Intel i8259 interrupt controllers. It has nothing to do with “EISA” style interrupts.

So far the CHARON-AXP emulators do not support virtual NCR 53C810 PCI SCSI adapter. Instead, virtual QLOGIC ISP1040B PCI SCSI adapter is used.

Example 1Loading DE500BA into slot 0

load DE500BA/dec21x4x EWB bus=pci_0 device=6 function=0

Example 2Loading multiple DE500BA’s into slot 0, populating all 4 functions (gives 4 Ethernet ports)

load DE500BA/dec21x4x EWB bus=pci_0 device=6 function=0
load DE500BA/dec21x4x EWC bus=pci_0 device=6 function=1
load DE500BA/dec21x4x EWD bus=pci_0 device=6 function=2
load DE500BA/dec21x4x EWE bus=pci_0 device=6 function=3

(info) In the above examples device name is EWB as there is a built-in EW-like PCI Ethernet Adapter located “closer” to CPU and therefore assigned name EWA.

Example 3: Loading mixture of KZPBA and DE500BA into slot 1, populating 2 functions out of 4

load KZPBA PKB bus=pci_0 device=7 function=0
load DE500BA/dec21x4x EWB bus=pci_0 device=7 function=1

(info) In the above example device name is PKB as there is a built-in PK-like PCI SCSI Adapter located “closer” to CPU and therefore assigned name PKA, and device name is EWB as there is a built-in EW-like PCI Ethernet Adapter located “closer” to CPU and therefore assigned name EWA.

Back to Table of Contents

Div
classpagebreak

 

AlphaServer 4000 (16 PCI slots)

In addition to 16 PCI vacant slots there are 2 PCI positions occupied by on-board devices. All 18 PCI positions are listed in the following table in the order in which Alpha SRM console enumerates them.

Slotpci_<N>devicefunctionirqDescriptionPreloaded
Name
PCI1 (bus=pci_1)    
-1104NCR 53C810 PCI SCSI AdapterPKA
11208<option> 
 19<option>, function 1 
210<option>, function 2 
311<option>, function 3 
213012<option> 
 113<option>, function 1 
214<option>, function 2 
315<option>, function 3 
314016<option> 
 117<option>, function 1 
218<option>, function 2 
319<option>, function 3 
415020<option> 
 121<option>, function 1 
222<option>, function 2 
323<option>, function 3 
PCI0 (bus=pci_0)    
-010-Intel i82375 PCI EISA Bridge (MERCURY) 
50208<option> 
 19<option>, function 1 
210<option>, function 2 
311<option>, function 3 
603012<option> 
 113<option>, function 1 
214<option>, function 2 
315<option>, function 3 
704016<option> 
 117<option>, function 1 
218<option>, function 2 
319<option>, function 3 
805020<option> 
 121<option>, function 1 
222<option>, function 2 
323<option>, function 3 
PCI3 (bus=pci_3)    
93208<option> 
 19<option>, function 1 
210<option>, function 2 
311<option>, function 3 
1033012<option> 
 113<option>, function 1 
214<option>, function 2 
315<option>, function 3 
1134016<option> 
 117<option>, function 1 
218<option>, function 2 
319<option>, function 3 
1235020<option> 
 121<option>, function 1 
222<option>, function 2 
323<option>, function 3 
PCI2 (bus=pci_2)    
132208<option> 
 19<option>, function 1 
210<option>, function 2 
311<option>, function 3 
1423012<option> 
 113<option>, function 1 
214<option>, function 2 
315<option>, function 3 
1524016<option> 
 117<option>, function 1 
218<option>, function 2 
319<option>, function 3 
1625020<option> 
 121<option>, function 1 
222<option>, function 2 
323<option>, function 3 

So far the CHARON-AXP emulators do not support virtual NCR 53C810 PCI SCSI adapter. Instead, virtual QLOGIC ISP1040B PCI SCSI adapter is used.

Div
classpagebreak

 

Example 1Loading DE500BA into slot 4

load DE500BA/dec21x4x EWA bus=pci_1 device=5 function=0

Example 2Loading multiple DE500BA’s into slot 4, populating all 4 functions (gives 4 Ethernet ports)

load DE500BA/dec21x4x EWA bus=pci_1 device=5 function=0
load DE500BA/dec21x4x EWB bus=pci_1 device=5 function=1
load DE500BA/dec21x4x EWC bus=pci_1 device=5 function=2
load DE500BA/dec21x4x EWD bus=pci_1 device=5 function=3

Example 3: Loading mixture of KZPBA and DE500BA into slot 1, populating 2 functions out of 4

load KZPBA PKB bus=pci_1 device=2 function=0
load DE500BA/dec21x4x EWA bus=pci_1 device=2 function=1

(info) In the above example device name is PKB as there is a built-in PK-like PCI SCSI Adapter located “closer” to CPU and therefore assigned name PKA.

Back to Table of Contents

Div
classpagebreak

 

AlphaServer 4100 (8 PCI slots)

In addition to 8 PCI vacant slots there are 2 PCI positions occupied by on-board devices. All 10 PCI positions are listed in the following table in the order in which Alpha SRM console enumerates them.

Slotpci_<N>devicefunctionirqDescriptionPreloaded
Name
PCI1 (bus=pci_1) 
-1104NCR 53C810 PCI SCSI AdapterPKA
11208<option> 
 19<option>, function 1 
210<option>, function 2 
311<option>, function 3 
213012<option> 
 113<option>, function 1 
214<option>, function 2 
315<option>, function 3 
314016<option> 
 117<option>, function 1 
218<option>, function 2 
319<option>, function 3 
415020<option> 
 121<option>, function 1 
222<option>, function 2 
323<option>, function 3 
PCI0 (bus=pci_0) 
-010-Intel i82375 PCI EISA Bridge (MERCURY) 
50208<option> 
 19<option>, function 1 
210<option>, function 2 
311<option>, function 3 
603012<option> 
 113<option>, function 1 
214<option>, function 2 
315<option>, function 3 
704016<option> 
 117<option>, function 1 
218<option>, function 2 
319<option>, function 3 
805020<option> 
 121<option>, function 1 
222<option>, function 2 
323<option>, function 3 

So far the CHARON-AXP emulators do not support virtual NCR 53C810 PCI SCSI adapter. Instead, virtual QLOGIC ISP1040B PCI SCSI adapter is used.

Example 1Loading DE500BA into slot 4

load DE500BA/dec21x4x EWA bus=pci_1 device=5 function=0

Example 2Loading multiple DE500BA’s into slot 4, populating all 4 functions (gives 4 Ethernet ports)

load DE500BA/dec21x4x EWA bus=pci_1 device=5 function=0
load DE500BA/dec21x4x EWB bus=pci_1 device=5 function=1
load DE500BA/dec21x4x EWC bus=pci_1 device=5 function=2
load DE500BA/dec21x4x EWD bus=pci_1 device=5 function=3

Example 3: Loading mixture of KZPBA and DE500BA into slot 1, populating 2 functions out of 4

load KZPBA PKB bus=pci_1 device=2 function=0
load DE500BA/dec21x4x EWA bus=pci_1 device=2 function=1

(info) In the above example device name is PKB as there is a built-in PK-like PCI SCSI Adapter located “closer” to CPU and therefore assigned name PKA.

Back to Table of Contents

Div
classpagebreak

 

AlphaServer DS10 (4 PCI slots)

In addition to 4 PCI vacant slots there are 5 PCI positions occupied by on-board devices. All 9 PCI positions are listed in the following table in the order in which Alpha SRM console enumerates them.

Slotpci_<N>devicefunctionirqDescriptionPreloaded
Name
PCI1 (bus=pci_0)  
-070-ALi M1543C PCI ISA bridge 
-09029DECchip 21143 PCI Ethernet AdapterEWA
-011030DECchip 21143 PCI Ethernet AdapterEWB
-0130- ALi M1543C PCI IDE/ATAPI controllerDQA, DQB
1014035<option> 
 134<option>, function 1 
233<option>, function 2 
332<option>, function 3 
2015039<option> 
 138<option>, function 1 
237<option>, function 2 
336<option>, function 3 
3016043<option> 
 142<option>, function 1 
241<option>, function 2 
340<option>, function 3 
4017047<option> 
 146<option>, function 1 
245<option>, function 2 
344<option>, function 3 
-019011ALi M1543C PCI USB adapter 

Example 1Loading DE500BA into slot 1

load DE500BA/dec21x4x EWC bus=pci_0 device=14 function=0


Div
classpagebreak

 

Example 2Loading multiple DE500BA’s into slot 1, populating all 4 functions (gives 4 Ethernet ports)

load DE500BA/dec21x4x EWC bus=pci_0 device=14 function=0
load DE500BA/dec21x4x EWD bus=pci_0 device=14 function=1
load DE500BA/dec21x4x EWE bus=pci_0 device=14 function=2
load DE500BA/dec21x4x EWF bus=pci_0 device=14 function=3 

(info) In the above examples device name is EWC as there are built-in EW-like PCI Ethernet Adapters located “closer” to CPU and therefore assigned names EWA and EWB.

Example 3: Loading mixture of KZPBA and DE500BA into slot 1, populating 2 functions out of 4

load KZPBA PKB bus=pci_0 device=14 function=0
load DE500BA/dec21x4x EWC bus=pci_0 device=14 function=1

(info)  In the above example device name is PKB as there is a built-in PK-like PCI SCSI Adapter located “closer” to CPU and therefore assigned name PKA, as there are two built-in EW-like PCI Ethernet Adapters located “closer” to CPU and therefore assigned names EWA and EWB.

Back to Table of Content

Div
classpagebreak

 

AlphaServer DS10L (1 PCI slot)

In addition to 1 PCI vacant slots there are 5 PCI positions occupied by on-board devices. All 6 PCI positions are listed in the following table in the order in which Alpha SRM console enumerates them.

Slotpci_<N>devicefunctionirqDescriptionPreloaded
Name
PCI1 (bus=pci_0)  
-070-ALi M1543C PCI ISA bridge 
-09029DECchip 21143 PCI Ethernet AdapterEWA
-011030DECchip 21143 PCI Ethernet AdapterEWB
-0130- ALi M1543C PCI IDE/ATAPI controllerDQA, DQB
1017047<option> 
 146<option>, function 1 
245<option>, function 2 
344<option>, function 3 
-019011ALi M1543C PCI USB adapter 

Example 1Loading DE500BA into slot 1

load DE500BA/dec21x4x EWC bus=pci_0 device=17 function=0

Example 2Loading multiple DE500BA’s into slot 1, populating all 4 functions (gives 4 Ethernet ports)

load DE500BA/dec21x4x EWC bus=pci_0 device=17 function=0
load DE500BA/dec21x4x EWD bus=pci_0 device=17 function=1
load DE500BA/dec21x4x EWE bus=pci_0 device=17 function=2
load DE500BA/dec21x4x EWF bus=pci_0 device=17 function=3

(info) In the above examples device name is EWC as there are built-in EW-like PCI Ethernet Adapters located “closer” to CPU and therefore assigned names EWA and EWB.

Example 3: Loading mixture of KZPBA and DE500BA into slot 1, populating 2 functions out of 4

load KZPBA PKB bus=pci_0 device=17 function=0
load DE500BA/dec21x4x EWC bus=pci_0 device=17 function=1

(info)  In the above example device name is PKB as there is a built-in PK-like PCI SCSI Adapter located “closer” to CPU and therefore assigned name PKA, as there are two built-in EW-like PCI Ethernet Adapters located “closer” to CPU and therefore assigned names EWA and EWB

Back to Table of Content

Div
classpagebreak

 

AlphaServer DS15 (4 PCI slots)

In addition to 4 PCI vacant slots there are 7 PCI positions occupied by on-board devices. All 11 PCI positions are listed in the following table in the order in which Alpha SRM console enumerates them.

Slotpci_<N>devicefunctionirqDescriptionPreloaded
Name
PCI0 (bus=pci_0)
-070-ALi M1543C PCI ISA bridge 
-080-Adaptec AIC-7899 (channel 0)PKA
 1-Adaptec AIC-7899 (channel 1)PKB
-090-Intel i82559 PCI Ethernet AdapterEIA (EWA)
-0100-Intel i82559 PCI Ethernet AdapterEIB (EWB)
-0130-ALi M1543C PCI IDE/ATAPI controllerDQA, DQB
-0190-ALi M1543C PCI USB adapter 
PCI2 (bus=pci_2)
127040<option> 
 141<option>, function 1 
242<option>, function 2 
343<option>, function 3 
228036<option> 
 137<option>, function 1 
238<option>, function 2 
339<option>, function 3 
329024<option> 
 125<option>, function 1 
226<option>, function 2 
327<option>, function 3 
4210020<option> 
 121<option>, function 1 
222<option>, function 2 
323<option>, function 3 

The IRQ stands for bit position in DRIR of TITAN chip. It has nothing to do with “ISA” style interrupts which are routed to IRQ 55 (including ALi M1543C PCI IDE/ATAPI controller).

So far the CHARON-AXP emulators do not emulate Adaptec AIC-7899. Instead, emulation of QLOGIC ISP1040B is used.

So far the CHARON-AXP emulators do not emulate Intel i82559. Instead, emulation of DECchip 21143 is used.

So far the CHARON-AXP emulators do not emulate ALi M1543C PCI USB adapter. So position of the device 19, function 0 on the PCI 0 remains empty.

Div
classpagebreak

 

Example 1Loading DE500BA into slot 1

load DE500BA/dec21x4x EWC bus=pci_2 device=7 function=0

Example 2Loading multiple DE500BA’s into slot 2, populating all 4 functions (gives 4 Ethernet ports)

load DE500BA/dec21x4x EWC bus=pci_2 device=8 function=0
load DE500BA/dec21x4x EWD bus=pci_2 device=8 function=1
load DE500BA/dec21x4x EWE bus=pci_2 device=8 function=2
load DE500BA/dec21x4x EWF bus=pci_2 device=8 function=3

(info) In the above examples device name is EWC as there are built-in EW-like PCI Ethernet Adapters located “closer” to CPU and therefore assigned names EWA and EWB.

Example 3: Loading mixture of KZPBA and DE500BA into slot 3, populating 2 functions out of 4

load KZPBA PKC bus=pci_2 device=9 function=0
load DE500BA/dec21x4x EWC bus=pci_2 device=9 function=1

(info)  In the above example device name is PKC as there are 2 built-in PK-like PCI SCSI Adapter located “closer” to CPU and therefore assigned name PKA and PKB, as there are two built-in EW-like PCI Ethernet Adapters located “closer” to CPU and therefore assigned names EWA and EWB

Back to Table of Content

Div
classpagebreak

 

AlphaServer DS20 (6 PCI slots)

In addition to 6 PCI vacant slots there are 5 PCI positions occupied by on-board devices. All 11 PCI positions are listed in the following table in the order in which Alpha SRM console enumerates them.

Slotpci_<N>devicefunctionirqDescriptionPreloaded
Name
PCI1 (bus=pci_1)
417047<option> 
 146<option>, function 1 
245<option>, function 2 
344<option>, function 3 
518043<option> 
 142<option>, function 1 
241<option>, function 2 
349<option>, function 3 
619039<option> 
 138<option>, function 1 
237<option>, function 2 
336<option>, function 3 
PCI0 (bus=pci_0)
-050-ALi M1543C PCI ISA bridge 
-06019Adaptec AIC-7895 (channel 0)PKA
 118 Adaptec AIC-7895 (channel 1)PKB
-0150-ALi M1543C PCI IDE/ATAPI controllerDQA, DQB
-0190-ALi M1543C PCI USB adapter 
107031<option> 
 130<option>, function 1 
229<option>, function 2 
328<option>, function 3 
208027<option> 
 126<option>, function 1 
225<option>, function 2 
324<option>, function 3 
309023<option> 
 122<option>, function 1 
221<option>, function 2 
320<option>, function 3 

The IRQ stands for bit position in DRIR of Tsunami/Typhoon Chip. It has nothing to do with “ISA” style interrupts which are routed to IRQ 55 (including ALi M1543C PCI IDE/ATAPI controller).

Unless SCSI option is plugged into PCI slot 4, 5, or 6, the onboard SCSI controllers appear as PKA (pka7.0.0.6.0) and PKB (pkb7.0.0.106.0) respectively.

So far the CHARON-AXP emulators do not support virtual Adaptec AIC-7895 PCI SCSI adapter. Instead, virtual QLOGIC ISP1040B PCI SCSI adapter is used.

So far the CHARON-AXP emulators do not support virtual ALi M1543C PCI USB adapter. So position of the device 19, function 0 on the PCI 0 remains empty

Example 1Loading DE500BA into slot 4

load DE500BA/dec21x4x EWA bus=pci_1 device=7 function=0

Example 2Loading multiple DE500BA’s into slot 4, populating all 4 functions (gives 4 Ethernet ports)

load DE500BA/dec21x4x EWA bus=pci_1 device=7 function=0
load DE500BA/dec21x4x EWB bus=pci_1 device=7 function=1
load DE500BA/dec21x4x EWC bus=pci_1 device=7 function=2
load DE500BA/dec21x4x EWD bus=pci_1 device=7 function=3

Example 3: Loading mixture of KZPBA and DE500BA into slot 1, populating 2 functions out of 4

load KZPBA PKC bus=pci_0 device=7 function=0
load DE500BA/dec21x4x EWA bus=pci_0 device=7 function=1

(info) In the above example device name is PKC as there are two built-in PK-like PCI SCSI Adapters located “closer” to CPU and therefore assigned names PKA and PKB.

Back to Table of Content

Div
classpagebreak

 

AlphaServer DS25 (6 PCI slots)

In addition to 6 PCI vacant slots there are 7 PCI positions occupied by on-board devices. All 13 PCI positions are listed in the following table in the order in which Alpha SRM console enumerates them.

Slotpci_<N>devicefunctionirqDescriptionPreloaded
Name
PCI0 (bus=pci_0)
-070-ALi M1543C PCI ISA bridge 
-080-Intel i82559 PCI Ethernet AdapterEIA (EWA)
109024<option> 
 125<option>, function 1 
226<option>, function 2 
327<option>, function 3 
2010012<option> 
 113<option>, function 1 
214<option>, function 2 
315<option>, function 3 
-0160-ALi M1543C PCI IDE/ATAPI controllerDQA, DQB
-0191-ALi M1543C PCI USB adapter 
PCI1 (bus=pci_1)
311028<option> 
 129<option>, function 1 
230<option>, function 2 
331<option>, function 3 
412032<option> 
 133<option>, function 1 
234<option>, function 2 
335<option>, function 3 
PCI2 (bus=pci_2)
-210-Adaptec AIC-7899 (channel 0)PKA
 1-Adaptec AIC-7899 (channel 1)PKB
-250-BroadCom BCM5703 PCI Ethernet AdapterEIB (EWB)
PCI3 (bus=pci_3)
531036<option> 
 137<option>, function 1 
238<option>, function 2 
339<option>, function 3 
632040<option> 
 141<option>, function 1 
242<option>, function 2 
343<option>, function 3 

The IRQ stands for bit position in DRIR of TITAN Chip. It has nothing to do with “ISA” style interrupts which are routed to IRQ 55 (including ALi M1543C PCI IDE/ATAPI controller).

So far the CHARON-AXP emulators do not emulate Intel i82559. Instead, emulation of DECchip 21143 is used.

So far the CHARON-AXP emulators do not emulate ALi M1543C PCI USB adapter. So position of the device 19, function 0 on the PCI 0 remains empty.

Unless SCSI option is plugged into PCI slot 1, 2, 3, or 4, the onboard SCSI controllers appear as PKA (pka7.0.0.1.2) and PKB (pkb7.0.0.101.2) respectively.

So far the CHARON-AXP emulators do not emulate Adaptec AIC-7899. Instead, emulation of QLOGIC ISP1040B is used.

So far the CHARON-AXP emulators do not emulate BroadCom BCM5703. Instead, emulation of DECchip 21143 is used.

Example 1Loading DE500BA into slot 5

load DE500BA/dec21x4x EWC bus=pci_3 device=1 function=0

Example 2Loading multiple DE500BA’s into slot 5, populating all 4 functions (gives 4 Ethernet ports)

load DE500BA/dec21x4x EWC bus=pci_3 device=1 function=0
load DE500BA/dec21x4x EWD bus=pci_3 device=1 function=1
load DE500BA/dec21x4x EWE bus=pci_3 device=1 function=2
load DE500BA/dec21x4x EWF bus=pci_3 device=1 function=3

(info) In the above examples device name is EWC as there are built-in EW-like PCI Ethernet Adapters located “closer” to CPU and therefore assigned names EWA and EWB.

Example 3: Loading mixture of KZPBA and DE500BA into slot 6, populating 2 functions out of 4

load KZPBA PKC bus=pci_3 device=2 function=0
load DE500BA/dec21x4x EWC bus=pci_3 device=2 function=1

(info)  In the above example device name is PKB as there is a built-in PK-like PCI SCSI Adapter located “closer” to CPU and therefore assigned name PKA, as there are two built-in EW-like PCI Ethernet Adapters located “closer” to CPU and therefore assigned names EWA and EWB

Back to Table of Content

Div
classpagebreak

 

AlphaServer ES40 (10 PCI slots)

In addition to 10 PCI vacant slots there are 3 PCI positions occupied by on-board devices. All 13 PCI positions are listed in the following table in the order in which Alpha SRM console enumerates them.

Slotpci_<N>devicefunctionirqDescriptionPreloaded
Name
PCI1 (bus=pci_1)
511024<option> 
 125<option>, function 1 
226<option>, function 2 
327<option>, function 3 
612028<option> 
 129<option>, function 1 
230<option>, function 2 
331<option>, function 3 
713032<option> 
 133<option>, function 1 
234<option>, function 2 
335<option>, function 3 
814036<option> 
 137<option>, function 1 
238<option>, function 2 
339<option>, function 3 
915040<option> 
 141<option>, function 1 
242<option>, function 2 
343<option>, function 3 
1016044<option> 
 145<option>, function 1 
246<option>, function 2 
347<option>, function 3 
PCI0 (bus=pci_0)
10108<option> 
 19<option>, function 1 
210<option>, function 2 
311<option>, function 3 
202012<option> 
 113<option>, function 1 
214<option>, function 2 
315<option>, function 3 
303116<option> 
 117<option>, function 1 
218<option>, function 2 
319<option>, function 3 
404020<option> 
 121<option>, function 1 
222<option>, function 2 
323<option>, function 3 
-050-ALi M1543C PCI ISA bridge 
-0150-ALi M1543C PCI ISA bridgeDQA, DQB
-0190-ALi M1543C PCI USB adapter 

The IRQ stands for bit position in DRIR of Tsunami/Typhoon chip. It has nothing to do with “ISA” style interrupts which are routed to IRQ 55 (including ALi M1543C PCI IDE/ATAPI controller).

So far the CHARON-AXP emulators do not support virtual ALi M1543C PCI USB adapter. So position of the device 19, function 0 on the PCI 0 remains empty.

Example 1Loading DE500BA into slot 5

load DE500BA/dec21x4x EWA bus=pci_1 device=1 function=0

Example 2Loading multiple DE500BA’s into slot 5, populating all 4 functions (gives 4 Ethernet ports)

load DE500BA/dec21x4x EWA bus=pci_1 device=1 function=0
load DE500BA/dec21x4x EWB bus=pci_1 device=1 function=1
load DE500BA/dec21x4x EWC bus=pci_1 device=1 function=2
load DE500BA/dec21x4x EWD bus=pci_1 device=1 function=3

Example 3: Loading mixture of KZPBA and DE500BA into slot 1, populating 2 functions out of 4

load KZPBA PKA bus=pci_0 device=1 function=0
load DE500BA/dec21x4x EWA bus=pci_0 device=1 function=1

Back to Table of Content

Div
classpagebreak

 

AlphaServer ES45 (10 PCI slots)

In addition to 10 PCI vacant slots there are 3 PCI positions occupied by on-board devices. All 13 PCI positions are listed in the following table in the order in which Alpha SRM console enumerates them.

Slotpci_<N>devicefunctionirqDescriptionPreloaded
Name
PCI0 (bus=pci_0)
-070-ALi M1543C PCI ISA bridge 
108020<option> 
 121<option>, function 1 
222<option>, function 2 
323<option>, function 3 
209024<option> 
 125<option>, function 1 
226<option>, function 2 
327<option>, function 3 
3010012<option> 
 113<option>, function 1 
214<option>, function 2 
315<option>, function 3 
4011016<option> 
 117<option>, function 1 
218<option>, function 2 
319<option>, function 3 
-0160-ALi M1543C PCI IDE/ATAPI controllerDQA, DQB
-0190-ALi M1543C PCI USB adapter 
PCI1 (bus=pci_1)
511028<option> 
 129<option>, function 1 
230<option>, function 2 
331<option>, function 3 
612032<option> 
 133<option>, function 1 
234<option>, function 2 
335<option>, function 3 
PCI2 (bus=pci_2)     
72100<option> 
 11<option>, function 1 
22<option>, function 2 
33<option>, function 3 
82204<option> 
 15<option>, function 1 
26<option>, function 2 
37<option>, function 3 
PCI3 (bus=pci_3)     
931036<option> 
 137<option>, function 1 
238<option>, function 2 
339<option>, function 3 
1032040<option> 
 141<option>, function 1 
242<option>, function 2 
343<option>, function 3 

The IRQ stands for bit position in DRIR of TITAN chip. It has nothing to do with “ISA” style interrupts which are routed to IRQ 55 (including ALi M1543C PCI IDE/ATAPI controller).

So far the CHARON-AXP emulators do not support virtual ALi M1543C PCI USB adapter. So position of the device 19, function 0 on the PCI 0 remains empty.

Example 1Loading DE500BA into slot 5

load DE500BA/dec21x4x EWA bus=pci_1 device=1 function=0

Example 2Loading multiple DE500BA’s into slot 5, populating all 4 functions (gives 4 Ethernet ports)

load DE500BA/dec21x4x EWA bus=pci_1 device=1 function=0
load DE500BA/dec21x4x EWB bus=pci_1 device=1 function=1
load DE500BA/dec21x4x EWC bus=pci_1 device=1 function=2
load DE500BA/dec21x4x EWD bus=pci_1 device=1 function=3

Example 3: Loading mixture of KZPBA and DE500BA into slot 1, populating 2 functions out of 4

load KZPBA PKA bus=pci_0 device=8 function=0
load DE500BA/dec21x4x EWA bus=pci_0 device=8 function=1

Back to Table of Content

AlphaServer GS80 (8 PCI busses)

Slotpci_<N>devicefunctionirqDescriptionPreloaded
Name
QBB0.PCA0.PCI0 (bus=qbb_0_pca_0_pci_0)
0/101036QLOGIC ISP1040B PCI SCSI AdapterPKA
202040<option> 
303044<option> 
-070-ALi M1543C PCI ISA bridge 
-0150- ALi M1543C PCI IDE/ATAPI controllerDQA
-0190-ALi M1543C PCI USB adapter 
QBB0.PCA0.PCI1 (bus=qbb_0_pca_0_pci_1)  
414048<option> 
515052<option> 
616056<option> 
717060<option> 
QBB0.PCA1.PCI0 (bus=qbb_0_pca_1_pci_0)
0/120032<option> 
222040<option> 
323044<option> 
QBB0.PCA1.PCI1 (bus=qbb_0_pca_1_pci_1)
434048<option> 
535052<option> 
636056<option> 
737060<option> 
QBB1.PCA0.PCI0 (bus=qbb_1_pca_0_pci_0)
0/180032<option> 
282040<option> 
383044<option> 
QBB1.PCA0.PCI1 (bus=qbb_1_pca_0_pci_1)
494048<option> 
595052<option> 
696056<option> 
797060<option> 
QBB1.PCA1.PCI0 (bus=qbb_1_pca_1_pci_0)
0/1100032<option> 
2102040<option> 
3103044<option> 
QBB1.PCA1.PCI1 (bus=qbb_1_pca_1_pci_1)
4114048<option> 
5115052<option> 
6116056<option> 
7117060<option> 

PCI 2 and 3 on each QBB are not populated.

So far the CHARON-AXP emulators do not support virtual ALi M1543C PCI USB adapter. So position of the device 19, function 0 on the PCI 0 remains empty.

Total number of PCI devices configured through CFG file may not exceed 20.

ExampleLoading DE500BA into slot 2 of QBB0.PCA0

load DE500BA/dec21x4x EWA bus=qbb_0_pca_0_pci_0 device=2 function=0

Back to Table of Content

AlphaServer GS160 (16 PCI busses)

Slotpci_<N>devicefunctionirqDescriptionPreloaded
Name
QBB0.PCA0.PCI0 (bus=qbb_0_pca_0_pci_0)
0/101036QLOGIC ISP1040B PCI SCSI AdapterPKA
202040<option> 
303044<option> 
-070-ALi M1543C PCI ISA bridge 
-0150- ALi M1543C PCI IDE/ATAPI controllerDQA
-0190-ALi M1543C PCI USB adapter 
QBB0.PCA0.PCI1 (bus=qbb_0_pca_0_pci_1)
414048<option> 
515052<option> 
616056<option> 
717060<option> 
QBB0.PCA1.PCI0 (bus=qbb_0_pca_1_pci_0)
0/120032<option> 
222040<option> 
323044<option> 
QBB0.PCA1.PCI1 (bus=qbb_0_pca_1_pci_1)
434048<option> 
535052<option> 
636056<option> 
737060<option> 
QBB1.PCA0.PCI0 (bus=qbb_1_pca_0_pci_0)
0/180032<option> 
282040<option> 
383044<option> 
QBB1.PCA0.PCI1 (bus=qbb_1_pca_0_pci_1)
494048<option> 
595052<option> 
696056<option> 
797060<option> 
QBB1.PCA1.PCI0 (bus=qbb_1_pca_1_pci_0)
0/1100032<option> 
2102040<option> 
3103044<option> 
QBB1.PCA1.PCI1 (bus=qbb_1_pca_1_pci_1)
4114048<option> 
5115052<option> 
6116056<option> 
7117060<option> 
QBB2.PCA0.PCI0 (bus=qbb_2_pca_0_pci_0)
0/1160032<option> 
2162040<option> 
3163044<option> 
QBB2.PCA0.PCI1 (bus=qbb_2_pca_0_pci_1)
4174048<option> 
5175052<option> 
6176056<option> 
7177060<option> 
QBB2.PCA1.PCI0 (bus=qbb_2_pca_1_pci_0)
0/1180032<option> 
2182040<option> 
3183044<option> 
QBB2.PCA1.PCI1 (bus=qbb_2_pca_1_pci_1)
4194048<option> 
5195052<option> 
6196056<option> 
7197060<option> 
QBB3.PCA0.PCI0 (bus=qbb_3_pca_0_pci_0)
0/1240032<option> 
2242040<option> 
3243044<option> 
QBB3.PCA0.PCI1 (bus=qbb_3_pca_0_pci_1)
4254048<option> 
5255052<option> 
6256056<option> 
7257060<option> 
QBB3.PCA1.PCI0 (bus=qbb_3_pca_1_pci_0)
0/1260032<option> 
2262040<option> 
3263044<option> 
QBB0.PCA0.PCI1 (bus=qbb_0_pca_0_pci_1) 
4274048<option> 
5275052<option> 
6276056<option> 
7277060<option> 

PCA 2 and 3 on each QBB are not populated in emulator.

So far the CHARON-AXP emulators do not emulate ALi M1543C PCI USB adapter. So position of the device 19, function 0 on the PCI 0 on QBB 0 remains empty.

Total number of PCI devices configured through CFG file may not exceed 20.

ExampleLoading DE500BA into slot 2 of QBB0.PCA0

load DE500BA/dec21x4x EWA bus=qbb_0_pca_0_pci_0 device=2 function=0

Back to Table of Content

AlphaServer GS320 (32 PCI busses)

Slotpci_<N>devicefunctionirqDescriptionPreloaded
Name
QBB0.PCA0.PCI0 (bus=qbb_0_pca_0_pci_0) 
0/101036QLOGIC ISP1040B PCI SCSI AdapterPKA
202040<option> 
303044<option> 
-070-ALi M1543C PCI ISA bridge 
-0150- ALi M1543C PCI IDE/ATAPI controllerDQA
-0190-ALi M1543C PCI USB adapter 
QBB0.PCA0.PCI1 (bus=qbb_0_pca_0_pci_1)
414048<option> 
515052<option> 
616056<option> 
717060<option> 
QBB0.PCA1.PCI0 (bus=qbb_0_pca_1_pci_0)
0/120032<option> 
222040<option> 
323044<option> 
QBB0.PCA1.PCI1 (bus=qbb_0_pca_1_pci_1)
434048<option> 
535052<option> 
636056<option> 
737060<option> 
QBB1.PCA0.PCI0 (bus=qbb_1_pca_0_pci_0)
0/180032<option> 
282040<option> 
383044<option> 
QBB1.PCA0.PCI1 (bus=qbb_1_pca_0_pci_1)
494048<option> 
595052<option> 
696056<option> 
797060<option> 
QBB1.PCA1.PCI0 (bus=qbb_1_pca_1_pci_0)
0/1100032<option> 
2102040<option> 
3103044<option> 
QBB1.PCA1.PCI1 (bus=qbb_1_pca_1_pci_1)
4114048<option> 
5115052<option> 
6116056<option> 
7117060<option> 
QBB2.PCA0.PCI0 (bus=qbb_2_pca_0_pci_0)
0/1160032<option> 
2162040<option> 
3163044<option> 
QBB2.PCA0.PCI1 (bus=qbb_2_pca_0_pci_1)
4174048<option> 
5175052<option> 
6176056<option> 
7177060<option> 
QBB2.PCA1.PCI0 (bus=qbb_2_pca_1_pci_0)
0/1180032<option> 
2182040<option> 
3183044<option> 
QBB2.PCA1.PCI1 (bus=qbb_2_pca_1_pci_1)
4194048<option> 
5195052<option> 
6196056<option> 
7197060<option> 
QBB3.PCA0.PCI0 (bus=qbb_3_pca_0_pci_0)
0/1240032<option> 
2242040<option> 
3243044<option> 
QBB3.PCA0.PCI1 (bus=qbb_3_pca_0_pci_1)
4254048<option> 
5255052<option> 
6256056<option> 
7257060<option> 
QBB3.PCA1.PCI0 (bus=qbb_3_pca_1_pci_0)
0/1260032<option> 
2262040<option> 
3263044<option> 
QBB3.PCA1.PCI1 (bus=qbb_3_pca_1_pci_1)
4274048<option> 
5275052<option> 
6276056<option> 
7277060<option> 
QBB4.PCA0.PCI0 (bus=qbb_4_pca_0_pci_0)
0/1320032<option> 
2322040<option> 
3323044<option> 
QBB4.PCA0.PCI1 (bus=qbb_4_pca_0_pci_1)
4334048<option> 
5335052<option> 
6336056<option> 
7337060<option> 
QBB4.PCA1.PCI0 (bus=qbb_4_pca_1_pci_0)
0/1340032<option> 
2342040<option> 
3343044<option> 
QBB4.PCA1.PCI1 (bus=qbb_4_pca_1_pci_1)
4354048<option> 
5355052<option> 
6356056<option> 
7357060<option> 
QBB5.PCA0.PCI0 (bus=qbb_5_pca_0_pci_0)
0/1400032<option> 
2402040<option> 
3403044<option> 
QBB5.PCA0.PCI1 (bus=qbb_5_pca_0_pci_1)
4414048<option> 
5415052<option> 
6416056<option> 
7417060<option> 
QBB5.PCA1.PCI0 (bus=qbb_5_pca_1_pci_0)
0/1420032<option> 
2422040<option> 
3423044<option> 
QBB5.PCA1.PCI1 (bus=qbb_5_pca_1_pci_1)
4434048<option> 
5435052<option> 
6436056<option> 
7437060<option> 
QBB6.PCA0.PCI0 (bus=qbb_6_pca_0_pci_0)
0/1480032<option> 
2482040<option> 
3483044<option> 
QBB6.PCA0.PCI1 (bus=qbb_6_pca_0_pci_1)
4494048<option> 
5495052<option> 
6496056<option> 
7497060<option> 
QBB6.PCA1.PCI0 (bus=qbb_6_pca_1_pci_0)
0/1500032<option> 
2502040<option> 
3503044<option> 
QBB6.PCA1.PCI1 (bus=qbb_6_pca_1_pci_1)
4514048<option> 
5515052<option> 
6516056<option> 
7517060<option> 
QBB7.PCA0.PCI0 (bus=qbb_7_pca_0_pci_0)
0/1560032<option> 
2562040<option> 
3563044<option> 
QBB7.PCA0.PCI1 (bus=qbb_7_pca_0_pci_1)
4574048<option> 
5575052<option> 
6576056<option> 
7577060<option> 
QBB7.PCA1.PCI0 (bus=qbb_7_pca_1_pci_0)
0/1580032<option> 
2582040<option> 
3583044<option> 
QBB7.PCA1.PCI1 (bus=qbb_7_pca_1_pci_1)
4594048<option> 
5595052<option> 
6596056<option> 
7597060<option> 

PCA 2 and 3 on each QBB are not populated in emulator.

So far the MSC/AXP emulators do not emulate ALi M1543C PCI USB adapter. So position of the device 19, function 0 on the PCI 0 on QBB 0 remains empty.

Div
classpagebreak

 

Total number of PCI devices configured through CFG file may not exceed 20.

ExampleLoading DE500BA into slot 2 of QBB0.PCA0

load DE500BA/dec21x4x EWA bus=qbb_0_pca_0_pci_0 device=2 function=0

Back to Table of Content