Checksum Algorithm

 

 

MOTLoad Firmware

 

 

 

 

 

 

 

 

 

 

 

 

 

Name

Type

Size

Notes

 

 

 

 

 

 

 

 

ImageOffset

unsigned integer

1

Offset from header start to entry

 

 

 

 

 

 

 

 

ImageFlags

unsigned integer

1

Refer to Image Flags on page 95

 

 

 

 

 

 

 

 

ImageVersion

unsigned integer

1

User defined

 

 

 

 

 

 

 

 

Reserved

unsigned integer

8

Reserved for expansion

 

 

 

 

 

 

 

6.7.1Checksum Algorithm

The checksum algorithm is a simple unsigned word add of each word (4 byte) location in the image. The image must be a multiple of 4 bytes in length (word-aligned). The content of the checksum location in the header is not part of the checksum calculation. The calculation assumes the location to be zero. The algorithm is implemented using the following code:

Unsigned int checksum(

Unsigned int *startPtr,/* starting address */ Unsigned int endPtr/* ending address */

) {

unsigned int checksum=0; while (startPtr < endPtr) {

checksum += *startPtr; startPtr++;

}

return(checksum);

}

6.7.2Image Flags

The image flags of the header define various bit options that control how the image will be executed.

Table 6-2 MOTLoad Image Flags

Name

Value

Interpretation

 

 

 

COPY_TO_RAM

0x00000001

Copy image to RAM at ImageRamAddress before execution

IMAGE_MCG

0x00000002

Alternate MOTLoad image

 

 

 

IMAGE_POST

0x00000004

POST image

 

 

 

DONT_AUTO_RUN

0x00000008

Image not to be executed

 

 

 

zCOPY_TO_RAM

If set, this flag indicates that the image is to be copied to RAM at the address specified in the header before control is passed. If not set, the image will be executed in flash. In both instances, control will be passed at the image offset specified in the header from the base of the image.

zIMAGE_MCG

If set, this flag defines the image as being an Alternate MOTLoad, as opposed to USER, image. This bit should not be set by developers of alternate boot images.

MVME7100 Single Board Computer Installation and Use (6806800E08A)

95

Page 95
Image 95
Emerson MVME7100 manual MOTLoad Image Flags, Checksum Algorithm MOTLoad Firmware Name Type Size

MVME7100 specifications

The Emerson MVME7100 is a powerful and versatile embedded computing platform designed for demanding applications in various fields, including telecommunications, aerospace, and defense. It offers enhanced performance, a wide range of connectivity options, and robust security features, making it suitable for mission-critical operations.

One of the key features of the MVME7100 is its high-performance processing capabilities. The system is powered by a dual-core PowerPC processor that delivers exceptional computational power while maintaining energy efficiency. This makes the MVME7100 ideal for applications requiring intensive data processing and real-time analytics, allowing users to run complex algorithms and manage large datasets effectively.

The MVME7100 supports an extensive array of I/O options, which ensures compatibility with multiple peripheral devices and communication protocols. Users can take advantage of multiple serial ports, Ethernet interfaces, and USB connections. Additionally, the platform supports various fieldbus protocols, enabling seamless integration with existing systems and equipment.

In terms of ruggedness, the MVME7100 is designed to operate in challenging environments. It features a robust enclosure that can withstand extreme temperatures, shocks, and vibrations. This provides the reliability required for industrial applications, making it suitable for deployment in harsh conditions, such as manufacturing floors or remote locations.

Security is another critical aspect of the MVME7100. It incorporates advanced security measures, including secure boot and encryption capabilities, to protect sensitive data and ensure system integrity. These features are essential for applications in sectors like defense and aerospace, where cybersecurity is a top priority.

Moreover, the MVME7100 supports various operating systems, including VxWorks and Linux, providing flexibility for developers and engineers. This enables the use of popular software development tools and frameworks, facilitating faster application development and deployment.

In summary, the Emerson MVME7100 is a robust embedded computing solution that combines high performance, extensive connectivity, and exceptional reliability. Its versatile features make it suitable for a wide range of applications, ensuring that it meets the needs of industries where performance and security are paramount. Whether deployed in telecommunications, defense, or industrial automation, the MVME7100 stands out as a reliable choice for embedded computing challenges.