module ti.sdo.ipc.family.omap4430.NotifyCircSetup

Notify setup proxy for OMAP4430

This module creates and registers all drivers necessary for inter-processor notification on OMAP4430.
C synopsis target-domain sourced in ti/sdo/ipc/family/omap4430/NotifyCircSetup.xdc
 
config NotifyCircSetup_E_noInterruptLine  // module-wide

Assert raised when trying to attach between OMAP4430/CORE1 and either the DSP or the HOST

C synopsis target-domain
extern const Error_Id NotifyCircSetup_E_noInterruptLine;
 
 
config NotifyCircSetup_dspIntVectId  // module-wide

Interrupt vector id for OMAP4430/DSP

C synopsis target-domain
extern const UInt NotifyCircSetup_dspIntVectId;
 
 
NotifyCircSetup_attach()  // module-wide

Function that will be called in Notify_attach

C synopsis target-domain
Int NotifyCircSetup_attach(UInt16 remoteProcId, Ptr sharedAddr);
 
 
NotifyCircSetup_numIntLines()  // module-wide

Returns number of interrupt lines to the processor

C synopsis target-domain
UInt16 NotifyCircSetup_numIntLines(UInt16 remoteProcId);
 
 
NotifyCircSetup_sharedMemReq()  // module-wide

Shared Memory Required for a single notification line

C synopsis target-domain
SizeT NotifyCircSetup_sharedMemReq(UInt16 remoteProcId, Ptr sharedAddr);
 
Module-Wide Built-Ins

C synopsis target-domain
Types_ModuleId NotifyCircSetup_Module_id();
// Get this module's unique id
 
Bool NotifyCircSetup_Module_startupDone();
// Test if this module has completed startup
 
IHeap_Handle NotifyCircSetup_Module_heap();
// The heap from which this module allocates memory
 
Bool NotifyCircSetup_Module_hasMask();
// Test whether this module has a diagnostics mask
 
Bits16 NotifyCircSetup_Module_getMask();
// Returns the diagnostics mask for this module
 
Void NotifyCircSetup_Module_setMask(Bits16 mask);
// Set the diagnostics mask for this module
 
XDCscript usage meta-domain sourced in ti/sdo/ipc/family/omap4430/NotifyCircSetup.xdc
var NotifyCircSetup = xdc.useModule('ti.sdo.ipc.family.omap4430.NotifyCircSetup');
module-wide config parameters
        msg: "E_noInterruptLine: Trying to attach between CORE1 and %s"
    };
 
 
 
config NotifyCircSetup.E_noInterruptLine  // module-wide

Assert raised when trying to attach between OMAP4430/CORE1 and either the DSP or the HOST

XDCscript usage meta-domain
NotifyCircSetup.E_noInterruptLine = Error.Desc {
    msg: "E_noInterruptLine: Trying to attach between CORE1 and %s"
};
 
C SYNOPSIS
 
config NotifyCircSetup.dspIntVectId  // module-wide

Interrupt vector id for OMAP4430/DSP

XDCscript usage meta-domain
NotifyCircSetup.dspIntVectId = UInt 5;
 
C SYNOPSIS
 
metaonly config NotifyCircSetup.common$  // module-wide

Common module configuration parameters

XDCscript usage meta-domain
NotifyCircSetup.common$ = Types.Common$ undefined;
 
DETAILS
All modules have this configuration parameter. Its name contains the '$' character to ensure it does not conflict with configuration parameters declared by the module. This allows new configuration parameters to be added in the future without any chance of breaking existing modules.
generated on Sat, 11 Feb 2012 00:37:54 GMT