async_pcicfg.tcf
上传用户:dahaojd
上传日期:2008-01-29
资源大小:14357k
文件大小:1k
源码类别:

DSP编程

开发平台:

C/C++

  1. /*
  2.  *  This file is used for textual configuration of DSP/BIOS as an alternative
  3.  *  or in addition to the traditional graphical configuration tool (GCONF).
  4.  *  For more information on textual configuration and the TCONF utility,
  5.  *  please refer to the DSP/BIOS TextConf User's Guide (SPRU007).
  6.  */
  7. /*
  8.  *  ======== async_pci_appcfg.tcf ========
  9.  *  TCF file from which the configuration database is generated.
  10.  *  It includes individual (TCI) modules in charge of different
  11.  *  sections of the configuration.
  12.  */
  13. /*
  14.  *  Load the Platform file for the appropriate board
  15.  */
  16. utils.loadPlatform("Teb6416");
  17. /*
  18.  *  Load the board-specific TCI file.
  19.  */
  20. utils.importFile("Teb6416_ddk.tci");
  21. /*
  22.  *  import the driver configuration.
  23.  */
  24. utils.importFile("Teb6416_udevPci.tci");
  25. /*
  26.  *  Check if there have been errors and generate the configuration
  27.  *  database file.
  28.  */
  29. if (config.hasReportedError == false) {
  30.     prog.gen();
  31. } else {
  32.     throw new Error( "Error in config script -- database not generated." );
  33. }