2013-02-12 10:04:39 -05:00
|
|
|
//*****************************************************************************
|
|
|
|
//
|
|
|
|
// rom.h - Macros to facilitate calling functions in the ROM.
|
|
|
|
//
|
2013-12-30 17:37:40 -05:00
|
|
|
// Copyright (c) 2007-2013 Texas Instruments Incorporated. All rights reserved.
|
2013-02-12 10:04:39 -05:00
|
|
|
// Software License Agreement
|
|
|
|
//
|
|
|
|
// Redistribution and use in source and binary forms, with or without
|
|
|
|
// modification, are permitted provided that the following conditions
|
|
|
|
// are met:
|
|
|
|
//
|
|
|
|
// Redistributions of source code must retain the above copyright
|
|
|
|
// notice, this list of conditions and the following disclaimer.
|
|
|
|
//
|
|
|
|
// Redistributions in binary form must reproduce the above copyright
|
|
|
|
// notice, this list of conditions and the following disclaimer in the
|
|
|
|
// documentation and/or other materials provided with the
|
|
|
|
// distribution.
|
|
|
|
//
|
|
|
|
// Neither the name of Texas Instruments Incorporated nor the names of
|
|
|
|
// its contributors may be used to endorse or promote products derived
|
|
|
|
// from this software without specific prior written permission.
|
|
|
|
//
|
|
|
|
// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
|
|
|
|
// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
|
|
|
|
// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
|
|
|
|
// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
|
|
|
|
// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
|
|
|
|
// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
|
|
|
|
// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
|
|
|
|
// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
|
|
|
|
// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
|
|
|
|
// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
|
|
|
|
// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
|
|
|
//
|
2013-12-30 17:37:40 -05:00
|
|
|
// This is part of revision 1.0 of the Tiva Peripheral Driver Library.
|
2013-02-12 10:04:39 -05:00
|
|
|
//
|
|
|
|
//*****************************************************************************
|
|
|
|
|
|
|
|
#ifndef __ROM_H__
|
|
|
|
#define __ROM_H__
|
|
|
|
|
|
|
|
//*****************************************************************************
|
|
|
|
//
|
|
|
|
// Pointers to the main API tables.
|
|
|
|
//
|
|
|
|
//*****************************************************************************
|
2013-12-30 17:37:40 -05:00
|
|
|
#define ROM_APITABLE ((uint32_t *)0x01000010)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_VERSION (ROM_APITABLE[0])
|
2013-12-30 17:37:40 -05:00
|
|
|
#define ROM_UARTTABLE ((uint32_t *)(ROM_APITABLE[1]))
|
|
|
|
#define ROM_SSITABLE ((uint32_t *)(ROM_APITABLE[2]))
|
|
|
|
#define ROM_I2CTABLE ((uint32_t *)(ROM_APITABLE[3]))
|
|
|
|
#define ROM_GPIOTABLE ((uint32_t *)(ROM_APITABLE[4]))
|
|
|
|
#define ROM_ADCTABLE ((uint32_t *)(ROM_APITABLE[5]))
|
|
|
|
#define ROM_COMPARATORTABLE ((uint32_t *)(ROM_APITABLE[6]))
|
|
|
|
#define ROM_FLASHTABLE ((uint32_t *)(ROM_APITABLE[7]))
|
|
|
|
#define ROM_PWMTABLE ((uint32_t *)(ROM_APITABLE[8]))
|
|
|
|
#define ROM_QEITABLE ((uint32_t *)(ROM_APITABLE[9]))
|
|
|
|
#define ROM_SYSTICKTABLE ((uint32_t *)(ROM_APITABLE[10]))
|
|
|
|
#define ROM_TIMERTABLE ((uint32_t *)(ROM_APITABLE[11]))
|
|
|
|
#define ROM_WATCHDOGTABLE ((uint32_t *)(ROM_APITABLE[12]))
|
|
|
|
#define ROM_SYSCTLTABLE ((uint32_t *)(ROM_APITABLE[13]))
|
|
|
|
#define ROM_INTERRUPTTABLE ((uint32_t *)(ROM_APITABLE[14]))
|
|
|
|
#define ROM_USBTABLE ((uint32_t *)(ROM_APITABLE[16]))
|
|
|
|
#define ROM_UDMATABLE ((uint32_t *)(ROM_APITABLE[17]))
|
|
|
|
#define ROM_CANTABLE ((uint32_t *)(ROM_APITABLE[18]))
|
|
|
|
#define ROM_HIBERNATETABLE ((uint32_t *)(ROM_APITABLE[19]))
|
|
|
|
#define ROM_MPUTABLE ((uint32_t *)(ROM_APITABLE[20]))
|
|
|
|
#define ROM_SOFTWARETABLE ((uint32_t *)(ROM_APITABLE[21]))
|
|
|
|
#define ROM_EEPROMTABLE ((uint32_t *)(ROM_APITABLE[24]))
|
|
|
|
#define ROM_FANTABLE ((uint32_t *)(ROM_APITABLE[25]))
|
|
|
|
#define ROM_FPUTABLE ((uint32_t *)(ROM_APITABLE[26]))
|
|
|
|
#define ROM_LPCTABLE ((uint32_t *)(ROM_APITABLE[27]))
|
|
|
|
#define ROM_PECITABLE ((uint32_t *)(ROM_APITABLE[28]))
|
|
|
|
#define ROM_SMBUSTABLE ((uint32_t *)(ROM_APITABLE[29]))
|
|
|
|
#define ROM_SYSEXCTABLE ((uint32_t *)(ROM_APITABLE[30]))
|
2013-02-12 10:04:39 -05:00
|
|
|
|
|
|
|
//*****************************************************************************
|
|
|
|
//
|
|
|
|
// Macros for calling ROM functions in the ADC API.
|
|
|
|
//
|
|
|
|
//*****************************************************************************
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_ADCSequenceDataGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((int32_t (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32SequenceNum, \
|
|
|
|
uint32_t *pui32Buffer))ROM_ADCTABLE[0])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_ADCIntDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32SequenceNum))ROM_ADCTABLE[1])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_ADCIntEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32SequenceNum))ROM_ADCTABLE[2])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_ADCIntStatus \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32SequenceNum, \
|
|
|
|
bool bMasked))ROM_ADCTABLE[3])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_ADCIntClear \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32SequenceNum))ROM_ADCTABLE[4])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_ADCSequenceEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32SequenceNum))ROM_ADCTABLE[5])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_ADCSequenceDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32SequenceNum))ROM_ADCTABLE[6])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_ADCSequenceConfigure \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32SequenceNum, \
|
|
|
|
uint32_t ui32Trigger, \
|
|
|
|
uint32_t ui32Priority))ROM_ADCTABLE[7])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_ADCSequenceStepConfigure \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32SequenceNum, \
|
|
|
|
uint32_t ui32Step, \
|
|
|
|
uint32_t ui32Config))ROM_ADCTABLE[8])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_ADCSequenceOverflow \
|
2013-12-30 17:37:40 -05:00
|
|
|
((int32_t (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32SequenceNum))ROM_ADCTABLE[9])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_ADCSequenceOverflowClear \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32SequenceNum))ROM_ADCTABLE[10])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_ADCSequenceUnderflow \
|
2013-12-30 17:37:40 -05:00
|
|
|
((int32_t (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32SequenceNum))ROM_ADCTABLE[11])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_ADCSequenceUnderflowClear \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32SequenceNum))ROM_ADCTABLE[12])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_ADCProcessorTrigger \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32SequenceNum))ROM_ADCTABLE[13])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_ADCHardwareOversampleConfigure \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Factor))ROM_ADCTABLE[14])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_ADCComparatorConfigure \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Comp, \
|
|
|
|
uint32_t ui32Config))ROM_ADCTABLE[15])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_ADCComparatorRegionSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Comp, \
|
|
|
|
uint32_t ui32LowRef, \
|
|
|
|
uint32_t ui32HighRef))ROM_ADCTABLE[16])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_ADCComparatorReset \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Comp, \
|
|
|
|
bool bTrigger, \
|
|
|
|
bool bInterrupt))ROM_ADCTABLE[17])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_ADCComparatorIntDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32SequenceNum))ROM_ADCTABLE[18])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_ADCComparatorIntEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32SequenceNum))ROM_ADCTABLE[19])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_ADCComparatorIntStatus \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base))ROM_ADCTABLE[20])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_ADCComparatorIntClear \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Status))ROM_ADCTABLE[21])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_ADCReferenceSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Ref))ROM_ADCTABLE[22])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_ADCReferenceGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base))ROM_ADCTABLE[23])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_ADCPhaseDelaySet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Phase))ROM_ADCTABLE[24])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
|
|
|
#define ROM_ADCPhaseDelayGet \
|
|
|
|
((uint32_t (*)(uint32_t ui32Base))ROM_ADCTABLE[25])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
//*****************************************************************************
|
|
|
|
//
|
|
|
|
// Macros for calling ROM functions in the CAN API.
|
|
|
|
//
|
|
|
|
//*****************************************************************************
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_CANIntClear \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32IntClr))ROM_CANTABLE[0])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_CANInit \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base))ROM_CANTABLE[1])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_CANEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base))ROM_CANTABLE[2])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_CANDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base))ROM_CANTABLE[3])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_CANBitTimingSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
tCANBitClkParms *psClkParms))ROM_CANTABLE[4])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_CANBitTimingGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
tCANBitClkParms *psClkParms))ROM_CANTABLE[5])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_CANMessageSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32ObjID, \
|
|
|
|
tCANMsgObject *psMsgObject, \
|
2013-02-12 10:04:39 -05:00
|
|
|
tMsgObjType eMsgType))ROM_CANTABLE[6])
|
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_CANMessageGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32ObjID, \
|
|
|
|
tCANMsgObject *psMsgObject, \
|
|
|
|
bool bClrPendingInt))ROM_CANTABLE[7])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_CANStatusGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base, \
|
|
|
|
tCANStsReg eStatusReg))ROM_CANTABLE[8])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_CANMessageClear \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32ObjID))ROM_CANTABLE[9])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_CANIntEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32IntFlags))ROM_CANTABLE[10])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_CANIntDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32IntFlags))ROM_CANTABLE[11])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_CANIntStatus \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base, \
|
|
|
|
tCANIntStsReg eIntStsReg))ROM_CANTABLE[12])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_CANRetryGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((bool (*)(uint32_t ui32Base))ROM_CANTABLE[13])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_CANRetrySet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
bool bAutoRetry))ROM_CANTABLE[14])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_CANErrCntrGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((bool (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t *pui32RxCount, \
|
|
|
|
uint32_t *pui32TxCount))ROM_CANTABLE[15])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_CANBitRateSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32SourceClock, \
|
|
|
|
uint32_t ui32BitRate))ROM_CANTABLE[16])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
//*****************************************************************************
|
|
|
|
//
|
|
|
|
// Macros for calling ROM functions in the Comparator API.
|
|
|
|
//
|
|
|
|
//*****************************************************************************
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_ComparatorIntClear \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Comp))ROM_COMPARATORTABLE[0])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_ComparatorConfigure \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Comp, \
|
|
|
|
uint32_t ui32Config))ROM_COMPARATORTABLE[1])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_ComparatorRefSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Ref))ROM_COMPARATORTABLE[2])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_ComparatorValueGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((bool (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Comp))ROM_COMPARATORTABLE[3])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_ComparatorIntEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Comp))ROM_COMPARATORTABLE[4])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_ComparatorIntDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Comp))ROM_COMPARATORTABLE[5])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_ComparatorIntStatus \
|
2013-12-30 17:37:40 -05:00
|
|
|
((bool (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Comp, \
|
|
|
|
bool bMasked))ROM_COMPARATORTABLE[6])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
//*****************************************************************************
|
|
|
|
//
|
|
|
|
// Macros for calling ROM functions in the EEPROM API.
|
|
|
|
//
|
|
|
|
//*****************************************************************************
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_EEPROMRead \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t *pui32Data, \
|
|
|
|
uint32_t ui32Address, \
|
|
|
|
uint32_t ui32Count))ROM_EEPROMTABLE[0])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_EEPROMBlockCountGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(void))ROM_EEPROMTABLE[1])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_EEPROMBlockHide \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Block))ROM_EEPROMTABLE[2])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_EEPROMBlockLock \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Block))ROM_EEPROMTABLE[3])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_EEPROMBlockPasswordSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Block, \
|
|
|
|
uint32_t *pui32Password, \
|
|
|
|
uint32_t ui32Count))ROM_EEPROMTABLE[4])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_EEPROMBlockProtectGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Block))ROM_EEPROMTABLE[5])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_EEPROMBlockProtectSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Block, \
|
|
|
|
uint32_t ui32Protect))ROM_EEPROMTABLE[6])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_EEPROMBlockUnlock \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Block, \
|
|
|
|
uint32_t *pui32Password, \
|
|
|
|
uint32_t ui32Count))ROM_EEPROMTABLE[7])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_EEPROMIntClear \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32IntFlags))ROM_EEPROMTABLE[8])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_EEPROMIntDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32IntFlags))ROM_EEPROMTABLE[9])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_EEPROMIntEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32IntFlags))ROM_EEPROMTABLE[10])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_EEPROMIntStatus \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(bool bMasked))ROM_EEPROMTABLE[11])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_EEPROMMassErase \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(void))ROM_EEPROMTABLE[12])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_EEPROMProgram \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t *pui32Data, \
|
|
|
|
uint32_t ui32Address, \
|
|
|
|
uint32_t ui32Count))ROM_EEPROMTABLE[13])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_EEPROMProgramNonBlocking \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Data, \
|
|
|
|
uint32_t ui32Address))ROM_EEPROMTABLE[14])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_EEPROMSizeGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(void))ROM_EEPROMTABLE[15])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_EEPROMStatusGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(void))ROM_EEPROMTABLE[16])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_EEPROMInit \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(void))ROM_EEPROMTABLE[17])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
//*****************************************************************************
|
|
|
|
//
|
|
|
|
// Macros for calling ROM functions in the Fan API.
|
|
|
|
//
|
|
|
|
//*****************************************************************************
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_FanIntClear \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Flags))ROM_FANTABLE[0])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_FanChannelConfigAuto \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Channel, \
|
|
|
|
uint32_t ui32Config))ROM_FANTABLE[1])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_FanChannelConfigManual \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Channel, \
|
|
|
|
uint32_t ui32Config))ROM_FANTABLE[2])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_FanChannelDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Channel))ROM_FANTABLE[3])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_FanChannelDutyGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Channel))ROM_FANTABLE[4])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_FanChannelDutySet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Channel, \
|
|
|
|
uint32_t ui32Duty))ROM_FANTABLE[5])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_FanChannelEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Channel))ROM_FANTABLE[6])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_FanChannelRPMGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Channel))ROM_FANTABLE[7])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_FanChannelRPMSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Channel, \
|
|
|
|
uint32_t ui32RPM))ROM_FANTABLE[8])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_FanChannelStatus \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Channel))ROM_FANTABLE[9])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_FanChannelsGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base))ROM_FANTABLE[10])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_FanIntDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Flags))ROM_FANTABLE[11])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_FanIntEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Flags))ROM_FANTABLE[12])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_FanIntStatus \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base, \
|
|
|
|
bool bMasked))ROM_FANTABLE[13])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
//*****************************************************************************
|
|
|
|
//
|
|
|
|
// Macros for calling ROM functions in the Flash API.
|
|
|
|
//
|
|
|
|
//*****************************************************************************
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_FlashProgram \
|
2013-12-30 17:37:40 -05:00
|
|
|
((int32_t (*)(uint32_t *pui32Data, \
|
|
|
|
uint32_t ui32Address, \
|
|
|
|
uint32_t ui32Count))ROM_FLASHTABLE[0])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_FlashErase \
|
2013-12-30 17:37:40 -05:00
|
|
|
((int32_t (*)(uint32_t ui32Address))ROM_FLASHTABLE[3])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_FlashProtectGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((tFlashProtection (*)(uint32_t ui32Address))ROM_FLASHTABLE[4])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_FlashProtectSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((int32_t (*)(uint32_t ui32Address, \
|
|
|
|
tFlashProtection eProtect))ROM_FLASHTABLE[5])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_FlashProtectSave \
|
2013-12-30 17:37:40 -05:00
|
|
|
((int32_t (*)(void))ROM_FLASHTABLE[6])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_FlashUserGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((int32_t (*)(uint32_t *pui32User0, \
|
|
|
|
uint32_t *pui32User1))ROM_FLASHTABLE[7])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_FlashUserSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((int32_t (*)(uint32_t ui32User0, \
|
|
|
|
uint32_t ui32User1))ROM_FLASHTABLE[8])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_FlashUserSave \
|
2013-12-30 17:37:40 -05:00
|
|
|
((int32_t (*)(void))ROM_FLASHTABLE[9])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_FlashIntEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32IntFlags))ROM_FLASHTABLE[10])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_FlashIntDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32IntFlags))ROM_FLASHTABLE[11])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_FlashIntStatus \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(bool bMasked))ROM_FLASHTABLE[12])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_FlashIntClear \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32IntFlags))ROM_FLASHTABLE[13])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
//*****************************************************************************
|
|
|
|
//
|
|
|
|
// Macros for calling ROM functions in the FPU API.
|
|
|
|
//
|
|
|
|
//*****************************************************************************
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_FPUEnable \
|
|
|
|
((void (*)(void))ROM_FPUTABLE[0])
|
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_FPUDisable \
|
|
|
|
((void (*)(void))ROM_FPUTABLE[1])
|
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_FPUFlushToZeroModeSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Mode))ROM_FPUTABLE[2])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_FPUHalfPrecisionModeSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Mode))ROM_FPUTABLE[3])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_FPULazyStackingEnable \
|
|
|
|
((void (*)(void))ROM_FPUTABLE[4])
|
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_FPUNaNModeSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Mode))ROM_FPUTABLE[5])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_FPURoundingModeSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Mode))ROM_FPUTABLE[6])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_FPUStackingDisable \
|
|
|
|
((void (*)(void))ROM_FPUTABLE[7])
|
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_FPUStackingEnable \
|
|
|
|
((void (*)(void))ROM_FPUTABLE[8])
|
|
|
|
#endif
|
|
|
|
|
|
|
|
//*****************************************************************************
|
|
|
|
//
|
|
|
|
// Macros for calling ROM functions in the GPIO API.
|
|
|
|
//
|
|
|
|
//*****************************************************************************
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_GPIOPinWrite \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Port, \
|
|
|
|
uint8_t ui8Pins, \
|
|
|
|
uint8_t ui8Val))ROM_GPIOTABLE[0])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_GPIODirModeSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Port, \
|
|
|
|
uint8_t ui8Pins, \
|
|
|
|
uint32_t ui32PinIO))ROM_GPIOTABLE[1])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_GPIODirModeGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Port, \
|
|
|
|
uint8_t ui8Pin))ROM_GPIOTABLE[2])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_GPIOIntTypeSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Port, \
|
|
|
|
uint8_t ui8Pins, \
|
|
|
|
uint32_t ui32IntType))ROM_GPIOTABLE[3])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_GPIOIntTypeGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Port, \
|
|
|
|
uint8_t ui8Pin))ROM_GPIOTABLE[4])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_GPIOPadConfigSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Port, \
|
|
|
|
uint8_t ui8Pins, \
|
|
|
|
uint32_t ui32Strength, \
|
|
|
|
uint32_t ui32PadType))ROM_GPIOTABLE[5])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_GPIOPadConfigGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Port, \
|
|
|
|
uint8_t ui8Pin, \
|
|
|
|
uint32_t *pui32Strength, \
|
|
|
|
uint32_t *pui32PadType))ROM_GPIOTABLE[6])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_GPIOPinRead \
|
2013-12-30 17:37:40 -05:00
|
|
|
((int32_t (*)(uint32_t ui32Port, \
|
|
|
|
uint8_t ui8Pins))ROM_GPIOTABLE[11])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_GPIOPinTypeCAN \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Port, \
|
|
|
|
uint8_t ui8Pins))ROM_GPIOTABLE[12])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_GPIOPinTypeComparator \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Port, \
|
|
|
|
uint8_t ui8Pins))ROM_GPIOTABLE[13])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_GPIOPinTypeGPIOInput \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Port, \
|
|
|
|
uint8_t ui8Pins))ROM_GPIOTABLE[14])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_GPIOPinTypeGPIOOutput \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Port, \
|
|
|
|
uint8_t ui8Pins))ROM_GPIOTABLE[15])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_GPIOPinTypeI2C \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Port, \
|
|
|
|
uint8_t ui8Pins))ROM_GPIOTABLE[16])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_GPIOPinTypePWM \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Port, \
|
|
|
|
uint8_t ui8Pins))ROM_GPIOTABLE[17])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_GPIOPinTypeQEI \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Port, \
|
|
|
|
uint8_t ui8Pins))ROM_GPIOTABLE[18])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_GPIOPinTypeSSI \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Port, \
|
|
|
|
uint8_t ui8Pins))ROM_GPIOTABLE[19])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_GPIOPinTypeTimer \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Port, \
|
|
|
|
uint8_t ui8Pins))ROM_GPIOTABLE[20])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_GPIOPinTypeUART \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Port, \
|
|
|
|
uint8_t ui8Pins))ROM_GPIOTABLE[21])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_GPIOPinTypeGPIOOutputOD \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Port, \
|
|
|
|
uint8_t ui8Pins))ROM_GPIOTABLE[22])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_GPIOPinTypeADC \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Port, \
|
|
|
|
uint8_t ui8Pins))ROM_GPIOTABLE[23])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_GPIOPinTypeUSBDigital \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Port, \
|
|
|
|
uint8_t ui8Pins))ROM_GPIOTABLE[24])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_GPIOPinConfigure \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32PinConfig))ROM_GPIOTABLE[26])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_GPIOPinTypeUSBAnalog \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Port, \
|
|
|
|
uint8_t ui8Pins))ROM_GPIOTABLE[28])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_GPIODMATriggerEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Port, \
|
|
|
|
uint8_t ui8Pins))ROM_GPIOTABLE[31])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_GPIODMATriggerDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Port, \
|
|
|
|
uint8_t ui8Pins))ROM_GPIOTABLE[32])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_GPIOADCTriggerEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Port, \
|
|
|
|
uint8_t ui8Pins))ROM_GPIOTABLE[33])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_GPIOADCTriggerDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Port, \
|
|
|
|
uint8_t ui8Pins))ROM_GPIOTABLE[34])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_GPIOPinTypeFan \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Port, \
|
|
|
|
uint8_t ui8Pins))ROM_GPIOTABLE[35])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_GPIOPinTypeLPC \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Port, \
|
|
|
|
uint8_t ui8Pins))ROM_GPIOTABLE[36])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_GPIOPinTypePECIRx \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Port, \
|
|
|
|
uint8_t ui8Pins))ROM_GPIOTABLE[37])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_GPIOPinTypePECITx \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Port, \
|
|
|
|
uint8_t ui8Pins))ROM_GPIOTABLE[38])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_GPIOPinTypeI2CSCL \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Port, \
|
|
|
|
uint8_t ui8Pins))ROM_GPIOTABLE[39])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
//*****************************************************************************
|
|
|
|
//
|
|
|
|
// Macros for calling ROM functions in the Hibernate API.
|
|
|
|
//
|
|
|
|
//*****************************************************************************
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_HibernateIntClear \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32IntFlags))ROM_HIBERNATETABLE[0])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_HibernateEnableExpClk \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32HibClk))ROM_HIBERNATETABLE[1])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_HibernateDisable \
|
|
|
|
((void (*)(void))ROM_HIBERNATETABLE[2])
|
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_HibernateRTCEnable \
|
|
|
|
((void (*)(void))ROM_HIBERNATETABLE[4])
|
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_HibernateRTCDisable \
|
|
|
|
((void (*)(void))ROM_HIBERNATETABLE[5])
|
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_HibernateWakeSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32WakeFlags))ROM_HIBERNATETABLE[6])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_HibernateWakeGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(void))ROM_HIBERNATETABLE[7])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_HibernateLowBatSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32LowBatFlags))ROM_HIBERNATETABLE[8])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_HibernateLowBatGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(void))ROM_HIBERNATETABLE[9])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_HibernateRTCSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32RTCValue))ROM_HIBERNATETABLE[10])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_HibernateRTCGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(void))ROM_HIBERNATETABLE[11])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_HibernateRTCTrimSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Trim))ROM_HIBERNATETABLE[16])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_HibernateRTCTrimGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(void))ROM_HIBERNATETABLE[17])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_HibernateDataSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t *pui32Data, \
|
|
|
|
uint32_t ui32Count))ROM_HIBERNATETABLE[18])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_HibernateDataGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t *pui32Data, \
|
|
|
|
uint32_t ui32Count))ROM_HIBERNATETABLE[19])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_HibernateRequest \
|
|
|
|
((void (*)(void))ROM_HIBERNATETABLE[20])
|
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_HibernateIntEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32IntFlags))ROM_HIBERNATETABLE[21])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_HibernateIntDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32IntFlags))ROM_HIBERNATETABLE[22])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
|
|
|
#define ROM_HibernateIntStatus \
|
|
|
|
((uint32_t (*)(bool bMasked))ROM_HIBERNATETABLE[23])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
|
|
|
#define ROM_HibernateIsActive \
|
|
|
|
((uint32_t (*)(void))ROM_HIBERNATETABLE[24])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_HibernateRTCSSGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(void))ROM_HIBERNATETABLE[27])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_HibernateClockConfig \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Config))ROM_HIBERNATETABLE[28])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_HibernateBatCheckStart \
|
|
|
|
((void (*)(void))ROM_HIBERNATETABLE[29])
|
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_HibernateBatCheckDone \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(void))ROM_HIBERNATETABLE[30])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
//*****************************************************************************
|
|
|
|
//
|
|
|
|
// Macros for calling ROM functions in the I2C API.
|
|
|
|
//
|
|
|
|
//*****************************************************************************
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_I2CMasterDataPut \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint8_t ui8Data))ROM_I2CTABLE[0])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_I2CMasterInitExpClk \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32I2CClk, \
|
|
|
|
bool bFast))ROM_I2CTABLE[1])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_I2CMasterEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base))ROM_I2CTABLE[3])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_I2CMasterDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base))ROM_I2CTABLE[5])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_I2CMasterIntEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base))ROM_I2CTABLE[7])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_I2CMasterIntDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base))ROM_I2CTABLE[9])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_I2CMasterIntStatus \
|
2013-12-30 17:37:40 -05:00
|
|
|
((bool (*)(uint32_t ui32Base, \
|
|
|
|
bool bMasked))ROM_I2CTABLE[11])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_I2CMasterIntClear \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base))ROM_I2CTABLE[13])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_I2CMasterSlaveAddrSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint8_t ui8SlaveAddr, \
|
|
|
|
bool bReceive))ROM_I2CTABLE[15])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_I2CMasterBusy \
|
2013-12-30 17:37:40 -05:00
|
|
|
((bool (*)(uint32_t ui32Base))ROM_I2CTABLE[16])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_I2CMasterBusBusy \
|
2013-12-30 17:37:40 -05:00
|
|
|
((bool (*)(uint32_t ui32Base))ROM_I2CTABLE[17])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_I2CMasterControl \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Cmd))ROM_I2CTABLE[18])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_I2CMasterErr \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base))ROM_I2CTABLE[19])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_I2CMasterDataGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base))ROM_I2CTABLE[20])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_UpdateI2C \
|
|
|
|
((void (*)(void))ROM_I2CTABLE[24])
|
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_I2CMasterIntEnableEx \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32IntFlags))ROM_I2CTABLE[29])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_I2CMasterIntDisableEx \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32IntFlags))ROM_I2CTABLE[30])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_I2CMasterIntStatusEx \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base, \
|
|
|
|
bool bMasked))ROM_I2CTABLE[31])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_I2CMasterIntClearEx \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32IntFlags))ROM_I2CTABLE[32])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_I2CMasterTimeoutSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Value))ROM_I2CTABLE[33])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
|
|
|
#define ROM_I2CMasterLineStateGet \
|
|
|
|
((uint32_t (*)(uint32_t ui32Base))ROM_I2CTABLE[38])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
//*****************************************************************************
|
|
|
|
//
|
|
|
|
// Macros for calling ROM functions in the Interrupt API.
|
|
|
|
//
|
|
|
|
//*****************************************************************************
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_IntEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Interrupt))ROM_INTERRUPTTABLE[0])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_IntMasterEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((bool (*)(void))ROM_INTERRUPTTABLE[1])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_IntMasterDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((bool (*)(void))ROM_INTERRUPTTABLE[2])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_IntDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Interrupt))ROM_INTERRUPTTABLE[3])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_IntPriorityGroupingSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Bits))ROM_INTERRUPTTABLE[4])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_IntPriorityGroupingGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(void))ROM_INTERRUPTTABLE[5])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_IntPrioritySet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Interrupt, \
|
|
|
|
uint8_t ui8Priority))ROM_INTERRUPTTABLE[6])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_IntPriorityGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((int32_t (*)(uint32_t ui32Interrupt))ROM_INTERRUPTTABLE[7])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_IntPendSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Interrupt))ROM_INTERRUPTTABLE[8])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_IntPendClear \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Interrupt))ROM_INTERRUPTTABLE[9])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_IntPriorityMaskSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32PriorityMask))ROM_INTERRUPTTABLE[10])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_IntPriorityMaskGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(void))ROM_INTERRUPTTABLE[11])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RB1)
|
|
|
|
#define ROM_IntIsEnabled \
|
|
|
|
((uint32_t (*)(uint32_t ui32Interrupt))ROM_INTERRUPTTABLE[12])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
//*****************************************************************************
|
|
|
|
//
|
|
|
|
// Macros for calling ROM functions in the LPC API.
|
|
|
|
//
|
|
|
|
//*****************************************************************************
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_LPCIntClear \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32IntFlags))ROM_LPCTABLE[0])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_LPCByteRead \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint8_t (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Offset))ROM_LPCTABLE[1])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_LPCByteWrite \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Offset, \
|
|
|
|
uint8_t ui8Data))ROM_LPCTABLE[2])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_LPCChannelConfigCOMxSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Channel, \
|
|
|
|
uint32_t ui32Config, \
|
|
|
|
uint32_t ui32Address, \
|
|
|
|
uint32_t ui32Offset, \
|
|
|
|
uint32_t ui32COMxMode))ROM_LPCTABLE[3])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_LPCChannelConfigGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Channel, \
|
|
|
|
uint32_t *pui32Address, \
|
|
|
|
uint32_t *pui32Offset, \
|
|
|
|
uint32_t *pui32COMxMode))ROM_LPCTABLE[4])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_LPCChannelConfigEPSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Channel, \
|
|
|
|
uint32_t ui32Config, \
|
|
|
|
uint32_t ui32Address, \
|
|
|
|
uint32_t ui32Offset))ROM_LPCTABLE[5])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_LPCChannelConfigMBSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Channel, \
|
|
|
|
uint32_t ui32Config, \
|
|
|
|
uint32_t ui32Address, \
|
|
|
|
uint32_t ui32Offset))ROM_LPCTABLE[6])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_LPCChannelDMAConfigGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base))ROM_LPCTABLE[7])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_LPCChannelDMAConfigSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Config, \
|
|
|
|
uint32_t ui32Mask))ROM_LPCTABLE[8])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_LPCChannelDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Channel))ROM_LPCTABLE[9])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_LPCChannelEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Channel))ROM_LPCTABLE[10])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_LPCChannelStatusClear \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Channel, \
|
|
|
|
uint32_t ui32Status))ROM_LPCTABLE[11])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_LPCChannelStatusGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Channel))ROM_LPCTABLE[12])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_LPCChannelStatusSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Channel, \
|
|
|
|
uint32_t ui32Status))ROM_LPCTABLE[13])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_LPCCOMxIntClear \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32IntFlags))ROM_LPCTABLE[14])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_LPCCOMxIntDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32IntFlags))ROM_LPCTABLE[15])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_LPCCOMxIntEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32IntFlags))ROM_LPCTABLE[16])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_LPCCOMxIntStatus \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base, \
|
|
|
|
bool bMasked))ROM_LPCTABLE[17])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_LPCConfigGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base))ROM_LPCTABLE[18])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_LPCConfigSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Config))ROM_LPCTABLE[19])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_LPCHalfWordRead \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint16_t (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Offset))ROM_LPCTABLE[20])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_LPCHalfWordWrite \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Offset, \
|
|
|
|
uint16_t ui16Data))ROM_LPCTABLE[21])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_LPCIRQClear \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32IRQ))ROM_LPCTABLE[22])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_LPCIRQConfig \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
bool bIRQPulse, \
|
|
|
|
bool bIRQOnChange))ROM_LPCTABLE[23])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_LPCIRQGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base))ROM_LPCTABLE[24])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_LPCIRQSend \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base))ROM_LPCTABLE[25])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_LPCIRQSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32IRQ))ROM_LPCTABLE[26])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_LPCIntDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32IntFlags))ROM_LPCTABLE[27])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_LPCIntEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32IntFlags))ROM_LPCTABLE[28])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_LPCIntStatus \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base, \
|
|
|
|
bool bMasked))ROM_LPCTABLE[29])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_LPCSCIAssert \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Count))ROM_LPCTABLE[30])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_LPCStatusGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t *pui32Count, \
|
|
|
|
uint32_t *pui32PoolSize))ROM_LPCTABLE[31])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_LPCWordRead \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Offset))ROM_LPCTABLE[32])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_LPCWordWrite \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Offset, \
|
|
|
|
uint32_t ui32Data))ROM_LPCTABLE[33])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_LPCChannelPoolAddressGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Channel))ROM_LPCTABLE[34])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_LPCStatusBlockAddressGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base))ROM_LPCTABLE[35])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_LPCStatusBlockAddressSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Address, \
|
|
|
|
bool bEnabled))ROM_LPCTABLE[36])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
//*****************************************************************************
|
|
|
|
//
|
|
|
|
// Macros for calling ROM functions in the MPU API.
|
|
|
|
//
|
|
|
|
//*****************************************************************************
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_MPUEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32MPUConfig))ROM_MPUTABLE[0])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_MPUDisable \
|
|
|
|
((void (*)(void))ROM_MPUTABLE[1])
|
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_MPURegionCountGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(void))ROM_MPUTABLE[2])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_MPURegionEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Region))ROM_MPUTABLE[3])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_MPURegionDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Region))ROM_MPUTABLE[4])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_MPURegionSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Region, \
|
|
|
|
uint32_t ui32Addr, \
|
|
|
|
uint32_t ui32Flags))ROM_MPUTABLE[5])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_MPURegionGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Region, \
|
|
|
|
uint32_t *pui32Addr, \
|
|
|
|
uint32_t *pui32Flags))ROM_MPUTABLE[6])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
//*****************************************************************************
|
|
|
|
//
|
|
|
|
// Macros for calling ROM functions in the PECI API.
|
|
|
|
//
|
|
|
|
//*****************************************************************************
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_PECIIntClear \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32IntFlags))ROM_PECITABLE[0])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_PECIAdvCmdSend \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint8_t ui8Cmd, \
|
|
|
|
uint8_t ui8HidRe, \
|
|
|
|
uint8_t ui8Domain, \
|
|
|
|
uint8_t ui8Proi8Add, \
|
|
|
|
uint32_t ui32Arg, \
|
|
|
|
uint8_t ui8Size, \
|
|
|
|
uint32_t ui32Data0, \
|
|
|
|
uint32_t ui32Data1))ROM_PECITABLE[1])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_PECIAdvCmdSendNonBlocking \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base, \
|
|
|
|
uint8_t ui8Cmd, \
|
|
|
|
uint8_t ui8HidRe, \
|
|
|
|
uint8_t ui8Domain, \
|
|
|
|
uint8_t ui8Proi8Add, \
|
|
|
|
uint32_t ui32Arg, \
|
|
|
|
uint8_t ui8Size, \
|
|
|
|
uint32_t ui32Data0, \
|
|
|
|
uint32_t ui32Data1))ROM_PECITABLE[2])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_PECIAdvCmdStatusGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t *pui32Data0, \
|
|
|
|
uint32_t *pui32Data1))ROM_PECITABLE[3])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_PECIConfigGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32PECIClk, \
|
|
|
|
uint32_t *pui32Baud, \
|
|
|
|
uint32_t *pui32Poll, \
|
|
|
|
uint32_t *pui32Offset, \
|
|
|
|
uint32_t *pui32Retry))ROM_PECITABLE[4])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_PECIConfigSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32PECIClk, \
|
|
|
|
uint32_t ui32Baud, \
|
|
|
|
uint32_t ui32Poll, \
|
|
|
|
uint32_t ui32Offset, \
|
|
|
|
uint32_t ui32Retry))ROM_PECITABLE[5])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_PECIDomainMaxReadClear \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Domain))ROM_PECITABLE[6])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_PECIDomainValueClear \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Domain))ROM_PECITABLE[7])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_PECIDomainConfigGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Domain, \
|
|
|
|
uint32_t *pui32High, \
|
|
|
|
uint32_t *pui32Low))ROM_PECITABLE[8])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_PECIDomainConfigSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Domain, \
|
|
|
|
uint32_t ui32High, \
|
|
|
|
uint32_t ui32Low))ROM_PECITABLE[9])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_PECIDomainDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Domain))ROM_PECITABLE[10])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_PECIDomainEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Domain))ROM_PECITABLE[11])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_PECIDomainMaxReadGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Domain))ROM_PECITABLE[12])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_PECIDomainValueGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Domain))ROM_PECITABLE[13])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_PECIIntDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32IntFlags))ROM_PECITABLE[14])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_PECIIntEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32IntFlags, \
|
|
|
|
uint32_t ui32IntMode))ROM_PECITABLE[15])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_PECIIntStatus \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base, \
|
|
|
|
bool bMasked))ROM_PECITABLE[16])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_PECIBypassEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base))ROM_PECITABLE[17])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_PECIBypassDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base))ROM_PECITABLE[18])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
//*****************************************************************************
|
|
|
|
//
|
|
|
|
// Macros for calling ROM functions in the PWM API.
|
|
|
|
//
|
|
|
|
//*****************************************************************************
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_PWMPulseWidthSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32PWMOut, \
|
|
|
|
uint32_t ui32Width))ROM_PWMTABLE[0])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_PWMGenConfigure \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Gen, \
|
|
|
|
uint32_t ui32Config))ROM_PWMTABLE[1])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_PWMGenPeriodSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Gen, \
|
|
|
|
uint32_t ui32Period))ROM_PWMTABLE[2])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_PWMGenPeriodGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Gen))ROM_PWMTABLE[3])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_PWMGenEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Gen))ROM_PWMTABLE[4])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_PWMGenDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Gen))ROM_PWMTABLE[5])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_PWMPulseWidthGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32PWMOut))ROM_PWMTABLE[6])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_PWMDeadBandEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Gen, \
|
|
|
|
uint16_t ui16Rise, \
|
|
|
|
uint16_t ui16Fall))ROM_PWMTABLE[7])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_PWMDeadBandDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Gen))ROM_PWMTABLE[8])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_PWMSyncUpdate \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32GenBits))ROM_PWMTABLE[9])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_PWMSyncTimeBase \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32GenBits))ROM_PWMTABLE[10])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_PWMOutputState \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32PWMOutBits, \
|
|
|
|
bool bEnable))ROM_PWMTABLE[11])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_PWMOutputInvert \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32PWMOutBits, \
|
|
|
|
bool bInvert))ROM_PWMTABLE[12])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_PWMOutputFault \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32PWMOutBits, \
|
|
|
|
bool bFaultSuppress))ROM_PWMTABLE[13])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_PWMGenIntTrigEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Gen, \
|
|
|
|
uint32_t ui32IntTrig))ROM_PWMTABLE[14])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_PWMGenIntTrigDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Gen, \
|
|
|
|
uint32_t ui32IntTrig))ROM_PWMTABLE[15])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_PWMGenIntStatus \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Gen, \
|
|
|
|
bool bMasked))ROM_PWMTABLE[16])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_PWMGenIntClear \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Gen, \
|
|
|
|
uint32_t ui32Ints))ROM_PWMTABLE[17])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_PWMIntEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32GenFault))ROM_PWMTABLE[18])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_PWMIntDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32GenFault))ROM_PWMTABLE[19])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_PWMFaultIntClear \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base))ROM_PWMTABLE[20])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_PWMIntStatus \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base, \
|
|
|
|
bool bMasked))ROM_PWMTABLE[21])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_PWMOutputFaultLevel \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32PWMOutBits, \
|
|
|
|
bool bDriveHigh))ROM_PWMTABLE[22])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_PWMFaultIntClearExt \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32FaultInts))ROM_PWMTABLE[23])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_PWMGenFaultConfigure \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Gen, \
|
|
|
|
uint32_t ui32MinFaultPeriod, \
|
|
|
|
uint32_t ui32FaultSenses))ROM_PWMTABLE[24])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_PWMGenFaultTriggerSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Gen, \
|
|
|
|
uint32_t ui32Group, \
|
|
|
|
uint32_t ui32FaultTriggers))ROM_PWMTABLE[25])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_PWMGenFaultTriggerGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Gen, \
|
|
|
|
uint32_t ui32Group))ROM_PWMTABLE[26])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_PWMGenFaultStatus \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Gen, \
|
|
|
|
uint32_t ui32Group))ROM_PWMTABLE[27])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_PWMGenFaultClear \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Gen, \
|
|
|
|
uint32_t ui32Group, \
|
|
|
|
uint32_t ui32FaultTriggers))ROM_PWMTABLE[28])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
//*****************************************************************************
|
|
|
|
//
|
|
|
|
// Macros for calling ROM functions in the QEI API.
|
|
|
|
//
|
|
|
|
//*****************************************************************************
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_QEIPositionGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base))ROM_QEITABLE[0])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_QEIEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base))ROM_QEITABLE[1])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_QEIDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base))ROM_QEITABLE[2])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_QEIConfigure \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Config, \
|
|
|
|
uint32_t ui32MaxPosition))ROM_QEITABLE[3])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_QEIPositionSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Position))ROM_QEITABLE[4])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_QEIDirectionGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((int32_t (*)(uint32_t ui32Base))ROM_QEITABLE[5])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_QEIErrorGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((bool (*)(uint32_t ui32Base))ROM_QEITABLE[6])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_QEIVelocityEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base))ROM_QEITABLE[7])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_QEIVelocityDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base))ROM_QEITABLE[8])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_QEIVelocityConfigure \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32PreDiv, \
|
|
|
|
uint32_t ui32Period))ROM_QEITABLE[9])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_QEIVelocityGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base))ROM_QEITABLE[10])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_QEIIntEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32IntFlags))ROM_QEITABLE[11])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_QEIIntDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32IntFlags))ROM_QEITABLE[12])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_QEIIntStatus \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base, \
|
|
|
|
bool bMasked))ROM_QEITABLE[13])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_QEIIntClear \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32IntFlags))ROM_QEITABLE[14])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
//*****************************************************************************
|
|
|
|
//
|
|
|
|
// Macros for calling ROM functions in the SMBus API.
|
|
|
|
//
|
|
|
|
//*****************************************************************************
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusMasterIntProcess \
|
2013-12-30 17:37:40 -05:00
|
|
|
((tSMBusStatus (*)(tSMBus *psSMBus))ROM_SMBUSTABLE[0])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusARPDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(tSMBus *psSMBus))ROM_SMBUSTABLE[1])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusARPEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(tSMBus *psSMBus))ROM_SMBUSTABLE[2])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusARPUDIDPacketDecode \
|
|
|
|
((void (*)(tSMBusUDID *pUDID, \
|
2013-12-30 17:37:40 -05:00
|
|
|
uint8_t *pui8Address, \
|
|
|
|
uint8_t *pui8Data))ROM_SMBUSTABLE[3])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusARPUDIDPacketEncode \
|
|
|
|
((void (*)(tSMBusUDID *pUDID, \
|
2013-12-30 17:37:40 -05:00
|
|
|
uint8_t ui8Address, \
|
|
|
|
uint8_t *pui8Data))ROM_SMBUSTABLE[4])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusMasterARPAssignAddress \
|
2013-12-30 17:37:40 -05:00
|
|
|
((tSMBusStatus (*)(tSMBus *psSMBus, \
|
|
|
|
uint8_t *pui8Data))ROM_SMBUSTABLE[5])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusMasterARPGetUDIDDir \
|
2013-12-30 17:37:40 -05:00
|
|
|
((tSMBusStatus (*)(tSMBus *psSMBus, \
|
|
|
|
uint8_t ui8TargetAddress, \
|
|
|
|
uint8_t *pui8Data))ROM_SMBUSTABLE[6])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusMasterARPGetUDIDGen \
|
2013-12-30 17:37:40 -05:00
|
|
|
((tSMBusStatus (*)(tSMBus *psSMBus, \
|
|
|
|
uint8_t *pui8Data))ROM_SMBUSTABLE[7])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusMasterARPNotifyMaster \
|
2013-12-30 17:37:40 -05:00
|
|
|
((tSMBusStatus (*)(tSMBus *psSMBus, \
|
|
|
|
uint8_t *pui8Data))ROM_SMBUSTABLE[8])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusMasterARPPrepareToARP \
|
2013-12-30 17:37:40 -05:00
|
|
|
((tSMBusStatus (*)(tSMBus *psSMBus))ROM_SMBUSTABLE[9])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusMasterARPResetDeviceDir \
|
2013-12-30 17:37:40 -05:00
|
|
|
((tSMBusStatus (*)(tSMBus *psSMBus, \
|
|
|
|
uint8_t ui8TargetAddress))ROM_SMBUSTABLE[10])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusMasterARPResetDeviceGen \
|
2013-12-30 17:37:40 -05:00
|
|
|
((tSMBusStatus (*)(tSMBus *psSMBus))ROM_SMBUSTABLE[11])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusMasterBlockProcessCall \
|
2013-12-30 17:37:40 -05:00
|
|
|
((tSMBusStatus (*)(tSMBus *psSMBus, \
|
|
|
|
uint8_t ui8TargetAddress, \
|
|
|
|
uint8_t ui8Command, \
|
|
|
|
uint8_t *pui8TxData, \
|
|
|
|
uint8_t ui8TxSize, \
|
|
|
|
uint8_t *pui8RxData))ROM_SMBUSTABLE[12])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusMasterBlockRead \
|
2013-12-30 17:37:40 -05:00
|
|
|
((tSMBusStatus (*)(tSMBus *psSMBus, \
|
|
|
|
uint8_t ui8TargetAddress, \
|
|
|
|
uint8_t ui8Command, \
|
|
|
|
uint8_t *pui8Data))ROM_SMBUSTABLE[13])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusMasterBlockWrite \
|
2013-12-30 17:37:40 -05:00
|
|
|
((tSMBusStatus (*)(tSMBus *psSMBus, \
|
|
|
|
uint8_t ui8TargetAddress, \
|
|
|
|
uint8_t ui8Command, \
|
|
|
|
uint8_t *pui8Data, \
|
|
|
|
uint8_t ui8Size))ROM_SMBUSTABLE[14])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusMasterByteReceive \
|
2013-12-30 17:37:40 -05:00
|
|
|
((tSMBusStatus (*)(tSMBus *psSMBus, \
|
|
|
|
uint8_t ui8TargetAddress, \
|
|
|
|
uint8_t *pui8Data))ROM_SMBUSTABLE[15])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusMasterByteSend \
|
2013-12-30 17:37:40 -05:00
|
|
|
((tSMBusStatus (*)(tSMBus *psSMBus, \
|
|
|
|
uint8_t ui8TargetAddress, \
|
|
|
|
uint8_t ui8Data))ROM_SMBUSTABLE[16])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusMasterByteWordRead \
|
2013-12-30 17:37:40 -05:00
|
|
|
((tSMBusStatus (*)(tSMBus *psSMBus, \
|
|
|
|
uint8_t ui8TargetAddress, \
|
|
|
|
uint8_t ui8Command, \
|
|
|
|
uint8_t *pui8Data, \
|
|
|
|
uint8_t ui8Size))ROM_SMBUSTABLE[17])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusMasterByteWordWrite \
|
2013-12-30 17:37:40 -05:00
|
|
|
((tSMBusStatus (*)(tSMBus *psSMBus, \
|
|
|
|
uint8_t ui8TargetAddress, \
|
|
|
|
uint8_t ui8Command, \
|
|
|
|
uint8_t *pui8Data, \
|
|
|
|
uint8_t ui8Size))ROM_SMBUSTABLE[18])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusMasterHostNotify \
|
2013-12-30 17:37:40 -05:00
|
|
|
((tSMBusStatus (*)(tSMBus *psSMBus, \
|
|
|
|
uint8_t ui8OwnSlaveAddress, \
|
|
|
|
uint8_t *pui8Data))ROM_SMBUSTABLE[19])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusMasterI2CRead \
|
2013-12-30 17:37:40 -05:00
|
|
|
((tSMBusStatus (*)(tSMBus *psSMBus, \
|
|
|
|
uint8_t ui8TargetAddress, \
|
|
|
|
uint8_t *pui8Data, \
|
|
|
|
uint8_t ui8Size))ROM_SMBUSTABLE[20])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusMasterI2CWrite \
|
2013-12-30 17:37:40 -05:00
|
|
|
((tSMBusStatus (*)(tSMBus *psSMBus, \
|
|
|
|
uint8_t ui8TargetAddress, \
|
|
|
|
uint8_t *pui8Data, \
|
|
|
|
uint8_t ui8Size))ROM_SMBUSTABLE[21])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusMasterI2CWriteRead \
|
2013-12-30 17:37:40 -05:00
|
|
|
((tSMBusStatus (*)(tSMBus *psSMBus, \
|
|
|
|
uint8_t ui8TargetAddress, \
|
|
|
|
uint8_t *pui8TxData, \
|
|
|
|
uint8_t ui8TxSize, \
|
|
|
|
uint8_t *pui8RxData, \
|
|
|
|
uint8_t ui8RxSize))ROM_SMBUSTABLE[22])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusMasterInit \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(tSMBus *psSMBus, \
|
|
|
|
uint32_t ui32I2CBase, \
|
|
|
|
uint32_t ui32SMBusClock))ROM_SMBUSTABLE[23])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusMasterIntEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(tSMBus *psSMBus))ROM_SMBUSTABLE[24])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusMasterProcessCall \
|
2013-12-30 17:37:40 -05:00
|
|
|
((tSMBusStatus (*)(tSMBus *psSMBus, \
|
|
|
|
uint8_t ui8TargetAddress, \
|
|
|
|
uint8_t ui8Command, \
|
|
|
|
uint8_t *pui8TxData, \
|
|
|
|
uint8_t *pui8RxData))ROM_SMBUSTABLE[25])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusMasterQuickCommand \
|
2013-12-30 17:37:40 -05:00
|
|
|
((tSMBusStatus (*)(tSMBus *psSMBus, \
|
|
|
|
uint8_t ui8TargetAddress, \
|
|
|
|
bool bData))ROM_SMBUSTABLE[26])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusPECDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(tSMBus *psSMBus))ROM_SMBUSTABLE[27])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusPECEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(tSMBus *psSMBus))ROM_SMBUSTABLE[28])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusRxPacketSizeGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint8_t (*)(tSMBus *psSMBus))ROM_SMBUSTABLE[29])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusSlaveACKSend \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(tSMBus *psSMBus, \
|
|
|
|
bool bACK))ROM_SMBUSTABLE[30])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusSlaveAddressSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(tSMBus *psSMBus, \
|
|
|
|
uint8_t ui8AddressNum, \
|
|
|
|
uint8_t ui8SlaveAddress))ROM_SMBUSTABLE[31])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusSlaveARPFlagARGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((bool (*)(tSMBus *psSMBus))ROM_SMBUSTABLE[32])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusSlaveARPFlagARSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(tSMBus *psSMBus, \
|
|
|
|
bool bValue))ROM_SMBUSTABLE[33])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusSlaveARPFlagAVGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((bool (*)(tSMBus *psSMBus))ROM_SMBUSTABLE[34])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusSlaveARPFlagAVSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(tSMBus *psSMBus, \
|
|
|
|
bool bValue))ROM_SMBUSTABLE[35])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusSlaveBlockTransferDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(tSMBus *psSMBus))ROM_SMBUSTABLE[36])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusSlaveBlockTransferEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(tSMBus *psSMBus))ROM_SMBUSTABLE[37])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusSlaveCommandGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint8_t (*)(tSMBus *psSMBus))ROM_SMBUSTABLE[38])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusSlaveI2CDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(tSMBus *psSMBus))ROM_SMBUSTABLE[39])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusSlaveI2CEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(tSMBus *psSMBus))ROM_SMBUSTABLE[40])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusSlaveInit \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(tSMBus *psSMBus, \
|
|
|
|
uint32_t ui32I2CBase))ROM_SMBUSTABLE[41])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusSlaveIntAddressGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((tSMBusStatus (*)(tSMBus *psSMBus))ROM_SMBUSTABLE[42])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusSlaveIntEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(tSMBus *psSMBus))ROM_SMBUSTABLE[43])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusSlaveIntProcess \
|
2013-12-30 17:37:40 -05:00
|
|
|
((tSMBusStatus (*)(tSMBus *psSMBus))ROM_SMBUSTABLE[44])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusSlaveManualACKDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(tSMBus *psSMBus))ROM_SMBUSTABLE[45])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusSlaveManualACKEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(tSMBus *psSMBus))ROM_SMBUSTABLE[46])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusSlaveManualACKStatusGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((bool (*)(tSMBus *psSMBus))ROM_SMBUSTABLE[47])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusSlaveProcessCallDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(tSMBus *psSMBus))ROM_SMBUSTABLE[48])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusSlaveProcessCallEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(tSMBus *psSMBus))ROM_SMBUSTABLE[49])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusSlaveRxBufferSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(tSMBus *psSMBus, \
|
|
|
|
uint8_t *pui8Data, \
|
|
|
|
uint8_t ui8Size))ROM_SMBUSTABLE[50])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusSlaveTransferInit \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(tSMBus *psSMBus))ROM_SMBUSTABLE[51])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusSlaveTxBufferSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(tSMBus *psSMBus, \
|
|
|
|
uint8_t *pui8Data, \
|
|
|
|
uint8_t ui8Size))ROM_SMBUSTABLE[52])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusSlaveUDIDSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(tSMBus *psSMBus, \
|
2013-02-12 10:04:39 -05:00
|
|
|
tSMBusUDID *pUDID))ROM_SMBUSTABLE[53])
|
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusStatusGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((tSMBusStatus (*)(tSMBus *psSMBus))ROM_SMBUSTABLE[54])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SMBusSlaveDataSend \
|
2013-12-30 17:37:40 -05:00
|
|
|
((tSMBusStatus (*)(tSMBus *psSMBus))ROM_SMBUSTABLE[55])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
//*****************************************************************************
|
|
|
|
//
|
|
|
|
// Macros for calling ROM functions in the SSI API.
|
|
|
|
//
|
|
|
|
//*****************************************************************************
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SSIDataPut \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Data))ROM_SSITABLE[0])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SSIConfigSetExpClk \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32SSIClk, \
|
|
|
|
uint32_t ui32Protocol, \
|
|
|
|
uint32_t ui32Mode, \
|
|
|
|
uint32_t ui32BitRate, \
|
|
|
|
uint32_t ui32DataWidth))ROM_SSITABLE[1])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SSIEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base))ROM_SSITABLE[2])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SSIDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base))ROM_SSITABLE[3])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SSIIntEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32IntFlags))ROM_SSITABLE[4])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SSIIntDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32IntFlags))ROM_SSITABLE[5])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SSIIntStatus \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base, \
|
|
|
|
bool bMasked))ROM_SSITABLE[6])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SSIIntClear \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32IntFlags))ROM_SSITABLE[7])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SSIDataPutNonBlocking \
|
2013-12-30 17:37:40 -05:00
|
|
|
((int32_t (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Data))ROM_SSITABLE[8])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SSIDataGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t *pui32Data))ROM_SSITABLE[9])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SSIDataGetNonBlocking \
|
2013-12-30 17:37:40 -05:00
|
|
|
((int32_t (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t *pui32Data))ROM_SSITABLE[10])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_UpdateSSI \
|
|
|
|
((void (*)(void))ROM_SSITABLE[11])
|
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SSIDMAEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32DMAFlags))ROM_SSITABLE[12])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SSIDMADisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32DMAFlags))ROM_SSITABLE[13])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SSIBusy \
|
2013-12-30 17:37:40 -05:00
|
|
|
((bool (*)(uint32_t ui32Base))ROM_SSITABLE[14])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SSIClockSourceGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base))ROM_SSITABLE[15])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SSIClockSourceSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Source))ROM_SSITABLE[16])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
//*****************************************************************************
|
|
|
|
//
|
|
|
|
// Macros for calling ROM functions in the SysCtl API.
|
|
|
|
//
|
|
|
|
//*****************************************************************************
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SysCtlSleep \
|
|
|
|
((void (*)(void))ROM_SYSCTLTABLE[0])
|
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SysCtlSRAMSizeGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(void))ROM_SYSCTLTABLE[1])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SysCtlFlashSizeGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(void))ROM_SYSCTLTABLE[2])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SysCtlPeripheralPresent \
|
2013-12-30 17:37:40 -05:00
|
|
|
((bool (*)(uint32_t ui32Peripheral))ROM_SYSCTLTABLE[4])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SysCtlPeripheralReset \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Peripheral))ROM_SYSCTLTABLE[5])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SysCtlPeripheralEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Peripheral))ROM_SYSCTLTABLE[6])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SysCtlPeripheralDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Peripheral))ROM_SYSCTLTABLE[7])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SysCtlPeripheralSleepEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Peripheral))ROM_SYSCTLTABLE[8])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SysCtlPeripheralSleepDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Peripheral))ROM_SYSCTLTABLE[9])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SysCtlPeripheralDeepSleepEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Peripheral))ROM_SYSCTLTABLE[10])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SysCtlPeripheralDeepSleepDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Peripheral))ROM_SYSCTLTABLE[11])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SysCtlPeripheralClockGating \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(bool bEnable))ROM_SYSCTLTABLE[12])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SysCtlIntEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Ints))ROM_SYSCTLTABLE[13])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SysCtlIntDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Ints))ROM_SYSCTLTABLE[14])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SysCtlIntClear \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Ints))ROM_SYSCTLTABLE[15])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SysCtlIntStatus \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(bool bMasked))ROM_SYSCTLTABLE[16])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SysCtlReset \
|
|
|
|
((void (*)(void))ROM_SYSCTLTABLE[19])
|
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SysCtlDeepSleep \
|
|
|
|
((void (*)(void))ROM_SYSCTLTABLE[20])
|
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SysCtlResetCauseGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(void))ROM_SYSCTLTABLE[21])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SysCtlResetCauseClear \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Causes))ROM_SYSCTLTABLE[22])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SysCtlClockSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Config))ROM_SYSCTLTABLE[23])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SysCtlClockGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(void))ROM_SYSCTLTABLE[24])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SysCtlPWMClockSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Config))ROM_SYSCTLTABLE[25])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SysCtlPWMClockGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(void))ROM_SYSCTLTABLE[26])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SysCtlADCSpeedSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Speed))ROM_SYSCTLTABLE[27])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SysCtlADCSpeedGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(void))ROM_SYSCTLTABLE[28])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SysCtlUSBPLLEnable \
|
|
|
|
((void (*)(void))ROM_SYSCTLTABLE[31])
|
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SysCtlUSBPLLDisable \
|
|
|
|
((void (*)(void))ROM_SYSCTLTABLE[32])
|
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SysCtlDelay \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Count))ROM_SYSCTLTABLE[34])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SysCtlPeripheralReady \
|
2013-12-30 17:37:40 -05:00
|
|
|
((bool (*)(uint32_t ui32Peripheral))ROM_SYSCTLTABLE[35])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SysCtlPeripheralPowerOn \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Peripheral))ROM_SYSCTLTABLE[36])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SysCtlPeripheralPowerOff \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Peripheral))ROM_SYSCTLTABLE[37])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SysCtlMOSCConfigSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Config))ROM_SYSCTLTABLE[44])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SysCtlPIOSCCalibrate \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Type))ROM_SYSCTLTABLE[45])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SysCtlDeepSleepClockSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Config))ROM_SYSCTLTABLE[46])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
//*****************************************************************************
|
|
|
|
//
|
|
|
|
// Macros for calling ROM functions in the SysExc API.
|
|
|
|
//
|
|
|
|
//*****************************************************************************
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SysExcIntStatus \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(bool bMasked))ROM_SYSEXCTABLE[0])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SysExcIntClear \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32IntFlags))ROM_SYSEXCTABLE[1])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SysExcIntDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32IntFlags))ROM_SYSEXCTABLE[2])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SysExcIntEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32IntFlags))ROM_SYSEXCTABLE[3])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
//*****************************************************************************
|
|
|
|
//
|
|
|
|
// Macros for calling ROM functions in the SysTick API.
|
|
|
|
//
|
|
|
|
//*****************************************************************************
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SysTickValueGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(void))ROM_SYSTICKTABLE[0])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SysTickEnable \
|
|
|
|
((void (*)(void))ROM_SYSTICKTABLE[1])
|
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SysTickDisable \
|
|
|
|
((void (*)(void))ROM_SYSTICKTABLE[2])
|
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SysTickIntEnable \
|
|
|
|
((void (*)(void))ROM_SYSTICKTABLE[3])
|
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SysTickIntDisable \
|
|
|
|
((void (*)(void))ROM_SYSTICKTABLE[4])
|
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SysTickPeriodSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Period))ROM_SYSTICKTABLE[5])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_SysTickPeriodGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(void))ROM_SYSTICKTABLE[6])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
//*****************************************************************************
|
|
|
|
//
|
|
|
|
// Macros for calling ROM functions in the Timer API.
|
|
|
|
//
|
|
|
|
//*****************************************************************************
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_TimerIntClear \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32IntFlags))ROM_TIMERTABLE[0])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_TimerEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Timer))ROM_TIMERTABLE[1])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_TimerDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Timer))ROM_TIMERTABLE[2])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_TimerConfigure \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Config))ROM_TIMERTABLE[3])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_TimerControlLevel \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Timer, \
|
|
|
|
bool bInvert))ROM_TIMERTABLE[4])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_TimerControlTrigger \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Timer, \
|
|
|
|
bool bEnable))ROM_TIMERTABLE[5])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_TimerControlEvent \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Timer, \
|
|
|
|
uint32_t ui32Event))ROM_TIMERTABLE[6])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_TimerControlStall \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Timer, \
|
|
|
|
bool bStall))ROM_TIMERTABLE[7])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_TimerRTCEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base))ROM_TIMERTABLE[8])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_TimerRTCDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base))ROM_TIMERTABLE[9])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_TimerPrescaleSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Timer, \
|
|
|
|
uint32_t ui32Value))ROM_TIMERTABLE[10])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_TimerPrescaleGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Timer))ROM_TIMERTABLE[11])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_TimerPrescaleMatchSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Timer, \
|
|
|
|
uint32_t ui32Value))ROM_TIMERTABLE[12])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_TimerPrescaleMatchGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Timer))ROM_TIMERTABLE[13])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_TimerLoadSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Timer, \
|
|
|
|
uint32_t ui32Value))ROM_TIMERTABLE[14])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_TimerLoadGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Timer))ROM_TIMERTABLE[15])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_TimerValueGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Timer))ROM_TIMERTABLE[16])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_TimerMatchSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Timer, \
|
|
|
|
uint32_t ui32Value))ROM_TIMERTABLE[17])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_TimerMatchGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Timer))ROM_TIMERTABLE[18])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_TimerIntEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32IntFlags))ROM_TIMERTABLE[19])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_TimerIntDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32IntFlags))ROM_TIMERTABLE[20])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_TimerIntStatus \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base, \
|
|
|
|
bool bMasked))ROM_TIMERTABLE[21])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_TimerControlWaitOnTrigger \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Timer, \
|
|
|
|
bool bWait))ROM_TIMERTABLE[22])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_TimerLoadSet64 \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint64_t ui64Value))ROM_TIMERTABLE[23])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_TimerLoadGet64 \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint64_t (*)(uint32_t ui32Base))ROM_TIMERTABLE[24])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_TimerValueGet64 \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint64_t (*)(uint32_t ui32Base))ROM_TIMERTABLE[25])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_TimerMatchSet64 \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint64_t ui64Value))ROM_TIMERTABLE[26])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_TimerMatchGet64 \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint64_t (*)(uint32_t ui32Base))ROM_TIMERTABLE[27])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
//*****************************************************************************
|
|
|
|
//
|
|
|
|
// Macros for calling ROM functions in the UART API.
|
|
|
|
//
|
|
|
|
//*****************************************************************************
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_UARTCharPut \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
2013-02-12 10:04:39 -05:00
|
|
|
unsigned char ucData))ROM_UARTTABLE[0])
|
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_UARTParityModeSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Parity))ROM_UARTTABLE[1])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_UARTParityModeGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base))ROM_UARTTABLE[2])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_UARTFIFOLevelSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32TxLevel, \
|
|
|
|
uint32_t ui32RxLevel))ROM_UARTTABLE[3])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_UARTFIFOLevelGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t *pui32TxLevel, \
|
|
|
|
uint32_t *pui32RxLevel))ROM_UARTTABLE[4])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_UARTConfigSetExpClk \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32UARTClk, \
|
|
|
|
uint32_t ui32Baud, \
|
|
|
|
uint32_t ui32Config))ROM_UARTTABLE[5])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_UARTConfigGetExpClk \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32UARTClk, \
|
|
|
|
uint32_t *pui32Baud, \
|
|
|
|
uint32_t *pui32Config))ROM_UARTTABLE[6])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_UARTEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base))ROM_UARTTABLE[7])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_UARTDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base))ROM_UARTTABLE[8])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_UARTEnableSIR \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
bool bLowPower))ROM_UARTTABLE[9])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_UARTDisableSIR \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base))ROM_UARTTABLE[10])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_UARTCharsAvail \
|
2013-12-30 17:37:40 -05:00
|
|
|
((bool (*)(uint32_t ui32Base))ROM_UARTTABLE[11])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_UARTSpaceAvail \
|
2013-12-30 17:37:40 -05:00
|
|
|
((bool (*)(uint32_t ui32Base))ROM_UARTTABLE[12])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_UARTCharGetNonBlocking \
|
2013-12-30 17:37:40 -05:00
|
|
|
((int32_t (*)(uint32_t ui32Base))ROM_UARTTABLE[13])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_UARTCharGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((int32_t (*)(uint32_t ui32Base))ROM_UARTTABLE[14])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_UARTCharPutNonBlocking \
|
2013-12-30 17:37:40 -05:00
|
|
|
((bool (*)(uint32_t ui32Base, \
|
|
|
|
unsigned char ucData))ROM_UARTTABLE[15])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_UARTBreakCtl \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
bool bBreakState))ROM_UARTTABLE[16])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_UARTIntEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32IntFlags))ROM_UARTTABLE[17])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_UARTIntDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32IntFlags))ROM_UARTTABLE[18])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_UARTIntStatus \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base, \
|
|
|
|
bool bMasked))ROM_UARTTABLE[19])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_UARTIntClear \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32IntFlags))ROM_UARTTABLE[20])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_UpdateUART \
|
|
|
|
((void (*)(void))ROM_UARTTABLE[21])
|
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_UARTDMAEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32DMAFlags))ROM_UARTTABLE[22])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_UARTDMADisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32DMAFlags))ROM_UARTTABLE[23])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_UARTFIFOEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base))ROM_UARTTABLE[24])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_UARTFIFODisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base))ROM_UARTTABLE[25])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_UARTBusy \
|
2013-12-30 17:37:40 -05:00
|
|
|
((bool (*)(uint32_t ui32Base))ROM_UARTTABLE[26])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_UARTTxIntModeSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Mode))ROM_UARTTABLE[27])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_UARTTxIntModeGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base))ROM_UARTTABLE[28])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_UARTRxErrorGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base))ROM_UARTTABLE[29])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_UARTRxErrorClear \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base))ROM_UARTTABLE[30])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_UARTClockSourceSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Source))ROM_UARTTABLE[31])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_UARTClockSourceGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base))ROM_UARTTABLE[32])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_UART9BitEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base))ROM_UARTTABLE[33])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_UART9BitDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base))ROM_UARTTABLE[34])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_UART9BitAddrSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint8_t ui8Addr, \
|
|
|
|
uint8_t ui8Mask))ROM_UARTTABLE[35])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_UART9BitAddrSend \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint8_t ui8Addr))ROM_UARTTABLE[36])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
//*****************************************************************************
|
|
|
|
//
|
|
|
|
// Macros for calling ROM functions in the uDMA API.
|
|
|
|
//
|
|
|
|
//*****************************************************************************
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_uDMAChannelTransferSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32ChannelStructIndex, \
|
|
|
|
uint32_t ui32Mode, \
|
2013-02-12 10:04:39 -05:00
|
|
|
void *pvSrcAddr, \
|
|
|
|
void *pvDstAddr, \
|
2013-12-30 17:37:40 -05:00
|
|
|
uint32_t ui32TransferSize))ROM_UDMATABLE[0])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_uDMAEnable \
|
|
|
|
((void (*)(void))ROM_UDMATABLE[1])
|
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_uDMADisable \
|
|
|
|
((void (*)(void))ROM_UDMATABLE[2])
|
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_uDMAErrorStatusGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(void))ROM_UDMATABLE[3])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_uDMAErrorStatusClear \
|
|
|
|
((void (*)(void))ROM_UDMATABLE[4])
|
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_uDMAChannelEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32ChannelNum))ROM_UDMATABLE[5])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_uDMAChannelDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32ChannelNum))ROM_UDMATABLE[6])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_uDMAChannelIsEnabled \
|
2013-12-30 17:37:40 -05:00
|
|
|
((bool (*)(uint32_t ui32ChannelNum))ROM_UDMATABLE[7])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_uDMAControlBaseSet \
|
|
|
|
((void (*)(void *pControlTable))ROM_UDMATABLE[8])
|
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_uDMAControlBaseGet \
|
|
|
|
((void * (*)(void))ROM_UDMATABLE[9])
|
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_uDMAChannelRequest \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32ChannelNum))ROM_UDMATABLE[10])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_uDMAChannelAttributeEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32ChannelNum, \
|
|
|
|
uint32_t ui32Attr))ROM_UDMATABLE[11])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_uDMAChannelAttributeDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32ChannelNum, \
|
|
|
|
uint32_t ui32Attr))ROM_UDMATABLE[12])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_uDMAChannelAttributeGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32ChannelNum))ROM_UDMATABLE[13])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_uDMAChannelControlSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32ChannelStructIndex, \
|
|
|
|
uint32_t ui32Control))ROM_UDMATABLE[14])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_uDMAChannelSizeGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32ChannelStructIndex))ROM_UDMATABLE[15])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_uDMAChannelModeGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32ChannelStructIndex))ROM_UDMATABLE[16])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_uDMAChannelSelectSecondary \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32SecPeriphs))ROM_UDMATABLE[17])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_uDMAChannelSelectDefault \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32DefPeriphs))ROM_UDMATABLE[18])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_uDMAIntStatus \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(void))ROM_UDMATABLE[19])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_uDMAIntClear \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32ChanMask))ROM_UDMATABLE[20])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_uDMAControlAlternateBaseGet \
|
|
|
|
((void * (*)(void))ROM_UDMATABLE[21])
|
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_uDMAChannelScatterGatherSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32ChannelNum, \
|
|
|
|
uint32_t ui32TaskCount, \
|
2013-02-12 10:04:39 -05:00
|
|
|
void *pvTaskList, \
|
2013-12-30 17:37:40 -05:00
|
|
|
uint32_t ui32IsPeriphSG))ROM_UDMATABLE[22])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_uDMAChannelAssign \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Mapping))ROM_UDMATABLE[23])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
//*****************************************************************************
|
|
|
|
//
|
|
|
|
// Macros for calling ROM functions in the USB API.
|
|
|
|
//
|
|
|
|
//*****************************************************************************
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBDevAddrGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base))ROM_USBTABLE[1])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBDevAddrSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Address))ROM_USBTABLE[2])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBDevConnect \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base))ROM_USBTABLE[3])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBDevDisconnect \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base))ROM_USBTABLE[4])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBDevEndpointConfigSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Endpoint, \
|
|
|
|
uint32_t ui32MaxPacketSize, \
|
|
|
|
uint32_t ui32Flags))ROM_USBTABLE[5])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBDevEndpointDataAck \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Endpoint, \
|
|
|
|
bool bIsLastPacket))ROM_USBTABLE[6])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBDevEndpointStall \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Endpoint, \
|
|
|
|
uint32_t ui32Flags))ROM_USBTABLE[7])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBDevEndpointStallClear \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Endpoint, \
|
|
|
|
uint32_t ui32Flags))ROM_USBTABLE[8])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBDevEndpointStatusClear \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Endpoint, \
|
|
|
|
uint32_t ui32Flags))ROM_USBTABLE[9])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBEndpointDataGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((int32_t (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Endpoint, \
|
|
|
|
uint8_t *pui8Data, \
|
|
|
|
uint32_t *pui32Size))ROM_USBTABLE[10])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBEndpointDataPut \
|
2013-12-30 17:37:40 -05:00
|
|
|
((int32_t (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Endpoint, \
|
|
|
|
uint8_t *pui8Data, \
|
|
|
|
uint32_t ui32Size))ROM_USBTABLE[11])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBEndpointDataSend \
|
2013-12-30 17:37:40 -05:00
|
|
|
((int32_t (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Endpoint, \
|
|
|
|
uint32_t ui32TransType))ROM_USBTABLE[12])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBEndpointDataToggleClear \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Endpoint, \
|
|
|
|
uint32_t ui32Flags))ROM_USBTABLE[13])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBEndpointStatus \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Endpoint))ROM_USBTABLE[14])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBFIFOAddrGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Endpoint))ROM_USBTABLE[15])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBFIFOConfigGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Endpoint, \
|
|
|
|
uint32_t *pui32FIFOAddress, \
|
|
|
|
uint32_t *pui32FIFOSize, \
|
|
|
|
uint32_t ui32Flags))ROM_USBTABLE[16])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBFIFOConfigSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Endpoint, \
|
|
|
|
uint32_t ui32FIFOAddress, \
|
|
|
|
uint32_t ui32FIFOSize, \
|
|
|
|
uint32_t ui32Flags))ROM_USBTABLE[17])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBFIFOFlush \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Endpoint, \
|
|
|
|
uint32_t ui32Flags))ROM_USBTABLE[18])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBFrameNumberGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base))ROM_USBTABLE[19])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBHostAddrGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Endpoint, \
|
|
|
|
uint32_t ui32Flags))ROM_USBTABLE[20])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBHostAddrSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Endpoint, \
|
|
|
|
uint32_t ui32Addr, \
|
|
|
|
uint32_t ui32Flags))ROM_USBTABLE[21])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBHostEndpointConfig \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Endpoint, \
|
|
|
|
uint32_t ui32MaxPacketSize, \
|
|
|
|
uint32_t ui32NAKPollInterval, \
|
|
|
|
uint32_t ui32TargetEndpoint, \
|
|
|
|
uint32_t ui32Flags))ROM_USBTABLE[22])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBHostEndpointDataAck \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Endpoint))ROM_USBTABLE[23])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBHostEndpointDataToggle \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Endpoint, \
|
|
|
|
bool bDataToggle, \
|
|
|
|
uint32_t ui32Flags))ROM_USBTABLE[24])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBHostEndpointStatusClear \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Endpoint, \
|
|
|
|
uint32_t ui32Flags))ROM_USBTABLE[25])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBHostHubAddrGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Endpoint, \
|
|
|
|
uint32_t ui32Flags))ROM_USBTABLE[26])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBHostHubAddrSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Endpoint, \
|
|
|
|
uint32_t ui32Addr, \
|
|
|
|
uint32_t ui32Flags))ROM_USBTABLE[27])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBHostPwrDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base))ROM_USBTABLE[28])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBHostPwrEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base))ROM_USBTABLE[29])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBHostPwrConfig \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Flags))ROM_USBTABLE[30])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBHostPwrFaultDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base))ROM_USBTABLE[31])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBHostPwrFaultEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base))ROM_USBTABLE[32])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBHostRequestIN \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Endpoint))ROM_USBTABLE[33])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBHostRequestStatus \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base))ROM_USBTABLE[34])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBHostReset \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
bool bStart))ROM_USBTABLE[35])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBHostResume \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
bool bStart))ROM_USBTABLE[36])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBHostSpeedGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base))ROM_USBTABLE[37])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBHostSuspend \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base))ROM_USBTABLE[38])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBDevEndpointConfigGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Endpoint, \
|
|
|
|
uint32_t *pui32MaxPacketSize, \
|
|
|
|
uint32_t *pui32Flags))ROM_USBTABLE[41])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBEndpointDMAEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Endpoint, \
|
|
|
|
uint32_t ui32Flags))ROM_USBTABLE[42])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBEndpointDMADisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Endpoint, \
|
|
|
|
uint32_t ui32Flags))ROM_USBTABLE[43])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBEndpointDataAvail \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Endpoint))ROM_USBTABLE[44])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBModeGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base))ROM_USBTABLE[46])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBEndpointDMAChannel \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Endpoint, \
|
|
|
|
uint32_t ui32Channel))ROM_USBTABLE[47])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBIntDisableControl \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32IntFlags))ROM_USBTABLE[48])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBIntEnableControl \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32IntFlags))ROM_USBTABLE[49])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBIntStatusControl \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base))ROM_USBTABLE[50])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBIntDisableEndpoint \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32IntFlags))ROM_USBTABLE[51])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBIntEnableEndpoint \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32IntFlags))ROM_USBTABLE[52])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBIntStatusEndpoint \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base))ROM_USBTABLE[53])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBHostMode \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base))ROM_USBTABLE[54])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBDevMode \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base))ROM_USBTABLE[55])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBPHYPowerOff \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base))ROM_USBTABLE[56])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBPHYPowerOn \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base))ROM_USBTABLE[57])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_UpdateUSB \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint8_t *pui8DescriptorInfo))ROM_USBTABLE[58])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_USBOTGMode \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base))ROM_USBTABLE[59])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RB1)
|
|
|
|
#define ROM_USBHostRequestINClear \
|
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Endpoint))ROM_USBTABLE[60])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RB1)
|
|
|
|
#define ROM_USBNumEndpointsGet \
|
|
|
|
((uint32_t (*)(uint32_t ui32Base))ROM_USBTABLE[61])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
//*****************************************************************************
|
|
|
|
//
|
|
|
|
// Macros for calling ROM functions in the Watchdog API.
|
|
|
|
//
|
|
|
|
//*****************************************************************************
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_WatchdogIntClear \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base))ROM_WATCHDOGTABLE[0])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_WatchdogRunning \
|
2013-12-30 17:37:40 -05:00
|
|
|
((bool (*)(uint32_t ui32Base))ROM_WATCHDOGTABLE[1])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_WatchdogEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base))ROM_WATCHDOGTABLE[2])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_WatchdogResetEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base))ROM_WATCHDOGTABLE[3])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_WatchdogResetDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base))ROM_WATCHDOGTABLE[4])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_WatchdogLock \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base))ROM_WATCHDOGTABLE[5])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_WatchdogUnlock \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base))ROM_WATCHDOGTABLE[6])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_WatchdogLockState \
|
2013-12-30 17:37:40 -05:00
|
|
|
((bool (*)(uint32_t ui32Base))ROM_WATCHDOGTABLE[7])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_WatchdogReloadSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32LoadVal))ROM_WATCHDOGTABLE[8])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_WatchdogReloadGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base))ROM_WATCHDOGTABLE[9])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_WatchdogValueGet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base))ROM_WATCHDOGTABLE[10])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_WatchdogIntEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base))ROM_WATCHDOGTABLE[11])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_WatchdogIntStatus \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint32_t (*)(uint32_t ui32Base, \
|
|
|
|
bool bMasked))ROM_WATCHDOGTABLE[12])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_WatchdogStallEnable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base))ROM_WATCHDOGTABLE[13])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_WatchdogStallDisable \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base))ROM_WATCHDOGTABLE[14])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_WatchdogIntTypeSet \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32Base, \
|
|
|
|
uint32_t ui32Type))ROM_WATCHDOGTABLE[15])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
|
|
|
|
|
|
|
//*****************************************************************************
|
|
|
|
//
|
|
|
|
// Macros for calling ROM functions in the Software API.
|
|
|
|
//
|
|
|
|
//*****************************************************************************
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_Crc16Array \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint16_t (*)(uint32_t ui32WordLen, \
|
|
|
|
const uint32_t *pui32Data))ROM_SOFTWARETABLE[1])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_Crc16Array3 \
|
2013-12-30 17:37:40 -05:00
|
|
|
((void (*)(uint32_t ui32WordLen, \
|
|
|
|
const uint32_t *pui32Data, \
|
|
|
|
uint16_t *pui16Crc3))ROM_SOFTWARETABLE[2])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_Crc16 \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint16_t (*)(uint16_t ui16Crc, \
|
|
|
|
const uint8_t *pui8Data, \
|
|
|
|
uint32_t ui32Count))ROM_SOFTWARETABLE[3])
|
2013-02-12 10:04:39 -05:00
|
|
|
#endif
|
2013-12-30 17:37:40 -05:00
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_Crc8CCITT \
|
2013-12-30 17:37:40 -05:00
|
|
|
((uint8_t (*)(uint8_t ui8Crc, \
|
|
|
|
const uint8_t *pui8Data, \
|
|
|
|
uint32_t ui32Count))ROM_SOFTWARETABLE[4])
|
|
|
|
#endif
|
|
|
|
#if defined(TARGET_IS_BLIZZARD_RA1) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RA3) || \
|
|
|
|
defined(TARGET_IS_BLIZZARD_RB1)
|
2013-02-12 10:04:39 -05:00
|
|
|
#define ROM_pvAESTable \
|
|
|
|
((void *)&(ROM_SOFTWARETABLE[7]))
|
|
|
|
#endif
|
|
|
|
|
|
|
|
#endif // __ROM_H__
|