123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487 |
- /*!
- *******************************************************************************
- **
- ** \file gh_vic.h
- **
- ** \brief VIC.
- **
- ** Copyright: 2012 - 2013 (C) GoKe Microelectronics ShangHai Branch
- **
- ** \attention THIS SAMPLE CODE IS PROVIDED AS IS. GOKE MICROELECTRONICS
- ** ACCEPTS NO RESPONSIBILITY OR LIABILITY FOR ANY ERRORS OR
- ** OMMISSIONS.
- **
- ** \note Do not modify this file as it is generated automatically.
- **
- ******************************************************************************/
- #ifndef _GH_VIC_H
- #define _GH_VIC_H
- #ifdef __LINUX__
- #include "reg4linux.h"
- #else
- #define FIO_ADDRESS(block,address) (address)
- #define FIO_MOFFSET(block,moffset) (moffset)
- #endif
- #ifndef __LINUX__
- #include "gtypes.h" /* global type definitions */
- #include "gh_lib_cfg.h" /* configuration */
- #endif
- #define GH_VIC_ENABLE_DEBUG_PRINT 0
- #ifdef __LINUX__
- #define GH_VIC_DEBUG_PRINT_FUNCTION printk
- #else
- #define GH_VIC_DEBUG_PRINT_FUNCTION printf
- #endif
- #ifndef __LINUX__
- #if GH_VIC_ENABLE_DEBUG_PRINT
- #include <stdio.h>
- #endif
- #endif
- /* check configuration */
- #ifndef GH_INLINE_LEVEL
- #error "GH_INLINE_LEVEL is not defined!"
- #endif
- #if GH_INLINE_LEVEL > 2
- #error "GH_INLINE_LEVEL must be set 0, 1 or 2!"
- #endif
- #ifndef GH_INLINE
- #error "GH_INLINE is not defined!"
- #endif
- /* disable inlining for debugging */
- #ifdef DEBUG
- #undef GH_INLINE_LEVEL
- #define GH_INLINE_LEVEL 0
- #endif
- /*----------------------------------------------------------------------------*/
- /* registers */
- /*----------------------------------------------------------------------------*/
- #define REG_VIC_SENSE FIO_ADDRESS(VIC,0x90008000) /* read/write */
- #define REG_VIC_EVENT FIO_ADDRESS(VIC,0x90008004) /* read/write */
- #define REG_VIC_BOTHEDGE FIO_ADDRESS(VIC,0x90008008) /* read/write */
- #define REG_VIC_SELECT FIO_ADDRESS(VIC,0x9000800C) /* read/write */
- #define REG_VIC_ENABLE FIO_ADDRESS(VIC,0x90008010) /* read/write */
- #define REG_VIC_ENCLR FIO_ADDRESS(VIC,0x90008014) /* write */
- #define REG_VIC_RAWSTS FIO_ADDRESS(VIC,0x90008018) /* read */
- #define REG_VIC_SOFTINT FIO_ADDRESS(VIC,0x9000801C) /* read/write */
- #define REG_VIC_SOFTINTRCLR FIO_ADDRESS(VIC,0x90008020) /* write */
- #define REG_VIC_PROTECT FIO_ADDRESS(VIC,0x90008024) /* read/write */
- #define REG_VIC_IRQSTS FIO_ADDRESS(VIC,0x90008030) /* read */
- #define REG_VIC_FIQSTS FIO_ADDRESS(VIC,0x90008034) /* read */
- #define REG_VIC_EDGECLR FIO_ADDRESS(VIC,0x90008038) /* write */
- /*----------------------------------------------------------------------------*/
- /* bit group structures */
- /*----------------------------------------------------------------------------*/
- typedef union { /* VIC_Protect */
- U32 all;
- struct {
- U32 protect : 1;
- U32 : 31;
- } bitc;
- } GH_VIC_PROTECT_S;
- /*----------------------------------------------------------------------------*/
- /* mirror variables */
- /*----------------------------------------------------------------------------*/
- extern U32 m_vic_enclr[2];
- extern U32 m_vic_softintrclr[2];
- extern U32 m_vic_edgeclr[2];
- #ifdef __cplusplus
- extern "C" {
- #endif
- /*----------------------------------------------------------------------------*/
- /* register VIC_Sense (read/write) */
- /*----------------------------------------------------------------------------*/
- #if GH_INLINE_LEVEL == 0
- /*! \brief Writes the register 'VIC_Sense'. */
- void GH_VIC_set_Sense(U8 index, U32 data);
- /*! \brief Reads the register 'VIC_Sense'. */
- U32 GH_VIC_get_Sense(U8 index);
- #else /* GH_INLINE_LEVEL == 0 */
- GH_INLINE void GH_VIC_set_Sense(U8 index, U32 data)
- {
- *(volatile U32 *)(REG_VIC_SENSE + index * FIO_MOFFSET(VIC,0x00001000)) = data;
- #if GH_VIC_ENABLE_DEBUG_PRINT
- GH_VIC_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_VIC_set_Sense] <-- 0x%08x\n",
- (REG_VIC_SENSE + index * FIO_MOFFSET(VIC,0x00001000)),data,data);
- #endif
- }
- GH_INLINE U32 GH_VIC_get_Sense(U8 index)
- {
- U32 value = (*(volatile U32 *)(REG_VIC_SENSE + index * FIO_MOFFSET(VIC,0x00001000)));
- #if GH_VIC_ENABLE_DEBUG_PRINT
- GH_VIC_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_VIC_get_Sense] --> 0x%08x\n",
- (REG_VIC_SENSE + index * FIO_MOFFSET(VIC,0x00001000)),value);
- #endif
- return value;
- }
- #endif /* GH_INLINE_LEVEL == 0 */
- /*----------------------------------------------------------------------------*/
- /* register VIC_Event (read/write) */
- /*----------------------------------------------------------------------------*/
- #if GH_INLINE_LEVEL == 0
- /*! \brief Writes the register 'VIC_Event'. */
- void GH_VIC_set_Event(U8 index, U32 data);
- /*! \brief Reads the register 'VIC_Event'. */
- U32 GH_VIC_get_Event(U8 index);
- #else /* GH_INLINE_LEVEL == 0 */
- GH_INLINE void GH_VIC_set_Event(U8 index, U32 data)
- {
- *(volatile U32 *)(REG_VIC_EVENT + index * FIO_MOFFSET(VIC,0x00001000)) = data;
- #if GH_VIC_ENABLE_DEBUG_PRINT
- GH_VIC_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_VIC_set_Event] <-- 0x%08x\n",
- (REG_VIC_EVENT + index * FIO_MOFFSET(VIC,0x00001000)),data,data);
- #endif
- }
- GH_INLINE U32 GH_VIC_get_Event(U8 index)
- {
- U32 value = (*(volatile U32 *)(REG_VIC_EVENT + index * FIO_MOFFSET(VIC,0x00001000)));
- #if GH_VIC_ENABLE_DEBUG_PRINT
- GH_VIC_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_VIC_get_Event] --> 0x%08x\n",
- (REG_VIC_EVENT + index * FIO_MOFFSET(VIC,0x00001000)),value);
- #endif
- return value;
- }
- #endif /* GH_INLINE_LEVEL == 0 */
- /*----------------------------------------------------------------------------*/
- /* register VIC_BothEdge (read/write) */
- /*----------------------------------------------------------------------------*/
- #if GH_INLINE_LEVEL == 0
- /*! \brief Writes the register 'VIC_BothEdge'. */
- void GH_VIC_set_BothEdge(U8 index, U32 data);
- /*! \brief Reads the register 'VIC_BothEdge'. */
- U32 GH_VIC_get_BothEdge(U8 index);
- #else /* GH_INLINE_LEVEL == 0 */
- GH_INLINE void GH_VIC_set_BothEdge(U8 index, U32 data)
- {
- *(volatile U32 *)(REG_VIC_BOTHEDGE + index * FIO_MOFFSET(VIC,0x00001000)) = data;
- #if GH_VIC_ENABLE_DEBUG_PRINT
- GH_VIC_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_VIC_set_BothEdge] <-- 0x%08x\n",
- (REG_VIC_BOTHEDGE + index * FIO_MOFFSET(VIC,0x00001000)),data,data);
- #endif
- }
- GH_INLINE U32 GH_VIC_get_BothEdge(U8 index)
- {
- U32 value = (*(volatile U32 *)(REG_VIC_BOTHEDGE + index * FIO_MOFFSET(VIC,0x00001000)));
- #if GH_VIC_ENABLE_DEBUG_PRINT
- GH_VIC_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_VIC_get_BothEdge] --> 0x%08x\n",
- (REG_VIC_BOTHEDGE + index * FIO_MOFFSET(VIC,0x00001000)),value);
- #endif
- return value;
- }
- #endif /* GH_INLINE_LEVEL == 0 */
- /*----------------------------------------------------------------------------*/
- /* register VIC_Select (read/write) */
- /*----------------------------------------------------------------------------*/
- #if GH_INLINE_LEVEL == 0
- /*! \brief Writes the register 'VIC_Select'. */
- void GH_VIC_set_Select(U8 index, U32 data);
- /*! \brief Reads the register 'VIC_Select'. */
- U32 GH_VIC_get_Select(U8 index);
- #else /* GH_INLINE_LEVEL == 0 */
- GH_INLINE void GH_VIC_set_Select(U8 index, U32 data)
- {
- *(volatile U32 *)(REG_VIC_SELECT + index * FIO_MOFFSET(VIC,0x00001000)) = data;
- #if GH_VIC_ENABLE_DEBUG_PRINT
- GH_VIC_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_VIC_set_Select] <-- 0x%08x\n",
- (REG_VIC_SELECT + index * FIO_MOFFSET(VIC,0x00001000)),data,data);
- #endif
- }
- GH_INLINE U32 GH_VIC_get_Select(U8 index)
- {
- U32 value = (*(volatile U32 *)(REG_VIC_SELECT + index * FIO_MOFFSET(VIC,0x00001000)));
- #if GH_VIC_ENABLE_DEBUG_PRINT
- GH_VIC_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_VIC_get_Select] --> 0x%08x\n",
- (REG_VIC_SELECT + index * FIO_MOFFSET(VIC,0x00001000)),value);
- #endif
- return value;
- }
- #endif /* GH_INLINE_LEVEL == 0 */
- /*----------------------------------------------------------------------------*/
- /* register VIC_Enable (read/write) */
- /*----------------------------------------------------------------------------*/
- #if GH_INLINE_LEVEL == 0
- /*! \brief Writes the register 'VIC_Enable'. */
- void GH_VIC_set_Enable(U8 index, U32 data);
- /*! \brief Reads the register 'VIC_Enable'. */
- U32 GH_VIC_get_Enable(U8 index);
- #else /* GH_INLINE_LEVEL == 0 */
- GH_INLINE void GH_VIC_set_Enable(U8 index, U32 data)
- {
- *(volatile U32 *)(REG_VIC_ENABLE + index * FIO_MOFFSET(VIC,0x00001000)) = data;
- #if GH_VIC_ENABLE_DEBUG_PRINT
- GH_VIC_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_VIC_set_Enable] <-- 0x%08x\n",
- (REG_VIC_ENABLE + index * FIO_MOFFSET(VIC,0x00001000)),data,data);
- #endif
- }
- GH_INLINE U32 GH_VIC_get_Enable(U8 index)
- {
- U32 value = (*(volatile U32 *)(REG_VIC_ENABLE + index * FIO_MOFFSET(VIC,0x00001000)));
- #if GH_VIC_ENABLE_DEBUG_PRINT
- GH_VIC_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_VIC_get_Enable] --> 0x%08x\n",
- (REG_VIC_ENABLE + index * FIO_MOFFSET(VIC,0x00001000)),value);
- #endif
- return value;
- }
- #endif /* GH_INLINE_LEVEL == 0 */
- /*----------------------------------------------------------------------------*/
- /* register VIC_EnClr (write) */
- /*----------------------------------------------------------------------------*/
- #if GH_INLINE_LEVEL < 2
- /*! \brief Writes the register 'VIC_EnClr'. */
- void GH_VIC_set_EnClr(U8 index, U32 data);
- /*! \brief Reads the mirror variable of the register 'VIC_EnClr'. */
- U32 GH_VIC_getm_EnClr(U8 index);
- #else /* GH_INLINE_LEVEL < 2 */
- GH_INLINE void GH_VIC_set_EnClr(U8 index, U32 data)
- {
- m_vic_enclr[index] = data;
- *(volatile U32 *)(REG_VIC_ENCLR + index * FIO_MOFFSET(VIC,0x00001000)) = data;
- #if GH_VIC_ENABLE_DEBUG_PRINT
- GH_VIC_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_VIC_set_EnClr] <-- 0x%08x\n",
- (REG_VIC_ENCLR + index * FIO_MOFFSET(VIC,0x00001000)),data,data);
- #endif
- }
- GH_INLINE U32 GH_VIC_getm_EnClr(U8 index)
- {
- #if GH_VIC_ENABLE_DEBUG_PRINT
- GH_VIC_DEBUG_PRINT_FUNCTION( "[GH_VIC_getm_EnClr] --> 0x%08x\n",
- m_vic_enclr[index]);
- #endif
- return m_vic_enclr[index];
- }
- #endif /* GH_INLINE_LEVEL < 2 */
- /*----------------------------------------------------------------------------*/
- /* register VIC_RawSts (read) */
- /*----------------------------------------------------------------------------*/
- #if GH_INLINE_LEVEL == 0
- /*! \brief Reads the register 'VIC_RawSts'. */
- U32 GH_VIC_get_RawSts(U8 index);
- #else /* GH_INLINE_LEVEL == 0 */
- GH_INLINE U32 GH_VIC_get_RawSts(U8 index)
- {
- U32 value = (*(volatile U32 *)(REG_VIC_RAWSTS + index * FIO_MOFFSET(VIC,0x00001000)));
- #if GH_VIC_ENABLE_DEBUG_PRINT
- GH_VIC_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_VIC_get_RawSts] --> 0x%08x\n",
- (REG_VIC_RAWSTS + index * FIO_MOFFSET(VIC,0x00001000)),value);
- #endif
- return value;
- }
- #endif /* GH_INLINE_LEVEL == 0 */
- /*----------------------------------------------------------------------------*/
- /* register VIC_SoftInt (read/write) */
- /*----------------------------------------------------------------------------*/
- #if GH_INLINE_LEVEL == 0
- /*! \brief Writes the register 'VIC_SoftInt'. */
- void GH_VIC_set_SoftInt(U8 index, U32 data);
- /*! \brief Reads the register 'VIC_SoftInt'. */
- U32 GH_VIC_get_SoftInt(U8 index);
- #else /* GH_INLINE_LEVEL == 0 */
- GH_INLINE void GH_VIC_set_SoftInt(U8 index, U32 data)
- {
- *(volatile U32 *)(REG_VIC_SOFTINT + index * FIO_MOFFSET(VIC,0x00001000)) = data;
- #if GH_VIC_ENABLE_DEBUG_PRINT
- GH_VIC_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_VIC_set_SoftInt] <-- 0x%08x\n",
- (REG_VIC_SOFTINT + index * FIO_MOFFSET(VIC,0x00001000)),data,data);
- #endif
- }
- GH_INLINE U32 GH_VIC_get_SoftInt(U8 index)
- {
- U32 value = (*(volatile U32 *)(REG_VIC_SOFTINT + index * FIO_MOFFSET(VIC,0x00001000)));
- #if GH_VIC_ENABLE_DEBUG_PRINT
- GH_VIC_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_VIC_get_SoftInt] --> 0x%08x\n",
- (REG_VIC_SOFTINT + index * FIO_MOFFSET(VIC,0x00001000)),value);
- #endif
- return value;
- }
- #endif /* GH_INLINE_LEVEL == 0 */
- /*----------------------------------------------------------------------------*/
- /* register VIC_SoftIntrClr (write) */
- /*----------------------------------------------------------------------------*/
- #if GH_INLINE_LEVEL < 2
- /*! \brief Writes the register 'VIC_SoftIntrClr'. */
- void GH_VIC_set_SoftIntrClr(U8 index, U32 data);
- /*! \brief Reads the mirror variable of the register 'VIC_SoftIntrClr'. */
- U32 GH_VIC_getm_SoftIntrClr(U8 index);
- #else /* GH_INLINE_LEVEL < 2 */
- GH_INLINE void GH_VIC_set_SoftIntrClr(U8 index, U32 data)
- {
- m_vic_softintrclr[index] = data;
- *(volatile U32 *)(REG_VIC_SOFTINTRCLR + index * FIO_MOFFSET(VIC,0x00001000)) = data;
- #if GH_VIC_ENABLE_DEBUG_PRINT
- GH_VIC_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_VIC_set_SoftIntrClr] <-- 0x%08x\n",
- (REG_VIC_SOFTINTRCLR + index * FIO_MOFFSET(VIC,0x00001000)),data,data);
- #endif
- }
- GH_INLINE U32 GH_VIC_getm_SoftIntrClr(U8 index)
- {
- #if GH_VIC_ENABLE_DEBUG_PRINT
- GH_VIC_DEBUG_PRINT_FUNCTION( "[GH_VIC_getm_SoftIntrClr] --> 0x%08x\n",
- m_vic_softintrclr[index]);
- #endif
- return m_vic_softintrclr[index];
- }
- #endif /* GH_INLINE_LEVEL < 2 */
- /*----------------------------------------------------------------------------*/
- /* register VIC_Protect (read/write) */
- /*----------------------------------------------------------------------------*/
- #if GH_INLINE_LEVEL == 0
- /*! \brief Writes the register 'VIC_Protect'. */
- void GH_VIC_set_Protect(U8 index, U32 data);
- /*! \brief Reads the register 'VIC_Protect'. */
- U32 GH_VIC_get_Protect(U8 index);
- /*! \brief Writes the bit group 'Protect' of register 'VIC_Protect'. */
- void GH_VIC_set_Protect_Protect(U8 index, U8 data);
- /*! \brief Reads the bit group 'Protect' of register 'VIC_Protect'. */
- U8 GH_VIC_get_Protect_Protect(U8 index);
- #else /* GH_INLINE_LEVEL == 0 */
- GH_INLINE void GH_VIC_set_Protect(U8 index, U32 data)
- {
- *(volatile U32 *)(REG_VIC_PROTECT + index * FIO_MOFFSET(VIC,0x00001000)) = data;
- #if GH_VIC_ENABLE_DEBUG_PRINT
- GH_VIC_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_VIC_set_Protect] <-- 0x%08x\n",
- (REG_VIC_PROTECT + index * FIO_MOFFSET(VIC,0x00001000)),data,data);
- #endif
- }
- GH_INLINE U32 GH_VIC_get_Protect(U8 index)
- {
- U32 value = (*(volatile U32 *)(REG_VIC_PROTECT + index * FIO_MOFFSET(VIC,0x00001000)));
- #if GH_VIC_ENABLE_DEBUG_PRINT
- GH_VIC_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_VIC_get_Protect] --> 0x%08x\n",
- (REG_VIC_PROTECT + index * FIO_MOFFSET(VIC,0x00001000)),value);
- #endif
- return value;
- }
- GH_INLINE void GH_VIC_set_Protect_Protect(U8 index, U8 data)
- {
- GH_VIC_PROTECT_S d;
- d.all = *(volatile U32 *)(REG_VIC_PROTECT + index * FIO_MOFFSET(VIC,0x00001000));
- d.bitc.protect = data;
- *(volatile U32 *)(REG_VIC_PROTECT + index * FIO_MOFFSET(VIC,0x00001000)) = d.all;
- #if GH_VIC_ENABLE_DEBUG_PRINT
- GH_VIC_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_VIC_set_Protect_Protect] <-- 0x%08x\n",
- (REG_VIC_PROTECT + index * FIO_MOFFSET(VIC,0x00001000)),d.all,d.all);
- #endif
- }
- GH_INLINE U8 GH_VIC_get_Protect_Protect(U8 index)
- {
- GH_VIC_PROTECT_S tmp_value;
- U32 value = (*(volatile U32 *)(REG_VIC_PROTECT + index * FIO_MOFFSET(VIC,0x00001000)));
- tmp_value.all = value;
- #if GH_VIC_ENABLE_DEBUG_PRINT
- GH_VIC_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_VIC_get_Protect_Protect] --> 0x%08x\n",
- (REG_VIC_PROTECT + index * FIO_MOFFSET(VIC,0x00001000)),value);
- #endif
- return tmp_value.bitc.protect;
- }
- #endif /* GH_INLINE_LEVEL == 0 */
- /*----------------------------------------------------------------------------*/
- /* register VIC_IRQSts (read) */
- /*----------------------------------------------------------------------------*/
- #if GH_INLINE_LEVEL == 0
- /*! \brief Reads the register 'VIC_IRQSts'. */
- U32 GH_VIC_get_IRQSts(U8 index);
- #else /* GH_INLINE_LEVEL == 0 */
- GH_INLINE U32 GH_VIC_get_IRQSts(U8 index)
- {
- U32 value = (*(volatile U32 *)(REG_VIC_IRQSTS + index * FIO_MOFFSET(VIC,0x00001000)));
- #if GH_VIC_ENABLE_DEBUG_PRINT
- GH_VIC_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_VIC_get_IRQSts] --> 0x%08x\n",
- (REG_VIC_IRQSTS + index * FIO_MOFFSET(VIC,0x00001000)),value);
- #endif
- return value;
- }
- #endif /* GH_INLINE_LEVEL == 0 */
- /*----------------------------------------------------------------------------*/
- /* register VIC_FIQSts (read) */
- /*----------------------------------------------------------------------------*/
- #if GH_INLINE_LEVEL == 0
- /*! \brief Reads the register 'VIC_FIQSts'. */
- U32 GH_VIC_get_FIQSts(U8 index);
- #else /* GH_INLINE_LEVEL == 0 */
- GH_INLINE U32 GH_VIC_get_FIQSts(U8 index)
- {
- U32 value = (*(volatile U32 *)(REG_VIC_FIQSTS + index * FIO_MOFFSET(VIC,0x00001000)));
- #if GH_VIC_ENABLE_DEBUG_PRINT
- GH_VIC_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_VIC_get_FIQSts] --> 0x%08x\n",
- (REG_VIC_FIQSTS + index * FIO_MOFFSET(VIC,0x00001000)),value);
- #endif
- return value;
- }
- #endif /* GH_INLINE_LEVEL == 0 */
- /*----------------------------------------------------------------------------*/
- /* register VIC_EdgeClr (write) */
- /*----------------------------------------------------------------------------*/
- #if GH_INLINE_LEVEL < 2
- /*! \brief Writes the register 'VIC_EdgeClr'. */
- void GH_VIC_set_EdgeClr(U8 index, U32 data);
- /*! \brief Reads the mirror variable of the register 'VIC_EdgeClr'. */
- U32 GH_VIC_getm_EdgeClr(U8 index);
- #else /* GH_INLINE_LEVEL < 2 */
- GH_INLINE void GH_VIC_set_EdgeClr(U8 index, U32 data)
- {
- m_vic_edgeclr[index] = data;
- *(volatile U32 *)(REG_VIC_EDGECLR + index * FIO_MOFFSET(VIC,0x00001000)) = data;
- #if GH_VIC_ENABLE_DEBUG_PRINT
- GH_VIC_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_VIC_set_EdgeClr] <-- 0x%08x\n",
- (REG_VIC_EDGECLR + index * FIO_MOFFSET(VIC,0x00001000)),data,data);
- #endif
- }
- GH_INLINE U32 GH_VIC_getm_EdgeClr(U8 index)
- {
- #if GH_VIC_ENABLE_DEBUG_PRINT
- GH_VIC_DEBUG_PRINT_FUNCTION( "[GH_VIC_getm_EdgeClr] --> 0x%08x\n",
- m_vic_edgeclr[index]);
- #endif
- return m_vic_edgeclr[index];
- }
- #endif /* GH_INLINE_LEVEL < 2 */
- /*----------------------------------------------------------------------------*/
- /* init function */
- /*----------------------------------------------------------------------------*/
- /*! \brief Initialises the registers and mirror variables. */
- void GH_VIC_init(void);
- #ifdef __cplusplus
- }
- #endif
- #endif /* _GH_VIC_H */
- /*----------------------------------------------------------------------------*/
- /* end of file */
- /*----------------------------------------------------------------------------*/
|