Home
last modified time | relevance | path

Searched refs:VALIDATION_WORD (Results 1 – 2 of 2) sorted by relevance

/OK3568_Linux_fs/buildroot/package/mkpimage/
H A Dmkpimage.c13 #define VALIDATION_WORD 0x31305341 macro
208 header->validation_word[0] = VALIDATION_WORD & 0xff; in add_socfpga_header()
209 header->validation_word[1] = (VALIDATION_WORD >> 8) & 0xff; in add_socfpga_header()
210 header->validation_word[2] = (VALIDATION_WORD >> 16) & 0xff; in add_socfpga_header()
211 header->validation_word[3] = (VALIDATION_WORD >> 24) & 0xff; in add_socfpga_header()
/OK3568_Linux_fs/u-boot/tools/
H A Dsocfpgaimage.c41 #define VALIDATION_WORD 0x31305341 macro
79 header.validation = cpu_to_le32(VALIDATION_WORD); in build_header()
97 if (le32_to_cpu(header.validation) != VALIDATION_WORD) in verify_header()