chknvm1.1 5.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167
  1. .TH chknvm1 1 "Mar 2014" "plc-utils-2.1.6" "Qualcomm Atheros Powerline Toolkit"
  2. .SH NAME
  3. chknvm - Qualcomm Atheros PLC Image File Validator
  4. .SH SYNOPSIS
  5. .BR chknvm
  6. .RI [ options ]
  7. .IR file
  8. .RI [ file ]
  9. .RI [ ... ]
  10. .SH DESCRIPTION
  11. Validate the image chain found inside a Qualcomm Atheros PLC firmware or parameter file by checking file structure, file size, image header sizes and checksums and image sizes and checksums.
  12. Optionally, display internal image header information or information extracted from selected image types, when present.
  13. Use this program to detect corrupted firmware or parameter files or inspect image files to determine content.
  14. .PP
  15. This program handles both the older \fBThunderbolt\fR and \fBLightning\fR and the newer \fBPanther\fR and \fBLynx\fR firmware file formats.
  16. It validates files directly from disk and so it is slower than program \fBchknvm2\fR but needs less memory at runtime.
  17. .PP
  18. This program is part of the Qualcomm Atheros Powerline Toolkit.
  19. See the \fBAMP\fR man page for an overview and installation instructions.
  20. .SH OPTIONS
  21. .TP
  22. .RB - i
  23. Print revision string identity fields in fixed-width columns.
  24. This option is useful when searching .nvm folders for a specific build.
  25. .TP
  26. .RB - m
  27. Display manifest content, if present.
  28. The manifest is a special module, included in some image chains, that contains useful information about the chain.
  29. This option suppresses the summary 'looks good' message.
  30. .TP
  31. .RB - r
  32. Print firmware revision string on stdout.
  33. This option suppresses the summary 'looks good' message.
  34. .TP
  35. .RB - s
  36. Print SDRAM configuration block on stdout.
  37. This option automatically suppresses the summary 'looks good' message.
  38. .TP
  39. .RB - q
  40. Suppresses printing of routine messages.
  41. Specifically, it suppresses the summary 'looks good' message.
  42. .TP
  43. .RB - v
  44. Print additional information such as the image header for each image processed.
  45. This information can be used to distinguish one firmware file from another, if you know what to look for.
  46. .TP
  47. .RB - ? ,-- help
  48. Print program help summary on stdout.
  49. This option takes precedence over other options on the command line.
  50. .TP
  51. .BR - ! ,-- version
  52. Print program version information on stdout.
  53. This option takes precedence over other options on the command line.
  54. Use this option when sending screen dumps to Atheros Technical Support so that they know exactly which version of the Linux Toolkit you are using.
  55. .SH ARGUMENTS
  56. .TP
  57. .IR file
  58. The name of an Atheros image file.
  59. By convention, Atheros Image files have a \fB.nvm\fR file extension but this program does not enforce this convention.
  60. .SH DISCLAIMER
  61. Qualcomm Atheros firmware file structure and content is proprietary to Qualcomm Atheros, Ocala FL USA.
  62. Consequently, public information is not available.
  63. Qualcomm Atheros reserves the right to change firmware file structure or content or change the name or behavior of any program that inspects or changes firmware files, in future software releases without any obligation to notify or compensate users of such programs.
  64. .SH EXAMPLES
  65. This example reads file abc.nvm and validates it.
  66. The message shown indicates that the file is the correct length, image headers and images have the correct length and checksum and there are no read errors.
  67. The file can be have either the newer or older format.
  68. .PP
  69. # chknvm abc.nvm
  70. abc.nvm looks good
  71. .PP
  72. The following example reads three files in succession and reports on each one.
  73. You can suppress good news with the \fB-q\fR option.
  74. .PP
  75. # chknvm INT6400.nvm AR7400.nvm AR7420.nvm
  76. INT6400.nvm looks good
  77. AR7400.nvm looks good
  78. AR7420.nvm looks good
  79. .PP
  80. This next example displays the SDRAM parameter block found in the named files.
  81. SDRAM parameter blocks are a legacy feature.
  82. They were to configure memory.
  83. Powerline device now run a configuration applet, instead.
  84. Observe that file \fBAR6400.nvm\fB us the only one that contains SDRAM parameters.
  85. .PP
  86. # chknvm -s INT6400.nvm AR7400.nvm AR7420.nvm
  87. ------- INT6400.nvm (0) -------
  88. SIZE=0x04000000 (64mb)
  89. CONF=0x00143188
  90. TIM0=0x01E1D491
  91. TIM1=0x000883D6
  92. CNTRL=0x00003089
  93. REF=0x00000366
  94. CLOCK=0x00000001
  95. .PP
  96. This next example prints the firmware revision string found inside older image files.
  97. The option can be used to identify the actual firmware image present when the filename has been changed.
  98. Newer image files have a manifest, instead.
  99. Observe that file \fBAR7420.nvm\fR shows no firmware revision string because it has the newer image file format.
  100. .PP
  101. # chknvm -r INT6400.nvm AR7400.nvm AR7420.nvm
  102. INT6400.nvm (3) INT6000-MAC-4-1-4122-01-4020-20100219-FINAL
  103. AR7400.nvm (5) INT7400-MAC-7-0-7011-01-52-20110811-FINAL
  104. .PP
  105. This example prints the manifest found inside newer firmware files.
  106. This can be used to distinguish firmware files from parameter files, determine exact firmware or parameter file revisions and so forth.
  107. Observe that we specified several files on the command line but only one file, \fBAR7420.nvm\fR, contained a mainfest.
  108. .PP
  109. # chknvm -m INT6400.nvm AR7400.nvm AR7420.nvm
  110. ------- AR7420.nvm (0) -------
  111. Signature: 1234ABCD
  112. Hardware Compatibility: AR74200
  113. Chain Major Version: 0
  114. Chain Minor Version: 1
  115. Chain Type: Firmware
  116. Build Major Version: 0
  117. Build Minor Version: 0
  118. Build Type: Special
  119. Manifest Version: 1
  120. Build Number: 0
  121. Build Date: 20110811
  122. Build Time: 203853
  123. Device Type: 29728
  124. Build Hostname: TOR-SW-SIM04
  125. Build Username: buildbot
  126. Build Description: Custom
  127. Build Version String: AR-7420-FW-0_0-0_2-20110811:203853-buildbot:TOR-SW-SIM04-1-0_1
  128. .SH SEE ALSO
  129. .BR chknvm2 ( 1 ),
  130. .BR chkpib ( 1 ),
  131. .BR chkpib2 ( 1 ),
  132. .BR int6ktest (7),
  133. .BR nvmmerge ( 1 ),
  134. .BR nvmsplit ( 1 ),
  135. .BR plctest ( 1 )
  136. .SH CREDITS
  137. Charles Maier <cmaier@qca.qualcomm.com>