Initial commit
Some checks failed
Build Kernel / Build all affected Kernels (push) Has been cancelled
Build all core packages / Build all core packages for selected target (push) Has been cancelled
Build and Push prebuilt tools container / Build and Push all prebuilt containers (push) Has been cancelled
Build Toolchains / Build Toolchains for each target (push) Has been cancelled
Build host tools / Build host tools for linux and macos based systems (push) Has been cancelled
Coverity scan build / Coverity x86/64 build (push) Has been cancelled
Some checks failed
Build Kernel / Build all affected Kernels (push) Has been cancelled
Build all core packages / Build all core packages for selected target (push) Has been cancelled
Build and Push prebuilt tools container / Build and Push all prebuilt containers (push) Has been cancelled
Build Toolchains / Build Toolchains for each target (push) Has been cancelled
Build host tools / Build host tools for linux and macos based systems (push) Has been cancelled
Coverity scan build / Coverity x86/64 build (push) Has been cancelled
This commit is contained in:
@@ -0,0 +1,59 @@
|
||||
From c2ec4604afb39904c01dfe38ca8289c446b898bb Mon Sep 17 00:00:00 2001
|
||||
From: Chuanhong Guo <gch981213@gmail.com>
|
||||
Date: Tue, 20 Aug 2024 08:32:17 +0800
|
||||
Subject: [PATCH 1/9] mips: add support for Siflower SF19A2890
|
||||
|
||||
Signed-off-by: Chuanhong Guo <gch981213@gmail.com>
|
||||
---
|
||||
arch/mips/Kconfig | 29 +++++++++++++++++++++++++++++
|
||||
arch/mips/generic/Platform | 1 +
|
||||
2 files changed, 30 insertions(+)
|
||||
|
||||
--- a/arch/mips/Kconfig
|
||||
+++ b/arch/mips/Kconfig
|
||||
@@ -861,6 +861,35 @@ config SIBYTE_BIGSUR
|
||||
select ZONE_DMA32 if 64BIT
|
||||
select SWIOTLB if ARCH_DMA_ADDR_T_64BIT && PCI
|
||||
|
||||
+config MACH_SIFLOWER_MIPS
|
||||
+ bool "Siflower MIPS SoCs"
|
||||
+ select MIPS_GENERIC
|
||||
+ select ARM_AMBA
|
||||
+ select BOOT_RAW
|
||||
+ select CEVT_R4K
|
||||
+ select CLKSRC_MIPS_GIC
|
||||
+ select COMMON_CLK
|
||||
+ select CPU_MIPSR2_IRQ_EI
|
||||
+ select CPU_MIPSR2_IRQ_VI
|
||||
+ select CSRC_R4K
|
||||
+ select DMA_NONCOHERENT
|
||||
+ select IRQ_MIPS_CPU
|
||||
+ select MIPS_CPU_SCACHE
|
||||
+ select MIPS_GIC
|
||||
+ select MIPS_L1_CACHE_SHIFT_5
|
||||
+ select NO_EXCEPT_FILL
|
||||
+ select SMP_UP if SMP
|
||||
+ select SYS_HAS_CPU_MIPS32_R2
|
||||
+ select SYS_SUPPORTS_32BIT_KERNEL
|
||||
+ select SYS_SUPPORTS_LITTLE_ENDIAN
|
||||
+ select SYS_SUPPORTS_MIPS16
|
||||
+ select SYS_SUPPORTS_MIPS_CPS
|
||||
+ select SYS_SUPPORTS_MULTITHREADING
|
||||
+ select USE_OF
|
||||
+ help
|
||||
+ Select this to build a kernel which supports SoCs from Siflower
|
||||
+ with MIPS InterAptiv cores, like Siflower SF19A2890.
|
||||
+
|
||||
config SNI_RM
|
||||
bool "SNI RM200/300/400"
|
||||
select ARC_MEMORY
|
||||
--- a/arch/mips/generic/Platform
|
||||
+++ b/arch/mips/generic/Platform
|
||||
@@ -10,6 +10,7 @@
|
||||
|
||||
# Note: order matters, keep the asm/mach-generic include last.
|
||||
cflags-$(CONFIG_MACH_INGENIC_SOC) += -I$(srctree)/arch/mips/include/asm/mach-ingenic
|
||||
+cflags-$(CONFIG_MACH_SIFLOWER_MIPS) += -I$(srctree)/arch/mips/include/asm/mach-siflower
|
||||
cflags-$(CONFIG_MIPS_GENERIC) += -I$(srctree)/arch/mips/include/asm/mach-generic
|
||||
|
||||
load-$(CONFIG_MIPS_GENERIC) += 0xffffffff80100000
|
||||
@@ -0,0 +1,31 @@
|
||||
From fcb96cb774abf14375326c41cedd237d6c8f6e94 Mon Sep 17 00:00:00 2001
|
||||
From: Chuanhong Guo <gch981213@gmail.com>
|
||||
Date: Tue, 20 Aug 2024 08:33:01 +0800
|
||||
Subject: [PATCH 2/9] clk: add drivers for sf19a2890
|
||||
|
||||
Signed-off-by: Chuanhong Guo <gch981213@gmail.com>
|
||||
---
|
||||
drivers/clk/Kconfig | 1 +
|
||||
drivers/clk/Makefile | 1 +
|
||||
2 files changed, 2 insertions(+)
|
||||
|
||||
--- a/drivers/clk/Kconfig
|
||||
+++ b/drivers/clk/Kconfig
|
||||
@@ -489,6 +489,7 @@ source "drivers/clk/renesas/Kconfig"
|
||||
source "drivers/clk/rockchip/Kconfig"
|
||||
source "drivers/clk/samsung/Kconfig"
|
||||
source "drivers/clk/sifive/Kconfig"
|
||||
+source "drivers/clk/siflower/Kconfig"
|
||||
source "drivers/clk/socfpga/Kconfig"
|
||||
source "drivers/clk/sprd/Kconfig"
|
||||
source "drivers/clk/starfive/Kconfig"
|
||||
--- a/drivers/clk/Makefile
|
||||
+++ b/drivers/clk/Makefile
|
||||
@@ -116,6 +116,7 @@ obj-y += renesas/
|
||||
obj-$(CONFIG_ARCH_ROCKCHIP) += rockchip/
|
||||
obj-$(CONFIG_COMMON_CLK_SAMSUNG) += samsung/
|
||||
obj-$(CONFIG_CLK_SIFIVE) += sifive/
|
||||
+obj-$(CONFIG_CLK_SIFLOWER) += siflower/
|
||||
obj-y += socfpga/
|
||||
obj-$(CONFIG_PLAT_SPEAR) += spear/
|
||||
obj-y += sprd/
|
||||
@@ -0,0 +1,38 @@
|
||||
From 819d2a48d45f3734c876186e651917bae69be9ba Mon Sep 17 00:00:00 2001
|
||||
From: Chuanhong Guo <gch981213@gmail.com>
|
||||
Date: Tue, 20 Aug 2024 08:33:43 +0800
|
||||
Subject: [PATCH 3/9] reset: add support for sf19a2890
|
||||
|
||||
Signed-off-by: Chuanhong Guo <gch981213@gmail.com>
|
||||
---
|
||||
drivers/reset/Kconfig | 8 ++++++++
|
||||
drivers/reset/Makefile | 1 +
|
||||
2 files changed, 9 insertions(+)
|
||||
|
||||
--- a/drivers/reset/Kconfig
|
||||
+++ b/drivers/reset/Kconfig
|
||||
@@ -211,6 +211,14 @@ config RESET_SCMI
|
||||
This driver uses SCMI Message Protocol to interact with the
|
||||
firmware controlling all the reset signals.
|
||||
|
||||
+config RESET_SF19A2890_PERIPH
|
||||
+ bool "Siflower SF19A2890 Peripheral Reset Controller Driver"
|
||||
+ default MACH_SIFLOWER_MIPS
|
||||
+ depends on HAS_IOMEM
|
||||
+ help
|
||||
+ This enables reset controller driver for peripheral reset blocks
|
||||
+ found on Siflower SF19A2890 SoC.
|
||||
+
|
||||
config RESET_SIMPLE
|
||||
bool "Simple Reset Controller Driver" if COMPILE_TEST || EXPERT
|
||||
default ARCH_ASPEED || ARCH_BCMBCA || ARCH_BITMAIN || ARCH_REALTEK || ARCH_STM32 || (ARCH_INTEL_SOCFPGA && ARM64) || ARCH_SUNXI || ARC
|
||||
--- a/drivers/reset/Makefile
|
||||
+++ b/drivers/reset/Makefile
|
||||
@@ -29,6 +29,7 @@ obj-$(CONFIG_RESET_QCOM_PDC) += reset-qc
|
||||
obj-$(CONFIG_RESET_RASPBERRYPI) += reset-raspberrypi.o
|
||||
obj-$(CONFIG_RESET_RZG2L_USBPHY_CTRL) += reset-rzg2l-usbphy-ctrl.o
|
||||
obj-$(CONFIG_RESET_SCMI) += reset-scmi.o
|
||||
+obj-$(CONFIG_RESET_SF19A2890_PERIPH) += reset-sf19a2890-periph.o
|
||||
obj-$(CONFIG_RESET_SIMPLE) += reset-simple.o
|
||||
obj-$(CONFIG_RESET_SOCFPGA) += reset-socfpga.o
|
||||
obj-$(CONFIG_RESET_SUNPLUS) += reset-sunplus.o
|
||||
@@ -0,0 +1,37 @@
|
||||
From 1d37455eacb1d0c262ae6aaecadf27964cbf97d8 Mon Sep 17 00:00:00 2001
|
||||
From: Chuanhong Guo <gch981213@gmail.com>
|
||||
Date: Tue, 20 Aug 2024 08:33:57 +0800
|
||||
Subject: [PATCH 4/9] gpio: add support for siflower socs
|
||||
|
||||
---
|
||||
drivers/gpio/Kconfig | 8 ++++++++
|
||||
drivers/gpio/Makefile | 1 +
|
||||
2 files changed, 9 insertions(+)
|
||||
|
||||
--- a/drivers/gpio/Kconfig
|
||||
+++ b/drivers/gpio/Kconfig
|
||||
@@ -576,6 +576,14 @@ config GPIO_SIFIVE
|
||||
help
|
||||
Say yes here to support the GPIO device on SiFive SoCs.
|
||||
|
||||
+config GPIO_SIFLOWER
|
||||
+ tristate "SiFlower GPIO support"
|
||||
+ depends on OF_GPIO
|
||||
+ depends on MACH_SIFLOWER_MIPS || COMPILE_TEST
|
||||
+ select GPIOLIB_IRQCHIP
|
||||
+ help
|
||||
+ GPIO controller driver for SiFlower SoCs.
|
||||
+
|
||||
config GPIO_SIOX
|
||||
tristate "SIOX GPIO support"
|
||||
depends on SIOX
|
||||
--- a/drivers/gpio/Makefile
|
||||
+++ b/drivers/gpio/Makefile
|
||||
@@ -143,6 +143,7 @@ obj-$(CONFIG_GPIO_SAMA5D2_PIOBU) += gpio
|
||||
obj-$(CONFIG_GPIO_SCH311X) += gpio-sch311x.o
|
||||
obj-$(CONFIG_GPIO_SCH) += gpio-sch.o
|
||||
obj-$(CONFIG_GPIO_SIFIVE) += gpio-sifive.o
|
||||
+obj-$(CONFIG_GPIO_SIFLOWER) += gpio-siflower.o
|
||||
obj-$(CONFIG_GPIO_SIM) += gpio-sim.o
|
||||
obj-$(CONFIG_GPIO_SIOX) += gpio-siox.o
|
||||
obj-$(CONFIG_GPIO_SL28CPLD) += gpio-sl28cpld.o
|
||||
@@ -0,0 +1,39 @@
|
||||
From 59c6a4972b584d986f72fe8d7c55930fdf799bc8 Mon Sep 17 00:00:00 2001
|
||||
From: Chuanhong Guo <gch981213@gmail.com>
|
||||
Date: Tue, 20 Aug 2024 08:34:20 +0800
|
||||
Subject: [PATCH 5/9] pinctrl: add driver for siflower sf19a2890
|
||||
|
||||
---
|
||||
drivers/pinctrl/Kconfig | 10 ++++++++++
|
||||
drivers/pinctrl/Makefile | 1 +
|
||||
2 files changed, 11 insertions(+)
|
||||
|
||||
--- a/drivers/pinctrl/Kconfig
|
||||
+++ b/drivers/pinctrl/Kconfig
|
||||
@@ -417,6 +417,16 @@ config PINCTRL_ROCKCHIP
|
||||
help
|
||||
This support pinctrl and GPIO driver for Rockchip SoCs.
|
||||
|
||||
+config PINCTRL_SF19A2890
|
||||
+ tristate "Siflower SF19A2890 pinctrl driver"
|
||||
+ depends on OF && (MACH_SIFLOWER_MIPS || COMPILE_TEST)
|
||||
+ select PINMUX
|
||||
+ select PINCONF
|
||||
+ select GENERIC_PINCONF
|
||||
+ default MACH_SIFLOWER_MIPS
|
||||
+ help
|
||||
+ Say Y here to enable the Siflower SF19A2890 pinctrl driver.
|
||||
+
|
||||
config PINCTRL_SINGLE
|
||||
tristate "One-register-per-pin type device tree based pinctrl driver"
|
||||
depends on OF
|
||||
--- a/drivers/pinctrl/Makefile
|
||||
+++ b/drivers/pinctrl/Makefile
|
||||
@@ -43,6 +43,7 @@ obj-$(CONFIG_PINCTRL_PIC32) += pinctrl-p
|
||||
obj-$(CONFIG_PINCTRL_PISTACHIO) += pinctrl-pistachio.o
|
||||
obj-$(CONFIG_PINCTRL_RK805) += pinctrl-rk805.o
|
||||
obj-$(CONFIG_PINCTRL_ROCKCHIP) += pinctrl-rockchip.o
|
||||
+obj-$(CONFIG_PINCTRL_SF19A2890) += pinctrl-sf19a2890.o
|
||||
obj-$(CONFIG_PINCTRL_SINGLE) += pinctrl-single.o
|
||||
obj-$(CONFIG_PINCTRL_ST) += pinctrl-st.o
|
||||
obj-$(CONFIG_PINCTRL_STMFX) += pinctrl-stmfx.o
|
||||
@@ -0,0 +1,38 @@
|
||||
From baa6c00f7a88b28f6838a9743f66c9f7f4716e25 Mon Sep 17 00:00:00 2001
|
||||
From: Chuanhong Guo <gch981213@gmail.com>
|
||||
Date: Tue, 20 Aug 2024 08:34:42 +0800
|
||||
Subject: [PATCH 6/9] stmmac: add support for sf19a2890
|
||||
|
||||
---
|
||||
drivers/net/ethernet/stmicro/stmmac/Kconfig | 9 +++++++++
|
||||
drivers/net/ethernet/stmicro/stmmac/Makefile | 1 +
|
||||
2 files changed, 10 insertions(+)
|
||||
|
||||
--- a/drivers/net/ethernet/stmicro/stmmac/Kconfig
|
||||
+++ b/drivers/net/ethernet/stmicro/stmmac/Kconfig
|
||||
@@ -142,6 +142,15 @@ config DWMAC_ROCKCHIP
|
||||
This selects the Rockchip RK3288 SoC glue layer support for
|
||||
the stmmac device driver.
|
||||
|
||||
+config DWMAC_SF19A2890
|
||||
+ tristate "Siflower SF19A2890 GMAC support"
|
||||
+ default MACH_SIFLOWER_MIPS
|
||||
+ help
|
||||
+ Support for GMAC on Siflower SF19A2890 SoC.
|
||||
+
|
||||
+ This selects the Siflower SF19A2890 SoC glue layer support for
|
||||
+ the stmmac device driver.
|
||||
+
|
||||
config DWMAC_SOCFPGA
|
||||
tristate "SOCFPGA dwmac support"
|
||||
default ARCH_INTEL_SOCFPGA
|
||||
--- a/drivers/net/ethernet/stmicro/stmmac/Makefile
|
||||
+++ b/drivers/net/ethernet/stmicro/stmmac/Makefile
|
||||
@@ -21,6 +21,7 @@ obj-$(CONFIG_DWMAC_MEDIATEK) += dwmac-me
|
||||
obj-$(CONFIG_DWMAC_MESON) += dwmac-meson.o dwmac-meson8b.o
|
||||
obj-$(CONFIG_DWMAC_QCOM_ETHQOS) += dwmac-qcom-ethqos.o
|
||||
obj-$(CONFIG_DWMAC_ROCKCHIP) += dwmac-rk.o
|
||||
+obj-$(CONFIG_DWMAC_SF19A2890) += dwmac-sf19a2890.o
|
||||
obj-$(CONFIG_DWMAC_SOCFPGA) += dwmac-altr-socfpga.o
|
||||
obj-$(CONFIG_DWMAC_STARFIVE) += dwmac-starfive.o
|
||||
obj-$(CONFIG_DWMAC_STI) += dwmac-sti.o
|
||||
@@ -0,0 +1,31 @@
|
||||
From 68817a14ae9dff587cee8515e68c67cba89b39ab Mon Sep 17 00:00:00 2001
|
||||
From: Chuanhong Guo <gch981213@gmail.com>
|
||||
Date: Mon, 9 Sep 2024 10:18:33 +0800
|
||||
Subject: [PATCH 7/9] phy: add support for SF19A2890 USB PHY
|
||||
|
||||
Signed-off-by: Chuanhong Guo <gch981213@gmail.com>
|
||||
---
|
||||
drivers/phy/Kconfig | 1 +
|
||||
drivers/phy/Makefile | 1 +
|
||||
2 files changed, 2 insertions(+)
|
||||
|
||||
--- a/drivers/phy/Kconfig
|
||||
+++ b/drivers/phy/Kconfig
|
||||
@@ -90,6 +90,7 @@ source "drivers/phy/ralink/Kconfig"
|
||||
source "drivers/phy/renesas/Kconfig"
|
||||
source "drivers/phy/rockchip/Kconfig"
|
||||
source "drivers/phy/samsung/Kconfig"
|
||||
+source "drivers/phy/siflower/Kconfig"
|
||||
source "drivers/phy/socionext/Kconfig"
|
||||
source "drivers/phy/st/Kconfig"
|
||||
source "drivers/phy/starfive/Kconfig"
|
||||
--- a/drivers/phy/Makefile
|
||||
+++ b/drivers/phy/Makefile
|
||||
@@ -29,6 +29,7 @@ obj-y += allwinner/ \
|
||||
renesas/ \
|
||||
rockchip/ \
|
||||
samsung/ \
|
||||
+ siflower/ \
|
||||
socionext/ \
|
||||
st/ \
|
||||
starfive/ \
|
||||
@@ -0,0 +1,36 @@
|
||||
From 29282086f215ae723e6d2c139d23094e699ba5bb Mon Sep 17 00:00:00 2001
|
||||
From: Chuanhong Guo <gch981213@gmail.com>
|
||||
Date: Mon, 9 Sep 2024 16:46:53 +0800
|
||||
Subject: [PATCH 8/9] usb: dwc2: add support for Siflower SF19A2890
|
||||
|
||||
Signed-off-by: Chuanhong Guo <gch981213@gmail.com>
|
||||
---
|
||||
drivers/usb/dwc2/params.c | 10 ++++++++++
|
||||
1 file changed, 10 insertions(+)
|
||||
|
||||
--- a/drivers/usb/dwc2/params.c
|
||||
+++ b/drivers/usb/dwc2/params.c
|
||||
@@ -200,6 +200,14 @@ static void dwc2_set_amcc_params(struct
|
||||
p->ahbcfg = GAHBCFG_HBSTLEN_INCR16 << GAHBCFG_HBSTLEN_SHIFT;
|
||||
}
|
||||
|
||||
+static void dwc2_set_sf19a2890_params(struct dwc2_hsotg *hsotg)
|
||||
+{
|
||||
+ struct dwc2_core_params *p = &hsotg->params;
|
||||
+
|
||||
+ p->max_transfer_size = 65535;
|
||||
+ p->ahbcfg = GAHBCFG_HBSTLEN_INCR4 << GAHBCFG_HBSTLEN_SHIFT;
|
||||
+}
|
||||
+
|
||||
static void dwc2_set_stm32f4x9_fsotg_params(struct dwc2_hsotg *hsotg)
|
||||
{
|
||||
struct dwc2_core_params *p = &hsotg->params;
|
||||
@@ -294,6 +302,8 @@ const struct of_device_id dwc2_of_match_
|
||||
.data = dwc2_set_amlogic_a1_params },
|
||||
{ .compatible = "amcc,dwc-otg", .data = dwc2_set_amcc_params },
|
||||
{ .compatible = "apm,apm82181-dwc-otg", .data = dwc2_set_amcc_params },
|
||||
+ { .compatible = "siflower,sf19a2890-usb",
|
||||
+ .data = dwc2_set_sf19a2890_params },
|
||||
{ .compatible = "st,stm32f4x9-fsotg",
|
||||
.data = dwc2_set_stm32f4x9_fsotg_params },
|
||||
{ .compatible = "st,stm32f4x9-hsotg" },
|
||||
@@ -0,0 +1,67 @@
|
||||
From 0b04c37a1aae523025195c29a6477cf26234d26c Mon Sep 17 00:00:00 2001
|
||||
From: Chuanhong Guo <gch981213@gmail.com>
|
||||
Date: Tue, 10 Sep 2024 09:10:27 +0800
|
||||
Subject: [PATCH 9/9] usb: dwc2: handle OTG interrupt regardless of GINTSTS
|
||||
|
||||
The DWC OTG 3.30a found on Siflower SF19A2890 has battery charger
|
||||
support enabled. It triggers MultVallpChng interrupt (bit 20 of
|
||||
GOTGINT) but doesn't set OTGInt in GINTSTS. As a result, this
|
||||
interrupt is never handled, and linux disables USB interrupt
|
||||
because "nobody cares".
|
||||
|
||||
Handle OTG interrupt in IRQ handler regardless of whether the
|
||||
OTGInt bit in GINTSTS is set or not.
|
||||
|
||||
Signed-off-by: Chuanhong Guo <gch981213@gmail.com>
|
||||
---
|
||||
drivers/usb/dwc2/core_intr.c | 11 ++++++++---
|
||||
1 file changed, 8 insertions(+), 3 deletions(-)
|
||||
|
||||
--- a/drivers/usb/dwc2/core_intr.c
|
||||
+++ b/drivers/usb/dwc2/core_intr.c
|
||||
@@ -79,7 +79,7 @@ static void dwc2_handle_mode_mismatch_in
|
||||
*
|
||||
* @hsotg: Programming view of DWC_otg controller
|
||||
*/
|
||||
-static void dwc2_handle_otg_intr(struct dwc2_hsotg *hsotg)
|
||||
+static irqreturn_t dwc2_handle_otg_intr(struct dwc2_hsotg *hsotg)
|
||||
{
|
||||
u32 gotgint;
|
||||
u32 gotgctl;
|
||||
@@ -87,6 +87,10 @@ static void dwc2_handle_otg_intr(struct
|
||||
|
||||
gotgint = dwc2_readl(hsotg, GOTGINT);
|
||||
gotgctl = dwc2_readl(hsotg, GOTGCTL);
|
||||
+
|
||||
+ if (!gotgint)
|
||||
+ return IRQ_NONE;
|
||||
+
|
||||
dev_dbg(hsotg->dev, "++OTG Interrupt gotgint=%0x [%s]\n", gotgint,
|
||||
dwc2_op_state_str(hsotg));
|
||||
|
||||
@@ -229,6 +233,7 @@ static void dwc2_handle_otg_intr(struct
|
||||
|
||||
/* Clear GOTGINT */
|
||||
dwc2_writel(hsotg, gotgint, GOTGINT);
|
||||
+ return IRQ_HANDLED;
|
||||
}
|
||||
|
||||
/**
|
||||
@@ -842,6 +847,8 @@ irqreturn_t dwc2_handle_common_intr(int
|
||||
hsotg->frame_number = (dwc2_readl(hsotg, HFNUM)
|
||||
& HFNUM_FRNUM_MASK) >> HFNUM_FRNUM_SHIFT;
|
||||
|
||||
+ retval = dwc2_handle_otg_intr(hsotg);
|
||||
+
|
||||
gintsts = dwc2_read_common_intr(hsotg);
|
||||
if (gintsts & ~GINTSTS_PRTINT)
|
||||
retval = IRQ_HANDLED;
|
||||
@@ -855,8 +862,6 @@ irqreturn_t dwc2_handle_common_intr(int
|
||||
|
||||
if (gintsts & GINTSTS_MODEMIS)
|
||||
dwc2_handle_mode_mismatch_intr(hsotg);
|
||||
- if (gintsts & GINTSTS_OTGINT)
|
||||
- dwc2_handle_otg_intr(hsotg);
|
||||
if (gintsts & GINTSTS_CONIDSTSCHNG)
|
||||
dwc2_handle_conn_id_status_change_intr(hsotg);
|
||||
if (gintsts & GINTSTS_DISCONNINT)
|
||||
Reference in New Issue
Block a user