Quick Links:

QuadRAM

The QuadRAM Shield for Arduino Mega/Mega2560 adds 512 kilobytes of external fast-access RAM directly mapped to the address space of the microcontroller. Use it for processing large, fast incoming data streams like images or audio, or for buffering data prior to writing to slower SD cards or FLASH memories.

This is not a “kit”, there is nothing to solder, and no extra connectors or components to buy. It is fully assembled and ready to work right out of the box. Compatible with Arduino Mega and Mega2560 and compatible boards.

For a lower cost solution, consider our MegaRAM shield.

 

  • The QuadRAM Shield

    ../assets/images/ad200_02.gif

    The QuadRAM Shield is small and plugs in to the Arduino Mega/Mega2560 expansion connector on the right side. Other shields can still plug in to their usual place without interference. Also, unused pins from the expansion connector (D45-D53, +5V, GND) are brought out to 0.1" pads.

    QuadRAM Shield
  • Minimal Interference / Maximum Flexibility

    ../assets/images/ad200_01.gif

    The QuadRAM Shield adds 512 kilobytes of fast external RAM to your Arduino Mega or Mega2560, directly mapped into the microcontroller's address space.

    QuadRAM Shield
  • Simple to Use

    ../assets/images/ad200_03.gif

    Fully assembled and ready to work, the QuadRAM shield plugs in to the Arduino Mega/Mega2560 expansion connector. No additional power supply, connectors, or components are required.

    QuadRAM Shield

 

 

$24.95

Features

The QuadRAM shield includes the following features:

  • 512 kilobytes of external zero-wait-state SRAM
  • SRAM directly mapped into microcontroller address space -- no serial or I2C interface required, no libraries needed
  • Compatible with Arduino Mega or Mega2560 (or compatible boards)
  • Powered directly from Arduino -- no additional power supply required
  • Compact design extends away from the center of the Arduino, allowing other shields to plug in and stack without interference
  • Unused pins on Mega expansion header (D45-D53, SPI pins, +5V, GND) are brought out to pads on 0.1” centers for easy interfacing

Sample Code

Here are some sample sketches that illustrate different ways to use the 512 kilobytes of RAM on the QuadRAM shield:

  • RAM Test
  • This sketch shows how we test each QuadRAM shield prior to shipment. It also demonstrates how to use bank control and high memory masking to access the full 512 kilobytes of external RAM.

  • Simple Control
  • This sketch demonstrates the simplest way to access the external RAM, with no bank control, to access ~56 kilobytes of external RAM. The sketch computes a 16384-point complex FFT of a test sinusoid.

  • Dynamic Memory Allocation
  • This library is a port of Andy Brown’s xmem library to the QuadRAM shield. It allows you to use the dynamic memory allocation functions (e.g., malloc, free) to allocate memory from the 512 kilobytes available on the QuadRAM shield.

Usage

Enabling the External Memory Interface

Most of the pins used for accessing external RAM are automatically taken care of by the microcontroller. In order to enable the external memory interface, the SRE bit in the XMCRA (External Memory Control Register A) has to be set:

XMCRA = _BV(SRE);

The external RAM on the QuadRAM is fast enough to support zero-wait-state operation so all other bits in the XMCRA register can be set to 0.

Enabling the External RAM Device

The actual RAM device itself has to be enabled by setting PD7 (Arduino digital pin D38) low:

pinMode(38, OUTPUT); digitalWrite(38, LOW);

If this pin is set to HIGH then the expansion header pins can be used for other purposes and external RAM will be disabled.

Reserved Pins

When external RAM is enabled, pins PA0-PA7 (digital pins D22 through D29), PC0-PC7 (digital pins D30 through D37), PG0-PG2 (digital pins D39 through D41), PL5-PL7 (digital pins D44 through D42) and PD7 (digital pin D38) are reserved for the external memory interface.

Bank Selection

Pins PL5 through PL7 (digital pins D44 through D42) are used to select between eight 64 kilobyte RAM banks, which together form the 512 kilobyte external RAM. The usage of these pins is described below in the RAM Access Options section.

Expansion Pins

Unused pins from the expansion connector are brought out to pads on 0.1” centers for easy interfacing. The picture below shows which pins are brought out and their positions on the QuadRAM shield.

RAM Access Options

The QuadRAM shield provides 512 kilobytes of external RAM, but the ATmega1280/2560 address bus is only 16 bits wide, meaning the microcontroller can only access 64 kilobytes of RAM at a time. Furthermore, part of the 64 kilobyte address space is used by the ATmega1280/2560 processor for internal registers and the 8 kilobytes of internal RAM. In this section we look at the details of how to work with these limitations of the microcontroller.

Simplest Approach -- 56 kilobytes

The simplest approach to using the QuadRAM shield is to do nothing. Here is the memory map of the ATmega1280/2560 processor, showing the locations of internal registers, internal RAM, and external RAM (the memory map is Figure 8-2 from the Atmel ATmega1280/2560 datasheet).

Memory from addresses 0x0200 through 0x21FF is the normal 8 kilobytes of internal SRAM. Memory from locations 0x2200 through 0xFFFF (56832 bytes) is external SRAM provided by the QuadRAM shield.

Therefore, if all you need is ~56 kilobytes of RAM, just start accessing memory at memory location 0x2200 and higher. Here’s an example that shows how to fill this 56 kilobyte region with an increasing sequence of 8-bit numbers:

void test(void) { // Fill 56832 bytes of external RAM

  unsigned char *ptr;

  unsigned count=0;

 

  XMCRA = _BV(SRE); // Enable external memory interface

  pinMode(38, OUTPUT); digitalWrite(38, LOW); // Enable RAM device

 

  pinMode(42, OUTPUT);   // Make the bank selection bits output pins

  pinMode(43, OUTPUT);   // Make the bank selection bits output pins

  pinMode(44, OUTPUT);   // Make the bank selection bits output pins

  digitalWrite(42, LOW); // Select bank 0 (see below for discussion)

  digitalWrite(43, LOW); // Select bank 0 (see below for discussion)

  digitalWrite(44, LOW); // Select bank 0 (see below for discussion)

 

  for (ptr = (unsigned char *)0x2200U; ptr != 0; ) {

    *ptr++ = (unsigned char) (count++);

  }

}

Bank Control -- 444 kilobytes

If you want to access more than ~56 kilobytes of RAM, you will have to get around the microcontroller’s limited 64 kilobyte address space. The actual RAM device has a 19-bit address bus -- the 17th through 19th bits are provided by microcontroller pins PL5, PL6, and PL7 (digital pins D44, D43, and D42) while the lower 16 bits come from the microcontroller itself.

This means that by setting pins D42-D44 high and low, you can switch between eight totally separate 64 kilobyte banks of RAM. In each bank, ~56 kilobytes (56832 bytes) is directly visible starting at address 0x2200, just like before. This means that by controlling D42-D44 we have access to 8 banks of RAM, with 56832 bytes in each bank, for a total of 454656 bytes (or about 444 kilobytes) of RAM.

Here’s the same code example from above, which fills all 56832-byte banks with numbers.

void test(void) { // Fill 56832 bytes per bank of external RAM, eight banks

  unsigned char *ptr;

  unsigned count=0;

  uint8_t bank;

 

  XMCRA = _BV(SRE); // Enable external memory interface

  pinMode(38, OUTPUT); digitalWrite(38, LOW); // Enable RAM device

  pinMode(42, OUTPUT);   // Make the bank selection bits output pins

  pinMode(43, OUTPUT);   // Make the bank selection bits output pins

  pinMode(44, OUTPUT);   // Make the bank selection bits output pins

 

  for (bank=0; bank<8; bank++) {

    setBank(bank);

    for (ptr = (unsigned char *)0x2200U; ptr != 0; ) {

      *ptr++ = (unsigned char) (count++);

    }

  }

}

 

// Write lower 3 bits of ‘bank’ to upper 3 bits of Port L

void setBank(uint8_t bank)

{

  PORTL = (PORTL & 0x1F) | ((bank & 0x7) << 5);

}

In summary, accessing ~444 kilobytes of the available 512 kilobytes on the QuadRAM shield is fairly straightforward. To get at that last 68 kilobytes is going to take a bit more work.

High Memory Mask -- 512 kilobytes

The reason we can’t easily access that last 68 kilobytes is because the address range from 0x0000 to 0x21FF is reserved for the microcontroller’s internal registers and internal RAM. The way to work around this limitation is to use a feature called high memory masking (see Section 9.4.2 of the Atmel ATmega1280/2560 datasheet which describes the XMCRB register). The principle is similar to the bank selection mechanism above, except we now use four bank select pins to select between sixteen 32 kilobyte memory banks. These sixteen 32 kilobyte memory banks represent the entire 512 kilobyte external RAM.

Normally, all the pins in Port C (PC0 through PC7) are driven by the external memory interface whenever an external memory access occurs. PC7 is connected to address bit 16 (and PL5 through PL7, the bank selection bits, are connected to address bits 17 through 19). This means that by controlling both PL5-PL7 and PC7 (instead of letting PC7 be driven by the microcontroller), we can control access to one of sixteen 32 kilobyte banks, each of which uses address lines 1 through 15. The XMCRB register lets us do this; by setting the XMM0 bit in XMCRB to 1, PC7 is “released” by the microcontroller and becomes a normal digital port pin.

We still have the problem that memory accesses in the range 0x0000 through 0x21FF are used for internal registers and memory, and do not cause external memory accesses. This problem is easily fixed: always generate memory accesses at address 0x8000 and above. The memory range 0x8000 through 0xFFFF represents a 32 kilobyte memory bank. The choice of bank is controlled by controlling pins PC7 and PL5-PL7.

The code that shows full access to the 512 kilobyte RAM on the QuadRAM shield is shown below.

void test(void) { // Fill 32768 bytes per bank of external RAM, sixteen banks

  unsigned char *ptr;

  unsigned count=0;

  uint8_t bank;

 

  XMCRA = _BV(SRE); // Enable external memory interface

  pinMode(38, OUTPUT); digitalWrite(38, LOW); // Enable RAM device

  pinMode(42, OUTPUT);   // Make the bank selection bits output pins

  pinMode(43, OUTPUT);   // Make the bank selection bits output pins

  pinMode(44, OUTPUT);   // Make the bank selection bits output pins

  XMCRB = _BV(XMM0);     // Release PC7 (digital pin D30)

  pinMode(30, OUTPUT);   // Make PC7 an output

 

  for (bank=0; bank<16; bank++) {

    setBank(bank);

 

    for (ptr = (unsigned char *)0x8000U; ptr != 0; ) {

      *ptr++ = (unsigned char) (count++);

    }

  }

}

 

// Write lower 3 bits of ‘bank’ to upper 3 bits of Port L, then write

// fourth bit of ‘bank’ to PC7

void setBank(uint8_t bank)

{

  PORTL = (PORTL & 0x1F) | ((bank & 0x7) << 5);

  if (bank & (1<<3)) {

    digitalWrite(30, HIGH);

  } else {

    digitalWrite(30, LOW);

  }

}

For a more practical example, see our memory test sketch (RAMTest.pde) to see how this high memory mask approach is used.

Technical Data

Here is the schematic of the QuadRAM shield.

 

The QuadRAM shield was designed in the USA and is assembled in the USA using lead-free components and lead-free manufacturing and assembly processes.

Proudly located in Michigan, USA

Copyright © 2013 Rugged Circuits LLC