Giter Club home page Giter Club logo

c2500re's Introduction

Cisco 2500 Series Reverse Engineering

Documented here is my effort to reverse engineer enough detail about the Cisco 2500 series router platform in order to be able to run my own code.

A particular goal was to get FreeRTOS running, which involved creating a new port.

Rationale

These days, a Cisco 2500 doesnt make much of a router, at least not for modern broadband speeds. In terms of processing power it is somewhat limited also, at least compared to modern embedded systems.

But, with a Motorola 68EC030 on board, and a selection of other peripherals including an ethernet controller, it makes for an interesting platform that one might use to "hack about", and presents a ready-built platform on which to do so. They are readily available on ebay for very little money, and have a sturdy steel 19" rack mountable case.

At the time of writing, Coronavirus is also (still) a thing, and this was a good project to keep me occupied and distracted from the general goings on of the world until it passes.

Platform Brief

The Cisco 2501 which I used during this project has the following notable features:

  • Motorola 68EC030 CPU clocked at 20MHz
  • Philips SCN2681 dual UART (for the console and aux ports)
  • Hitachi HD64570 serial communications adapter (two serial WAN ports)
  • AMD Am79C90 ("LANCE") ethernet controller with AUI physical attachment
  • 72 pin SIMM slot accepting up to 16Mbyte of DRAM
  • 2x 80 pin SIMM slots accepting up to 8Mbyte of FLASH each
  • 2x 32 pin PLCC sockets for boot ROMs
  • 32Kbyte EEPROM (NVRAM) storing the routers configuration

These features will be addressed in more detail in their respective sections below.

Two Cisco branded chips on board seem to be quite central to the operation of the router. Almost all memories and peripherals are routed to/through these two chips in some way or another. The chips also appear to be largely responsible for generating all of the control signals to the peripherals and CPU, such as interrupts, bus error signals, etc.

Fortunately, they do not seem to "get in the way" very much, although there are some registers contained within that need to be appropriately configured to ensure proper operation of the router. Largely it seems that they provide muxing and arbitration between all of the peripherals and the CPU, including generating DRAM refresh signals.

Conventions

I use the following conventions in my documentation:

  • A forward slash (/) after a signal name indicates that the signal is active low, or negative logic
  • In register bit tables:
    • R indicates that a register is readable
    • W indicates that a register is writable, and will read back the same value written
    • w indicates that a register is writable, but the value read back may not represent what was written, or the register is write-once
    • -0 indicates the bit reads as 0 on reset, and -1 reads as a 1. -? means the bit value is indeterminate on reset (e.g. influenced externally).

Block Diagram

Ive roughly figured out how everything interconnects, and produced a block diagram. It is not complete, missing some of the finer details like chip selects, read/write, clock, reset, and other signals. Use it as a guide only at this stage, I may get around to filling in the rest of the details over time.

There are two "address busses" indicated from the CPU. PADDR (peripheral address) is a buffered "copy" of the CPUs address bus which seems to be routed primarily to the NVRAM, boot ROMs and UART. The other address bus is the native, unbuffered address bus of the CPU directly.

Memories

Boot ROMs

Two 32 pin PLCC sockets hold the boot ROM code. This includes a basic monitor which can be used to probe around the system, and also a minimal IOS image, perhaps enough to run the router if the IOS image in flash is not present or damaged.

The ROMs in my router are 8Mbit in size each, and divided into odd and even bytes. Byte arrangement of the two ROMs is as follows:

  • FW1 odd bytes
  • FW2 even bytes

The ROMs present a 16 bit wide data path from which the CPU can read instructions and data.

Bit order in these two ROMs was found to be reversed: the least significant bit of a ROM corresponds with its most significant bit as seen by the CPU (D0-D7, D1-D6 etc). A small script was used to reverse the order of the bits and combine odd/even bytes into a single image which could then be loaded into Ghidra for disassembly and analysis.

Boot ROMs are located at address 0x01000000.

Special note: A Motorola 68000 CPU expects to read two long words forming the initial stack pointer and PC beginning from address 0, therefore, at least the first 8 bytes of the boot ROMs are mapped to address 0 for the first two long word reads, after which they are remapped to 0x01000000 for code execution.

8Mbit ROMs are particularly interesting in a PLCC32 package. What would normally be the Write Enable pin is replaced with an additional address line. To use smaller sized ROMs in these sockets, two jumpers must be modified to map this signal correctly. Beside the FW2 socket are two 3 pin headers which can be used to configure the function of pin 31:

  • bridging the AB positions configures the sockets for 8Mbit ROMs - pin 31 is low in this configuration, which would assert the Write Enable pin of a smaller sized ROM
  • bridging the A position with the unlabelled position configures the sockets for smaller sized ROMs - pin 31 will be high in this configuration

No manufacturer part number is indicated on the packages, just a Cisco part number and software version, so determining the exact pinout is not necessarily possible, but a similar part from ST (M27C801) indicates there may be some pin incompatibilities between 8Mbit ROMs and smaller sizes. Specifically, the arrangement of address lines on pins 1 and 31 varies slightly between 8Mbit ROMs and the 4Mbit ROMs I have been using for testing (SST39SF040):

SizePin 1Pin 31
8Mbit A19 A18
4Mbit A18 WE/

Given these apparent differences, I can foresee a couple of different scenarios playing out:

  • pin compatible ROMs need to be found
  • a large enough ROM image may need to be suitably rearranged to compensate for the differences in address lines
    • If I can count, two 2Mbit slices could potentially be utilised in a 4Mbit ROM to make full use of it, hypothetically speaking:
      • CPU 0x0-3FFFF/ROM 0x0-3FFFF - when CPU A19/ROM A18 is low
      • CPU 0x80000-BFFFF/ROM 0x40000-7FFFF when CPU A19/ROM A18 is high
    • An appropriate linker script, and another small script to rearrange a resulting binary would be required
  • ROM image may need to be limited to 2Mbit (256K) per ROM, or 4Mbit (512K) total
  • figure out how to store code in flash, and use the ROM sockets only for bootloading

See Memory Configuration Register section for details about configuring the valid address window for the boot ROM sockets.

NVRAM

NVRAM is a 32Kbyte EEPROM, part number X28HC256J, which holds the routers configuration register (ala 0x2102) and configuration (startup-config).

The NVRAM is soldered to the board as opposed to being socketed. For your own purposes, you might completely ignore this chip, or you might write code to erase and re-program it yourself.

NVRAM is located at address 0x02000000.

The NVRAM presents an 8 bit data path to the CPU.

EEPROMs are not directly writable, and usually require some form of erase operation before data can be written back. Therefore the correct sequence of operations needs to be established before this can function as a form of non-volatile storage. Code execution from this ROM has not yet been tested.

DRAM

One 72 pin SIMM socket supports a maximum of 16Mbyte of DRAM. Refreshing is handled automatically by one of the Cisco branded chips.

DRAM is located at address 0.

Although the boot ROMs are seemingly mapped to address 0 while the CPU reads the reset vector, addresses 0-7 are subsequently readable and writable as part of the RAM itself. Cisco writes a jump instruction to address 0 which leads to a "jump to zero" error handler.

Presence detect pins of the DRAM socket do not seem to be routed to either of the Cisco branded chips. A software memory sizing routine is implemented to find the size of available DRAM.

See Memory Configuration Register section for details about configuring the valid address window for the DRAM.

IO Memory

An upper portion of the installed DRAM will be allocated to IO memory. The CPU is able to access the entire memory space, but the DMA controllers of the LANCE and HD64570 are only able to access the IO memory area.

Depending on the size of the RAM configured in the Memory Configuration Register, the size and location of the IO memory region will vary according to the following table:

Memory SizeIOMEM SizeIOMEM Region
2MB1MB0x100000-1FFFFF
4MB2MB0x200000-3FFFFF
8MB2MB0x600000-7FFFFF
16MB2MB0xE00000-FFFFFF

4, 8 and 16MB are all confirmed according to my own experimentation or information provided by others. 2MB is unconfirmed, but seems likely according to boot ROM disassembly.

Initialisation structures, tx/rx ring descriptors, and packet buffers for the LANCE and HD64570 must be allocated within the IO memory region or those devices will be unable to access that data.

Flash

Two 80 pin SIMM sockets provide for 8Mbyte of flash each, totalling 16Mbyte of persistent storage.

Flash is located at address 0x03000000.

Note: Cisco flash modules do not follow the JEDEC standard pinout!

Flash Socket Pinout

PinSignalPinSignal PinSignalPinSignal
1GND21A641A1461OE2/
2+5V22A742A1562GND
3VPP23A843GND63DQ24
4A324A944DQ1664DQ25
5A225GND45DQ1765DQ26
6A126A1046DQ1866DQ27
7A027DQ1547DQ1967DQ28
8DQ028DQ1448DQ2068DQ29
9DQ129DQ1349DQ2169DQ30
10DQ230DQ1250DQ2270DQ31
11DQ331DQ1151DQ2371VPP
12GND32DQ105272+5V
13DQ433DQ953A1673A21
14DQ534DQ854GND74A22
15DQ635CE/55A1775PD1
16DQ736+5V56A1876PD2
17OE1/37PD557A1977PD3
18WE1/38A1158A2078PD
19A439A125979PD4
20A540A1360WE2/80GND

With only two sets of OE/ and WE/ pins, the flash modules are at best capable of word reads and writes. Pin set 1 corresponds to the lower word (byte 1 and 0) while pin set 2 corresponds to the upper word (byte 3 and 2).

Ive numbered the address pins from A0 on the module, but A0 likely corresponds to A2 from the CPU, as my investigation shows that the flash module would only ever be addressed as a 32 bit wide device.

There are 5 "adjustable" and one "permanent" presence detect pins per flash socket. Pin 78 (PD) should be permanently tied to ground and signals the presence of a module in a socket. Pins 75, 76, 77, 79 and 37 are the adjustable PD1 through PD5 pins respectively.

Presence detect pins are only partially readable, and seem to be latched by one of the Cisco branded chips at boot. PD2 and PD5 can be read via the presence register for the CODE0 socket only, while the PD pin is available for both sockets.

Pin 78 will enable the address window of a socket as follows:

  • if PD of CODE0 is pulled low, address window 0x03000000-037FFFFF is enabled
  • if CODE0 is enabled, and PD of CODE1 is pulled low, address window 0x03800000-03FFFFFF is enabled

The CODE1 socket cannot be enabled if the CODE0 socket is not enabled. Attempting to read or write to an address in a window that is not enabled generates a bus error exception.

A word size register was identified at address 0x0211000A which can be read to determine the presence of flash modules in each socket.

Flash Presence 0x0211000A

Bit 158 7Bit 0
R-? R-? R-? R-?
C0PD C1PD C0PD5 C0PD2

Bit 12: C0PD: CODE0 PD
    0: PD is grounded by flash module
    1: PD is high - not grounded or flash module not present
Bit 11: C1PD: CODE1 PD
    0: PD is grounded by flash module
    1: PD is high - not grounded or flash module not present
Bit 9: C0PD5: CODE0 PD5
    0: PD5 is grounded by flash module
    1: PD5 is high - not grounded or flash module not present
Bit 8: C0PD2: CODE0 PD2
    0: PD2 is grounded by flash module
    1: PD2 is high - not grounded or flash module not present

Given the minimal number of PD bits available to read, it doesnt seem that enough information is present to determine the size or speed grades of the installed flash modules. No registers are known that might permit adjusting wait states for reads/writes.

Peripherals

Dual UART

A Philips SCN2681 provides two serial ports. Each serial port has an RS232 level converter and is presented on an 8P8C socket. Channel A corresponds to the Console port while channel B is the Aux port.

The UART is located at address 0x02120100. It can generate interrupts at IRQ 5. It is unknown whether the IRQ level can be changed.

16 registers are either readable or writable from this address as per the datasheet.

A 3.6864MHz external oscillator is used to derive all of the common baud rates. In timer mode it is possible to generate a baud rate of 57600 on both channels. Faster baud rates are possible only on the Aux port, see Aux port higher baud rate for details.

Below is a simple assembly routine to configure the Console port for 9600,8,N,1:

    clr.b   (0x02120105)            /* Disable all interrupts */
    move.b  #0x10, (0x02120102)     /* Reset command reg pointer */
    move.b  #0x13, (0x02120100)     /* No parity, 8 bits per char */
    move.b  #0x7, (0x02120100)      /* 1 stop bit */
    move.b  #0xE0, (0x02120104)     /* BRG set 2, external clock */
    move.b  #0xBB, (0x02120101)     /* 9600 baud */
    move.b  #0x5, (0x02120102)      /* Enable transmitter and receiver */

Data can then be written to the transmit holding register or read from the receive holding register, both located at address 0x02120103.

Refer to the SCN2681 datasheet for more details.

Watchdog

One of the Cisco branded chips implements a general purpose timer and also a watchdog.

The timer has a prescaler register of word size located at address 0x02120070. It generates interrupts at IRQ 7. It is unknown whether the IRQ level can be changed.

The watchdog also has a prescaler register of word size located at address 0x02120050, and a byte size control register located at 0x02120040.

Analysis of the disassembled boot ROM code showed that Cisco writes the timer prescaler with a value of 0xFA0 (4000), then write a value of 0x3E80 (16000) to the watchdog prescaler register and finally clear the watchdog control register. After this they then delay for a bit and observe a memory location to see if it has changed, indicating that the timer is running.

When testing my own code, following a similar method did not enable the timer unless the watchdog was also enabled, therefore I may have missed something that needs to be initialised first.

Reading the timer prescaler will give you the current count, not the period constant. The timer seemingly cannot be disabled once it has been started.

Timer Prescaler 0x02120070

Bit 158 7Bit 0
R/w-0
TIMERPS

Bit 15-0: TIMERPS: Timer prescaler
    0: Input frequency divided by 65536
    1: Input frequency divided by 1
    2: Input frequency divided by 2
    ...
    65535: Input frequency divided by 65535

The watchdog prescaler does not appear to be linear like the timer prescaler, so it either operates differently or has additional delay built in on top of the prescaler value. Some values I tested are provided below with approximate timeout periods.

It also seems that it may be a write-once register. In my own tests I was not able to modify the value of the watchdog prescaler once the value had been set.

Watchdog Prescaler 0x02120050

Bit 158 7Bit 0
R/w-0
WDTO

Bit 15-0: WDTO: Watchdog timeout
    0x0000: ~81.8ms
    ...
    0x4000: ~32.57ms
    ...
    0x8000: ~49.00ms
    ...
    0xFFFF: ~81.75ms

Watchdog Control Register 0x02120040

Bit 7Bit 0
R/W-0
WDTEN

Bit 6: WDTEN: Watchdog timer enable
    0: watchdog disabled
    1: watchdog enabled

The following example shows how to configure the timer and enable the watchdog timer. The watchdog may be enabled and disabled at will by setting or clearing the WDTEN bit. You will need an ISR for IRQ7 to handle the interrupts generated by the timer.

    /* Configure timer prescaler value */
    move.w  #0xFA0, 0x02120070

    /* Configure the WDT and enable it */
    move.w  #0x3E80, 0x02120050
    ori.b   #0x40, 0x02120040

Once the watchdog is enabled, it will reset the system once it times out. The following code example shows how to reset the watchdog timer.

    /* Reset the watchdog */
    move.w  #0x3E80, 0x02120050
    ori.b   #0x40, 0x02120040

Hitachi HD64570 Serial Communications Adapter

The operation of the HD64570 is quite complicated, and has an extensive datasheet, so I am only providing some general notes about some of its other useful features.

The peripheral is located at address 0x02132000. It can generate interrupts at IRQ 4. It is unknown whether the IRQ level can be changed.

Although the HD64570 includes an ability to provide an interrupt vector, the INTA/ signal is never asserted during an interrupt, so it would seem that vectored interupts are impossible.

The HD64570 includes 4 timer channels which can be used to generate interrupts to the CPU. A unique advantage of these timer channels being at IRQ 4 is that they can be masked, which means they may be used to generate, for example, a tick interrupt for FreeRTOS.

While the timer channels can be initialised and used simply by reading and writing to the HD64570 registers, special attention is required if you intend to use the serial channels. Refer to IO Memory for some details.

The input clock frequency to the HD64570 is 10MHz, and this is divided by 8 internally to produce the Base Clock for the timer channels, giving them an input frequency of 1.25MHz. Therefore, a prescaler of 5000 would produce a 4ms interval.

The datasheet contains extensive notes and details about the configuration and operation of these timers.

See Peripheral Access Register section for steps required to be able to access the HD64570.

NOVRAM

There is a X24C44 256bit, non-volatile SRAM located on the board.

A byte sized register located at address 0x02110060 provides a means to implement a software bit-bangable interface to read and write the NOVRAM.

Physically, the DI and DO pins are wired together, resulting in a 3 wire interface. The STORE/ and RECALL/ pins do not appear to be controllable, so software instructions must be issued to perform these operations.

Within the NOVRAM, addresses 2-7 were identified to contain the MAC address of the ethernet interface.

NOVRAM Bit Bang Register 0x02110060

Bit 7Bit 0
R/W-0 R/W-0 R/W-0 R-?
CE SK DO DI

Bit 3: CE: Chip Enable/Select
    0: NOVRAM is idle
    1: NOVRAM is addressed
Bit 2: SK: Serial Clock
    0: Clock signal is idle
    1: Clock signal is active
Bit 1: DO: Data Out
    0: Writing a zero
    1: Writing a one
Bit 0: DI: Data In
    0: Reading a zero
    1: Reading a one

LANCE Ethernet Controller

An AMD Am79C90 ethernet controller (also known as a LANCE) is located at address 0x2130000. It generates interrupts at IRQ4. It is unknown whether the IRQ level can be changed.

The datasheet contains everything you need to know about configuring and operating the controller.

A special caveat to be aware of is the concept of "IO memory". The LANCE is only able to access a maximum of 2MB of the installed RAM, and this is usually the upper portion of the RAM. Refer to IO Memory for details of where you will need to allocate space for the Initialisation Block, tx/rx ring descriptors, and packet buffers.

Ive "succeeded" in making a zero copy FreeRTOS+TCP port that can initialise the LANCE ethernet controller, and can successfully transmit and receive packets. Ive tested it with a ping flood of a few hundred pps and experienced no major problems, however, I seem to have run into another issue causing crashes or freezes and havent quite figured out how to resolve that yet.

See more details in FreeRTOS.

GPIO

Since this system was designed for a specific purpose, beyond an LED which is controllable by writing to a register (see System Control Register) there is no other GPIO capability built in.

Having said that, I have designed a board which can be inserted into one of the flash sockets to provide some buttons, switches, and displays for some basic IO. Refer to the Flash IO Board section for further details.

DMA

No general purpose DMA controllers have yet been identified, but given the high level of integration in the Cisco branded chips, I would not be surprised if something exists, and it would be really nice to find at least one. TODO

Peripherals like the HD64570 and the LANCE integrate their own DMA controllers for moving data to/from memory during receive and transmit operations, but these do not appear to be useable in a completely external fashion.

Configuration and Control Registers

There are a number of registers that I identified by analysing the disassembled boot ROMs, and which I have been able to determine their function or make reasonably educated guesses about.

System Control Register

So called because I saw references to the "SCR" in parts of the disassembled boot ROM, and this seems to be a fitting name.

This word size register is located at address 0x02110000.

A notable feature is that it enables control of the "OK" LED which is located next to the console/aux ports. Blinkenlights!

System Control Register 0x02110000

Bit 158 7Bit 0
R-? R/W-0 R/W-0 R/W-0 R/W-1
Parity test result LED PTRA PTEN BEV

Bits 15-8: Parity test result
Bit 4: LED: Control of the "OK" LED
    0: LED is off
    1: LED is on
Bit 3: PTRA: Parity test result acquire
    0: ?
    1: Result acquired on next read
Bit 2: PTEN: Parity test enable
    0: Test is disabled
    1: Test is enabled
Bit 0: BEV: Bus Error Vector
    This bit is set on reset, and must be cleared by the user.

The exact function of the BEV bit is unknown, but bus errors would ensue if this bit was not cleared.

PTRA and PTEN relate to "parity logic" tests. Perhaps this is something to do with memory parity? More details.

Memory Configuration Register

This is a name I have come up with for this register, as its primary purpose seems to be to configure the valid address windows for DRAM and the boot ROMs.

This word size register is located at address 0x02110002.

In the boot ROMs, the sizes of the memory and ROMs are determined and this register is configured appropriately. Afterwards, attempting to read or write to addresses outside of the valid windows results in a bus error.

Once set, subsequent attempts to modify the size of RAM resulted in a crash.

The ROMSZ field in one setting seems capable of supporting 1Mbit or 16Mbit ROMs according to strings in the boot ROM disassembly, although the exact mechanism for making this work is unknown as there doesnt physically seem to be enough pins to support such an address space on a PLCC32 package.

Memory Configuration Register 0x02110002

Bit 158 7Bit 0
R/W-0 R/W-0 R/W-0 R/w-0
VPPEN RAMSZ ROMSZ ?

Bit 7: VPPEN: Flash socket VPP control
    0: Disabled
    1: Enabled (+12V)
Bits 5-4: RAMSZ: RAM size
    00: 16MB - valid address range 0x00000000-00FFFFFF
    01: 4MB - valid address range 0x00000000-003FFFFF
    10: 2MB - valid address range 0x00000000-001FFFFF
    11: 8MB - valid address range 0x00000000-007FFFFF
Bits 3-2: ROMSZ: ROM size
    00: 8Mbit (2MB) - valid address range 0x01000000-011FFFFF
    01: 4Mbit (1MB) - valid address range 0x01000000-010FFFFF
    10: 2Mbit (512KB) - valid address range 0x01000000-0107FFFF
    11: 1Mbit (256KB) or 16Mbit? - valid address range 0x01000000-013FFFFF
Bit 0: Unknown purpose
    This bit is set in the boot ROM code, but always reads as zero and doesn't seem to matter if it is set or not.

Setting the RAMSZ value affects the location and size of the "IO memory region". Refer to IO Memory for details.

Peripheral Access Register

Another name that I have come up with based on its apparent usage, the exact purpose of this register is still somewhat unknown. In the disassembly I see that it is written to with a value of 0x3F, followed by a small delay, and then cleared.

This is a word size register located at 0x02110004.

In my own testing, writing to this register was required before it was possible to interact with the HD64570. At time of writing I havent yet tried to interact with the LANCE ethernet controller, but presumably it will also enable access to it as well.

The value written to this register did not seem to matter, I tried individual bits, but any combination, even writing zero seemed to enable access. Presumably it is safer to follow Cisco's own example.

Peripheral Access Register 0x02110004

Bit 158 7Bit 0
R/W-0
?

Bits 5-0: Exact purpose unknown

In the boot ROM disassembly, the following code is used to write to this register and initialise peripheral access, and works in my own code as well:

    /* Enable access to peripherals */
    ori.w   #0x3F, 0x02110004
    nop
    nop
    nop
    nop
    andi.w  #0xFFC0, 0x02110004

Interrupt Source Register

This word size register indicates the source of an interrupt. It is referenced in the ISRs for levels 3 and 4, and is used to determine if a peripheral has generated an interrupt and whether further processing of that interrupt should be performed.

The register is read only, and it would seem that reading the register will clear any bits that have been set.

Interrupt Source Register 0x02110006

Bit 158 7Bit 0
R-0 R-0 R-0 R-0 R-0 R-0
? ? ? SER ETH ?

Bits 2: SER: HD64570 serial communications adapter
    0: No interrupt
    1: Interrupt
Bits 1: ETH: LANCE ethernet controller
    0: No interrupt
    1: Interrupt

There are a number of different variations of ISR code, which appears to be for different router models with different interface configurations. Each one is implemented discretely and tests slightly different bits to determine which interrupts to service, and the address of the appropriate ISR is loaded into a memory address which is then used to branch to the correct one. More bits within this register are referenced in these ISR combinations, but with only a 2501 to work from these are the only two bits I can positively identify at the moment.

Other Registers

There are potentially some other registers which were readable and others writable, but which I have not yet found any references to in the boot ROM disassembly, so their purpose and function is unknown:

  • 0x02110008: 2F02 in bootloader, FF28 when IOS is running
  • 0x02110010: 0000 (writable)
  • 0x02110012: 0000 (writable)
  • 0x02110014: 0000 (writable)
  • 0x02110016: 0000 (writable)
  • 0x02110018: 0000 (writable, mask FF01)

Writing word 0xFFFF to both 0x02110016 and 0x02110018 will cause a reset (CPU reset pin is asserted, so not a crash).

Other

Minimal Startup Code

The following represents the minimal code to get the system configured and able to function.

_start:
    /* Startup delay */
    move.l  #1000, %d0

0:  subq.l  #1, %d0
    bgt     0b

    /* Configure VBR */
    lea     0x01000000, %a0
    movec   %a0, %vbr

    /* Clear BEV bit in SCR */
    andi.w  #0xFFFE, 0x02110000

    /* Configure ROM and RAM sizes in MCR */
    move.w  #0x0034, 0x02110002     /* 8MByte RAM, 4Mbit ROMs */
    
    /* Enable access to peripherals */
    ori.w   #0x3F, 0x02110004
    nop
    nop
    nop
    nop
    andi.w  #0xFFC0, 0x02110004

    /* Other initialisation code - memory tests, crt0, etc */

    jmp     main

Reset Button Modification

The hardware as supplied doesnt include a reset button. When testing your own code it is much simpler to hit a reset button to start over rather than switching the power supply on and off.

Other than a perhaps inadvertant software method of causing a reboot (see Other Registers), a hardware reset button can be easily integrated using a conveniently unpopulated footprint for an oscillator (on the 2501 at least, other models featuring ISDN may have this oscillator populated).

FreeRTOS

I have succeeded in getting FreeRTOS to run, and you can find a fork with my Motorola 68k port included here: https://github.com/tomstorey/FreeRTOS-Kernel

An example application to blink the OK LED is included in the source/ directory of this repository. Instructions for getting that up and running are included in its directory.

Ive also succeeded in building a mostly functional port of FreeRTOS+TCP, however, Ive run into some issues where after a short while of hammering a few hundred pps at the device, it seems to be getting hung up and the CPU stops executing instructions. Initial investigations seem to point to one of the Cisco proprietary chips getting hung up and completely stalling bus activity.

Source code for the FreeRTOS+TCP port and higher level project can be found in this repo: https://github.com/tomstorey/c2500_freertos_tcp. But after spending roughly a week trying to diagnose the exact cause and solution to the freezing issues, Ive decided to move onto another project. I may come back to this at some point in the future and see if I can figure out what is going on.

Parity Logic Test

This is presumably a memory parity logic test, the name and general functionality of the routine seems to be quite suggestive of that anyway.

The process is:

  1. A Bus Error exception will be generated during the test, so a temporary exception vector is loaded into address 0x000001E0 pointing to a simple routine that simply copies the result out of the control register into address 0x000001A0. Cisco's Bus Error exception ISR will read this location and branch to the value within if it is non-zero, so you'd need to implement your own similar means to achieve the same.
  2. Word 0x000001A0 is cleared
  3. PTEN bit of SCR is set
  4. Long 0x000001C8 is cleared
  5. PTEN bit is cleared
  6. PTRA bit of SCR is set
  7. Long 0x000001C8 is read. Bus error occurs here, branch to exception vector loaded in step 1:
    1. Write 0x1 to 0x000001C8
    2. Copy the SCR into 0x000001A0 and RTS back to bus error ISR, which RTE's
  8. Exception vector at 0x000001E0 is cleared
  9. Result stored in 0x000001A0 is ANDed with 0xC200, written back and re-read. If the final result is 0xC200 the test has passed.

The PTRA bit is seemingly never cleared after this, so may have further functions beyond seemingly acquiring the test result.

The address written to in step 4 does not seem to matter. E.g. writing to address 0x00000400 produces the same result.

But the value written does appear to matter. E.g. writing 0x3 produces the same result. It seemed that writing a value with an even number of set bits seems to produce a result of 0xC200, while an odd number of bits will produce a value of 0x4200. Writing a value of 0xA2 still seemed to produce a result of 0xC200 though, so maybe it only works on the lower nibble?

Perhaps it is simply best to follow the Cisco recipe for performing this test.

Sample code to perform the above test:

    /* Set up temporary bus error handler */
    move.l  parity_test_bus_error_handler, 0x000001E0

    clr.w   0x000001A0              /* Where the result is stored */
    ori.w   #0x4, 0x02110000        /* Set PTEN */
    clr.l   0x000001C8              /* Write test value */
    andi.w  #0xFFFB, 0x02110000     /* Clear PTEN */
    ori.w   #0x8, 0x02110000        /* Set PTRA */
    move.l  0x000001C8, %d0         /* Causes bus error exception */

    /* Resume from here after handling bus error */
    clr.l   0x000001E0              /* Remove temporary bus error handler */

    move.w  0x000001A0, %d0         /* Mask test result */
    andi.w  #0xC200, %d0

    move.w  %d0, 0x000001A0         /* Store and read back */
    move.w  0x000001A0, %d0

    cmpi.w  #0xC200, %d0            /* Check result */
    beq     parity_logic_test_ok

    /* Parity test failed */
    bra     .

parity_logic_test_ok:
    /* Continue with application */
    ...

parity_test_bus_error_handler:
    moveq   #0x1, %d0               /* Write 1 into address 0x1C8 */
    move.l  %d0, 0x000001C8
    movea.l 0x02110000, %a0         /* Copy SCR into address 0x1A0 */
    move.w  %a0@, 0x000001A0
    rts                             /* JSR'd from bus error ISR, so RTS */

BusError:
    /* ISR to handle Bus Error exceptions */
    tst.l   0x000001E0              /* Is a temp handler configured? */
    beq     0f

    /* A temporary bus error handler is configured, jump to it */
    movea.l 0x000001E0, %a0
    jsr     %a0@

    bra     1f                      /* Finish up */

0:
    /* A temporary bus error handler is not configured */

1:
    rte

Flash IO Board

Since the router has extremely limited expansion capabilities, the best method I could think of for getting some GPIO was to utilise one of the flash sockets to provide some kind of means to enable external devices to be attached to the router.

The only downside to this is that you miss a lot of signals that you might otherwise have access to in an expansion slot, like interrupt and reset signals. As a memory socket, you basically only have access to a chunk of the address bus, the data lines and some chip selects.

The board I have designed uses a couple of transparent latches which can be accessed via a memory read, and some TIL311/DIS1417 displays which can be written to. You can extend the basic principal to provide a software controllable reset circuit, and also a pollable interrupt signal from some peripherals.

Certainly in retrospect, the 1600R presents a much more expandable platform having a WIC slot with all of the kinds of signals you would expect in an expansion slot (including interrupt and reset).

Nevertheless, this board is made available for you to build if you so desire. It is, unfortunately, not a cheap board due to the fact it is a 1.2mm 4 layer board. Had I tried a bit harder I might have got it to 2 layers. An EAGLE library is included with a footprint for the flash socket that follows the non-standard Cisco pinout should you wish to design your own boards.

When ordering, specifications of the board should be:

  • PCB thickness: 1.2mm
  • Dimension: 62x118mm
  • Layers: 4, 1oz copper
  • Material: FR4
  • Colour: whatever you want

Also unfortunately, yes it is almost exclusively surface mount. This was as much of an experiment in surface mount soldering with my new hot air station as it was an experiment in using the flash sockets for IO.

Aux port higher baud rate

The maximum configurable baud rate for both the Console and Aux ports, in timer mode, is 57600. This is because the input clock of 3.6864MHz is divided by 32 before being fed into the timer module, and the minimum count that may be loaded into the timer is 2. Therefore 3686400 / 32 / 2 = 57600.

The SCN2681 can accept a clock signal on IP3 and IP4 (RX and TX for Ch A/Console respectively) and IP5 and IP6 (RX and TX for Ch B/Aux respectively) for baud rate generation. Unfortunately, in the design of the 2500, Cisco has used IP4 for a control signal on the ports. However, both IP5 and IP6 do not seem to have been used for any control signals, so it is possible to connect both of those pins via some test pads on the underside of the board to the output of the adjacent oscillator with a small bodge.

In this configuration, a baud rate of 230400 is possible on the Aux port when the channel is configured in 16X mode, and a rather blazing 3.6864Mbit in 1X mode (however, this is beyond the maximum specification of 1Mbit quoted in the datasheet).

Below is an assembly example of how to configure the Aux port for a baud of 230400.

    clr.b   (0x02120105)            /* Disable all interrupts */
    move.b  #0x10, (0x0212010A)     /* Reset command reg pointer */
    move.b  #0x13, (0x02120108)     /* No parity, 8 bits per char */
    move.b  #0x7, (0x02120108)      /* 1 stop bit */
    move.b  #0xEE, (0x02120109)     /* RX/TX clock from IP5/IP6 in 16X mode */
    move.b  #0x5, (0x0212010A)      /* Enable transmitter and receiver */

At this time, I still havent found a way to generate a baud of 115200.

c2500re's People

Contributors

tomstorey avatar

Stargazers

 avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar  avatar

Watchers

 avatar  avatar  avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.