ch06s08.html 6.4 KB

1234567891011121314151617181920212223242526272829303132333435
  1. <html><head><meta http-equiv="Content-Type" content="text/html; charset=UTF-8"><title>Initialize a Device</title><meta name="generator" content="DocBook XSL Stylesheets V1.76.1"><meta name="keywords" content="Intellon, Atheros, Qualcomm, HomePlug, powerline, communications, INT6000, INT6300, INT6400, AR7400, AR7420"><link rel="home" href="index.html" title="Qualcomm Atheros Open Powerline Toolkit"><link rel="up" href="ch06.html" title="Chapter 6.  Scripting"><link rel="prev" href="ch06s07.html" title="Editing a PIB"><link rel="next" href="ch06s09.html" title="Update a Device"></head><body bgcolor="white" text="black" link="#0000FF" vlink="#840084" alink="#0000FF"><div class="navheader"><table width="100%" summary="Navigation header"><tr><th colspan="3" align="center">
  2. Initialize a Device
  3. </th></tr><tr><td width="20%" align="left"><a accesskey="p" href="ch06s07.html">Prev</a> </td><th width="60%" align="center">Chapter 6. 
  4. Scripting
  5. </th><td width="20%" align="right"> <a accesskey="n" href="ch06s09.html">Next</a></td></tr></table><hr></div><div class="section" title="Initialize a Device"><div class="titlepage"><div><div><h2 class="title" style="clear: both"><a name="scripting-initialise-device"></a>
  6. Initialize a Device
  7. </h2></div></div></div><p>
  8. Initializing a device involves downloading memory configuration parameters, runtime firmware and runtime parameters into <acronym class="acronym">SDRAM</acronym> and then starting the runtime firmware to make the device fully functional. Program <a class="ulink" href="int6kf.7.html" target="_top">int6kf</a> can be used for this purpose when the INT6000 <span class="application">Softloader</span> or INT6300 <span class="application">Bootloader</span> is running. Additionally, program <a class="ulink" href="int6kf.7.html" target="_top">int6kf</a> can be used to flash blank or corrupted <acronym class="acronym">NVRAM</acronym> once runtime firmware has started.
  9. </p><p>
  10. Device initialization is only necessary when a device that has no <acronym class="acronym">NVRAM</acronym> or has corrupted <acronym class="acronym">NVRAM</acronym> or has a <span class="application">Softloader</span> stored in <acronym class="acronym">NVRAM</acronym>. It is only possible when either the INT6000 <span class="application">Softloader</span> or INT6300 <span class="application">Bootloader</span> is running. See <a class="link" href="ch04s04.html" title="Firmware Boot Process">The Boot Process</a> for detailed information.
  11. </p><pre class="programlisting">
  12. int6kf -i ${NIC1} -C ${CFG} -P ${PIB} -N ${NVM}
  13. if [ ${?} != 0 ]; then
  14. exit 1
  15. fi
  16. </pre><p>
  17. The example above uses program <a class="ulink" href="int6kf.7.html" target="_top">int6kf</a> to download an <acronym class="acronym">SDRAM</acronym> configuration file (<strong class="userinput"><code>-C</code></strong>), <acronym class="acronym">PIB</acronym> file (<strong class="userinput"><code>-P</code></strong>) and <acronym class="acronym">NVM</acronym> file (<strong class="userinput"><code>-N</code></strong>) then start firmware execution. Symbols <code class="varname">NIC1</code>, <acronym class="acronym">CFG</acronym>, <acronym class="acronym">PIB</acronym> and <acronym class="acronym">NVM</acronym> must be defined earlier in the script, perhaps in files <a class="link" href="ch06s03.html#scripting-hardware-definitions" title="Example 6.1.  hardware.sh">hardware.sh</a> and <a class="link" href="ch06s03.html#scripting-firmware-definitions" title="Example 6.2.  firmware.sh">firmware.sh</a>.
  18. </p><p>
  19. Program <a class="ulink" href="int6kf.7.html" target="_top">int6kf</a> returns a non-zero value on error. We can check the return code and exit the script on error to avoid subsequent errors. We could, of course, suppress normal output (<strong class="userinput"><code>-q</code></strong>) and print our own error message using the Linux <strong class="userinput"><code>echo</code></strong> utility.
  20. </p><p>
  21. In some cases, we may want to flash a blank or corrupted <acronym class="acronym">NVRAM</acronym> after the runtime firmware has started. We could use program <a class="ulink" href="int6k.7.html" target="_top">int6k</a> for this purpose but program <a class="ulink" href="int6kf.7.html" target="_top">int6kf</a> can be used, as well. Essentially, it initializes the device (as above) then downloads the <acronym class="acronym">PIB</acronym> and <acronym class="acronym">NVM</acronym> files again and flashes them into <acronym class="acronym">NVRAM</acronym>.
  22. </p><pre class="programlisting">
  23. int6kf -i ${NIC1} -C ${CFG} -P ${PIB} -N ${NVM} -FF
  24. if [ ${?} != 0 ]; then
  25. exit 1
  26. fi
  27. </pre><p>
  28. The example above initializes a device with an <acronym class="acronym">SDRAM</acronym> configuration file (<strong class="userinput"><code>-C</code></strong>), <acronym class="acronym">PIB</acronym> file (<strong class="userinput"><code>-P</code></strong>) and <acronym class="acronym">NVM</acronym> file (<strong class="userinput"><code>-N</code></strong>) as before. Once the runtime firmware has started, the <acronym class="acronym">PIB</acronym> and <acronym class="acronym">NVM</acronym> files are downloaded again and flashed (<strong class="userinput"><code>-FF</code></strong>) into <acronym class="acronym">NVRAM</acronym>.
  29. </p><p>
  30. The force-flash option (<strong class="userinput"><code>-FF</code></strong>) is needed in this case because runtime firmware that has been written directly to <acronym class="acronym">SDRAM</acronym> and started by the local host assumes there is no <acronym class="acronym">NVRAM</acronym> present to flash or there might be <span class="application">Softloader</span> firmware stored in <acronym class="acronym">NVRAM</acronym> that must be protected from accidental flashing. Runtime firmware that has been read from <acronym class="acronym">NVRAM</acronym> need not make that assumption.
  31. </p></div><div class="navfooter"><hr><table width="100%" summary="Navigation footer"><tr><td width="40%" align="left"><a accesskey="p" href="ch06s07.html">Prev</a> </td><td width="20%" align="center"><a accesskey="u" href="ch06.html">Up</a></td><td width="40%" align="right"> <a accesskey="n" href="ch06s09.html">Next</a></td></tr><tr><td width="40%" align="left" valign="top">
  32. Editing a PIB
  33.  </td><td width="20%" align="center"><a accesskey="h" href="index.html">Home</a></td><td width="40%" align="right" valign="top"> 
  34. Update a Device
  35. </td></tr></table></div></body></html>