/* * Copyright 2001-2008 Texas Instruments - http://www.ti.com/ * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ /* * ======== dbapi.h ======== * DSP-BIOS Bridge driver support functions for TI OMAP processors. * Description: * Top level header file for GPP side DSP/BIOS Bridge APIs. * *! Revision History: *! ================ *! 22-Nov-2002 gp Cleaned up comments, formatting. *! 13-Feb-2001 kc: Name changed from ddspapi.h to dbapi.h. *! 27-Jun-2000 rr: Name changed to ddspapi.h. Broken into various h files. *! 12-May-2000 gp: Removed PROC_UNKNOWN state. Moved OEM DSPProcessor_ fxns *! to ddspoem.h. Changed DDSP_MSG to be fixed length; *! Changed DDSPStream_Issue/Reclaim to take DWORD dwArg. *! 11-May-2000 gp: Reformatted; converted tabs to spaces; changed NODEHANDLE *! to HNODE; changed GUID to UUID; added "Detail" sections *! documenting differences from DDSP API spec. (ver. 0.6); *! enhanced comments. *! 19-Apr-2000 ww: Updated based on code review. *! 12-Apr-2000 ww: Created based on DSP/BIOS Bridge API specification, Version 0.6. */ #ifndef DBAPI_ #define DBAPI_ #ifdef __cplusplus extern "C" { #endif #include <dbdefs.h> /* DSP/BIOS Bridge global definitions and constants */ #include <errbase.h> /* DSP/BIOS Bridge status and error codes */ #include <DSPManager.h> /* DSP/BIOS Bridge Manager APIs */ #include <DSPProcessor.h> /* DSP/BIOS Bridge Processor APIs */ #include <DSPNode.h> /* DSP/BIOS Bridge Node APIs */ #include <DSPStream.h> /* DSP/BIOS Bridge Stream APIs */ #ifdef __cplusplus } #endif #endif /* DBAPI_ */