123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873 |
- /*!
- *******************************************************************************
- **
- ** \file gh_dma.h
- **
- ** \brief DMA Engine Subsystem.
- **
- ** 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_DMA_H
- #define _GH_DMA_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_DMA_ENABLE_DEBUG_PRINT 0
- #ifdef __LINUX__
- #define GH_DMA_DEBUG_PRINT_FUNCTION printk
- #else
- #define GH_DMA_DEBUG_PRINT_FUNCTION printf
- #endif
- #ifndef __LINUX__
- #if GH_DMA_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_DMA_CONTROL FIO_ADDRESS(DMA,0x9000331C) /* read/write */
- #define REG_DMA_SOURCE_ADDRESS FIO_ADDRESS(DMA,0x90003320) /* read/write */
- #define REG_DMA_DESTINATION_ADDRESS FIO_ADDRESS(DMA,0x90003324) /* read/write */
- #define REG_DMA_STATUS FIO_ADDRESS(DMA,0x90003328) /* read/write */
- #define REG_DMA_DESCRIPTOR_ADDRESS FIO_ADDRESS(DMA,0x90003308) /* read/write */
- #define REG_DMA_IR FIO_ADDRESS(DMA,0x90003304) /* read */
- /*----------------------------------------------------------------------------*/
- /* bit group structures */
- /*----------------------------------------------------------------------------*/
- typedef union { /* DMA_Control */
- U32 all;
- struct {
- U32 count : 22;
- U32 ts : 2;
- U32 blk : 3;
- U32 ni : 1;
- U32 rm : 1;
- U32 wm : 1;
- U32 d : 1;
- U32 en : 1;
- } bitc;
- } GH_DMA_CONTROL_S;
- typedef union { /* DMA_Status */
- U32 all;
- struct {
- U32 count : 22;
- U32 dn : 1;
- U32 ae : 1;
- U32 rwe : 1;
- U32 be : 1;
- U32 me : 1;
- U32 od : 1;
- U32 dd : 1;
- U32 da : 1;
- U32 oe : 1;
- U32 dm : 1;
- } bitc;
- } GH_DMA_STATUS_S;
- typedef union { /* DMA_IR */
- U32 all;
- struct {
- U32 i0 : 1;
- U32 i1 : 1;
- U32 i2 : 1;
- U32 i3 : 1;
- U32 : 28;
- } bitc;
- } GH_DMA_IR_S;
- /*----------------------------------------------------------------------------*/
- /* mirror variables */
- /*----------------------------------------------------------------------------*/
- #ifdef __cplusplus
- extern "C" {
- #endif
- /*----------------------------------------------------------------------------*/
- /* register DMA_Control (read/write) */
- /*----------------------------------------------------------------------------*/
- #if GH_INLINE_LEVEL == 0
- /*! \brief Writes the register 'DMA_Control'. */
- void GH_DMA_set_Control(U8 index, U32 data);
- /*! \brief Reads the register 'DMA_Control'. */
- U32 GH_DMA_get_Control(U8 index);
- /*! \brief Writes the bit group 'count' of register 'DMA_Control'. */
- void GH_DMA_set_Control_count(U8 index, U32 data);
- /*! \brief Reads the bit group 'count' of register 'DMA_Control'. */
- U32 GH_DMA_get_Control_count(U8 index);
- /*! \brief Writes the bit group 'ts' of register 'DMA_Control'. */
- void GH_DMA_set_Control_ts(U8 index, U8 data);
- /*! \brief Reads the bit group 'ts' of register 'DMA_Control'. */
- U8 GH_DMA_get_Control_ts(U8 index);
- /*! \brief Writes the bit group 'blk' of register 'DMA_Control'. */
- void GH_DMA_set_Control_blk(U8 index, U8 data);
- /*! \brief Reads the bit group 'blk' of register 'DMA_Control'. */
- U8 GH_DMA_get_Control_blk(U8 index);
- /*! \brief Writes the bit group 'ni' of register 'DMA_Control'. */
- void GH_DMA_set_Control_ni(U8 index, U8 data);
- /*! \brief Reads the bit group 'ni' of register 'DMA_Control'. */
- U8 GH_DMA_get_Control_ni(U8 index);
- /*! \brief Writes the bit group 'rm' of register 'DMA_Control'. */
- void GH_DMA_set_Control_rm(U8 index, U8 data);
- /*! \brief Reads the bit group 'rm' of register 'DMA_Control'. */
- U8 GH_DMA_get_Control_rm(U8 index);
- /*! \brief Writes the bit group 'wm' of register 'DMA_Control'. */
- void GH_DMA_set_Control_wm(U8 index, U8 data);
- /*! \brief Reads the bit group 'wm' of register 'DMA_Control'. */
- U8 GH_DMA_get_Control_wm(U8 index);
- /*! \brief Writes the bit group 'd' of register 'DMA_Control'. */
- void GH_DMA_set_Control_d(U8 index, U8 data);
- /*! \brief Reads the bit group 'd' of register 'DMA_Control'. */
- U8 GH_DMA_get_Control_d(U8 index);
- /*! \brief Writes the bit group 'en' of register 'DMA_Control'. */
- void GH_DMA_set_Control_en(U8 index, U8 data);
- /*! \brief Reads the bit group 'en' of register 'DMA_Control'. */
- U8 GH_DMA_get_Control_en(U8 index);
- #else /* GH_INLINE_LEVEL == 0 */
- GH_INLINE void GH_DMA_set_Control(U8 index, U32 data)
- {
- *(volatile U32 *)(REG_DMA_CONTROL + index * FIO_MOFFSET(DMA,0x00000010)) = data;
- #if GH_DMA_ENABLE_DEBUG_PRINT
- GH_DMA_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_DMA_set_Control] <-- 0x%08x\n",
- (REG_DMA_CONTROL + index * FIO_MOFFSET(DMA,0x00000010)),data,data);
- #endif
- }
- GH_INLINE U32 GH_DMA_get_Control(U8 index)
- {
- U32 value = (*(volatile U32 *)(REG_DMA_CONTROL + index * FIO_MOFFSET(DMA,0x00000010)));
- #if GH_DMA_ENABLE_DEBUG_PRINT
- GH_DMA_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_DMA_get_Control] --> 0x%08x\n",
- (REG_DMA_CONTROL + index * FIO_MOFFSET(DMA,0x00000010)),value);
- #endif
- return value;
- }
- GH_INLINE void GH_DMA_set_Control_count(U8 index, U32 data)
- {
- GH_DMA_CONTROL_S d;
- d.all = *(volatile U32 *)(REG_DMA_CONTROL + index * FIO_MOFFSET(DMA,0x00000010));
- d.bitc.count = data;
- *(volatile U32 *)(REG_DMA_CONTROL + index * FIO_MOFFSET(DMA,0x00000010)) = d.all;
- #if GH_DMA_ENABLE_DEBUG_PRINT
- GH_DMA_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_DMA_set_Control_count] <-- 0x%08x\n",
- (REG_DMA_CONTROL + index * FIO_MOFFSET(DMA,0x00000010)),d.all,d.all);
- #endif
- }
- GH_INLINE U32 GH_DMA_get_Control_count(U8 index)
- {
- GH_DMA_CONTROL_S tmp_value;
- U32 value = (*(volatile U32 *)(REG_DMA_CONTROL + index * FIO_MOFFSET(DMA,0x00000010)));
- tmp_value.all = value;
- #if GH_DMA_ENABLE_DEBUG_PRINT
- GH_DMA_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_DMA_get_Control_count] --> 0x%08x\n",
- (REG_DMA_CONTROL + index * FIO_MOFFSET(DMA,0x00000010)),value);
- #endif
- return tmp_value.bitc.count;
- }
- GH_INLINE void GH_DMA_set_Control_ts(U8 index, U8 data)
- {
- GH_DMA_CONTROL_S d;
- d.all = *(volatile U32 *)(REG_DMA_CONTROL + index * FIO_MOFFSET(DMA,0x00000010));
- d.bitc.ts = data;
- *(volatile U32 *)(REG_DMA_CONTROL + index * FIO_MOFFSET(DMA,0x00000010)) = d.all;
- #if GH_DMA_ENABLE_DEBUG_PRINT
- GH_DMA_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_DMA_set_Control_ts] <-- 0x%08x\n",
- (REG_DMA_CONTROL + index * FIO_MOFFSET(DMA,0x00000010)),d.all,d.all);
- #endif
- }
- GH_INLINE U8 GH_DMA_get_Control_ts(U8 index)
- {
- GH_DMA_CONTROL_S tmp_value;
- U32 value = (*(volatile U32 *)(REG_DMA_CONTROL + index * FIO_MOFFSET(DMA,0x00000010)));
- tmp_value.all = value;
- #if GH_DMA_ENABLE_DEBUG_PRINT
- GH_DMA_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_DMA_get_Control_ts] --> 0x%08x\n",
- (REG_DMA_CONTROL + index * FIO_MOFFSET(DMA,0x00000010)),value);
- #endif
- return tmp_value.bitc.ts;
- }
- GH_INLINE void GH_DMA_set_Control_blk(U8 index, U8 data)
- {
- GH_DMA_CONTROL_S d;
- d.all = *(volatile U32 *)(REG_DMA_CONTROL + index * FIO_MOFFSET(DMA,0x00000010));
- d.bitc.blk = data;
- *(volatile U32 *)(REG_DMA_CONTROL + index * FIO_MOFFSET(DMA,0x00000010)) = d.all;
- #if GH_DMA_ENABLE_DEBUG_PRINT
- GH_DMA_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_DMA_set_Control_blk] <-- 0x%08x\n",
- (REG_DMA_CONTROL + index * FIO_MOFFSET(DMA,0x00000010)),d.all,d.all);
- #endif
- }
- GH_INLINE U8 GH_DMA_get_Control_blk(U8 index)
- {
- GH_DMA_CONTROL_S tmp_value;
- U32 value = (*(volatile U32 *)(REG_DMA_CONTROL + index * FIO_MOFFSET(DMA,0x00000010)));
- tmp_value.all = value;
- #if GH_DMA_ENABLE_DEBUG_PRINT
- GH_DMA_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_DMA_get_Control_blk] --> 0x%08x\n",
- (REG_DMA_CONTROL + index * FIO_MOFFSET(DMA,0x00000010)),value);
- #endif
- return tmp_value.bitc.blk;
- }
- GH_INLINE void GH_DMA_set_Control_ni(U8 index, U8 data)
- {
- GH_DMA_CONTROL_S d;
- d.all = *(volatile U32 *)(REG_DMA_CONTROL + index * FIO_MOFFSET(DMA,0x00000010));
- d.bitc.ni = data;
- *(volatile U32 *)(REG_DMA_CONTROL + index * FIO_MOFFSET(DMA,0x00000010)) = d.all;
- #if GH_DMA_ENABLE_DEBUG_PRINT
- GH_DMA_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_DMA_set_Control_ni] <-- 0x%08x\n",
- (REG_DMA_CONTROL + index * FIO_MOFFSET(DMA,0x00000010)),d.all,d.all);
- #endif
- }
- GH_INLINE U8 GH_DMA_get_Control_ni(U8 index)
- {
- GH_DMA_CONTROL_S tmp_value;
- U32 value = (*(volatile U32 *)(REG_DMA_CONTROL + index * FIO_MOFFSET(DMA,0x00000010)));
- tmp_value.all = value;
- #if GH_DMA_ENABLE_DEBUG_PRINT
- GH_DMA_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_DMA_get_Control_ni] --> 0x%08x\n",
- (REG_DMA_CONTROL + index * FIO_MOFFSET(DMA,0x00000010)),value);
- #endif
- return tmp_value.bitc.ni;
- }
- GH_INLINE void GH_DMA_set_Control_rm(U8 index, U8 data)
- {
- GH_DMA_CONTROL_S d;
- d.all = *(volatile U32 *)(REG_DMA_CONTROL + index * FIO_MOFFSET(DMA,0x00000010));
- d.bitc.rm = data;
- *(volatile U32 *)(REG_DMA_CONTROL + index * FIO_MOFFSET(DMA,0x00000010)) = d.all;
- #if GH_DMA_ENABLE_DEBUG_PRINT
- GH_DMA_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_DMA_set_Control_rm] <-- 0x%08x\n",
- (REG_DMA_CONTROL + index * FIO_MOFFSET(DMA,0x00000010)),d.all,d.all);
- #endif
- }
- GH_INLINE U8 GH_DMA_get_Control_rm(U8 index)
- {
- GH_DMA_CONTROL_S tmp_value;
- U32 value = (*(volatile U32 *)(REG_DMA_CONTROL + index * FIO_MOFFSET(DMA,0x00000010)));
- tmp_value.all = value;
- #if GH_DMA_ENABLE_DEBUG_PRINT
- GH_DMA_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_DMA_get_Control_rm] --> 0x%08x\n",
- (REG_DMA_CONTROL + index * FIO_MOFFSET(DMA,0x00000010)),value);
- #endif
- return tmp_value.bitc.rm;
- }
- GH_INLINE void GH_DMA_set_Control_wm(U8 index, U8 data)
- {
- GH_DMA_CONTROL_S d;
- d.all = *(volatile U32 *)(REG_DMA_CONTROL + index * FIO_MOFFSET(DMA,0x00000010));
- d.bitc.wm = data;
- *(volatile U32 *)(REG_DMA_CONTROL + index * FIO_MOFFSET(DMA,0x00000010)) = d.all;
- #if GH_DMA_ENABLE_DEBUG_PRINT
- GH_DMA_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_DMA_set_Control_wm] <-- 0x%08x\n",
- (REG_DMA_CONTROL + index * FIO_MOFFSET(DMA,0x00000010)),d.all,d.all);
- #endif
- }
- GH_INLINE U8 GH_DMA_get_Control_wm(U8 index)
- {
- GH_DMA_CONTROL_S tmp_value;
- U32 value = (*(volatile U32 *)(REG_DMA_CONTROL + index * FIO_MOFFSET(DMA,0x00000010)));
- tmp_value.all = value;
- #if GH_DMA_ENABLE_DEBUG_PRINT
- GH_DMA_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_DMA_get_Control_wm] --> 0x%08x\n",
- (REG_DMA_CONTROL + index * FIO_MOFFSET(DMA,0x00000010)),value);
- #endif
- return tmp_value.bitc.wm;
- }
- GH_INLINE void GH_DMA_set_Control_d(U8 index, U8 data)
- {
- GH_DMA_CONTROL_S d;
- d.all = *(volatile U32 *)(REG_DMA_CONTROL + index * FIO_MOFFSET(DMA,0x00000010));
- d.bitc.d = data;
- *(volatile U32 *)(REG_DMA_CONTROL + index * FIO_MOFFSET(DMA,0x00000010)) = d.all;
- #if GH_DMA_ENABLE_DEBUG_PRINT
- GH_DMA_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_DMA_set_Control_d] <-- 0x%08x\n",
- (REG_DMA_CONTROL + index * FIO_MOFFSET(DMA,0x00000010)),d.all,d.all);
- #endif
- }
- GH_INLINE U8 GH_DMA_get_Control_d(U8 index)
- {
- GH_DMA_CONTROL_S tmp_value;
- U32 value = (*(volatile U32 *)(REG_DMA_CONTROL + index * FIO_MOFFSET(DMA,0x00000010)));
- tmp_value.all = value;
- #if GH_DMA_ENABLE_DEBUG_PRINT
- GH_DMA_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_DMA_get_Control_d] --> 0x%08x\n",
- (REG_DMA_CONTROL + index * FIO_MOFFSET(DMA,0x00000010)),value);
- #endif
- return tmp_value.bitc.d;
- }
- GH_INLINE void GH_DMA_set_Control_en(U8 index, U8 data)
- {
- GH_DMA_CONTROL_S d;
- d.all = *(volatile U32 *)(REG_DMA_CONTROL + index * FIO_MOFFSET(DMA,0x00000010));
- d.bitc.en = data;
- *(volatile U32 *)(REG_DMA_CONTROL + index * FIO_MOFFSET(DMA,0x00000010)) = d.all;
- #if GH_DMA_ENABLE_DEBUG_PRINT
- GH_DMA_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_DMA_set_Control_en] <-- 0x%08x\n",
- (REG_DMA_CONTROL + index * FIO_MOFFSET(DMA,0x00000010)),d.all,d.all);
- #endif
- }
- GH_INLINE U8 GH_DMA_get_Control_en(U8 index)
- {
- GH_DMA_CONTROL_S tmp_value;
- U32 value = (*(volatile U32 *)(REG_DMA_CONTROL + index * FIO_MOFFSET(DMA,0x00000010)));
- tmp_value.all = value;
- #if GH_DMA_ENABLE_DEBUG_PRINT
- GH_DMA_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_DMA_get_Control_en] --> 0x%08x\n",
- (REG_DMA_CONTROL + index * FIO_MOFFSET(DMA,0x00000010)),value);
- #endif
- return tmp_value.bitc.en;
- }
- #endif /* GH_INLINE_LEVEL == 0 */
- /*----------------------------------------------------------------------------*/
- /* register DMA_Source_Address (read/write) */
- /*----------------------------------------------------------------------------*/
- #if GH_INLINE_LEVEL == 0
- /*! \brief Writes the register 'DMA_Source_Address'. */
- void GH_DMA_set_Source_Address(U8 index, U32 data);
- /*! \brief Reads the register 'DMA_Source_Address'. */
- U32 GH_DMA_get_Source_Address(U8 index);
- #else /* GH_INLINE_LEVEL == 0 */
- GH_INLINE void GH_DMA_set_Source_Address(U8 index, U32 data)
- {
- *(volatile U32 *)(REG_DMA_SOURCE_ADDRESS + index * FIO_MOFFSET(DMA,0x00000010)) = data;
- #if GH_DMA_ENABLE_DEBUG_PRINT
- GH_DMA_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_DMA_set_Source_Address] <-- 0x%08x\n",
- (REG_DMA_SOURCE_ADDRESS + index * FIO_MOFFSET(DMA,0x00000010)),data,data);
- #endif
- }
- GH_INLINE U32 GH_DMA_get_Source_Address(U8 index)
- {
- U32 value = (*(volatile U32 *)(REG_DMA_SOURCE_ADDRESS + index * FIO_MOFFSET(DMA,0x00000010)));
- #if GH_DMA_ENABLE_DEBUG_PRINT
- GH_DMA_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_DMA_get_Source_Address] --> 0x%08x\n",
- (REG_DMA_SOURCE_ADDRESS + index * FIO_MOFFSET(DMA,0x00000010)),value);
- #endif
- return value;
- }
- #endif /* GH_INLINE_LEVEL == 0 */
- /*----------------------------------------------------------------------------*/
- /* register DMA_Destination_Address (read/write) */
- /*----------------------------------------------------------------------------*/
- #if GH_INLINE_LEVEL == 0
- /*! \brief Writes the register 'DMA_Destination_Address'. */
- void GH_DMA_set_Destination_Address(U8 index, U32 data);
- /*! \brief Reads the register 'DMA_Destination_Address'. */
- U32 GH_DMA_get_Destination_Address(U8 index);
- #else /* GH_INLINE_LEVEL == 0 */
- GH_INLINE void GH_DMA_set_Destination_Address(U8 index, U32 data)
- {
- *(volatile U32 *)(REG_DMA_DESTINATION_ADDRESS + index * FIO_MOFFSET(DMA,0x00000010)) = data;
- #if GH_DMA_ENABLE_DEBUG_PRINT
- GH_DMA_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_DMA_set_Destination_Address] <-- 0x%08x\n",
- (REG_DMA_DESTINATION_ADDRESS + index * FIO_MOFFSET(DMA,0x00000010)),data,data);
- #endif
- }
- GH_INLINE U32 GH_DMA_get_Destination_Address(U8 index)
- {
- U32 value = (*(volatile U32 *)(REG_DMA_DESTINATION_ADDRESS + index * FIO_MOFFSET(DMA,0x00000010)));
- #if GH_DMA_ENABLE_DEBUG_PRINT
- GH_DMA_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_DMA_get_Destination_Address] --> 0x%08x\n",
- (REG_DMA_DESTINATION_ADDRESS + index * FIO_MOFFSET(DMA,0x00000010)),value);
- #endif
- return value;
- }
- #endif /* GH_INLINE_LEVEL == 0 */
- /*----------------------------------------------------------------------------*/
- /* register DMA_Status (read/write) */
- /*----------------------------------------------------------------------------*/
- #if GH_INLINE_LEVEL == 0
- /*! \brief Writes the register 'DMA_Status'. */
- void GH_DMA_set_Status(U8 index, U32 data);
- /*! \brief Reads the register 'DMA_Status'. */
- U32 GH_DMA_get_Status(U8 index);
- /*! \brief Writes the bit group 'count' of register 'DMA_Status'. */
- void GH_DMA_set_Status_count(U8 index, U32 data);
- /*! \brief Reads the bit group 'count' of register 'DMA_Status'. */
- U32 GH_DMA_get_Status_count(U8 index);
- /*! \brief Writes the bit group 'dn' of register 'DMA_Status'. */
- void GH_DMA_set_Status_dn(U8 index, U8 data);
- /*! \brief Reads the bit group 'dn' of register 'DMA_Status'. */
- U8 GH_DMA_get_Status_dn(U8 index);
- /*! \brief Writes the bit group 'ae' of register 'DMA_Status'. */
- void GH_DMA_set_Status_ae(U8 index, U8 data);
- /*! \brief Reads the bit group 'ae' of register 'DMA_Status'. */
- U8 GH_DMA_get_Status_ae(U8 index);
- /*! \brief Writes the bit group 'rwe' of register 'DMA_Status'. */
- void GH_DMA_set_Status_rwe(U8 index, U8 data);
- /*! \brief Reads the bit group 'rwe' of register 'DMA_Status'. */
- U8 GH_DMA_get_Status_rwe(U8 index);
- /*! \brief Writes the bit group 'be' of register 'DMA_Status'. */
- void GH_DMA_set_Status_be(U8 index, U8 data);
- /*! \brief Reads the bit group 'be' of register 'DMA_Status'. */
- U8 GH_DMA_get_Status_be(U8 index);
- /*! \brief Writes the bit group 'me' of register 'DMA_Status'. */
- void GH_DMA_set_Status_me(U8 index, U8 data);
- /*! \brief Reads the bit group 'me' of register 'DMA_Status'. */
- U8 GH_DMA_get_Status_me(U8 index);
- /*! \brief Writes the bit group 'od' of register 'DMA_Status'. */
- void GH_DMA_set_Status_od(U8 index, U8 data);
- /*! \brief Reads the bit group 'od' of register 'DMA_Status'. */
- U8 GH_DMA_get_Status_od(U8 index);
- /*! \brief Writes the bit group 'dd' of register 'DMA_Status'. */
- void GH_DMA_set_Status_dd(U8 index, U8 data);
- /*! \brief Reads the bit group 'dd' of register 'DMA_Status'. */
- U8 GH_DMA_get_Status_dd(U8 index);
- /*! \brief Writes the bit group 'da' of register 'DMA_Status'. */
- void GH_DMA_set_Status_da(U8 index, U8 data);
- /*! \brief Reads the bit group 'da' of register 'DMA_Status'. */
- U8 GH_DMA_get_Status_da(U8 index);
- /*! \brief Writes the bit group 'oe' of register 'DMA_Status'. */
- void GH_DMA_set_Status_oe(U8 index, U8 data);
- /*! \brief Reads the bit group 'oe' of register 'DMA_Status'. */
- U8 GH_DMA_get_Status_oe(U8 index);
- /*! \brief Writes the bit group 'dm' of register 'DMA_Status'. */
- void GH_DMA_set_Status_dm(U8 index, U8 data);
- /*! \brief Reads the bit group 'dm' of register 'DMA_Status'. */
- U8 GH_DMA_get_Status_dm(U8 index);
- #else /* GH_INLINE_LEVEL == 0 */
- GH_INLINE void GH_DMA_set_Status(U8 index, U32 data)
- {
- *(volatile U32 *)(REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010)) = data;
- #if GH_DMA_ENABLE_DEBUG_PRINT
- GH_DMA_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_DMA_set_Status] <-- 0x%08x\n",
- (REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010)),data,data);
- #endif
- }
- GH_INLINE U32 GH_DMA_get_Status(U8 index)
- {
- U32 value = (*(volatile U32 *)(REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010)));
- #if GH_DMA_ENABLE_DEBUG_PRINT
- GH_DMA_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_DMA_get_Status] --> 0x%08x\n",
- (REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010)),value);
- #endif
- return value;
- }
- GH_INLINE void GH_DMA_set_Status_count(U8 index, U32 data)
- {
- GH_DMA_STATUS_S d;
- d.all = *(volatile U32 *)(REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010));
- d.bitc.count = data;
- *(volatile U32 *)(REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010)) = d.all;
- #if GH_DMA_ENABLE_DEBUG_PRINT
- GH_DMA_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_DMA_set_Status_count] <-- 0x%08x\n",
- (REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010)),d.all,d.all);
- #endif
- }
- GH_INLINE U32 GH_DMA_get_Status_count(U8 index)
- {
- GH_DMA_STATUS_S tmp_value;
- U32 value = (*(volatile U32 *)(REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010)));
- tmp_value.all = value;
- #if GH_DMA_ENABLE_DEBUG_PRINT
- GH_DMA_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_DMA_get_Status_count] --> 0x%08x\n",
- (REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010)),value);
- #endif
- return tmp_value.bitc.count;
- }
- GH_INLINE void GH_DMA_set_Status_dn(U8 index, U8 data)
- {
- GH_DMA_STATUS_S d;
- d.all = *(volatile U32 *)(REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010));
- d.bitc.dn = data;
- *(volatile U32 *)(REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010)) = d.all;
- #if GH_DMA_ENABLE_DEBUG_PRINT
- GH_DMA_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_DMA_set_Status_dn] <-- 0x%08x\n",
- (REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010)),d.all,d.all);
- #endif
- }
- GH_INLINE U8 GH_DMA_get_Status_dn(U8 index)
- {
- GH_DMA_STATUS_S tmp_value;
- U32 value = (*(volatile U32 *)(REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010)));
- tmp_value.all = value;
- #if GH_DMA_ENABLE_DEBUG_PRINT
- GH_DMA_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_DMA_get_Status_dn] --> 0x%08x\n",
- (REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010)),value);
- #endif
- return tmp_value.bitc.dn;
- }
- GH_INLINE void GH_DMA_set_Status_ae(U8 index, U8 data)
- {
- GH_DMA_STATUS_S d;
- d.all = *(volatile U32 *)(REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010));
- d.bitc.ae = data;
- *(volatile U32 *)(REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010)) = d.all;
- #if GH_DMA_ENABLE_DEBUG_PRINT
- GH_DMA_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_DMA_set_Status_ae] <-- 0x%08x\n",
- (REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010)),d.all,d.all);
- #endif
- }
- GH_INLINE U8 GH_DMA_get_Status_ae(U8 index)
- {
- GH_DMA_STATUS_S tmp_value;
- U32 value = (*(volatile U32 *)(REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010)));
- tmp_value.all = value;
- #if GH_DMA_ENABLE_DEBUG_PRINT
- GH_DMA_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_DMA_get_Status_ae] --> 0x%08x\n",
- (REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010)),value);
- #endif
- return tmp_value.bitc.ae;
- }
- GH_INLINE void GH_DMA_set_Status_rwe(U8 index, U8 data)
- {
- GH_DMA_STATUS_S d;
- d.all = *(volatile U32 *)(REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010));
- d.bitc.rwe = data;
- *(volatile U32 *)(REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010)) = d.all;
- #if GH_DMA_ENABLE_DEBUG_PRINT
- GH_DMA_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_DMA_set_Status_rwe] <-- 0x%08x\n",
- (REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010)),d.all,d.all);
- #endif
- }
- GH_INLINE U8 GH_DMA_get_Status_rwe(U8 index)
- {
- GH_DMA_STATUS_S tmp_value;
- U32 value = (*(volatile U32 *)(REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010)));
- tmp_value.all = value;
- #if GH_DMA_ENABLE_DEBUG_PRINT
- GH_DMA_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_DMA_get_Status_rwe] --> 0x%08x\n",
- (REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010)),value);
- #endif
- return tmp_value.bitc.rwe;
- }
- GH_INLINE void GH_DMA_set_Status_be(U8 index, U8 data)
- {
- GH_DMA_STATUS_S d;
- d.all = *(volatile U32 *)(REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010));
- d.bitc.be = data;
- *(volatile U32 *)(REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010)) = d.all;
- #if GH_DMA_ENABLE_DEBUG_PRINT
- GH_DMA_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_DMA_set_Status_be] <-- 0x%08x\n",
- (REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010)),d.all,d.all);
- #endif
- }
- GH_INLINE U8 GH_DMA_get_Status_be(U8 index)
- {
- GH_DMA_STATUS_S tmp_value;
- U32 value = (*(volatile U32 *)(REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010)));
- tmp_value.all = value;
- #if GH_DMA_ENABLE_DEBUG_PRINT
- GH_DMA_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_DMA_get_Status_be] --> 0x%08x\n",
- (REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010)),value);
- #endif
- return tmp_value.bitc.be;
- }
- GH_INLINE void GH_DMA_set_Status_me(U8 index, U8 data)
- {
- GH_DMA_STATUS_S d;
- d.all = *(volatile U32 *)(REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010));
- d.bitc.me = data;
- *(volatile U32 *)(REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010)) = d.all;
- #if GH_DMA_ENABLE_DEBUG_PRINT
- GH_DMA_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_DMA_set_Status_me] <-- 0x%08x\n",
- (REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010)),d.all,d.all);
- #endif
- }
- GH_INLINE U8 GH_DMA_get_Status_me(U8 index)
- {
- GH_DMA_STATUS_S tmp_value;
- U32 value = (*(volatile U32 *)(REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010)));
- tmp_value.all = value;
- #if GH_DMA_ENABLE_DEBUG_PRINT
- GH_DMA_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_DMA_get_Status_me] --> 0x%08x\n",
- (REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010)),value);
- #endif
- return tmp_value.bitc.me;
- }
- GH_INLINE void GH_DMA_set_Status_od(U8 index, U8 data)
- {
- GH_DMA_STATUS_S d;
- d.all = *(volatile U32 *)(REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010));
- d.bitc.od = data;
- *(volatile U32 *)(REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010)) = d.all;
- #if GH_DMA_ENABLE_DEBUG_PRINT
- GH_DMA_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_DMA_set_Status_od] <-- 0x%08x\n",
- (REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010)),d.all,d.all);
- #endif
- }
- GH_INLINE U8 GH_DMA_get_Status_od(U8 index)
- {
- GH_DMA_STATUS_S tmp_value;
- U32 value = (*(volatile U32 *)(REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010)));
- tmp_value.all = value;
- #if GH_DMA_ENABLE_DEBUG_PRINT
- GH_DMA_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_DMA_get_Status_od] --> 0x%08x\n",
- (REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010)),value);
- #endif
- return tmp_value.bitc.od;
- }
- GH_INLINE void GH_DMA_set_Status_dd(U8 index, U8 data)
- {
- GH_DMA_STATUS_S d;
- d.all = *(volatile U32 *)(REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010));
- d.bitc.dd = data;
- *(volatile U32 *)(REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010)) = d.all;
- #if GH_DMA_ENABLE_DEBUG_PRINT
- GH_DMA_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_DMA_set_Status_dd] <-- 0x%08x\n",
- (REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010)),d.all,d.all);
- #endif
- }
- GH_INLINE U8 GH_DMA_get_Status_dd(U8 index)
- {
- GH_DMA_STATUS_S tmp_value;
- U32 value = (*(volatile U32 *)(REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010)));
- tmp_value.all = value;
- #if GH_DMA_ENABLE_DEBUG_PRINT
- GH_DMA_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_DMA_get_Status_dd] --> 0x%08x\n",
- (REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010)),value);
- #endif
- return tmp_value.bitc.dd;
- }
- GH_INLINE void GH_DMA_set_Status_da(U8 index, U8 data)
- {
- GH_DMA_STATUS_S d;
- d.all = *(volatile U32 *)(REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010));
- d.bitc.da = data;
- *(volatile U32 *)(REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010)) = d.all;
- #if GH_DMA_ENABLE_DEBUG_PRINT
- GH_DMA_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_DMA_set_Status_da] <-- 0x%08x\n",
- (REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010)),d.all,d.all);
- #endif
- }
- GH_INLINE U8 GH_DMA_get_Status_da(U8 index)
- {
- GH_DMA_STATUS_S tmp_value;
- U32 value = (*(volatile U32 *)(REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010)));
- tmp_value.all = value;
- #if GH_DMA_ENABLE_DEBUG_PRINT
- GH_DMA_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_DMA_get_Status_da] --> 0x%08x\n",
- (REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010)),value);
- #endif
- return tmp_value.bitc.da;
- }
- GH_INLINE void GH_DMA_set_Status_oe(U8 index, U8 data)
- {
- GH_DMA_STATUS_S d;
- d.all = *(volatile U32 *)(REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010));
- d.bitc.oe = data;
- *(volatile U32 *)(REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010)) = d.all;
- #if GH_DMA_ENABLE_DEBUG_PRINT
- GH_DMA_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_DMA_set_Status_oe] <-- 0x%08x\n",
- (REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010)),d.all,d.all);
- #endif
- }
- GH_INLINE U8 GH_DMA_get_Status_oe(U8 index)
- {
- GH_DMA_STATUS_S tmp_value;
- U32 value = (*(volatile U32 *)(REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010)));
- tmp_value.all = value;
- #if GH_DMA_ENABLE_DEBUG_PRINT
- GH_DMA_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_DMA_get_Status_oe] --> 0x%08x\n",
- (REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010)),value);
- #endif
- return tmp_value.bitc.oe;
- }
- GH_INLINE void GH_DMA_set_Status_dm(U8 index, U8 data)
- {
- GH_DMA_STATUS_S d;
- d.all = *(volatile U32 *)(REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010));
- d.bitc.dm = data;
- *(volatile U32 *)(REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010)) = d.all;
- #if GH_DMA_ENABLE_DEBUG_PRINT
- GH_DMA_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_DMA_set_Status_dm] <-- 0x%08x\n",
- (REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010)),d.all,d.all);
- #endif
- }
- GH_INLINE U8 GH_DMA_get_Status_dm(U8 index)
- {
- GH_DMA_STATUS_S tmp_value;
- U32 value = (*(volatile U32 *)(REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010)));
- tmp_value.all = value;
- #if GH_DMA_ENABLE_DEBUG_PRINT
- GH_DMA_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_DMA_get_Status_dm] --> 0x%08x\n",
- (REG_DMA_STATUS + index * FIO_MOFFSET(DMA,0x00000010)),value);
- #endif
- return tmp_value.bitc.dm;
- }
- #endif /* GH_INLINE_LEVEL == 0 */
- /*----------------------------------------------------------------------------*/
- /* register DMA_Descriptor_Address (read/write) */
- /*----------------------------------------------------------------------------*/
- #if GH_INLINE_LEVEL == 0
- /*! \brief Writes the register 'DMA_Descriptor_Address'. */
- void GH_DMA_set_Descriptor_Address(U8 index, U32 data);
- /*! \brief Reads the register 'DMA_Descriptor_Address'. */
- U32 GH_DMA_get_Descriptor_Address(U8 index);
- #else /* GH_INLINE_LEVEL == 0 */
- GH_INLINE void GH_DMA_set_Descriptor_Address(U8 index, U32 data)
- {
- *(volatile U32 *)(REG_DMA_DESCRIPTOR_ADDRESS + index * FIO_MOFFSET(DMA,0x00000004)) = data;
- #if GH_DMA_ENABLE_DEBUG_PRINT
- GH_DMA_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_DMA_set_Descriptor_Address] <-- 0x%08x\n",
- (REG_DMA_DESCRIPTOR_ADDRESS + index * FIO_MOFFSET(DMA,0x00000004)),data,data);
- #endif
- }
- GH_INLINE U32 GH_DMA_get_Descriptor_Address(U8 index)
- {
- U32 value = (*(volatile U32 *)(REG_DMA_DESCRIPTOR_ADDRESS + index * FIO_MOFFSET(DMA,0x00000004)));
- #if GH_DMA_ENABLE_DEBUG_PRINT
- GH_DMA_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_DMA_get_Descriptor_Address] --> 0x%08x\n",
- (REG_DMA_DESCRIPTOR_ADDRESS + index * FIO_MOFFSET(DMA,0x00000004)),value);
- #endif
- return value;
- }
- #endif /* GH_INLINE_LEVEL == 0 */
- /*----------------------------------------------------------------------------*/
- /* register DMA_IR (read) */
- /*----------------------------------------------------------------------------*/
- #if GH_INLINE_LEVEL == 0
- /*! \brief Reads the register 'DMA_IR'. */
- U32 GH_DMA_get_IR(void);
- /*! \brief Reads the bit group 'i0' of register 'DMA_IR'. */
- U8 GH_DMA_get_IR_i0(void);
- /*! \brief Reads the bit group 'i1' of register 'DMA_IR'. */
- U8 GH_DMA_get_IR_i1(void);
- /*! \brief Reads the bit group 'i2' of register 'DMA_IR'. */
- U8 GH_DMA_get_IR_i2(void);
- /*! \brief Reads the bit group 'i3' of register 'DMA_IR'. */
- U8 GH_DMA_get_IR_i3(void);
- #else /* GH_INLINE_LEVEL == 0 */
- GH_INLINE U32 GH_DMA_get_IR(void)
- {
- U32 value = (*(volatile U32 *)REG_DMA_IR);
- #if GH_DMA_ENABLE_DEBUG_PRINT
- GH_DMA_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_DMA_get_IR] --> 0x%08x\n",
- REG_DMA_IR,value);
- #endif
- return value;
- }
- GH_INLINE U8 GH_DMA_get_IR_i0(void)
- {
- GH_DMA_IR_S tmp_value;
- U32 value = (*(volatile U32 *)REG_DMA_IR);
- tmp_value.all = value;
- #if GH_DMA_ENABLE_DEBUG_PRINT
- GH_DMA_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_DMA_get_IR_i0] --> 0x%08x\n",
- REG_DMA_IR,value);
- #endif
- return tmp_value.bitc.i0;
- }
- GH_INLINE U8 GH_DMA_get_IR_i1(void)
- {
- GH_DMA_IR_S tmp_value;
- U32 value = (*(volatile U32 *)REG_DMA_IR);
- tmp_value.all = value;
- #if GH_DMA_ENABLE_DEBUG_PRINT
- GH_DMA_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_DMA_get_IR_i1] --> 0x%08x\n",
- REG_DMA_IR,value);
- #endif
- return tmp_value.bitc.i1;
- }
- GH_INLINE U8 GH_DMA_get_IR_i2(void)
- {
- GH_DMA_IR_S tmp_value;
- U32 value = (*(volatile U32 *)REG_DMA_IR);
- tmp_value.all = value;
- #if GH_DMA_ENABLE_DEBUG_PRINT
- GH_DMA_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_DMA_get_IR_i2] --> 0x%08x\n",
- REG_DMA_IR,value);
- #endif
- return tmp_value.bitc.i2;
- }
- GH_INLINE U8 GH_DMA_get_IR_i3(void)
- {
- GH_DMA_IR_S tmp_value;
- U32 value = (*(volatile U32 *)REG_DMA_IR);
- tmp_value.all = value;
- #if GH_DMA_ENABLE_DEBUG_PRINT
- GH_DMA_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_DMA_get_IR_i3] --> 0x%08x\n",
- REG_DMA_IR,value);
- #endif
- return tmp_value.bitc.i3;
- }
- #endif /* GH_INLINE_LEVEL == 0 */
- /*----------------------------------------------------------------------------*/
- /* init function */
- /*----------------------------------------------------------------------------*/
- /*! \brief Initialises the registers and mirror variables. */
- void GH_DMA_init(void);
- #ifdef __cplusplus
- }
- #endif
- #endif /* _GH_DMA_H */
- /*----------------------------------------------------------------------------*/
- /* end of file */
- /*----------------------------------------------------------------------------*/
|