gd_gpio.c 30.3 KB
Newer Older
G
gokemicro 已提交
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 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045
/*
*******************************************************************************
**
** \file      gd_gpio.c
**
** \brief     GPIO driver (core functions).
**
**            Copyright:   2012 - 2013 (C) GoKe Microelectronics ShangHai Branch
**
** \attention THIS SAMPLE CODE IS PROVDMAD AS IS. GOKE MICROELECTRONICS
**            ACCEPTS NO RESPONSIBILITY OR LIABILITY FOR ANY ERRORS OR
**            OMMISSIONS.
**
** \version
**
*******************************************************************************
*/
#include <stdio.h>
#include <string.h>

#include "gtypes.h"

#include <gh_gpio.h>
#include <gh_debug_rct.h>

#include "gd_int.h"
#include "gd_gpio.h"

#define GD_GPIO_PIN_COUNT 64
#define GD_GPIO_LOW_NUM  21

/*
***********************************************************
** local structures
***********************************************************
*/
typedef struct
{
    U8             number;
    GBOOL          in_use;
    GD_GPIO_TYPE_E type;
	GD_GPIO_INT_TRIGGER_E trigger;
    void         (*notifier)(void);
}GD_GPIO_HANDLE_S;

enum
{
    GD_GPIO_IRQ_ENABLE = 1,
    GD_GPIO_IRQ_CLEAR  = 0
};

/*
***********************************************************
** local variables
***********************************************************
*/
static GD_GPIO_HANDLE_S gd_gpio_handle_array[GD_GPIO_PIN_COUNT];
static GD_HANDLE        gd_gpio_int_handle = 0;
static GD_GPIO_XREF_S   gd_gpio_xref_table[GD_GPIO_PIN_COUNT];//max maped function for each pin
static U16              gd_Gpio_xref_table_count = 0;

/*
***********************************************************
** local functions
***********************************************************
*/
static GD_GPIO_HANDLE_S* gpioCheckHandle(GD_HANDLE handle);
#if 1
GISR1                    gpioIsr0();
static GD_INT_DATA_S*    gpioIrqHandler(void);
#endif
static void gpioIntSetting(U8 number,GD_GPIO_INT_TRIGGER_E type);

/*!
*******************************************************************************
**
** \brief Initialise the driver.
**
** This function initialises the GPIO driver. It disables all GPIO
** interrupts and registers the GPIO interrupt with the interrupt
** driver.
**
** If the driver is already initialised,
** #GD_ERR_ALREADY_INITIALIZED will be returned.
**
** \param pInitParams Pointer to an init structure GD_GPIO_INIT_PARAMS_S.
**
** \return
** - #GD_OK if successfull
** - #GD_ERR_ALREADY_INITIALIZED in case of error, already initialized
** - #GD_ERR_BAD_PARAMTER in case of error if the given parameter structure
**                        is invalid
**
** \sa GD_GPIO_Terminate()
**
*******************************************************************************
*/
GERR GD_GPIO_Init(GD_GPIO_INIT_PARAMS_S* pInitParams)
{
    U8 index;
#if 1
    GD_INT_OPEN_PARAMS_S irq;
#endif
    GD_HANDLE handle;

    if(gd_gpio_int_handle != 0)
    {
        return( GD_ERR_ALREADY_INITIALIZED );
    }

    if(( pInitParams == NULL )||( pInitParams->xrefTable == NULL )||(pInitParams->xrefTableCount>(GD_GPIO_PIN_COUNT)))
    {
        return(GD_ERR_BAD_PARAMETER);
    }

    // set default value, and copy the gpio table.
    for(index=0; index < GD_GPIO_PIN_COUNT; index++)
                // open the default function mode of gpio.
    {

    // clean all status of gpio handle.
        gd_gpio_handle_array[index].in_use   = GFALSE;
        gd_gpio_handle_array[index].number   = 0;
        gd_gpio_handle_array[index].type     = GD_GPIO_TYPE_UNDEFINED;
		gd_gpio_handle_array[index].trigger  = 5;
        gd_gpio_handle_array[index].notifier = NULL;
    }
    for(index=0; index < (GD_GPIO_PIN_COUNT); index++)
    {
        gd_gpio_xref_table[index].pin  = 0xff;  // index; ???
        gd_gpio_xref_table[index].type = GD_GPIO_TYPE_UNDEFINED;
    }
    gd_Gpio_xref_table_count = pInitParams->xrefTableCount;
    for(index=0; index < gd_Gpio_xref_table_count; index++)
    {
        gd_gpio_xref_table[index].pin  = pInitParams->xrefTable[index].pin;
        gd_gpio_xref_table[index].type = pInitParams->xrefTable[index].type;
    }

    // register interrupt routine
#if 1
    irq.type            = GD_INT_GPIO0_IRQ;
    irq.active          = GD_INT_INVERT_IRQ;
    irq.sensitivity     = GD_INT_LEVEL_HIGH;
    irq.priority        = GD_INT_LOW_PRIORITY;
    irq.isrFct.lowPrio  = gpioIsr0;

    if(pInitParams->irqPriority == GD_INT_MID_PRIORITY)
    {
        irq.priority        = GD_INT_MID_PRIORITY;
        irq.isrFct.midPrio  = gpioIsr0;
    }
#endif

    if(pInitParams && pInitParams->xrefTable)
    {
        for(index=0; index < GD_GPIO_PIN_COUNT; index++)
        {
            //gd_gpio_xref_table[index].pin  = pInitParams->xrefTable[index].pin;
            //gd_gpio_xref_table[index].type = pInitParams->xrefTable[index].type;

            if(pInitParams->xrefTable[index].type != GD_GPIO_TYPE_UNDEFINED)
            {
                GD_GPIO_Open(gd_gpio_xref_table[index].pin,
                             gd_gpio_xref_table[index].type,
                             0,
                             &handle);

                gd_gpio_handle_array[index].in_use      = GFALSE;
                gd_gpio_handle_array[index].number      = 0;
                gd_gpio_handle_array[index].type        = GD_GPIO_TYPE_UNDEFINED;
                gd_gpio_handle_array[index].notifier    = NULL;
            }
        }
    }
    // this is used for gpio enable
    GH_GPIO_set_INT_EN(1);
	/*FIXME(heyong):gk7101  phy type*/
	if(pInitParams->phyType == 0)//internal phy
	{
		GH_GPIO_set_PER_SEL((U32)0x00000002);
	}
	else //external phy
	{
		GH_GPIO_set_PER_SEL((U32)0x00000003);
	}


    // very special internal setting, hard wire CTS to 1
    // this is required to start the uart later
#if 1
    //GH_GPIO_set_InConfig_SIGNAL(((GD_GPIO_TYPE_INPUT_UART0_CTS>>8) & 0xff)-1, 1);

    if(GD_INT_Open(&irq, &gd_gpio_int_handle) != GD_OK)
    {
        gd_gpio_int_handle = 0;
        return(GD_ERR_ALREADY_INITIALIZED);
    }
    GD_INT_SetHandler(irq.type, gpioIrqHandler);
    GD_INT_Enable(&gd_gpio_int_handle, GD_INT_ENABLED);
#endif
    return(GD_OK);
}

/*!
*******************************************************************************
**
** \brief  Exits the driver.
**
** This function terminates the GPIO driver. It closes all open
** GPIO lines and closes the GPIO interrupt handler with the
** interrupt driver.
**
** If the driver was not initialised, #GD_OK will be returned anyway.
**
** \return
** - #GD_OK if successfull
**
*******************************************************************************
*/
GERR GD_GPIO_Exit(void)
{
    U8 index;
    GD_HANDLE handle;

    if(gd_gpio_int_handle == 0)
    {
        return(GD_OK);
    }

    for(index=0; index < GD_GPIO_PIN_COUNT; index++)
    {
        handle = (GD_HANDLE)(&gd_gpio_handle_array[index]);
        GD_GPIO_Close(&handle);

        gd_gpio_handle_array[index].in_use      = GFALSE;
        gd_gpio_handle_array[index].notifier    = NULL;
    }
    GH_GPIO_set_INT_EN_int_en(GD_GPIO_IRQ_CLEAR);
    GD_INT_Enable(&gd_gpio_int_handle, GD_INT_DISABLED);
    GD_INT_Close(&gd_gpio_int_handle);

    gd_gpio_int_handle          = 0;
    gd_Gpio_xref_table_count    = 0;
    return(GD_OK);
}

/*!
*******************************************************************************
**
** \brief Opens a GPIO.
**
** This function opens a GPIO and configures it.
**
** \param  number      Number of the GPIO to open.
** \param  type        Operation type of the GPIO.
** \param  pIntConfig  Pointer to an interrupt configuration structure.
**                     You may pass a NULL pointer here to disable interrupt
**                     generation for the given GPIO.
** \param  pHandle     Pointer to a handle that shall be filled as return
**                     value.
**
** \return
** - #GD_OK if successfull
** - #GD_ERR_ALREADY_OPEN in case of error if the given GPIO is already in use
** - #GD_ERR_BAD_PARAMTER in case of error if either the given type is out of
**                        range or if the given interrupt mode is not supported
**
*******************************************************************************
*/
GERR GD_GPIO_Open(U8 number, GD_GPIO_TYPE_E type, GD_GPIO_INT_CONFIG_S* pIntConfig, GD_HANDLE* pHandle)
{
    GD_GPIO_HANDLE_S* ph;
    GERR gerr;
    U32 temp_value = 0;
    if(number >= GD_GPIO_PIN_COUNT)
    {
        return(GD_ERR_BAD_PARAMETER);
    }

    ph = &gd_gpio_handle_array[number];
    if(ph->in_use == GTRUE)
    {
        *pHandle = (GD_HANDLE)ph;
        return(GD_ERR_ALREADY_OPEN);
    }

    ph->number = number;
    ph->type   = type;

    ph->in_use = GTRUE;
    gerr = GD_GPIO_SetType((GD_HANDLE)ph, type);
    if(gerr != GD_OK)
    {
        ph->in_use = GFALSE;
        return gerr;
    }
    ph->in_use = GFALSE;

    if((GD_GPIO_GET_FUNC(type) == GD_GPIO_FUNC_IN) && (pIntConfig != NULL))
    {
        if(pIntConfig->enable == GFALSE)
        {
            if(number < GD_GPIO_LOW_NUM)
            {
                temp_value = GH_GPIO_get_IE_LOW();
                temp_value = temp_value & (~(0x1 << number));
                GH_GPIO_set_IE_LOW(temp_value);
            }
            else
            {
                temp_value = GH_GPIO_get_IE_HIGH();
                temp_value = temp_value & (~(0x1 << (number - GD_GPIO_LOW_NUM)));
                GH_GPIO_set_IE_HIGH(temp_value);
            }
            ph->notifier = NULL;
        }
        else
        {
            ph->notifier = pIntConfig->notifyFct;
			ph->trigger  = pIntConfig->trigger;
            gpioIntSetting(number, pIntConfig->trigger);
            if(number < GD_GPIO_LOW_NUM)
            {
                temp_value = GH_GPIO_get_IE_LOW();
                temp_value = temp_value | (0x1 << number);
                GH_GPIO_set_IE_LOW(temp_value);
            }
            else
            {
                temp_value = GH_GPIO_get_IE_HIGH();
                temp_value = temp_value | (0x1 << (number - GD_GPIO_LOW_NUM));
                GH_GPIO_set_IE_HIGH(temp_value);
            }
        }

    }
    else
    {
        ph->notifier = NULL;
    }

    ph->in_use = GTRUE;

    *pHandle = (GD_HANDLE)ph;
    return(GD_OK);
}

/*!
*******************************************************************************
**
** \brief  Opens a GPIO in function mode.
**
** This function opens a GPIO in function mode.
**
** \param  type     GPIO function type of the GPIO to open.
** \param  pHandle  Pointer to a handle that shall be filled as return value.
**
** \return
** - #GD_OK if successfull
** - #GD_ERR_ALREADY_OPEN in case of error if the given GPIO is already in use
** - #GD_ERR_BAD_PARAMTER in case of error if either the given type is out of
**                        range or if the given interrupt mode is not supported
**
*******************************************************************************
*/
GERR GD_GPIO_OpenFunctionMode(GD_GPIO_TYPE_E type, GD_HANDLE* pHandle)
{
    U32 index;

    for(index=0; index < gd_Gpio_xref_table_count; index++)
    {
        if(gd_gpio_xref_table[index].type == type)
        {
            return(GD_GPIO_Open( gd_gpio_xref_table[index].pin, type, 0, pHandle));
        }
    }
    return(GD_ERR_BAD_PARAMETER);
}

/*!
*******************************************************************************
**
** \brief Closes a GPIO.
**
** This function closes a GPIO and disables the related interrupt.
** It shall also be used to close the special SDRAM od TSD GPIO lines.
**
** \param pHandle Pointer to a handle of a GPIO that shall be closed. The
**                handle will be set to #NULL.
**
** \return
** - #GD_OK if successfull
** - #GD_ERR_INVALID_HANDLE in case of error if the given handle is invalid
**
*******************************************************************************
*/
GERR GD_GPIO_Close(GD_HANDLE* pHandle)
{
    GD_GPIO_HANDLE_S* ph;
    U32 temp_value = 0;
    if(pHandle == NULL)
    {
        return(GD_ERR_INVALID_HANDLE);
    }

    ph = gpioCheckHandle(*pHandle);
    if(ph && (ph->in_use == GTRUE))
    {

        if(ph->number < GD_GPIO_LOW_NUM)
        {
            temp_value = GH_GPIO_get_IE_LOW();
            temp_value = temp_value & (~(0x1 << ph->number));
            GH_GPIO_set_IE_LOW(temp_value);
        }
        else
        {
            temp_value = GH_GPIO_get_IE_HIGH();
            temp_value = temp_value & (~(0x1 << (ph->number - GD_GPIO_LOW_NUM)));
            GH_GPIO_set_IE_HIGH(temp_value);
        }
        ph->in_use      = GFALSE;
        ph->notifier    = NULL;
        *pHandle        = 0;
    }
    return(GD_OK);
}

/*!
*******************************************************************************
**
** \brief Closes a GPIO with type.
**
** This function closes a GPIO and disables the related interrupt.
** It shall also be used to close the special SDRAM od TSD GPIO lines.
**
** \param type Pointer to the type of a GPIO that shall be closed.
**
** \return
** - #GD_OK if successfull
** - #GD_ERR_INVALID_HANDLE in case of error if the given handle is invalid
**
*******************************************************************************
*/
GERR GD_GPIO_CloseWithType(U32 type)
{
    GD_GPIO_HANDLE_S* ph = NULL;
    U16 index;
    U32 number;

    for(index=0; index < gd_Gpio_xref_table_count; index++)
    {
        if(gd_gpio_xref_table[index].type == type)
        {
            number          = gd_gpio_xref_table[index].pin;
            ph              = &gd_gpio_handle_array[number];
            ph->in_use      = GFALSE;
            ph->notifier    = NULL;
            return(GD_OK);
        }
    }
    return(GD_ERR_BAD_PARAMETER);
}
/*!
*******************************************************************************
**
** \brief Changes the type of a GPIO.
**
** This function changes the type of an open GPIO. Note that it can
** not be used for GPIO lines operating in function mode.
**
** \param  handle Handle of the GPIO to change.
** \param  type   New type to configure.
**
** \return
** - #GD_OK if successfull
** - #GD_ERR_INVALID_HANDLE in case of error if the given handle is invalid
** - #GD_ERR_BAD_PARAMETER in case of error if the given type is out of range
**
*******************************************************************************
*/
GERR GD_GPIO_SetType(GD_HANDLE handle, GD_GPIO_TYPE_E type)
{
    GD_GPIO_HANDLE_S* ph;

    ph = gpioCheckHandle(handle);
    if(!ph || (ph->in_use != GTRUE))
    {
        return(GD_ERR_INVALID_HANDLE);
    }

    switch(GD_GPIO_GET_FUNC(type))
    {
    case GD_GPIO_FUNC_OUT:     // out
        GH_GPIO_set_OUTPUT_CFG_out_sel(ph->number, GD_GPIO_GET_OUT_SEL(type));
        GH_GPIO_set_OUTPUT_CFG_oen_sel(ph->number, GD_GPIO_GET_OEN_SEL(type));
        break;
    case GD_GPIO_FUNC_IN:     // in
        if(GD_GPIO_GET_IN_SEL(type) >= 2)
        {
            GH_GPIO_set_OUTPUT_CFG_out_sel(ph->number, GD_GPIO_GET_OUT_SEL(type));
            GH_GPIO_set_OUTPUT_CFG_oen_sel(ph->number, GD_GPIO_GET_OEN_SEL(type));
            GH_GPIO_set_INPUT_CFG_in_sel(GD_GPIO_GET_IN_SEL(type) - 2, ph->number);
        }
        else
        {
            GH_GPIO_set_OUTPUT_CFG_out_sel(ph->number, GD_GPIO_GET_OUT_SEL(type));
            GH_GPIO_set_OUTPUT_CFG_oen_sel(ph->number, GD_GPIO_GET_OEN_SEL(type));
            //GH_GPIO_set_INPUT_CFG_in_sel(GD_GPIO_GET_IN_SEL(type) - 2, ph->number);
        }
        break;
    case GD_GPIO_FUNC_INOUT:     // in+out
        // don't change, otherwise if out_sel at first might output a 0, then change to 1
        GH_GPIO_set_INPUT_CFG_in_sel(GD_GPIO_GET_IN_SEL(type) - 2, ph->number);
        GH_GPIO_set_OUTPUT_CFG_oen_sel(ph->number, GD_GPIO_GET_OEN_SEL(type));
        GH_GPIO_set_OUTPUT_CFG_out_sel(ph->number, GD_GPIO_GET_OUT_SEL(type));
        break;
    default:
        return(GD_ERR_BAD_PARAMETER);
    }
    if(GD_GPIO_GET_OEN_INVERT(type))
    {
        GH_GPIO_set_OUTPUT_CFG_oen_invert(ph->number, GD_GPIO_GET_OEN_INVERT(type));
    }
    GH_GPIO_set_OUTPUT_CFG_out_invert(ph->number, GD_GPIO_GET_OUT_INVERT(type));
    // Pull up/down & 2mA......

    if(GD_GPIO_GET_IOCTRL(type))
    {
        if(ph->number<40)
        {
            switch(ph->number%4)
            {
            case 0:
                GH_PLL_set_IOCTRL_GPIO_io3((ph->number)/4 + 3, GD_GPIO_GET_IOCTRL(type));
                break;
            case 1:
                GH_PLL_set_IOCTRL_GPIO_io0((ph->number)/4 + 3, GD_GPIO_GET_IOCTRL(type));
                break;
            case 2:
                GH_PLL_set_IOCTRL_GPIO_io2((ph->number)/4 + 3, GD_GPIO_GET_IOCTRL(type));
                break;
            case 3:
                GH_PLL_set_IOCTRL_GPIO_io1((ph->number)/4 + 3, GD_GPIO_GET_IOCTRL(type));
                break;
            }
        }
        else if(ph->number<44)
        {
            switch(ph->number%4)
            {
            case 0:
                GH_PLL_set_IOCTRL_GPIO_io3((ph->number)/4 + 3, GD_GPIO_GET_IOCTRL(type));
                break;
            case 1:
                GH_PLL_set_IOCTRL_GPIO_io1((ph->number)/4 + 3, GD_GPIO_GET_IOCTRL(type));
                break;
            case 2:
                GH_PLL_set_IOCTRL_GPIO_io0((ph->number)/4 + 3, GD_GPIO_GET_IOCTRL(type));
                break;
            case 3:
                GH_PLL_set_IOCTRL_GPIO_io2((ph->number)/4 + 3, GD_GPIO_GET_IOCTRL(type));
                break;
            }
        }
    }

    ph->type = type; // add by francis
    return(GD_OK);
}

/*!
*******************************************************************************
**
** \brief Read a GPIO bit.
**
** This function reads the GPIO data bit given by the number element inside
** the given handl.
**
** \param  handle Handle of the GPIO to read.
** \param  pBit   Pointer to a data field which shall be filled.
**
** \return
** - #GD_OK if successfull
** - #GD_ERR_INVALID_HANDLE in case of error if the given handle is invalid
** - #GD_ERR_BAD_PARAMTER in case of error if the given type is not an input
**
*******************************************************************************
*/
GERR GD_GPIO_Read(GD_HANDLE handle, U8 *pBit)
{
    GD_GPIO_HANDLE_S* ph = gpioCheckHandle(handle);
    U32 shift;
    U32 bits;

    if(!ph || (ph->in_use != GTRUE))
    {
        return(GD_ERR_INVALID_HANDLE);
    }

    if(GD_GPIO_GET_FUNC(ph->type) == GD_GPIO_FUNC_IN)
    {
        if(ph->number < GD_GPIO_LOW_NUM)
        {
            shift = ph->number;
            bits  = GH_GPIO_get_DIN_LOW();
        }
        else
        {
            shift = ph->number - GD_GPIO_LOW_NUM;
            bits  = GH_GPIO_get_DIN_HIGH();
        }
        *pBit = (U8)((bits >> shift) & 1);
        return(GD_OK);
    }
    return(GD_ERR_BAD_PARAMETER);
}

/*!
*******************************************************************************
**
** \brief Write a GPIO bit.
**
** This function writes the GPIO data bit given by the number element inside
** the given handl.
**
** \param  handle   Handle of the GPIO to write.
** \param  bit      Data bit to write.
**
** \return
** - #GD_OK if successfull
** - #GD_ERR_INVALID_HANDLE in case of error if the given handle is invalid
** - #GD_ERR_BAD_PARAMTER in case of error if the given type is not an output
**
*******************************************************************************
*/
GERR GD_GPIO_Write(GD_HANDLE handle, U8 bit)
{
    GD_GPIO_HANDLE_S* ph = gpioCheckHandle(handle);

    if(!ph || (ph->in_use != GTRUE))
    {
        return( GD_ERR_INVALID_HANDLE );
    }

    if(GD_GPIO_GET_FUNC(ph->type) == GD_GPIO_FUNC_OUT)
    {
        GH_GPIO_set_OUTPUT_CFG_out_sel(ph->number, bit&0x1);
        return(GD_OK);
    }
    return(GD_ERR_BAD_PARAMETER);
}

/*!
*******************************************************************************
**
** \brief Invert the GPIO output data.
**
** This function invert the GPIO data bit given by the number element inside
** the given handl.
**
** \param  handle   Handle of the GPIO to invert.
** \param  modeValue      Normal mode or invert mode.
**
** \return
** - #GD_OK if successfull
** - #GD_ERR_INVALID_HANDLE in case of error if the given handle is invalid
** - #GD_ERR_BAD_PARAMTER in case of error if the given type is not an output
**
*******************************************************************************
*/
GERR GD_GPIO_ControlInvertData(GD_HANDLE handle, U8 modeValue)
{
    GD_GPIO_HANDLE_S* ph = gpioCheckHandle(handle);

    if(!ph || (ph->in_use != GTRUE ))
    {
        return(GD_ERR_INVALID_HANDLE);
    }

    if(GD_GPIO_GET_FUNC(ph->type) == GD_GPIO_FUNC_OUT)
    {
        GH_GPIO_set_OUTPUT_CFG_out_invert(ph->number, modeValue);
        return(GD_OK);
    }
    return(GD_ERR_BAD_PARAMETER);
}

/*!
*******************************************************************************
**
** \brief Invert the GPIO enable mode.
**
** This function invert the GPIO enable mode given by the number element inside
** the given handl.
**
** \param  handle   Handle of the GPIO to invert.
** \param  modeValue      Normal mode or invert mode.
**
** \return
** - #GD_OK if successfull
** - #GD_ERR_INVALID_HANDLE in case of error if the given handle is invalid
** - #GD_ERR_BAD_PARAMTER in case of error if the given type is not an output
**
*******************************************************************************
*/
GERR GD_GPIO_ControlInvertEnable(GD_HANDLE handle, U8 modeValue)
{
    GD_GPIO_HANDLE_S* ph = gpioCheckHandle(handle);

    if(!ph || (ph->in_use != GTRUE))
    {
        return(GD_ERR_INVALID_HANDLE);
    }

    if(GD_GPIO_GET_FUNC(ph->type) == GD_GPIO_FUNC_OUT)
    {
        GH_GPIO_set_OUTPUT_CFG_oen_invert(ph->number, modeValue);
        return(GD_OK);
    }
    return(GD_ERR_BAD_PARAMETER);
}

/*!
*******************************************************************************
**
** \brief Enables an interrupt.
**
** This function enables a GPIO interrupt.
**
** \return
** - #GD_OK if successfull
** - #GD_ERR_BAD_PARAMETER in case of error, gpio not initialize
**
*******************************************************************************
*/
GERR GD_GPIO_EnableInterrupt(void)
{
    if(gd_gpio_int_handle == 0)
    {
        return(GD_ERR_BAD_PARAMETER);
    }
    GH_GPIO_set_INT_EN_int_en(GD_GPIO_IRQ_ENABLE);
    return(GD_OK );
}

/*!
*******************************************************************************
**
** \brief Disables an interrupt.
**
** This function disables a GPIO interrupt.
**
** \param handle Handle of the GPIO to disable its interrupt.
**
** \return
** - #GD_OK if successfull
** - #GD_ERR_BAD_PARAMETER in case of error, gpio not initialize
**
*******************************************************************************
*/
GERR GD_GPIO_DisableInterrupt(void)
{
    if(gd_gpio_int_handle == 0)
    {
        return(GD_ERR_BAD_PARAMETER);
    }
    GH_GPIO_set_INT_EN_int_en(GD_GPIO_IRQ_CLEAR);
    return(GD_OK);
}

/*
*******************************************************************************
**
** \brief Check a given GPIO handle
**
** This function checks whether a given handle is valid.
**
** \param handle The GPIO handle to be checked
**
** \return
** - non-NULL if the given handle is ok
** - NULL in case of error if the given handle is invalid
**
*******************************************************************************
*/
static GD_GPIO_HANDLE_S* gpioCheckHandle(GD_HANDLE handle)
{
    GD_GPIO_HANDLE_S* check = (GD_GPIO_HANDLE_S*)handle;

    if(check && ( check == &gd_gpio_handle_array[check->number]))
    {
        return(check);
    }
    return(0);
}

/*
********************************************************************************
**
** GPIO interrupt handler function
**
********************************************************************************
*/

GISR1 gpioIsr0(void)
{
    GD_INT_HANDLER_F Handler;
    GD_INT_DATA_S* intDataP;

    Handler = GD_INT_GetHandler(GD_INT_GPIO0_IRQ);
    intDataP = Handler();
    if(intDataP->processor)
    {
        intDataP->processor(intDataP->data);
    }
}

static GD_INT_DATA_S* gpioIrqHandler(void)
{
    static GD_INT_DATA_S intData;
    U8 index = 0;

    U32 gpioStatusHigh = 0;
    U32 gpioStatusLow = 0;

    intData.length      = 0;
    intData.data        = NULL;
    intData.processor   = NULL;


    GD_GPIO_DisableInterrupt();

    gpioStatusHigh = GH_GPIO_get_MIS_HIGH();
    gpioStatusLow = GH_GPIO_get_MIS_LOW();

    for(index=0; index < GD_GPIO_PIN_COUNT; index++)
    {
        if(index < GD_GPIO_LOW_NUM)
        {
            if((gpioStatusLow & (0x1 << index)) != 0)
            {
                if(gd_gpio_handle_array[index].notifier)
                {
                    gd_gpio_handle_array[index].notifier();
                }
            }
        }
        else
        {
            if((gpioStatusHigh & (0x1 << (index - GD_GPIO_LOW_NUM))) != 0)
            {
                if(gd_gpio_handle_array[index].notifier)
                {
                    gd_gpio_handle_array[index].notifier();
                }
            }
        }
    }
    GH_GPIO_set_IC_HIGH(0xFFFFFFFF);
    GH_GPIO_set_IC_LOW(0xFFFFFFFF);
    GD_GPIO_EnableInterrupt();

    return( &intData );
}

static void gpioIntSetting(U8 number,GD_GPIO_INT_TRIGGER_E type)
{
    U32 temp_value = 0;

    switch(type)
    {
        case GD_GPIO_INT_TRIGGER_LOW_LEVEL:
            if(number < GD_GPIO_LOW_NUM)
            {
                temp_value = GH_GPIO_get_IS_LOW();
                temp_value = temp_value | (0x1 << number);
                GH_GPIO_set_IS_LOW(temp_value);


                temp_value = GH_GPIO_get_IEV_LOW();
                temp_value = temp_value & (~(0x1 << number));
                GH_GPIO_set_IEV_LOW(temp_value);

                temp_value = GH_GPIO_get_IBE_LOW();
                temp_value = temp_value & (~(0x1 << number));
                GH_GPIO_set_IBE_LOW(temp_value);
            }
            else
            {
                temp_value = GH_GPIO_get_IS_HIGH();
                temp_value = temp_value | (0x1 << (number - GD_GPIO_LOW_NUM));
                GH_GPIO_set_IS_HIGH(temp_value);


                temp_value = GH_GPIO_get_IEV_HIGH();
                temp_value = temp_value & (~(0x1 << (number - GD_GPIO_LOW_NUM)));
                GH_GPIO_set_IEV_HIGH(temp_value);

                temp_value = GH_GPIO_get_IBE_HIGH();
                temp_value = temp_value & (~(0x1 << (number - GD_GPIO_LOW_NUM)));
                GH_GPIO_set_IBE_HIGH(temp_value);

            }
            break;
        case GD_GPIO_INT_TRIGGER_HIGH_LEVEL:
            if(number < GD_GPIO_LOW_NUM)
            {
                temp_value = GH_GPIO_get_IS_LOW();
                temp_value = temp_value | (0x1 << number);
                GH_GPIO_set_IS_LOW(temp_value);

				temp_value = GH_GPIO_get_IBE_LOW();
				temp_value = temp_value & (~(0x1 <<number));
				GH_GPIO_set_IBE_LOW(temp_value);

                temp_value = GH_GPIO_get_IEV_LOW();
                temp_value = temp_value | (0x1 << number);
                GH_GPIO_set_IEV_LOW(temp_value);

            }
            else
            {
                temp_value = GH_GPIO_get_IS_HIGH();
                temp_value = temp_value | (0x1 << (number - GD_GPIO_LOW_NUM));
                GH_GPIO_set_IS_HIGH(temp_value);

				temp_value = GH_GPIO_get_IBE_HIGH();
                temp_value = temp_value & (~(0x1 << (number - GD_GPIO_LOW_NUM)));
				GH_GPIO_set_IBE_HIGH(temp_value);


                temp_value = GH_GPIO_get_IEV_HIGH();
                temp_value = temp_value | (0x1 << (number - GD_GPIO_LOW_NUM));
                GH_GPIO_set_IEV_HIGH(temp_value);

            }
            break;
        case GD_GPIO_INT_TRIGGER_RISING_EDGE:
            if(number < GD_GPIO_LOW_NUM)
            {
                temp_value = GH_GPIO_get_IS_LOW();
                temp_value = temp_value & (~(0x1 << number));
                GH_GPIO_set_IS_LOW(temp_value);

                temp_value = GH_GPIO_get_IBE_LOW();
                temp_value = temp_value & (~(0x1 << number));
                GH_GPIO_set_IBE_LOW(temp_value);


                temp_value = GH_GPIO_get_IEV_LOW();
                temp_value = temp_value | (0x1 << number);
                GH_GPIO_set_IEV_LOW(temp_value);


            }
            else
            {
                temp_value = GH_GPIO_get_IS_HIGH();
                temp_value = temp_value & (~(0x1 << (number - GD_GPIO_LOW_NUM)));
                GH_GPIO_set_IS_HIGH(temp_value);

                temp_value = GH_GPIO_get_IBE_HIGH();
                temp_value = temp_value & (~(0x1 << (number - GD_GPIO_LOW_NUM)));
                GH_GPIO_set_IBE_HIGH(temp_value);


                temp_value = GH_GPIO_get_IEV_HIGH();
                temp_value = temp_value | (0x1 << (number - GD_GPIO_LOW_NUM));
                GH_GPIO_set_IEV_HIGH(temp_value);


            }
            break;
        case GD_GPIO_INT_TRIGGER_FALLING_EDGE:
            if(number < GD_GPIO_LOW_NUM)
            {
                temp_value = GH_GPIO_get_IS_LOW();
                temp_value = temp_value & (~(0x1 << number));
                GH_GPIO_set_IS_LOW(temp_value);

                temp_value = GH_GPIO_get_IBE_LOW();
                temp_value = temp_value & (~(0x1 << number));
                GH_GPIO_set_IBE_LOW(temp_value);


                temp_value = GH_GPIO_get_IEV_LOW();
                temp_value = temp_value & (~(0x1 << number));
                GH_GPIO_set_IEV_LOW(temp_value);


            }
            else
            {
                temp_value = GH_GPIO_get_IS_HIGH();
                temp_value = temp_value & (~(0x1 << (number - GD_GPIO_LOW_NUM)));
                GH_GPIO_set_IS_HIGH(temp_value);

                temp_value = GH_GPIO_get_IBE_HIGH();
                temp_value = temp_value & (~(0x1 << (number - GD_GPIO_LOW_NUM)));
                GH_GPIO_set_IBE_HIGH(temp_value);


                temp_value = GH_GPIO_get_IEV_HIGH();
                temp_value = temp_value & (~(0x1 << (number - GD_GPIO_LOW_NUM)));
                GH_GPIO_set_IEV_HIGH(temp_value);


            }
            break;
        case GD_GPIO_INT_TRIGGER_BOTH_EDGE:
            if(number < GD_GPIO_LOW_NUM)
            {
                temp_value = GH_GPIO_get_IS_LOW();
                temp_value = temp_value & (~(0x1 << number));
                GH_GPIO_set_IS_LOW(temp_value);


                temp_value = GH_GPIO_get_IBE_LOW();
                temp_value = temp_value | (0x1 << number);
                GH_GPIO_set_IBE_LOW(temp_value);

            }
            else
            {
                temp_value = GH_GPIO_get_IS_HIGH();
                temp_value = temp_value & (~(0x1 << (number - GD_GPIO_LOW_NUM)));
                GH_GPIO_set_IS_HIGH(temp_value);


                temp_value = GH_GPIO_get_IBE_HIGH();
                temp_value = temp_value | (0x1 << (number - GD_GPIO_LOW_NUM));
                GH_GPIO_set_IBE_HIGH(temp_value);

            }
            break;
        default:
            break;
    }

    return;
}