2022-12-03 12:07:44 +08:00
|
|
|
|
/*
|
|
|
|
|
* Copyright (c) 2019-2025 Allwinner Technology Co., Ltd. ALL rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* Allwinner is a trademark of Allwinner Technology Co.,Ltd., registered in
|
|
|
|
|
* the the People's Republic of China and other countries.
|
|
|
|
|
* All Allwinner Technology Co.,Ltd. trademarks are used with permission.
|
|
|
|
|
*
|
|
|
|
|
* DISCLAIMER
|
|
|
|
|
* THIRD PARTY LICENCES MAY BE REQUIRED TO IMPLEMENT THE SOLUTION/PRODUCT.
|
2023-04-01 11:05:14 +08:00
|
|
|
|
* IF YOU NEED TO INTEGRATE THIRD PARTY’S TECHNOLOGY (SONY, DTS, DOLBY, AVS OR MPEGLA, ETC.)
|
|
|
|
|
* IN ALLWINNERS’SDK OR PRODUCTS, YOU SHALL BE SOLELY RESPONSIBLE TO OBTAIN
|
2022-12-03 12:07:44 +08:00
|
|
|
|
* ALL APPROPRIATELY REQUIRED THIRD PARTY LICENCES.
|
|
|
|
|
* ALLWINNER SHALL HAVE NO WARRANTY, INDEMNITY OR OTHER OBLIGATIONS WITH RESPECT TO MATTERS
|
|
|
|
|
* COVERED UNDER ANY REQUIRED THIRD PARTY LICENSE.
|
2023-04-01 11:05:14 +08:00
|
|
|
|
* YOU ARE SOLELY RESPONSIBLE FOR YOUR USAGE OF THIRD PARTY’S TECHNOLOGY.
|
2022-12-03 12:07:44 +08:00
|
|
|
|
*
|
|
|
|
|
*
|
|
|
|
|
* THIS SOFTWARE IS PROVIDED BY ALLWINNER"AS IS" AND TO THE MAXIMUM EXTENT
|
|
|
|
|
* PERMITTED BY LAW, ALLWINNER EXPRESSLY DISCLAIMS ALL WARRANTIES OF ANY KIND,
|
|
|
|
|
* WHETHER EXPRESS, IMPLIED OR STATUTORY, INCLUDING WITHOUT LIMITATION REGARDING
|
|
|
|
|
* THE TITLE, NON-INFRINGEMENT, ACCURACY, CONDITION, COMPLETENESS, PERFORMANCE
|
|
|
|
|
* OR MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE.
|
|
|
|
|
* IN NO EVENT SHALL ALLWINNER 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.
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#include <stdint.h>
|
|
|
|
|
|
|
|
|
|
#include <hal_log.h>
|
|
|
|
|
#include <hal_cmd.h>
|
|
|
|
|
#include <hal_interrupt.h>
|
|
|
|
|
#include <hal_gpio.h>
|
|
|
|
|
|
|
|
|
|
#include "test_conf.h"
|
|
|
|
|
|
|
|
|
|
static irqreturn_t gpio_irq_test(int unused, void *data)
|
|
|
|
|
{
|
|
|
|
|
hal_log_info("fake gpio interrupt handler");
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
int cmd_test_gpio(int argc, char **argv)
|
|
|
|
|
{
|
|
|
|
|
uint32_t irq;
|
|
|
|
|
int ret = 0;
|
|
|
|
|
gpio_pull_status_t pull_state;
|
|
|
|
|
gpio_direction_t gpio_direction;
|
|
|
|
|
gpio_data_t gpio_data;
|
|
|
|
|
|
|
|
|
|
hal_log_info("Setting: pull state: %d, dir: %d, data: 0x%x",
|
|
|
|
|
GPIO_PULL_UP, GPIO_DIRECTION_OUTPUT, GPIO_DATA_HIGH);
|
|
|
|
|
|
|
|
|
|
hal_gpio_set_pull(GPIO_TEST, GPIO_PULL_UP);
|
|
|
|
|
hal_gpio_set_direction(GPIO_TEST, GPIO_DIRECTION_OUTPUT);
|
|
|
|
|
hal_gpio_set_data(GPIO_TEST, GPIO_DATA_HIGH);
|
|
|
|
|
|
|
|
|
|
hal_gpio_get_pull(GPIO_TEST, &pull_state);
|
|
|
|
|
hal_gpio_get_direction(GPIO_TEST, &gpio_direction);
|
|
|
|
|
hal_gpio_get_data(GPIO_TEST, &gpio_data);
|
|
|
|
|
|
|
|
|
|
hal_log_info("Results: pull state: %d, dir: %d, data: 0x%0x",
|
|
|
|
|
pull_state, gpio_direction, gpio_data);
|
|
|
|
|
|
|
|
|
|
if (pull_state == GPIO_PULL_UP
|
|
|
|
|
&& gpio_direction == GPIO_DIRECTION_OUTPUT
|
|
|
|
|
&& gpio_data == GPIO_DATA_HIGH)
|
|
|
|
|
{
|
|
|
|
|
hal_log_info("Test hal_gpio_set_pull API success!");
|
|
|
|
|
hal_log_info("Test hal_gpio_set_direction API success!");
|
|
|
|
|
hal_log_info("Test hal_gpio_set_data API success!");
|
|
|
|
|
hal_log_info("Test hal_gpio_get_pull API success!");
|
|
|
|
|
hal_log_info("Test hal_gpio_get_direction API success!");
|
|
|
|
|
hal_log_info("Test hal_gpio_get_data API success!");
|
|
|
|
|
} else {
|
|
|
|
|
goto failed;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ret = hal_gpio_to_irq(GPIO_TEST, &irq);
|
|
|
|
|
if (ret < 0)
|
|
|
|
|
{
|
|
|
|
|
hal_log_err("gpio to irq error, irq num:%lu error num: %d", irq, ret);
|
|
|
|
|
goto failed;
|
|
|
|
|
} else {
|
|
|
|
|
hal_log_info("Test hal_gpio_to_irq API success!");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ret = hal_gpio_irq_request(irq, gpio_irq_test, IRQ_TYPE_EDGE_RISING, NULL);
|
|
|
|
|
if (ret < 0)
|
|
|
|
|
{
|
|
|
|
|
hal_log_err("request irq error, irq num:%lu error num: %d", irq, ret);
|
|
|
|
|
goto failed;
|
|
|
|
|
} else {
|
|
|
|
|
hal_log_info("Test hal_gpio_irq_request API success!");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ret = hal_gpio_irq_enable(irq);
|
|
|
|
|
if (ret < 0)
|
|
|
|
|
{
|
|
|
|
|
hal_log_err("request irq error, error num: %d", ret);
|
|
|
|
|
goto failed;
|
|
|
|
|
} else {
|
|
|
|
|
hal_log_info("Test hal_gpio_irq_enable API success!");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ret = hal_gpio_irq_disable(irq);
|
|
|
|
|
if (ret < 0)
|
|
|
|
|
{
|
|
|
|
|
hal_log_err("disable irq error, irq num:%lu, error num: %d", irq, ret);
|
|
|
|
|
goto failed;
|
|
|
|
|
} else {
|
|
|
|
|
hal_log_info("Test hal_gpio_irq_disable API success!");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
ret = hal_gpio_irq_free(irq);
|
|
|
|
|
if (ret < 0)
|
|
|
|
|
{
|
|
|
|
|
hal_log_err("free irq error, error num: %d", ret);
|
|
|
|
|
goto failed;
|
|
|
|
|
} else {
|
|
|
|
|
hal_log_info("Test hal_gpio_irq_free API success!");
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
hal_log_info("Test gpio hal APIs success!");
|
|
|
|
|
|
|
|
|
|
return 0;
|
|
|
|
|
|
|
|
|
|
failed:
|
|
|
|
|
hal_log_err("Test gpio hal APIs failed!");
|
|
|
|
|
return -1;
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
MSH_CMD_EXPORT_ALIAS(cmd_test_gpio, hal_gpio, gpio hal APIs tests);
|