summaryrefslogtreecommitdiff
path: root/examples/imx7_colibri_m4/driver_examples/gpio_bank2_imx/gpio_ctrl.c
blob: f3d1eed5f5d3b63590898e65f00bbc5f134ad360 (plain)
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
/*
 * Copyright (c) 2015, Freescale Semiconductor, Inc.
 * All rights reserved.
 *
 * Redistribution and use in source and binary forms, with or without modification,
 * are permitted provided that the following conditions are met:
 *
 * o Redistributions of source code must retain the above copyright notice, this list
 *   of conditions and the following disclaimer.
 *
 * o Redistributions in binary form must reproduce the above copyright notice, this
 *   list of conditions and the following disclaimer in the documentation and/or
 *   other materials provided with the distribution.
 *
 * o Neither the name of Freescale Semiconductor, Inc. nor the names of its
 *   contributors may be used to endorse or promote products derived from this
 *   software without specific prior written permission.
 *
 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
 * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
 * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
 * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
 * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
 * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
 */
/****************************************************************************
*
* Comments:
*   This file contains the functions which write and read the SPI memories
*   using the ECSPI driver in interrupt mode.
*
****************************************************************************/

#include <stdbool.h>
#include "gpio_pins.h"
#include "board.h"
#include "gpio_ctrl.h"
#include "gpio_imx.h"
#include "rdc_semaphore.h"
#include "debug_console_imx.h"

#define GPIO_DEBOUNCE_DELAY    (100000)


void GPIO_Ctrl_InitSwitch1Pin()
{
#ifdef BOARD_GPIO_SWITCH1_CONFIG
    /* Acquire RDC semaphore before access GPIO to avoid conflict, it's
     * necessary when GPIO RDC is configured as Semaphore Required */
    RDC_SEMAPHORE_Lock(BOARD_GPIO_SWITCH1_RDC_PDAP);
    GPIO_Init(BOARD_GPIO_SWITCH1_CONFIG->base, &Switch1);
    RDC_SEMAPHORE_Unlock(BOARD_GPIO_SWITCH1_RDC_PDAP);
#endif
}

void GPIO_Ctrl_InitLed1Pin()
{
#ifdef BOARD_GPIO_LED1_CONFIG
    /* Acquire RDC semaphore before access GPIO to avoid conflict, it's
     * necessary when GPIO RDC is configured as Semaphore Required */
    RDC_SEMAPHORE_Lock(BOARD_GPIO_LED1_RDC_PDAP);
    GPIO_Init(BOARD_GPIO_LED1_CONFIG->base, &Led1);
    RDC_SEMAPHORE_Unlock(BOARD_GPIO_LED1_RDC_PDAP);
#endif
}

void GPIO_Ctrl_InitSwitch2Pin()
{
#ifdef BOARD_GPIO_SWITCH2_CONFIG
    /* Acquire RDC semaphore before access GPIO to avoid conflict, it's
     * necessary when GPIO RDC is configured as Semaphore Required */
    RDC_SEMAPHORE_Lock(BOARD_GPIO_SWITCH2_RDC_PDAP);
    GPIO_Init(BOARD_GPIO_SWITCH2_CONFIG->base, &Switch2);
    RDC_SEMAPHORE_Unlock(BOARD_GPIO_SWITCH2_RDC_PDAP);
#endif
}

void GPIO_Ctrl_InitLed2Pin()
{
#ifdef BOARD_GPIO_LED2_CONFIG
    /* Acquire RDC semaphore before access GPIO to avoid conflict, it's
     * necessary when GPIO RDC is configured as Semaphore Required */
    RDC_SEMAPHORE_Lock(BOARD_GPIO_LED2_RDC_PDAP);
    GPIO_Init(BOARD_GPIO_LED2_CONFIG->base, &Led2);
    RDC_SEMAPHORE_Unlock(BOARD_GPIO_LED2_RDC_PDAP);
#endif
}

void GPIO_Ctrl_Init()
{
    GPIO_Ctrl_InitSwitch1Pin();
    GPIO_Ctrl_InitLed1Pin();
    GPIO_Ctrl_InitSwitch2Pin();
    GPIO_Ctrl_InitLed2Pin();
}

void GPIO_Ctrl_ToggleLed(gpio_config_t *boardGpioConfig, uint32_t boardGpioRdc)
{
    static bool onLed0 = 0;
    onLed0 = GPIO_ReadPinOutput(boardGpioConfig->base, boardGpioConfig->pin);
    if(onLed0 == 0)
    {
        RDC_SEMAPHORE_Lock(boardGpioRdc);
        GPIO_WritePinOutput(boardGpioConfig->base,
                            boardGpioConfig->pin, gpioPinSet);
        RDC_SEMAPHORE_Unlock(boardGpioRdc);
    }
    else
    {
        RDC_SEMAPHORE_Lock(boardGpioRdc);
        GPIO_WritePinOutput(boardGpioConfig->base,
                            boardGpioConfig->pin, gpioPinClear);
        RDC_SEMAPHORE_Unlock(boardGpioRdc);
    }
}

void GPIO_Ctrl_ClearLed(gpio_config_t *boardGpioConfig, uint32_t boardGpioRdc)
{
    RDC_SEMAPHORE_Lock(boardGpioRdc);
    GPIO_WritePinOutput(boardGpioConfig->base,
                        boardGpioConfig->pin, gpioPinClear);
    RDC_SEMAPHORE_Unlock(boardGpioRdc);
}

void GPIO_Ctrl_SetLed(gpio_config_t *boardGpioConfig, uint32_t boardGpioRdc)
{

    RDC_SEMAPHORE_Lock(boardGpioRdc);
    GPIO_WritePinOutput(boardGpioConfig->base,
                        boardGpioConfig->pin, gpioPinSet);
    RDC_SEMAPHORE_Unlock(boardGpioRdc);
}

void GPIO_Ctrl_WriteLed(gpio_config_t *boardGpioConfig, uint32_t boardGpioRdc, uint32_t value)
{
    RDC_SEMAPHORE_Lock(boardGpioRdc);
    GPIO_WritePinOutput(boardGpioConfig->base,
                        boardGpioConfig->pin, value);
    RDC_SEMAPHORE_Unlock(boardGpioRdc);
}


uint32_t GPIO_Ctrl_GetKey(gpio_config_t *boardGpioConfig)
{
    return GPIO_ReadPinInput(boardGpioConfig->base, boardGpioConfig->pin);
}

void GPIO_WaitKeyPressed(gpio_config_t *boardGpioConfig, uint32_t boardGpioRdc)
{
    uint32_t i, j, debounce;
    /* Wait for Key Released. */
     do
     {
         debounce = 0;
         while (0 == GPIO_ReadPinInput(boardGpioConfig->base, boardGpioConfig->pin));

         for (i = 0; i < 3; i++)
         {
             /* Delay to wait key value stable. The cycle number should be changed
              * according to M4 Core clock frequncy.
              */
             for (j = 0 ; j < GPIO_DEBOUNCE_DELAY; j++)
             {
                 __NOP();
             }

             if (1 == GPIO_ReadPinInput(boardGpioConfig->base, boardGpioConfig->pin))
             {
                 debounce++;
             }
         }

         if (debounce > 2)
         {
             break;
         }
     }
     while (1);
}
#ifdef BOARD_GPIO_KEY_CONFIG
void BOARD_GPIO_KEY_HANDLER()
{


    /* When user input captured, we disable GPIO interrupt */
    NVIC_DisableIRQ(BOARD_GPIO_KEY_IRQ_NUM);

    RDC_SEMAPHORE_Lock(BOARD_GPIO_KEY_RDC_PDAP);

    /* Disable GPIO pin interrupt */
    GPIO_SetPinIntMode(BOARD_GPIO_KEY_CONFIG->base, BOARD_GPIO_KEY_CONFIG->pin, false);
    /* Clear the interrupt state */
    GPIO_ClearStatusFlag(BOARD_GPIO_KEY_CONFIG->base, BOARD_GPIO_KEY_CONFIG->pin);

    RDC_SEMAPHORE_Unlock(BOARD_GPIO_KEY_RDC_PDAP);

#ifdef xSemaphoreGiveFromISR
    BaseType_t xHigherPriorityTaskWoken = pdFALSE;
    /* Unlock the task to process the event. */
    xSemaphoreGiveFromISR(xSemaphore, &xHigherPriorityTaskWoken);

    /* Perform a context switch to wake the higher priority task. */
    portYIELD_FROM_ISR(xHigherPriorityTaskWoken);
#endif
}
#endif

/*******************************************************************************
 * EOF
 ******************************************************************************/