1 // Copyright (C) 2022 Beken Corporation
2 //
3 // Licensed under the Apache License, Version 2.0 (the "License");
4 // you may not use this file except in compliance with the License.
5 // You may obtain a copy of the License at
6 //
7 // http://www.apache.org/licenses/LICENSE-2.0
8 //
9 // Unless required by applicable law or agreed to in writing, software
10 // distributed under the License is distributed on an "AS IS" BASIS,
11 // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
12 // See the License for the specific language governing permissions and
13 // limitations under the License.
14
15 #include "hal_config.h"
16 #include "gpio_hw.h"
17 #include "gpio_hal.h"
18 #include "gpio_ll.h"
19
20 //TODO finally we will automatically generate this code
21
22 #if CFG_HAL_DEBUG_GPIO
gpio_struct_dump(gpio_id_t gpio_index)23 void gpio_struct_dump(gpio_id_t gpio_index)
24 {
25 gpio_hw_t *hw = (gpio_hw_t *)GPIO_LL_REG_BASE; //gpio base address
26 SOC_LOGI("base=%x\n", (uint32_t)hw);
27
28 SOC_LOGI(" gpio[%d]: %x\n", gpio_index, hw->gpio_num[gpio_index].cfg.v);
29 SOC_LOGI(" gpio_input : %x\n", hw->gpio_num[gpio_index].cfg.gpio_input);
30 SOC_LOGI(" gpio_output: %x\n", hw->gpio_num[gpio_index].cfg.gpio_output);
31 SOC_LOGI(" gpio_input_en: %x\n", hw->gpio_num[gpio_index].cfg.gpio_input_en);
32 SOC_LOGI(" gpio_output_en: %x\n", hw->gpio_num[gpio_index].cfg.gpio_output_en);
33 SOC_LOGI(" gpio_pull_mode: %x\n", hw->gpio_num[gpio_index].cfg.gpio_pull_mode);
34 SOC_LOGI(" gpio_pull_mode_en: %x\n", hw->gpio_num[gpio_index].cfg.gpio_pull_mode_en);
35 SOC_LOGI(" gpio_input_monitor: %x\n", hw->gpio_num[gpio_index].cfg.gpio_input_monitor);
36 SOC_LOGI(" gpio_capacity: %x\n", hw->gpio_num[gpio_index].cfg.gpio_capacity);
37 SOC_LOGI(" gpio_0_15_int_type: %x\n", hw->gpio_0_15_int_type.v);
38 SOC_LOGI(" gpio_16_31_int_type: %x\n", hw->gpio_16_31_int_type.v);
39 SOC_LOGI(" gpio_32_47_int_type: %x\n", hw->gpio_32_47_int_type.v);
40 SOC_LOGI(" gpio_0_31_int_st: %x\n", hw->gpio_0_31_int_st.v);
41 SOC_LOGI(" gpio_32_47_int_st: %x\n", hw->gpio_32_47_int_st.v);
42
43 }
44
45 #endif
46