aboutsummaryrefslogtreecommitdiffhomepage
path: root/source/Core/BSP/Pinecilv2/board.c
blob: 84ae831fb2dbc71e273a92706d20a7fb371dfa19 (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
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
/**
 * @file board.c
 * @brief
 *
 * Copyright (c) 2021 Bouffalolab team
 *
 * Licensed to the Apache Software Foundation (ASF) under one or more
 * contributor license agreements.  See the NOTICE file distributed with
 * this work for additional information regarding copyright ownership.  The
 * ASF licenses this file to you under the Apache License, Version 2.0 (the
 * "License"); you may not use this file except in compliance with the
 * License.  You may obtain a copy of the License at
 *
 *   http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
 * WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.  See the
 * License for the specific language governing permissions and limitations
 * under the License.
 *
 */

#include "bflb_platform.h"
#include "bl702_config.h"
#include "bl702_glb.h"
#include "hal_gpio.h"

struct pin_mux_cfg {
  uint8_t  pin;
  uint16_t func;
};

static const struct pin_mux_cfg af_pin_table[] = {
#ifdef CONFIG_GPIO0_FUNC
    { .pin = GPIO_PIN_0,  .func = CONFIG_GPIO0_FUNC},
#endif
#ifdef CONFIG_GPIO1_FUNC
    { .pin = GPIO_PIN_1,  .func = CONFIG_GPIO1_FUNC},
#endif
#ifdef CONFIG_GPIO2_FUNC
    { .pin = GPIO_PIN_2,  .func = CONFIG_GPIO2_FUNC},
#endif
#ifdef CONFIG_GPIO3_FUNC
    { .pin = GPIO_PIN_3,  .func = CONFIG_GPIO3_FUNC},
#endif
#ifdef CONFIG_GPIO4_FUNC
    { .pin = GPIO_PIN_4,  .func = CONFIG_GPIO4_FUNC},
#endif
#ifdef CONFIG_GPIO5_FUNC
    { .pin = GPIO_PIN_5,  .func = CONFIG_GPIO5_FUNC},
#endif
#ifdef CONFIG_GPIO6_FUNC
    { .pin = GPIO_PIN_6,  .func = CONFIG_GPIO6_FUNC},
#endif
#ifdef CONFIG_GPIO7_FUNC
    { .pin = GPIO_PIN_7,  .func = CONFIG_GPIO7_FUNC},
#endif
#ifdef CONFIG_GPIO8_FUNC
    { .pin = GPIO_PIN_8,  .func = CONFIG_GPIO8_FUNC},
#endif
#ifdef CONFIG_GPIO9_FUNC
    { .pin = GPIO_PIN_9,  .func = CONFIG_GPIO9_FUNC},
#endif
#ifdef CONFIG_GPIO10_FUNC
    {.pin = GPIO_PIN_10, .func = CONFIG_GPIO10_FUNC},
#endif
#ifdef CONFIG_GPIO11_FUNC
    {.pin = GPIO_PIN_11, .func = CONFIG_GPIO11_FUNC},
#endif
#ifdef CONFIG_GPIO12_FUNC
    {.pin = GPIO_PIN_12, .func = CONFIG_GPIO12_FUNC},
#endif
#ifdef CONFIG_GPIO13_FUNC
    {.pin = GPIO_PIN_13, .func = CONFIG_GPIO13_FUNC},
#endif
#ifdef CONFIG_GPIO14_FUNC
    {.pin = GPIO_PIN_14, .func = CONFIG_GPIO14_FUNC},
#endif
#ifdef CONFIG_GPIO15_FUNC
    {.pin = GPIO_PIN_15, .func = CONFIG_GPIO15_FUNC},
#endif
#ifdef CONFIG_GPIO16_FUNC
    {.pin = GPIO_PIN_16, .func = CONFIG_GPIO16_FUNC},
#endif
#ifdef CONFIG_GPIO17_FUNC
    {.pin = GPIO_PIN_17, .func = CONFIG_GPIO17_FUNC},
#endif
#ifdef CONFIG_GPIO18_FUNC
    {.pin = GPIO_PIN_18, .func = CONFIG_GPIO18_FUNC},
#endif
#ifdef CONFIG_GPIO19_FUNC
    {.pin = GPIO_PIN_19, .func = CONFIG_GPIO19_FUNC},
#endif
#ifdef CONFIG_GPIO20_FUNC
    {.pin = GPIO_PIN_20, .func = CONFIG_GPIO20_FUNC},
#endif
#ifdef CONFIG_GPIO21_FUNC
    {.pin = GPIO_PIN_21, .func = CONFIG_GPIO21_FUNC},
#endif
#ifdef CONFIG_GPIO22_FUNC
    {.pin = GPIO_PIN_22, .func = CONFIG_GPIO22_FUNC},
#endif
#ifdef CONFIG_GPIO23_FUNC
    {.pin = GPIO_PIN_23, .func = CONFIG_GPIO23_FUNC},
#endif
#ifdef CONFIG_GPIO24_FUNC
    {.pin = GPIO_PIN_24, .func = CONFIG_GPIO24_FUNC},
#endif
#ifdef CONFIG_GPIO25_FUNC
    {.pin = GPIO_PIN_25, .func = CONFIG_GPIO25_FUNC},
#endif
#ifdef CONFIG_GPIO26_FUNC
    {.pin = GPIO_PIN_26, .func = CONFIG_GPIO26_FUNC},
#endif
#ifdef CONFIG_GPIO27_FUNC
    {.pin = GPIO_PIN_27, .func = CONFIG_GPIO27_FUNC},
#endif
#ifdef CONFIG_GPIO28_FUNC
    {.pin = GPIO_PIN_28, .func = CONFIG_GPIO28_FUNC},
#endif
#ifdef CONFIG_GPIO29_FUNC
    {.pin = GPIO_PIN_29, .func = CONFIG_GPIO29_FUNC},
#endif
#ifdef CONFIG_GPIO30_FUNC
    {.pin = GPIO_PIN_30, .func = CONFIG_GPIO30_FUNC},
#endif
#ifdef CONFIG_GPIO31_FUNC
    {.pin = GPIO_PIN_31, .func = CONFIG_GPIO31_FUNC},
#endif
};

static void board_pin_mux_init(void) {
  GLB_GPIO_Cfg_Type gpio_cfg;
  uint32_t          tmpVal;
  gpio_cfg.drive        = 2;
  gpio_cfg.smtCtrl      = 1;
  uint8_t hbn_gpio_mask = 0x1f;
  uint8_t hbn_aon_ie    = 0;

  for (uint32_t i = 0; i < sizeof(af_pin_table) / sizeof(af_pin_table[0]); i++) {
    gpio_cfg.gpioMode = GPIO_MODE_AF;
    gpio_cfg.pullType = GPIO_PULL_UP;
    gpio_cfg.gpioPin  = af_pin_table[i].pin;
    gpio_cfg.gpioFun  = af_pin_table[i].func;

    /*if using gpio9-gpio12 and func is not analog and output ,should set reg_aon_pad_ie_smt corresponding bit = 1*/
    if ((af_pin_table[i].pin > GPIO_PIN_8) && (af_pin_table[i].pin < GPIO_PIN_13)) {
      if ((af_pin_table[i].func != 10) && ((af_pin_table[i].func < GPIO_FUN_GPIO_OUTPUT_UP) || (af_pin_table[i].func > GPIO_FUN_GPIO_OUTPUT_NONE))) {
        hbn_aon_ie |= (1 << (af_pin_table[i].pin - 9));
      }
    }

    /*if reset state*/
    if (af_pin_table[i].func == GPIO_FUN_UNUSED) {
      continue;
    } else if (af_pin_table[i].func == GPIO_FUN_WAKEUP) {
      /*if hbn or pds gpio wakeup func*/
      if (af_pin_table[i].pin < GPIO_PIN_8) {
        /*enable pds gpio wakeup and irq unmask*/
        tmpVal = BL_RD_REG(PDS_BASE, PDS_GPIO_INT);
        tmpVal = BL_SET_REG_BITS_VAL(tmpVal, PDS_GPIO_INT_SELECT, af_pin_table[i].pin);
        tmpVal = BL_SET_REG_BITS_VAL(tmpVal, PDS_GPIO_INT_MODE, PDS_AON_GPIO_INT_TRIGGER_ASYNC_FALLING_EDGE);
        tmpVal = BL_CLR_REG_BIT(tmpVal, PDS_GPIO_INT_MASK);
        BL_WR_REG(PDS_BASE, PDS_GPIO_INT, tmpVal);
      } else if ((af_pin_table[i].pin > GPIO_PIN_8) && (af_pin_table[i].pin < GPIO_PIN_13)) {
        hbn_gpio_mask &= ~(1 << (af_pin_table[i].pin - 9));
      }
      continue;
    } else if ((af_pin_table[i].func == GPIO_FUN_USB) || (af_pin_table[i].func == GPIO_FUN_DAC) || (af_pin_table[i].func == GPIO_FUN_ADC)) {
      /*if analog func , for usb、adc、dac*/
      gpio_cfg.gpioFun  = GPIO_FUN_ANALOG;
      gpio_cfg.gpioMode = GPIO_MODE_ANALOG;
      gpio_cfg.pullType = GPIO_PULL_NONE;
    } else if ((af_pin_table[i].func & 0xF0) == 0xF0) {
      /*if uart func*/
      gpio_cfg.gpioFun  = GPIO_FUN_UART;
      uint8_t uart_func = af_pin_table[i].func & 0x07;
      uint8_t uart_sig  = gpio_cfg.gpioPin % 8;
      /*link to one uart sig*/
      GLB_UART_Fun_Sel((GLB_UART_SIG_Type)uart_sig, (GLB_UART_SIG_FUN_Type)uart_func);
      GLB_UART_Fun_Sel((GLB_UART_SIG_Type)uart_func, (GLB_UART_SIG_FUN_Type)uart_sig);
    } else if (af_pin_table[i].func == GPIO_FUN_PWM) {
      /*if pwm func*/
      gpio_cfg.pullType = GPIO_PULL_DOWN;
    } else if (af_pin_table[i].func == GPIO_FUN_QDEC) {
      /* if qdec a/b */
      gpio_cfg.pullType = GPIO_PULL_NONE;
      gpio_cfg.gpioMode = GPIO_MODE_INPUT;
      gpio_cfg.gpioFun  = GPIO_FUN_QDEC;
    } else if (af_pin_table[i].func == GPIO_FUN_QDEC_LED) {
      /* if qdec led */
      gpio_cfg.pullType = GPIO_PULL_NONE;
      gpio_cfg.gpioMode = GPIO_MODE_OUTPUT;
      gpio_cfg.gpioFun  = GPIO_FUN_QDEC;
    } else if (af_pin_table[i].func == GPIO_FUN_CLK_OUT) {
      if (af_pin_table[i].pin % 2) {
        /*odd gpio output clock*/
        GLB_Set_Chip_Out_1_CLK_Sel(GLB_CHIP_CLK_OUT_I2S_REF_CLK);
      } else {
        /*even gpio output clock*/
        GLB_Set_Chip_Out_0_CLK_Sel(GLB_CHIP_CLK_OUT_I2S_REF_CLK);
      }
    } else if ((af_pin_table[i].func == GPIO_FUN_GPIO_INPUT_UP) || (af_pin_table[i].func == GPIO_FUN_GPIO_EXTI_FALLING_EDGE) || (af_pin_table[i].func == GPIO_FUN_GPIO_EXTI_LOW_LEVEL)) {
      /*if common gpio func,include input、output and exti*/
      gpio_cfg.gpioFun  = GPIO_FUN_GPIO;
      gpio_cfg.gpioMode = GPIO_MODE_INPUT;
      gpio_cfg.pullType = GPIO_PULL_UP;

      if (af_pin_table[i].func == GPIO_FUN_GPIO_EXTI_FALLING_EDGE) {
        GLB_Set_GPIO_IntMod(af_pin_table[i].pin, GLB_GPIO_INT_CONTROL_ASYNC, GLB_GPIO_INT_TRIG_NEG_PULSE);
      } else if (af_pin_table[i].func == GPIO_FUN_GPIO_EXTI_LOW_LEVEL) {
        GLB_Set_GPIO_IntMod(af_pin_table[i].pin, GLB_GPIO_INT_CONTROL_ASYNC, GLB_GPIO_INT_TRIG_NEG_LEVEL);
      }
    } else if ((af_pin_table[i].func == GPIO_FUN_GPIO_INPUT_DOWN) || (af_pin_table[i].func == GPIO_FUN_GPIO_EXTI_RISING_EDGE) || (af_pin_table[i].func == GPIO_FUN_GPIO_EXTI_HIGH_LEVEL)) {
      gpio_cfg.gpioFun  = GPIO_FUN_GPIO;
      gpio_cfg.gpioMode = GPIO_MODE_INPUT;
      gpio_cfg.pullType = GPIO_PULL_DOWN;

      if (af_pin_table[i].func == GPIO_FUN_GPIO_EXTI_RISING_EDGE) {
        GLB_Set_GPIO_IntMod(af_pin_table[i].pin, GLB_GPIO_INT_CONTROL_ASYNC, GLB_GPIO_INT_TRIG_POS_PULSE);
      } else if (af_pin_table[i].func == GPIO_FUN_GPIO_EXTI_HIGH_LEVEL) {
        GLB_Set_GPIO_IntMod(af_pin_table[i].pin, GLB_GPIO_INT_CONTROL_ASYNC, GLB_GPIO_INT_TRIG_POS_LEVEL);
      }
    } else if (af_pin_table[i].func == GPIO_FUN_GPIO_INPUT_NONE) {
      gpio_cfg.gpioFun  = GPIO_FUN_GPIO;
      gpio_cfg.gpioMode = GPIO_MODE_INPUT;
      gpio_cfg.pullType = GPIO_PULL_NONE;
    } else if (af_pin_table[i].func == GPIO_FUN_GPIO_OUTPUT_UP) {
      gpio_cfg.gpioFun  = GPIO_FUN_GPIO;
      gpio_cfg.gpioMode = GPIO_MODE_OUTPUT;
      gpio_cfg.pullType = GPIO_PULL_UP;
    } else if (af_pin_table[i].func == GPIO_FUN_GPIO_OUTPUT_DOWN) {
      gpio_cfg.gpioFun  = GPIO_FUN_GPIO;
      gpio_cfg.gpioMode = GPIO_MODE_OUTPUT;
      gpio_cfg.pullType = GPIO_PULL_DOWN;
    } else if (af_pin_table[i].func == GPIO_FUN_GPIO_OUTPUT_NONE) {
      gpio_cfg.gpioFun  = GPIO_FUN_GPIO;
      gpio_cfg.gpioMode = GPIO_MODE_OUTPUT;
      gpio_cfg.pullType = GPIO_PULL_NONE;
    }
    GLB_GPIO_Init(&gpio_cfg);
  }

  /*disable unused reg_aon_pad_ie_smt bits and hbn_pin_wakeup_mask bits*/
  tmpVal = BL_RD_REG(HBN_BASE, HBN_IRQ_MODE);
  tmpVal = BL_SET_REG_BITS_VAL(tmpVal, HBN_PIN_WAKEUP_MASK, hbn_gpio_mask);
  tmpVal = BL_SET_REG_BITS_VAL(tmpVal, HBN_REG_AON_PAD_IE_SMT, hbn_aon_ie);
  tmpVal = BL_CLR_REG_BIT(tmpVal, HBN_REG_EN_HW_PU_PD);
  tmpVal = BL_SET_REG_BITS_VAL(tmpVal, HBN_PIN_WAKEUP_MODE, HBN_GPIO_INT_TRIGGER_ASYNC_FALLING_EDGE);
  BL_WR_REG(HBN_BASE, HBN_IRQ_MODE, tmpVal);
}

static void board_clock_init(void) {
  system_clock_init();
  peripheral_clock_init();
}

void board_init(void) {
  board_clock_init();
  board_pin_mux_init();
}