r_lcbi_main.c 18.3 KB
Newer Older
时昊's avatar
时昊 committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697
/*
****************************************************************************
PROJECT : VLIB Macro Driver
FILE    : $Id: r_lcbi_main.c 7329 2016-01-22 10:40:45Z matthias.nippert $
============================================================================
DESCRIPTION
Driver for the LCBI macro
============================================================================
                            C O P Y R I G H T
============================================================================
                           Copyright (c) 2014
                                  by
                       Renesas Electronics (Europe) GmbH.
                           Arcadiastrasse 10
                          D-40472 Duesseldorf
                               Germany
                          All rights reserved.
============================================================================
Purpose: only for testing

DISCLAIMER
This software is supplied by Renesas Electronics Corporation and is only
intended for use with Renesas products. No other uses are authorized. This
software is owned by Renesas Electronics Corporation and is protected under
all applicable laws, including copyright laws.
THIS SOFTWARE IS PROVIDED "AS IS" AND RENESAS MAKES NO WARRANTIES REGARDING
THIS SOFTWARE, WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING BUT NOT
LIMITED TO WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE
AND NON-INFRINGEMENT. ALL SUCH WARRANTIES ARE EXPRESSLY DISCLAIMED.
TO THE MAXIMUM EXTENT PERMITTED NOT PROHIBITED BY LAW, NEITHER RENESAS
ELECTRONICS CORPORATION NOR ANY OF ITS AFFILIATED COMPANIES SHALL BE LIABLE
FOR ANY DIRECT, INDIRECT, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES FOR
ANY REASON RELATED TO THIS SOFTWARE, EVEN IF RENESAS OR ITS AFFILIATES HAVE
BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES.
Renesas reserves the right, without notice, to make changes to this software
and to discontinue the availability of this software. By using this software,
you agree to the additional terms and conditions found by accessing the
following link:
http://www.renesas.com/disclaimer *
Copyright (C) 2011 Renesas Electronics Corporation. All rights reserved.

****************************************************************************
*/

/*******************************************************************************
  Title: LCBI Main Module

  Implementation of the API and other global functions.
*/

/*******************************************************************************
  Section: Includes
*/

#include "r_typedefs.h"
#include "r_config_lcbi.h"
#include "r_lcbi_api.h"
#define LCBI_MAIN_GLOBALS_
#include "r_lcbi_main.h"
#include "r_lcbi_regs.h"
#include "r_lcbi_sys.h"
#include <math.h>

#if defined(R_DBG_PRINT_DEV_REGS) || defined(R_DBG_PRINT_MSG)
    #include <stdio.h>
    #include "r_dbg_api.h"
#endif

/*******************************************************************************
  Section: Local Constants
*/

/*******************************************************************************
  Constant: loc_LcbiVersion

  A string containig the macro driver version information
*/

static const int8_t loc_LcbiDrvVer [] = R_VERSION(LCBI, R_LCBI_VERSION_HI, R_LCBI_VERSION_LO);

/*******************************************************************************
  Section: Local Variables
*/

/*******************************************************************************
  Variable: loc_ErrorHandler

  A function pointer to a user callback (Applications error handler)

  The value is assigned by the application using the driver
*/

static void (*loc_ErrorHandler)(uint32_t Unit, uint32_t Error) = 0u;

/*******************************************************************************
  Section: Local Functions
*/
/* Local Function Headers */
static uint32_t loc_calcClockDiv(uint32_t clkin, uint32_t clkout);
void            R_LCBI_WaitWorkModeToZero(uint32_t Unit);

/*******************************************************************************
  Function: loc_calcClockDiv

  calculate best divider for given input and output clock frequency
*/
static uint32_t loc_calcClockDiv(uint32_t clkin, uint32_t clkout)
{
    uint32_t div;
    uint32_t divfrq [ 2 ];

    /* calc near divider */
    div = clkin / clkout;

    /* test if next divider is better, if yes choose next divider */
    divfrq [ 0 ] = clkin / div;
    divfrq [ 1 ] = clkin / (div + 1);
    if ( (divfrq [ 0 ] - clkout) > (clkout - divfrq [ 1 ]) )
    {
        div += 1;
    }

    /* divider value 0 is invalid, choose 1 instead */
    if ( div == 0 )
    {
        div = 1;
    }
    return div;
}

/*******************************************************************************
  Section: Global Functions
*/

/*******************************************************************************
  Function: R_LCBI_CheckMacroParams

  See: <lcbi_main.h>
*/
r_lcbi_Error_t R_LCBI_CheckMacroParams(uint32_t Unit)
{
    /* Feel free to add any more usefull parameter checks */
    if ( R_LCBI_MACRO_NUM <= Unit )
    {
        return R_LCBI_ERR_RANGE;
    }
    return R_LCBI_ERR_OK;
}

/*******************************************************************************
  Function: R_LCBI_ErrorHandler

  See: <lcbi_main.h>
*/

void R_LCBI_ErrorHandler(uint32_t Unit, r_lcbi_Error_t Error)
{
    if ( 0 != loc_ErrorHandler )
    {                                              /* we've got a registered error handler here ...*/
        loc_ErrorHandler(Unit, ( uint32_t )Error); /* ... and we gonna use it!*/
    }
    else
    {
        for ( ;; )
        { /* we don't have a handler */
        } /* so, let's wait here */
    }
}

/***********************************************************
  Function: R_LCBI_WaitWorkModeToZero

  Poll the operation mode and ensure it has gone to zero.

  Parameters:
  Unit  - Instance number

  Returns:
  void  -
*/

void R_LCBI_WaitWorkModeToZero(uint32_t Unit)
{
    r_lcbi_RegOpmode_t RegOpmode;

    do
    {
        RegOpmode.DWord = R_LCBI_READ_REG(32, r_lcbi_Dev [ Unit ].BaseAddr + R_LCBI_OPMODE);
    } while ( RegOpmode.Bits.Opm_ode != ( uint8_t )(0) );
}

/*******************************************************************************
  Section: Global API Functions

  See: <lcbi_api.h>
*/

/*******************************************************************************
  Function: R_LCBI_GetVersionStr

  See: <lcbi_api.h>
*/
const int8_t *R_LCBI_GetVersionStr(void)
{
    return ( const int8_t * )loc_LcbiDrvVer;
}

/*******************************************************************************
  Function: R_LCBI_GetMajorVersion

  See: <lcbi_api.h>
*/
const uint16_t R_LCBI_GetMajorVersion(void)
{
    return ( uint16_t )R_LCBI_VERSION_HI;
}

/*******************************************************************************
  Function: R_LCBI_GetMinorVersion

  See: <lcbi_api.h>
*/
const uint16_t R_LCBI_GetMinorVersion(void)
{
    return ( uint16_t )R_LCBI_VERSION_LO;
}

/*******************************************************************************
  Function: R_LCBI_Init

  See: <lcbi_api.h>
*/

r_lcbi_Error_t R_LCBI_Init(uint32_t Unit)
{
    r_lcbi_Error_t err;
    err = R_LCBI_CheckMacroParams(Unit);
    if ( R_LCBI_ERR_OK != err )
    {
        return err;
    }
    if ( 0 == r_lcbi_Dev [ Unit ].BaseAddr )
    {

        r_lcbi_Dev [ Unit ].BaseAddr = R_LCBI_SYS_BaseAddr(Unit);
        err                          = R_LCBI_SYS_HardwareInit(Unit);
        R_LCBI_SYS_IntCInit(Unit);
        R_LCBI_ResetLcdBIF(Unit);
    }
    else
    {
        /* please, no double-init*/
        err = R_LCBI_ERR_LOCKED;
    }
    return err;
}

/*******************************************************************************
  Function: R_LCBI_DeInit

  See: <lcbi_api.h>
*/

r_lcbi_Error_t R_LCBI_DeInit(uint32_t Unit)
{
    r_lcbi_Error_t err;

    err = R_LCBI_CheckMacroParams(Unit);

    if ( R_LCBI_ERR_OK != err )
    {
        return err;
    }
    if ( 0 != r_lcbi_Dev [ Unit ].BaseAddr )
    {
        err                          = R_LCBI_SYS_HardwareDeInit(Unit);
        r_lcbi_Dev [ Unit ].BaseAddr = 0;
    }
    else
    {
        /* nothing to do at this point of time  */
        err = R_LCBI_ERR_NOTLOCKED;
    }
    return err;
}

/*******************************************************************************
  Function: R_LCBI_SetErrorCallback
*/

void R_LCBI_SetErrorCallback(void (*ErrorCallback)(uint32_t Unit, uint32_t Error))
{
    loc_ErrorHandler = ErrorCallback;
}

/***********************************************************
  Function: R_LCBI_GetFIFOFillLevel
*/

uint8_t R_LCBI_GetFIFOFillLevel(uint32_t Unit)
{
    r_lcbi_RegState_t state;

    state.DWord = R_LCBI_READ_REG(32, r_lcbi_Dev [ Unit ].BaseAddr + R_LCBI_STATE);

    return state.Bits.Ffl;
}

/***********************************************************
  Function: R_LCBI_StopLcdBIF
*/

void R_LCBI_StopLcdBIF(uint32_t Unit)
{
    r_lcbi_RegOpmode_t RegOpmode;

    RegOpmode.DWord = 0;
    R_LCBI_WRITE_REG(32, r_lcbi_Dev [ Unit ].BaseAddr + R_LCBI_OPMODE, RegOpmode.DWord);
    R_LCBI_WaitWorkModeToZero(Unit);
}

/************************************************************
  Function: R_LCBI_GetFSMState
*/

uint8_t R_LCBI_GetFSMState(uint32_t Unit)
{
    r_lcbi_RegState_t state;

    state.DWord = R_LCBI_READ_REG(32, r_lcbi_Dev [ Unit ].BaseAddr + R_LCBI_STATE);
    return state.Bits.State;
}

/***********************************************************
  Function: R_LCBI_Check_TC_LOCK
*/

uint8_t R_LCBI_Check_TcLock(uint32_t Unit)
{
    r_lcbi_RegStatus_t status;

    status.DWord = R_LCBI_READ_REG(32, r_lcbi_Dev [ Unit ].BaseAddr + R_LCBI_STATUS);
    return status.Bits.Tc_Lock;
}

/************************************************************
  Function: R_LCBI_IsReadPending
*/

uint8_t R_LCBI_IsReadPending(uint32_t Unit)
{
    r_lcbi_RegStatus_t status;

    status.DWord = R_LCBI_READ_REG(32, r_lcbi_Dev [ Unit ].BaseAddr + R_LCBI_STATUS);
    return status.Bits.Tc_Rpg;
}

/************************************************************
  Function: R_LCBI_WaitBusBusy
*/

void R_LCBI_WaitTransferring(uint32_t Unit)
{
    r_lcbi_RegStatus_t status;

    do
    {
        status.DWord = R_LCBI_READ_REG(32, r_lcbi_Dev [ Unit ].BaseAddr + R_LCBI_STATUS);
    } while ( status.Bits.Tc_Idle != ( uint8_t )1 );
}

/************************************************************
  Function: R_LCBI_SetClock
*/

void R_LCBI_SetClock(uint32_t Unit, r_lcbi_CLKDIV_t ClockDiv)
{
    R_LCBI_WRITE_REG(32, r_lcbi_Dev [ Unit ].BaseAddr + R_LCBI_CKSEL, ClockDiv);
}

/************************************************************
  Function: R_LCBI_InvertOutput
*/

void R_LCBI_InvertOutput(uint32_t Unit, r_lcbi_Output_Active_t Val)
{
    R_LCBI_WRITE_REG(32, r_lcbi_Dev [ Unit ].BaseAddr + R_LCBI_OUTLEV, Val);
}

/************************************************************
  Function: R_LCBI_SetBusCycle
*/

void R_LCBI_SetBusCycle(uint32_t Unit, r_lcbi_BusCycle_Type_t BusCycle)
{
    R_LCBI_WRITE_REG(32, r_lcbi_Dev [ Unit ].BaseAddr + R_LCBI_BCYCT, ( uint32_t )BusCycle);
}

/************************************************************
  Function: R_LCBI_SetNonTFTCycleSpec
*/

void R_LCBI_SetNonTFTCycleSpec(uint32_t Unit, uint32_t NonTFTSpec)
{
    R_LCBI_WRITE_REG(32, r_lcbi_Dev [ Unit ].BaseAddr + R_LCBI_BCYC, NonTFTSpec);
}

/************************************************************
  Function: R_LCBI_SetTFTPrescaler
*/

void R_LCBI_SetTFTPrescaler(uint32_t Unit, uint32_t TFTPrs)
{
    if ( TFTPrs <= 1 )
    {
        TFTPrs = 2;
    }
    TFTPrs -= 1;
    R_LCBI_WRITE_REG(32, r_lcbi_Dev [ Unit ].BaseAddr + R_LCBI_TFTPRS, TFTPrs);
}

/************************************************************
  Function: R_LCBI_SetTFTCycleC
*/

void R_LCBI_SetTFTCycleC(uint32_t Unit, uint32_t TFTCycleC)
{
    R_LCBI_WRITE_REG(32, r_lcbi_Dev [ Unit ].BaseAddr + R_LCBI_TFTCYC0, TFTCycleC);
}

/************************************************************
  Function: R_LCBI_SetTFTCycleV
*/

void R_LCBI_SetTFTCycleV(uint32_t Unit, uint32_t TFTCycleV)
{
    R_LCBI_WRITE_REG(32, r_lcbi_Dev [ Unit ].BaseAddr + R_LCBI_TFTCYC1, TFTCycleV);
}

/************************************************************
  Function: R_LCBI_SetTFTCycleH
*/

void R_LCBI_SetTFTCycleH(uint32_t Unit, uint32_t TFTCycleH)
{
    R_LCBI_WRITE_REG(32, r_lcbi_Dev [ Unit ].BaseAddr + R_LCBI_TFTCYC2, TFTCycleH);
}

/************************************************************
  Function: R_LCBI_GetRegister
*/

uint32_t R_LCBI_GetRegister(uint32_t Unit, uint32_t Addr)
{
    uint32_t val;

    val = R_LCBI_READ_REG(32, r_lcbi_Dev [ Unit ].BaseAddr + Addr);
    return val;
}

/************************************************************
  Function: R_LCBI_ResetLcdBIF
*/

void R_LCBI_ResetLcdBIF(uint32_t Unit)
{
    uint8_t val;

    val = 0x01;
    R_LCBI_WRITE_REG(8, r_lcbi_Dev [ Unit ].BaseAddr + R_LCBI_SRESET, val);
}

/************************************************************
  Function: R_LCBI_WriteData8_A0S
*/

void R_LCBI_WriteData8_A0S(uint32_t Unit, uint8_t Data)
{
    R_LCBI_WRITE_REG(32, r_lcbi_Dev [ Unit ].BaseAddr + R_LCBI_DATA_A0S_W8, Data);
}

/************************************************************
  Function: R_LCBI_WriteData8_A0C
*/

void R_LCBI_WriteData8_A0C(uint32_t Unit, uint8_t Data)
{
    R_LCBI_WRITE_REG(32, r_lcbi_Dev [ Unit ].BaseAddr + R_LCBI_DATA_A0C_W8, Data);
}

/************************************************************
  Function: R_LCBI_WriteData16_A0S
*/

void R_LCBI_WriteData16_A0S(uint32_t Unit, uint16_t Data)
{
    R_LCBI_WRITE_REG(32, r_lcbi_Dev [ Unit ].BaseAddr + R_LCBI_DATA_A0S_W16, Data);
}

/************************************************************
  Function: R_LCBI_WriteData16_A0C
*/

void R_LCBI_WriteData16_A0C(uint32_t Unit, uint16_t Data)
{
    R_LCBI_WRITE_REG(32, r_lcbi_Dev [ Unit ].BaseAddr + R_LCBI_DATA_A0C_W16, Data);
}

/************************************************************
  Function: R_LCBI_WriteData32_A0S
*/

void R_LCBI_WriteData32_A0S(uint32_t Unit, uint32_t Data)
{
    R_LCBI_WRITE_REG(32, r_lcbi_Dev [ Unit ].BaseAddr + R_LCBI_DATA_A0S_W32, Data);
}

/************************************************************
  Function: R_LCBI_WriteData32_A0C
*/

void R_LCBI_WriteData32_A0C(uint32_t Unit, uint32_t Data)
{
    R_LCBI_WRITE_REG(32, r_lcbi_Dev [ Unit ].BaseAddr + R_LCBI_DATA_A0C_W32, Data);
}

/************************************************************
  Function: R_LCBI_ReadData8_A0S
*/

uint8_t R_LCBI_ReadData8_A0S(uint32_t Unit)
{
    uint8_t result;

    result = ( uint8_t )(R_LCBI_READ_REG(32, r_lcbi_Dev [ Unit ].BaseAddr + R_LCBI_DATA_A0S_RT8) & 0x000000FFu);

    return result;
}

/************************************************************
  Function: R_LCBI_ReadData8_A0C
*/
uint8_t R_LCBI_ReadData8_A0C(uint32_t Unit)
{
    uint8_t result;

    result = ( uint8_t )(R_LCBI_READ_REG(32, r_lcbi_Dev [ Unit ].BaseAddr + R_LCBI_DATA_A0C_RT8) & 0x000000FFu);

    return result;
}

/************************************************************
  Function: R_LCBI_ReadData16_A0S
*/

uint16_t R_LCBI_ReadData16_A0S(uint32_t Unit)
{
    uint16_t result;

    result = ( uint16_t )(R_LCBI_READ_REG(32, r_lcbi_Dev [ Unit ].BaseAddr + R_LCBI_DATA_A0S_RT16) & 0x0000FFFFu);

    return result;
}

/************************************************************
  Function: R_LCBI_ReadData16_A0C
*/
uint16_t R_LCBI_ReadData16_A0C(uint32_t Unit)
{
    uint16_t result;

    result = ( uint16_t )(R_LCBI_READ_REG(32, r_lcbi_Dev [ Unit ].BaseAddr + R_LCBI_DATA_A0C_RT16) & 0x0000FFFFu);

    return result;
}

/************************************************************
  Function: R_LCBI_ReadData32_A0S
*/

uint32_t R_LCBI_ReadData32_A0S(uint32_t Unit)
{
    uint32_t result;

    result = R_LCBI_READ_REG(32, r_lcbi_Dev [ Unit ].BaseAddr + R_LCBI_DATA_A0S_RT32);

    return result;
}

/************************************************************
  Function: R_LCBI_ReadData32_A0C
*/
uint32_t R_LCBI_ReadData32_A0C(uint32_t Unit)
{
    uint32_t result;

    result = R_LCBI_READ_REG(32, r_lcbi_Dev [ Unit ].BaseAddr + R_LCBI_DATA_A0C_RT32);

    return result;
}

/************************************************************
  Function: R_LCBI_WriteCLUT
*/

void R_LCBI_WriteCLUT(uint32_t Unit, uint32_t Offset, uint32_t Data)
{
    R_LCBI_WRITE_REG(32, r_lcbi_Dev [ Unit ].BaseAddr + R_LCBI_CDATA_BASE + (Offset * 4), Data);
}

/************************************************************
  Function: R_LCBI_ReadCLUT
*/

uint32_t R_LCBI_ReadCLUT(uint32_t Unit, uint32_t Offset)
{
    return R_LCBI_READ_REG(32, r_lcbi_Dev [ Unit ].BaseAddr + R_LCBI_CDATA_BASE + (Offset * 4));
}

/************************************************************
  Function: R_LCBI_SetCLUTOffset
*/

void R_LCBI_SetCLUTOffset(uint32_t Unit, uint32_t Offset)
{
    R_LCBI_WRITE_REG(32, r_lcbi_Dev [ Unit ].BaseAddr + R_LCBI_CLUTOFFS, Offset);
}

/************************************************************
  Function: R_LCBI_GetWorkingMode
*/

uint8_t R_LCBI_GetWorkingMode(uint32_t Unit)
{
    r_lcbi_RegOpmode_t RegOpmode;

    RegOpmode.DWord = R_LCBI_READ_REG(32, r_lcbi_Dev [ Unit ].BaseAddr + R_LCBI_OPMODE);
    return ( uint8_t )RegOpmode.Bits.Opm_ode;
}

/************************************************************
  Function: R_LCBI_SetWorkingParam
*/

void R_LCBI_SetWorkingParam(uint32_t Unit, r_lcbi_Parameter_t *Param)
{
    r_lcbi_RegOpmode_t opmode;

    opmode.DWord         = 0;
    opmode.Bits.Opm_ode  = ( uint8_t )Param->WorkMode;
    opmode.Bits.Opm_fast = ( uint8_t )Param->CycleSpeed;

    R_LCBI_WRITE_REG(32, r_lcbi_Dev [ Unit ].BaseAddr + R_LCBI_OPMODE, opmode.DWord);
}

/************************************************************
  Function: R_LCBI_SetTConParam
*/

void R_LCBI_SetTConParam(uint32_t Unit, r_lcbi_Parameter_t *Param)
{
    r_lcbi_RegTcon_t tcon;

    tcon.Bits.Dtc_c = ( uint8_t )Param->TransMode;
    tcon.Bits.Dtc_p = ( uint8_t )Param->IndPalette;
    tcon.Bits.Dtc_m = ( uint8_t )Param->AccessBit;
    tcon.Bits.Dtc_s = ( uint8_t )Param->ShiftBit;

    R_LCBI_WRITE_REG(32, r_lcbi_Dev [ Unit ].BaseAddr + R_LCBI_TCONTROL, tcon.DWord);
}

/************************************************************
  Function: R_LCBI_WriteReg
*/

void R_LCBI_WriteReg(uint32_t Unit, uint32_t Data, uint32_t Offset)
{
    R_LCBI_WRITE_REG(32, r_lcbi_Dev [ Unit ].BaseAddr + Offset, Data);
}

/*******************************************************************************
  Function: R_LCBI_GetClock
*/
uint32_t R_LCBI_GetClock(uint32_t Unit)
{
    uint32_t val;

    if ( Unit == 0 )
    {
        val = R_LCBI_SYS_GetClock(Unit);
    }
    else
    {
        val = 0;
    }
    return val;
}