From 1c3aedf45e95a2e308b2ea0ee882ddca9182e6db Mon Sep 17 00:00:00 2001 From: Armando Date: Thu, 6 Jul 2023 17:51:54 +0800 Subject: [PATCH] remove p4 rtc_io related files as requested --- .../soc/esp32p4/include/soc/rtc_io_channel.h | 7 ------- .../soc/esp32p4/include/soc/rtc_io_reg.h | 9 --------- .../soc/esp32p4/include/soc/rtc_io_struct.h | 19 ------------------- components/soc/esp32p4/rtc_io_periph.c | 11 ----------- 4 files changed, 46 deletions(-) delete mode 100644 components/soc/esp32p4/include/soc/rtc_io_channel.h delete mode 100644 components/soc/esp32p4/include/soc/rtc_io_reg.h delete mode 100644 components/soc/esp32p4/include/soc/rtc_io_struct.h delete mode 100644 components/soc/esp32p4/rtc_io_periph.c diff --git a/components/soc/esp32p4/include/soc/rtc_io_channel.h b/components/soc/esp32p4/include/soc/rtc_io_channel.h deleted file mode 100644 index d2aa55b41e..0000000000 --- a/components/soc/esp32p4/include/soc/rtc_io_channel.h +++ /dev/null @@ -1,7 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD - * - * SPDX-License-Identifier: Apache-2.0 - */ - -#pragma once diff --git a/components/soc/esp32p4/include/soc/rtc_io_reg.h b/components/soc/esp32p4/include/soc/rtc_io_reg.h deleted file mode 100644 index c053494821..0000000000 --- a/components/soc/esp32p4/include/soc/rtc_io_reg.h +++ /dev/null @@ -1,9 +0,0 @@ -/** - * SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD - * - * SPDX-License-Identifier: Apache-2.0 - */ -#pragma once - -#include "soc/lp_gpio_reg.h" -#include "soc/lp_iomux_reg.h" diff --git a/components/soc/esp32p4/include/soc/rtc_io_struct.h b/components/soc/esp32p4/include/soc/rtc_io_struct.h deleted file mode 100644 index 5e314ff7d8..0000000000 --- a/components/soc/esp32p4/include/soc/rtc_io_struct.h +++ /dev/null @@ -1,19 +0,0 @@ -/** - * SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD - * - * SPDX-License-Identifier: Apache-2.0 - */ -#pragma once - -#include "soc/lp_gpio_struct.h" - -#ifdef __cplusplus -extern "C" { -#endif - -typedef lp_gpio_dev_t rtc_io_dev_t; -#define RTCIO LP_GPIO - -#ifdef __cplusplus -} -#endif diff --git a/components/soc/esp32p4/rtc_io_periph.c b/components/soc/esp32p4/rtc_io_periph.c deleted file mode 100644 index c8273e3f5b..0000000000 --- a/components/soc/esp32p4/rtc_io_periph.c +++ /dev/null @@ -1,11 +0,0 @@ -/* - * SPDX-FileCopyrightText: 2022-2023 Espressif Systems (Shanghai) CO LTD - * - * SPDX-License-Identifier: Apache-2.0 - */ - -#include "soc/rtc_periph.h" - -const int rtc_io_num_map[SOC_GPIO_PIN_COUNT] = { - -};