1    /* --COPYRIGHT--,TI
     2     * Copyright (c) $(CPYYEAR)
     3     * Texas Instruments
     4     *
     5     *  All rights reserved.  Property of Texas Instruments
     6     *  Restricted rights to use, duplicate or disclose this code are
     7     *  granted through contract.
     8     * 
     9     * --/COPYRIGHT--*/
    10    /*
    11     *  ======== NotifySetup.xdc ========
    12     *
    13     *! Revision History
    14     *! ================
    15     *! 18-Nov-2009 skp      cdoc changes
    16     */
    17     
    18    import ti.sdo.utils.MultiProc;
    19    
    20    /*!
    21     *  ======== NotifySetup ======== 
    22     *  Notify setup proxy for DM740
    23     *
    24     *  This module creates and registers all drivers necessary for inter-processor
    25     *  notification on DM740. 
    26     */
    27    
    28    module NotifySetup inherits ti.sdo.ipc.interfaces.INotifySetup
    29    {
    30        /*!
    31         *  Interrupt vector id for DM740/DSP.
    32         */
    33        config UInt dspIntVectId = 5;
    34    
    35    internal:
    36    
    37        config UInt videoProcId     = MultiProc.INVALIDID;
    38        config UInt dssProcId       = MultiProc.INVALIDID;
    39        config UInt dspProcId       = MultiProc.INVALIDID;
    40        
    41        Void setupVideo(Ptr sharedAddr);
    42        Void setupDss(Ptr sharedAddr);
    43        Void setupDsp(Ptr sharedAddr);
    44    }