123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743 |
- /*!
- *******************************************************************************
- **
- ** \file gh_timer.h
- **
- ** \brief TIMER.
- **
- ** 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_TIMER_H
- #define _GH_TIMER_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_TIMER_ENABLE_DEBUG_PRINT 0
- #ifdef __LINUX__
- #define GH_TIMER_DEBUG_PRINT_FUNCTION printk
- #else
- #define GH_TIMER_DEBUG_PRINT_FUNCTION printf
- #endif
- #ifndef __LINUX__
- #if GH_TIMER_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_TIMER_T1CNTNSTS FIO_ADDRESS(TIMER,0xA0000000) /* read/write */
- #define REG_TIMER_T1MATCH1 FIO_ADDRESS(TIMER,0xA0000004) /* read/write */
- #define REG_TIMER_T1MATCH2 FIO_ADDRESS(TIMER,0xA0000008) /* read/write */
- #define REG_TIMER_CONTROL FIO_ADDRESS(TIMER,0xA000000C) /* read/write */
- #define REG_TIMER_T2CNTNSTS FIO_ADDRESS(TIMER,0xA0000014) /* read/write */
- #define REG_TIMER_T2MATCH1 FIO_ADDRESS(TIMER,0xA0000018) /* read/write */
- #define REG_TIMER_T2MATCH2 FIO_ADDRESS(TIMER,0xA000001C) /* read/write */
- #define REG_TIMER_T3CNTNSTS FIO_ADDRESS(TIMER,0xA0000020) /* read/write */
- #define REG_TIMER_T3MATCH1 FIO_ADDRESS(TIMER,0xA0000024) /* read/write */
- #define REG_TIMER_T3MATCH2 FIO_ADDRESS(TIMER,0xA0000028) /* read/write */
- #define REG_TIMER_T1RELOADN FIO_ADDRESS(TIMER,0xA0000030) /* read/write */
- #define REG_TIMER_T2RELOADN FIO_ADDRESS(TIMER,0xA0000034) /* read/write */
- #define REG_TIMER_T3RELOADN FIO_ADDRESS(TIMER,0xA0000038) /* read/write */
- /*----------------------------------------------------------------------------*/
- /* bit group structures */
- /*----------------------------------------------------------------------------*/
- typedef union { /* TIMER_Control */
- U32 all;
- struct {
- U32 clksel3 : 1;
- U32 clksel2 : 1;
- U32 clksel1 : 1;
- U32 : 1;
- U32 of3 : 1;
- U32 of2 : 1;
- U32 of1 : 1;
- U32 : 1;
- U32 enable3 : 1;
- U32 enable2 : 1;
- U32 enable1 : 1;
- U32 : 21;
- } bitc;
- } GH_TIMER_CONTROL_S;
- /*----------------------------------------------------------------------------*/
- /* mirror variables */
- /*----------------------------------------------------------------------------*/
- #ifdef __cplusplus
- extern "C" {
- #endif
- /*----------------------------------------------------------------------------*/
- /* register TIMER_T1CntnSts (read/write) */
- /*----------------------------------------------------------------------------*/
- #if GH_INLINE_LEVEL == 0
- /*! \brief Writes the register 'TIMER_T1CntnSts'. */
- void GH_TIMER_set_T1CntnSts(U32 data);
- /*! \brief Reads the register 'TIMER_T1CntnSts'. */
- U32 GH_TIMER_get_T1CntnSts(void);
- #else /* GH_INLINE_LEVEL == 0 */
- GH_INLINE void GH_TIMER_set_T1CntnSts(U32 data)
- {
- *(volatile U32 *)REG_TIMER_T1CNTNSTS = data;
- #if GH_TIMER_ENABLE_DEBUG_PRINT
- GH_TIMER_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_TIMER_set_T1CntnSts] <-- 0x%08x\n",
- REG_TIMER_T1CNTNSTS,data,data);
- #endif
- }
- GH_INLINE U32 GH_TIMER_get_T1CntnSts(void)
- {
- U32 value = (*(volatile U32 *)REG_TIMER_T1CNTNSTS);
- #if GH_TIMER_ENABLE_DEBUG_PRINT
- GH_TIMER_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_TIMER_get_T1CntnSts] --> 0x%08x\n",
- REG_TIMER_T1CNTNSTS,value);
- #endif
- return value;
- }
- #endif /* GH_INLINE_LEVEL == 0 */
- /*----------------------------------------------------------------------------*/
- /* register TIMER_T1Match1 (read/write) */
- /*----------------------------------------------------------------------------*/
- #if GH_INLINE_LEVEL == 0
- /*! \brief Writes the register 'TIMER_T1Match1'. */
- void GH_TIMER_set_T1Match1(U32 data);
- /*! \brief Reads the register 'TIMER_T1Match1'. */
- U32 GH_TIMER_get_T1Match1(void);
- #else /* GH_INLINE_LEVEL == 0 */
- GH_INLINE void GH_TIMER_set_T1Match1(U32 data)
- {
- *(volatile U32 *)REG_TIMER_T1MATCH1 = data;
- #if GH_TIMER_ENABLE_DEBUG_PRINT
- GH_TIMER_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_TIMER_set_T1Match1] <-- 0x%08x\n",
- REG_TIMER_T1MATCH1,data,data);
- #endif
- }
- GH_INLINE U32 GH_TIMER_get_T1Match1(void)
- {
- U32 value = (*(volatile U32 *)REG_TIMER_T1MATCH1);
- #if GH_TIMER_ENABLE_DEBUG_PRINT
- GH_TIMER_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_TIMER_get_T1Match1] --> 0x%08x\n",
- REG_TIMER_T1MATCH1,value);
- #endif
- return value;
- }
- #endif /* GH_INLINE_LEVEL == 0 */
- /*----------------------------------------------------------------------------*/
- /* register TIMER_T1Match2 (read/write) */
- /*----------------------------------------------------------------------------*/
- #if GH_INLINE_LEVEL == 0
- /*! \brief Writes the register 'TIMER_T1Match2'. */
- void GH_TIMER_set_T1Match2(U32 data);
- /*! \brief Reads the register 'TIMER_T1Match2'. */
- U32 GH_TIMER_get_T1Match2(void);
- #else /* GH_INLINE_LEVEL == 0 */
- GH_INLINE void GH_TIMER_set_T1Match2(U32 data)
- {
- *(volatile U32 *)REG_TIMER_T1MATCH2 = data;
- #if GH_TIMER_ENABLE_DEBUG_PRINT
- GH_TIMER_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_TIMER_set_T1Match2] <-- 0x%08x\n",
- REG_TIMER_T1MATCH2,data,data);
- #endif
- }
- GH_INLINE U32 GH_TIMER_get_T1Match2(void)
- {
- U32 value = (*(volatile U32 *)REG_TIMER_T1MATCH2);
- #if GH_TIMER_ENABLE_DEBUG_PRINT
- GH_TIMER_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_TIMER_get_T1Match2] --> 0x%08x\n",
- REG_TIMER_T1MATCH2,value);
- #endif
- return value;
- }
- #endif /* GH_INLINE_LEVEL == 0 */
- /*----------------------------------------------------------------------------*/
- /* register TIMER_Control (read/write) */
- /*----------------------------------------------------------------------------*/
- #if GH_INLINE_LEVEL == 0
- /*! \brief Writes the register 'TIMER_Control'. */
- void GH_TIMER_set_Control(U32 data);
- /*! \brief Reads the register 'TIMER_Control'. */
- U32 GH_TIMER_get_Control(void);
- /*! \brief Writes the bit group 'ClkSel3' of register 'TIMER_Control'. */
- void GH_TIMER_set_Control_ClkSel3(U8 data);
- /*! \brief Reads the bit group 'ClkSel3' of register 'TIMER_Control'. */
- U8 GH_TIMER_get_Control_ClkSel3(void);
- /*! \brief Writes the bit group 'ClkSel2' of register 'TIMER_Control'. */
- void GH_TIMER_set_Control_ClkSel2(U8 data);
- /*! \brief Reads the bit group 'ClkSel2' of register 'TIMER_Control'. */
- U8 GH_TIMER_get_Control_ClkSel2(void);
- /*! \brief Writes the bit group 'ClkSel1' of register 'TIMER_Control'. */
- void GH_TIMER_set_Control_ClkSel1(U8 data);
- /*! \brief Reads the bit group 'ClkSel1' of register 'TIMER_Control'. */
- U8 GH_TIMER_get_Control_ClkSel1(void);
- /*! \brief Writes the bit group 'OF3' of register 'TIMER_Control'. */
- void GH_TIMER_set_Control_OF3(U8 data);
- /*! \brief Reads the bit group 'OF3' of register 'TIMER_Control'. */
- U8 GH_TIMER_get_Control_OF3(void);
- /*! \brief Writes the bit group 'OF2' of register 'TIMER_Control'. */
- void GH_TIMER_set_Control_OF2(U8 data);
- /*! \brief Reads the bit group 'OF2' of register 'TIMER_Control'. */
- U8 GH_TIMER_get_Control_OF2(void);
- /*! \brief Writes the bit group 'OF1' of register 'TIMER_Control'. */
- void GH_TIMER_set_Control_OF1(U8 data);
- /*! \brief Reads the bit group 'OF1' of register 'TIMER_Control'. */
- U8 GH_TIMER_get_Control_OF1(void);
- /*! \brief Writes the bit group 'Enable3' of register 'TIMER_Control'. */
- void GH_TIMER_set_Control_Enable3(U8 data);
- /*! \brief Reads the bit group 'Enable3' of register 'TIMER_Control'. */
- U8 GH_TIMER_get_Control_Enable3(void);
- /*! \brief Writes the bit group 'Enable2' of register 'TIMER_Control'. */
- void GH_TIMER_set_Control_Enable2(U8 data);
- /*! \brief Reads the bit group 'Enable2' of register 'TIMER_Control'. */
- U8 GH_TIMER_get_Control_Enable2(void);
- /*! \brief Writes the bit group 'Enable1' of register 'TIMER_Control'. */
- void GH_TIMER_set_Control_Enable1(U8 data);
- /*! \brief Reads the bit group 'Enable1' of register 'TIMER_Control'. */
- U8 GH_TIMER_get_Control_Enable1(void);
- #else /* GH_INLINE_LEVEL == 0 */
- GH_INLINE void GH_TIMER_set_Control(U32 data)
- {
- *(volatile U32 *)REG_TIMER_CONTROL = data;
- #if GH_TIMER_ENABLE_DEBUG_PRINT
- GH_TIMER_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_TIMER_set_Control] <-- 0x%08x\n",
- REG_TIMER_CONTROL,data,data);
- #endif
- }
- GH_INLINE U32 GH_TIMER_get_Control(void)
- {
- U32 value = (*(volatile U32 *)REG_TIMER_CONTROL);
- #if GH_TIMER_ENABLE_DEBUG_PRINT
- GH_TIMER_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_TIMER_get_Control] --> 0x%08x\n",
- REG_TIMER_CONTROL,value);
- #endif
- return value;
- }
- GH_INLINE void GH_TIMER_set_Control_ClkSel3(U8 data)
- {
- GH_TIMER_CONTROL_S d;
- d.all = *(volatile U32 *)REG_TIMER_CONTROL;
- d.bitc.clksel3 = data;
- *(volatile U32 *)REG_TIMER_CONTROL = d.all;
- #if GH_TIMER_ENABLE_DEBUG_PRINT
- GH_TIMER_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_TIMER_set_Control_ClkSel3] <-- 0x%08x\n",
- REG_TIMER_CONTROL,d.all,d.all);
- #endif
- }
- GH_INLINE U8 GH_TIMER_get_Control_ClkSel3(void)
- {
- GH_TIMER_CONTROL_S tmp_value;
- U32 value = (*(volatile U32 *)REG_TIMER_CONTROL);
- tmp_value.all = value;
- #if GH_TIMER_ENABLE_DEBUG_PRINT
- GH_TIMER_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_TIMER_get_Control_ClkSel3] --> 0x%08x\n",
- REG_TIMER_CONTROL,value);
- #endif
- return tmp_value.bitc.clksel3;
- }
- GH_INLINE void GH_TIMER_set_Control_ClkSel2(U8 data)
- {
- GH_TIMER_CONTROL_S d;
- d.all = *(volatile U32 *)REG_TIMER_CONTROL;
- d.bitc.clksel2 = data;
- *(volatile U32 *)REG_TIMER_CONTROL = d.all;
- #if GH_TIMER_ENABLE_DEBUG_PRINT
- GH_TIMER_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_TIMER_set_Control_ClkSel2] <-- 0x%08x\n",
- REG_TIMER_CONTROL,d.all,d.all);
- #endif
- }
- GH_INLINE U8 GH_TIMER_get_Control_ClkSel2(void)
- {
- GH_TIMER_CONTROL_S tmp_value;
- U32 value = (*(volatile U32 *)REG_TIMER_CONTROL);
- tmp_value.all = value;
- #if GH_TIMER_ENABLE_DEBUG_PRINT
- GH_TIMER_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_TIMER_get_Control_ClkSel2] --> 0x%08x\n",
- REG_TIMER_CONTROL,value);
- #endif
- return tmp_value.bitc.clksel2;
- }
- GH_INLINE void GH_TIMER_set_Control_ClkSel1(U8 data)
- {
- GH_TIMER_CONTROL_S d;
- d.all = *(volatile U32 *)REG_TIMER_CONTROL;
- d.bitc.clksel1 = data;
- *(volatile U32 *)REG_TIMER_CONTROL = d.all;
- #if GH_TIMER_ENABLE_DEBUG_PRINT
- GH_TIMER_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_TIMER_set_Control_ClkSel1] <-- 0x%08x\n",
- REG_TIMER_CONTROL,d.all,d.all);
- #endif
- }
- GH_INLINE U8 GH_TIMER_get_Control_ClkSel1(void)
- {
- GH_TIMER_CONTROL_S tmp_value;
- U32 value = (*(volatile U32 *)REG_TIMER_CONTROL);
- tmp_value.all = value;
- #if GH_TIMER_ENABLE_DEBUG_PRINT
- GH_TIMER_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_TIMER_get_Control_ClkSel1] --> 0x%08x\n",
- REG_TIMER_CONTROL,value);
- #endif
- return tmp_value.bitc.clksel1;
- }
- GH_INLINE void GH_TIMER_set_Control_OF3(U8 data)
- {
- GH_TIMER_CONTROL_S d;
- d.all = *(volatile U32 *)REG_TIMER_CONTROL;
- d.bitc.of3 = data;
- *(volatile U32 *)REG_TIMER_CONTROL = d.all;
- #if GH_TIMER_ENABLE_DEBUG_PRINT
- GH_TIMER_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_TIMER_set_Control_OF3] <-- 0x%08x\n",
- REG_TIMER_CONTROL,d.all,d.all);
- #endif
- }
- GH_INLINE U8 GH_TIMER_get_Control_OF3(void)
- {
- GH_TIMER_CONTROL_S tmp_value;
- U32 value = (*(volatile U32 *)REG_TIMER_CONTROL);
- tmp_value.all = value;
- #if GH_TIMER_ENABLE_DEBUG_PRINT
- GH_TIMER_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_TIMER_get_Control_OF3] --> 0x%08x\n",
- REG_TIMER_CONTROL,value);
- #endif
- return tmp_value.bitc.of3;
- }
- GH_INLINE void GH_TIMER_set_Control_OF2(U8 data)
- {
- GH_TIMER_CONTROL_S d;
- d.all = *(volatile U32 *)REG_TIMER_CONTROL;
- d.bitc.of2 = data;
- *(volatile U32 *)REG_TIMER_CONTROL = d.all;
- #if GH_TIMER_ENABLE_DEBUG_PRINT
- GH_TIMER_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_TIMER_set_Control_OF2] <-- 0x%08x\n",
- REG_TIMER_CONTROL,d.all,d.all);
- #endif
- }
- GH_INLINE U8 GH_TIMER_get_Control_OF2(void)
- {
- GH_TIMER_CONTROL_S tmp_value;
- U32 value = (*(volatile U32 *)REG_TIMER_CONTROL);
- tmp_value.all = value;
- #if GH_TIMER_ENABLE_DEBUG_PRINT
- GH_TIMER_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_TIMER_get_Control_OF2] --> 0x%08x\n",
- REG_TIMER_CONTROL,value);
- #endif
- return tmp_value.bitc.of2;
- }
- GH_INLINE void GH_TIMER_set_Control_OF1(U8 data)
- {
- GH_TIMER_CONTROL_S d;
- d.all = *(volatile U32 *)REG_TIMER_CONTROL;
- d.bitc.of1 = data;
- *(volatile U32 *)REG_TIMER_CONTROL = d.all;
- #if GH_TIMER_ENABLE_DEBUG_PRINT
- GH_TIMER_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_TIMER_set_Control_OF1] <-- 0x%08x\n",
- REG_TIMER_CONTROL,d.all,d.all);
- #endif
- }
- GH_INLINE U8 GH_TIMER_get_Control_OF1(void)
- {
- GH_TIMER_CONTROL_S tmp_value;
- U32 value = (*(volatile U32 *)REG_TIMER_CONTROL);
- tmp_value.all = value;
- #if GH_TIMER_ENABLE_DEBUG_PRINT
- GH_TIMER_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_TIMER_get_Control_OF1] --> 0x%08x\n",
- REG_TIMER_CONTROL,value);
- #endif
- return tmp_value.bitc.of1;
- }
- GH_INLINE void GH_TIMER_set_Control_Enable3(U8 data)
- {
- GH_TIMER_CONTROL_S d;
- d.all = *(volatile U32 *)REG_TIMER_CONTROL;
- d.bitc.enable3 = data;
- *(volatile U32 *)REG_TIMER_CONTROL = d.all;
- #if GH_TIMER_ENABLE_DEBUG_PRINT
- GH_TIMER_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_TIMER_set_Control_Enable3] <-- 0x%08x\n",
- REG_TIMER_CONTROL,d.all,d.all);
- #endif
- }
- GH_INLINE U8 GH_TIMER_get_Control_Enable3(void)
- {
- GH_TIMER_CONTROL_S tmp_value;
- U32 value = (*(volatile U32 *)REG_TIMER_CONTROL);
- tmp_value.all = value;
- #if GH_TIMER_ENABLE_DEBUG_PRINT
- GH_TIMER_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_TIMER_get_Control_Enable3] --> 0x%08x\n",
- REG_TIMER_CONTROL,value);
- #endif
- return tmp_value.bitc.enable3;
- }
- GH_INLINE void GH_TIMER_set_Control_Enable2(U8 data)
- {
- GH_TIMER_CONTROL_S d;
- d.all = *(volatile U32 *)REG_TIMER_CONTROL;
- d.bitc.enable2 = data;
- *(volatile U32 *)REG_TIMER_CONTROL = d.all;
- #if GH_TIMER_ENABLE_DEBUG_PRINT
- GH_TIMER_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_TIMER_set_Control_Enable2] <-- 0x%08x\n",
- REG_TIMER_CONTROL,d.all,d.all);
- #endif
- }
- GH_INLINE U8 GH_TIMER_get_Control_Enable2(void)
- {
- GH_TIMER_CONTROL_S tmp_value;
- U32 value = (*(volatile U32 *)REG_TIMER_CONTROL);
- tmp_value.all = value;
- #if GH_TIMER_ENABLE_DEBUG_PRINT
- GH_TIMER_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_TIMER_get_Control_Enable2] --> 0x%08x\n",
- REG_TIMER_CONTROL,value);
- #endif
- return tmp_value.bitc.enable2;
- }
- GH_INLINE void GH_TIMER_set_Control_Enable1(U8 data)
- {
- GH_TIMER_CONTROL_S d;
- d.all = *(volatile U32 *)REG_TIMER_CONTROL;
- d.bitc.enable1 = data;
- *(volatile U32 *)REG_TIMER_CONTROL = d.all;
- #if GH_TIMER_ENABLE_DEBUG_PRINT
- GH_TIMER_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_TIMER_set_Control_Enable1] <-- 0x%08x\n",
- REG_TIMER_CONTROL,d.all,d.all);
- #endif
- }
- GH_INLINE U8 GH_TIMER_get_Control_Enable1(void)
- {
- GH_TIMER_CONTROL_S tmp_value;
- U32 value = (*(volatile U32 *)REG_TIMER_CONTROL);
- tmp_value.all = value;
- #if GH_TIMER_ENABLE_DEBUG_PRINT
- GH_TIMER_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_TIMER_get_Control_Enable1] --> 0x%08x\n",
- REG_TIMER_CONTROL,value);
- #endif
- return tmp_value.bitc.enable1;
- }
- #endif /* GH_INLINE_LEVEL == 0 */
- /*----------------------------------------------------------------------------*/
- /* register TIMER_T2CntnSts (read/write) */
- /*----------------------------------------------------------------------------*/
- #if GH_INLINE_LEVEL == 0
- /*! \brief Writes the register 'TIMER_T2CntnSts'. */
- void GH_TIMER_set_T2CntnSts(U32 data);
- /*! \brief Reads the register 'TIMER_T2CntnSts'. */
- U32 GH_TIMER_get_T2CntnSts(void);
- #else /* GH_INLINE_LEVEL == 0 */
- GH_INLINE void GH_TIMER_set_T2CntnSts(U32 data)
- {
- *(volatile U32 *)REG_TIMER_T2CNTNSTS = data;
- #if GH_TIMER_ENABLE_DEBUG_PRINT
- GH_TIMER_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_TIMER_set_T2CntnSts] <-- 0x%08x\n",
- REG_TIMER_T2CNTNSTS,data,data);
- #endif
- }
- GH_INLINE U32 GH_TIMER_get_T2CntnSts(void)
- {
- U32 value = (*(volatile U32 *)REG_TIMER_T2CNTNSTS);
- #if GH_TIMER_ENABLE_DEBUG_PRINT
- GH_TIMER_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_TIMER_get_T2CntnSts] --> 0x%08x\n",
- REG_TIMER_T2CNTNSTS,value);
- #endif
- return value;
- }
- #endif /* GH_INLINE_LEVEL == 0 */
- /*----------------------------------------------------------------------------*/
- /* register TIMER_T2Match1 (read/write) */
- /*----------------------------------------------------------------------------*/
- #if GH_INLINE_LEVEL == 0
- /*! \brief Writes the register 'TIMER_T2Match1'. */
- void GH_TIMER_set_T2Match1(U32 data);
- /*! \brief Reads the register 'TIMER_T2Match1'. */
- U32 GH_TIMER_get_T2Match1(void);
- #else /* GH_INLINE_LEVEL == 0 */
- GH_INLINE void GH_TIMER_set_T2Match1(U32 data)
- {
- *(volatile U32 *)REG_TIMER_T2MATCH1 = data;
- #if GH_TIMER_ENABLE_DEBUG_PRINT
- GH_TIMER_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_TIMER_set_T2Match1] <-- 0x%08x\n",
- REG_TIMER_T2MATCH1,data,data);
- #endif
- }
- GH_INLINE U32 GH_TIMER_get_T2Match1(void)
- {
- U32 value = (*(volatile U32 *)REG_TIMER_T2MATCH1);
- #if GH_TIMER_ENABLE_DEBUG_PRINT
- GH_TIMER_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_TIMER_get_T2Match1] --> 0x%08x\n",
- REG_TIMER_T2MATCH1,value);
- #endif
- return value;
- }
- #endif /* GH_INLINE_LEVEL == 0 */
- /*----------------------------------------------------------------------------*/
- /* register TIMER_T2Match2 (read/write) */
- /*----------------------------------------------------------------------------*/
- #if GH_INLINE_LEVEL == 0
- /*! \brief Writes the register 'TIMER_T2Match2'. */
- void GH_TIMER_set_T2Match2(U32 data);
- /*! \brief Reads the register 'TIMER_T2Match2'. */
- U32 GH_TIMER_get_T2Match2(void);
- #else /* GH_INLINE_LEVEL == 0 */
- GH_INLINE void GH_TIMER_set_T2Match2(U32 data)
- {
- *(volatile U32 *)REG_TIMER_T2MATCH2 = data;
- #if GH_TIMER_ENABLE_DEBUG_PRINT
- GH_TIMER_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_TIMER_set_T2Match2] <-- 0x%08x\n",
- REG_TIMER_T2MATCH2,data,data);
- #endif
- }
- GH_INLINE U32 GH_TIMER_get_T2Match2(void)
- {
- U32 value = (*(volatile U32 *)REG_TIMER_T2MATCH2);
- #if GH_TIMER_ENABLE_DEBUG_PRINT
- GH_TIMER_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_TIMER_get_T2Match2] --> 0x%08x\n",
- REG_TIMER_T2MATCH2,value);
- #endif
- return value;
- }
- #endif /* GH_INLINE_LEVEL == 0 */
- /*----------------------------------------------------------------------------*/
- /* register TIMER_T3CntnSts (read/write) */
- /*----------------------------------------------------------------------------*/
- #if GH_INLINE_LEVEL == 0
- /*! \brief Writes the register 'TIMER_T3CntnSts'. */
- void GH_TIMER_set_T3CntnSts(U32 data);
- /*! \brief Reads the register 'TIMER_T3CntnSts'. */
- U32 GH_TIMER_get_T3CntnSts(void);
- #else /* GH_INLINE_LEVEL == 0 */
- GH_INLINE void GH_TIMER_set_T3CntnSts(U32 data)
- {
- *(volatile U32 *)REG_TIMER_T3CNTNSTS = data;
- #if GH_TIMER_ENABLE_DEBUG_PRINT
- GH_TIMER_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_TIMER_set_T3CntnSts] <-- 0x%08x\n",
- REG_TIMER_T3CNTNSTS,data,data);
- #endif
- }
- GH_INLINE U32 GH_TIMER_get_T3CntnSts(void)
- {
- U32 value = (*(volatile U32 *)REG_TIMER_T3CNTNSTS);
- #if GH_TIMER_ENABLE_DEBUG_PRINT
- GH_TIMER_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_TIMER_get_T3CntnSts] --> 0x%08x\n",
- REG_TIMER_T3CNTNSTS,value);
- #endif
- return value;
- }
- #endif /* GH_INLINE_LEVEL == 0 */
- /*----------------------------------------------------------------------------*/
- /* register TIMER_T3Match1 (read/write) */
- /*----------------------------------------------------------------------------*/
- #if GH_INLINE_LEVEL == 0
- /*! \brief Writes the register 'TIMER_T3Match1'. */
- void GH_TIMER_set_T3Match1(U32 data);
- /*! \brief Reads the register 'TIMER_T3Match1'. */
- U32 GH_TIMER_get_T3Match1(void);
- #else /* GH_INLINE_LEVEL == 0 */
- GH_INLINE void GH_TIMER_set_T3Match1(U32 data)
- {
- *(volatile U32 *)REG_TIMER_T3MATCH1 = data;
- #if GH_TIMER_ENABLE_DEBUG_PRINT
- GH_TIMER_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_TIMER_set_T3Match1] <-- 0x%08x\n",
- REG_TIMER_T3MATCH1,data,data);
- #endif
- }
- GH_INLINE U32 GH_TIMER_get_T3Match1(void)
- {
- U32 value = (*(volatile U32 *)REG_TIMER_T3MATCH1);
- #if GH_TIMER_ENABLE_DEBUG_PRINT
- GH_TIMER_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_TIMER_get_T3Match1] --> 0x%08x\n",
- REG_TIMER_T3MATCH1,value);
- #endif
- return value;
- }
- #endif /* GH_INLINE_LEVEL == 0 */
- /*----------------------------------------------------------------------------*/
- /* register TIMER_T3Match2 (read/write) */
- /*----------------------------------------------------------------------------*/
- #if GH_INLINE_LEVEL == 0
- /*! \brief Writes the register 'TIMER_T3Match2'. */
- void GH_TIMER_set_T3Match2(U32 data);
- /*! \brief Reads the register 'TIMER_T3Match2'. */
- U32 GH_TIMER_get_T3Match2(void);
- #else /* GH_INLINE_LEVEL == 0 */
- GH_INLINE void GH_TIMER_set_T3Match2(U32 data)
- {
- *(volatile U32 *)REG_TIMER_T3MATCH2 = data;
- #if GH_TIMER_ENABLE_DEBUG_PRINT
- GH_TIMER_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_TIMER_set_T3Match2] <-- 0x%08x\n",
- REG_TIMER_T3MATCH2,data,data);
- #endif
- }
- GH_INLINE U32 GH_TIMER_get_T3Match2(void)
- {
- U32 value = (*(volatile U32 *)REG_TIMER_T3MATCH2);
- #if GH_TIMER_ENABLE_DEBUG_PRINT
- GH_TIMER_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_TIMER_get_T3Match2] --> 0x%08x\n",
- REG_TIMER_T3MATCH2,value);
- #endif
- return value;
- }
- #endif /* GH_INLINE_LEVEL == 0 */
- /*----------------------------------------------------------------------------*/
- /* register TIMER_T1Reloadn (read/write) */
- /*----------------------------------------------------------------------------*/
- #if GH_INLINE_LEVEL == 0
- /*! \brief Writes the register 'TIMER_T1Reloadn'. */
- void GH_TIMER_set_T1Reloadn(U32 data);
- /*! \brief Reads the register 'TIMER_T1Reloadn'. */
- U32 GH_TIMER_get_T1Reloadn(void);
- #else /* GH_INLINE_LEVEL == 0 */
- GH_INLINE void GH_TIMER_set_T1Reloadn(U32 data)
- {
- *(volatile U32 *)REG_TIMER_T1RELOADN = data;
- #if GH_TIMER_ENABLE_DEBUG_PRINT
- GH_TIMER_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_TIMER_set_T1Reloadn] <-- 0x%08x\n",
- REG_TIMER_T1RELOADN,data,data);
- #endif
- }
- GH_INLINE U32 GH_TIMER_get_T1Reloadn(void)
- {
- U32 value = (*(volatile U32 *)REG_TIMER_T1RELOADN);
- #if GH_TIMER_ENABLE_DEBUG_PRINT
- GH_TIMER_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_TIMER_get_T1Reloadn] --> 0x%08x\n",
- REG_TIMER_T1RELOADN,value);
- #endif
- return value;
- }
- #endif /* GH_INLINE_LEVEL == 0 */
- /*----------------------------------------------------------------------------*/
- /* register TIMER_T2Reloadn (read/write) */
- /*----------------------------------------------------------------------------*/
- #if GH_INLINE_LEVEL == 0
- /*! \brief Writes the register 'TIMER_T2Reloadn'. */
- void GH_TIMER_set_T2Reloadn(U32 data);
- /*! \brief Reads the register 'TIMER_T2Reloadn'. */
- U32 GH_TIMER_get_T2Reloadn(void);
- #else /* GH_INLINE_LEVEL == 0 */
- GH_INLINE void GH_TIMER_set_T2Reloadn(U32 data)
- {
- *(volatile U32 *)REG_TIMER_T2RELOADN = data;
- #if GH_TIMER_ENABLE_DEBUG_PRINT
- GH_TIMER_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_TIMER_set_T2Reloadn] <-- 0x%08x\n",
- REG_TIMER_T2RELOADN,data,data);
- #endif
- }
- GH_INLINE U32 GH_TIMER_get_T2Reloadn(void)
- {
- U32 value = (*(volatile U32 *)REG_TIMER_T2RELOADN);
- #if GH_TIMER_ENABLE_DEBUG_PRINT
- GH_TIMER_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_TIMER_get_T2Reloadn] --> 0x%08x\n",
- REG_TIMER_T2RELOADN,value);
- #endif
- return value;
- }
- #endif /* GH_INLINE_LEVEL == 0 */
- /*----------------------------------------------------------------------------*/
- /* register TIMER_T3Reloadn (read/write) */
- /*----------------------------------------------------------------------------*/
- #if GH_INLINE_LEVEL == 0
- /*! \brief Writes the register 'TIMER_T3Reloadn'. */
- void GH_TIMER_set_T3Reloadn(U32 data);
- /*! \brief Reads the register 'TIMER_T3Reloadn'. */
- U32 GH_TIMER_get_T3Reloadn(void);
- #else /* GH_INLINE_LEVEL == 0 */
- GH_INLINE void GH_TIMER_set_T3Reloadn(U32 data)
- {
- *(volatile U32 *)REG_TIMER_T3RELOADN = data;
- #if GH_TIMER_ENABLE_DEBUG_PRINT
- GH_TIMER_DEBUG_PRINT_FUNCTION( "WRREG(0x%08x,0x%08x); \\\\ [GH_TIMER_set_T3Reloadn] <-- 0x%08x\n",
- REG_TIMER_T3RELOADN,data,data);
- #endif
- }
- GH_INLINE U32 GH_TIMER_get_T3Reloadn(void)
- {
- U32 value = (*(volatile U32 *)REG_TIMER_T3RELOADN);
- #if GH_TIMER_ENABLE_DEBUG_PRINT
- GH_TIMER_DEBUG_PRINT_FUNCTION( "value = RDREG(0x%08x); \\\\ [GH_TIMER_get_T3Reloadn] --> 0x%08x\n",
- REG_TIMER_T3RELOADN,value);
- #endif
- return value;
- }
- #endif /* GH_INLINE_LEVEL == 0 */
- /*----------------------------------------------------------------------------*/
- /* init function */
- /*----------------------------------------------------------------------------*/
- /*! \brief Initialises the registers and mirror variables. */
- void GH_TIMER_init(void);
- #ifdef __cplusplus
- }
- #endif
- #endif /* _GH_TIMER_H */
- /*----------------------------------------------------------------------------*/
- /* end of file */
- /*----------------------------------------------------------------------------*/
|