Periodic test needed for external RAM?????

Hi frnds,

while POWER ON the system i am checking External RAM memory.... but i am not checking the external RAM periodically.....whether the periodic test is needed are not???? Please clarify my doubt....

Parents
  • That depends a lot on your needs etc.

    Detect a problem or detect and repair?

    How often is the data modified?

    For static or semi-static data, you may consider checksumming structures, and regularly verify the contents.

    If you are looking for individual cell errors, you must walk through all cells, and try patterns while synchronizing with the normal operation.

    If a data line fails, your program will probably fail quite quickly unless it doesn't have critical state info there.

    If an address line fails, you will have to walk the different areas and check for alias-related changes.

    For errors in individual cells, you can normally quite easy write programs that can continue to work unhindered. For a failed data or address line, you will have a hard time to write a program that can continue to use the external RAM - the complexity of work-arounds make them too dangerous to add.

    In the case of multiplexed memory, data and address lines are normally the same.

Reply
  • That depends a lot on your needs etc.

    Detect a problem or detect and repair?

    How often is the data modified?

    For static or semi-static data, you may consider checksumming structures, and regularly verify the contents.

    If you are looking for individual cell errors, you must walk through all cells, and try patterns while synchronizing with the normal operation.

    If a data line fails, your program will probably fail quite quickly unless it doesn't have critical state info there.

    If an address line fails, you will have to walk the different areas and check for alias-related changes.

    For errors in individual cells, you can normally quite easy write programs that can continue to work unhindered. For a failed data or address line, you will have a hard time to write a program that can continue to use the external RAM - the complexity of work-arounds make them too dangerous to add.

    In the case of multiplexed memory, data and address lines are normally the same.

Children
More questions in this forum