summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorScott Shawcroft <[email protected]>2021-10-12 16:47:53 -0700
committerScott Shawcroft <[email protected]>2021-10-12 16:47:53 -0700
commit4ab14867daf1d9df414f1175cbaac70c0d799257 (patch)
treedccb4c674e6025fec93394352fa906871e6b9a1c
parent98ab8117d68f05bb36b9aeb857273e896199bc6a (diff)
Trying to get USB init
-rw-r--r--hw/bsp/raspberrypi4/family.c27
-rw-r--r--hw/bsp/raspberrypi4/family.mk1
m---------hw/mcu/broadcom0
-rw-r--r--src/portable/broadcom/synopsys/dcd_synopsys.c88
4 files changed, 70 insertions, 46 deletions
diff --git a/hw/bsp/raspberrypi4/family.c b/hw/bsp/raspberrypi4/family.c
index fe7e429d6..ffeb05f9f 100644
--- a/hw/bsp/raspberrypi4/family.c
+++ b/hw/bsp/raspberrypi4/family.c
@@ -27,14 +27,17 @@
#include "bsp/board.h"
#include "board.h"
+#include "broadcom/interrupts.h"
#include "broadcom/io.h"
#include "broadcom/mmu.h"
#include "broadcom/vcmailbox.h"
+uint32_t SystemCoreClock = 700 * 1000 * 1000;
+
//--------------------------------------------------------------------+
// Forward USB interrupt events to TinyUSB IRQ Handler
//--------------------------------------------------------------------+
-void OTG_FS_IRQHandler(void)
+void USB_IRQHandler(void)
{
tud_int_handler(0);
}
@@ -54,6 +57,9 @@ void print(const char* str) {
void board_init(void)
{
gpio_initOutputPinWithPullNone(18);
+ gpio_initOutputPinWithPullNone(19);
+ gpio_initOutputPinWithPullNone(20);
+ gpio_initOutputPinWithPullNone(21);
gpio_setPinOutputBool(18, true);
gpio_initOutputPinWithPullNone(42);
setup_mmu_flat_map();
@@ -72,11 +78,17 @@ void board_init(void)
}
gpio_setPinOutputBool(42, true);
gpio_setPinOutputBool(18, true);
+ gpio_setPinOutputBool(19, true);
+ gpio_setPinOutputBool(20, true);
+ gpio_setPinOutputBool(21, true);
for (size_t j = 0; j < 1000000; j++) {
__asm__("nop");
}
gpio_setPinOutputBool(42, false);
gpio_setPinOutputBool(18, false);
+ gpio_setPinOutputBool(19, false);
+ gpio_setPinOutputBool(20, false);
+ gpio_setPinOutputBool(21, false);
}
// uart_writeText("hello from io\n");
// gpio_setPinOutputBool(24, true);
@@ -98,11 +110,18 @@ void board_init(void)
// }
// while (1) uart_update();
+ printf("hello %d\r\n", 21);
+
// Turn on USB peripheral.
print("Turning on USB power\r\n");
vcmailbox_set_power_state(VCMAILBOX_DEVICE_USB_HCD, true);
print("USB power on\r\n");
+
+ BP_SetPriority(USB_IRQn, 0x00);
+ BP_ClearPendingIRQ(USB_IRQn);
+ BP_EnableIRQ(USB_IRQn);
+ BP_EnableIRQs();
}
void board_led_write(bool state)
@@ -125,10 +144,12 @@ int board_uart_write(void const * buf, int len)
{
for (int i = 0; i < len; i++) {
const char* cbuf = buf;
+ while (!UART1->STAT_b.TX_READY) {}
if (cbuf[i] == '\n') {
- uart_writeByteBlockingActual('\r');
+ UART1->IO = '\r';
+ while (!UART1->STAT_b.TX_READY) {}
}
- uart_writeByteBlockingActual(cbuf[i]);
+ UART1->IO = cbuf[i];
}
return len;
}
diff --git a/hw/bsp/raspberrypi4/family.mk b/hw/bsp/raspberrypi4/family.mk
index b36a83b48..0424b2154 100644
--- a/hw/bsp/raspberrypi4/family.mk
+++ b/hw/bsp/raspberrypi4/family.mk
@@ -18,6 +18,7 @@ CFLAGS += \
SRC_C += \
src/portable/broadcom/synopsys/dcd_synopsys.c \
+ $(MCU_DIR)/broadcom/gen/interrupt_handlers.c \
$(MCU_DIR)/broadcom/interrupts.c \
$(MCU_DIR)/broadcom/io.c \
$(MCU_DIR)/broadcom/mmu.c \
diff --git a/hw/mcu/broadcom b/hw/mcu/broadcom
-Subproject c24e8f6898d7cf8e2884eb70dbabd9748052645
+Subproject e5343acdad77b8cf4a8d09b732a11ecef17d148
diff --git a/src/portable/broadcom/synopsys/dcd_synopsys.c b/src/portable/broadcom/synopsys/dcd_synopsys.c
index aecae503c..ff4ab9fb6 100644
--- a/src/portable/broadcom/synopsys/dcd_synopsys.c
+++ b/src/portable/broadcom/synopsys/dcd_synopsys.c
@@ -434,60 +434,63 @@ static void edpt_schedule_packets(uint8_t rhport, uint8_t const epnum, uint8_t c
/*------------------------------------------------------------------*/
/* Controller API
*------------------------------------------------------------------*/
+
+static void reset_core(USB_OTG_GlobalTypeDef * usb_otg) {
+ while ((usb_otg->GRSTCTL & USB_OTG_GRSTCTL_AHBIDL) == 0) {}
+
+ TU_LOG(2, " resetting\r\n");
+ usb_otg->GRSTCTL |= USB_OTG_GRSTCTL_CSRST;
+ TU_LOG(2, " waiting\r\n");
+ while ((usb_otg->GRSTCTL & (USB_OTG_GRSTCTL_AHBIDL | USB_OTG_GRSTCTL_CSRST)) != USB_OTG_GRSTCTL_AHBIDL) {}
+ TU_LOG(2, " reset done\r\n");
+}
+
void dcd_init (uint8_t rhport)
{
+ printf("test done\r\n");
// Programming model begins in the last section of the chapter on the USB
// peripheral in each Reference Manual.
- TU_LOG(2, " dcd_init");
-
- USB_OTG_GlobalTypeDef * usb_otg = GLOBAL_BASE(rhport);
-
- // No HNP/SRP (no OTG support), program timeout later.
- if ( rhport == 1 )
- {
- // On selected MCUs HS port1 can be used with external PHY via ULPI interface
-#if CFG_TUSB_RHPORT1_MODE & OPT_MODE_HIGH_SPEED
- // deactivate internal PHY
- usb_otg->GCCFG &= ~USB_OTG_GCCFG_PWRDWN;
+ TU_LOG(2, " dcd_init\r\n");
- // Init The UTMI Interface
- usb_otg->GUSBCFG &= ~(USB_OTG_GUSBCFG_TSDPS | USB_OTG_GUSBCFG_ULPIFSLS | USB_OTG_GUSBCFG_PHYSEL);
+ TU_LOG2("Test 123\r\n");
- // Select default internal VBUS Indicator and Drive for ULPI
- usb_otg->GUSBCFG &= ~(USB_OTG_GUSBCFG_ULPIEVBUSD | USB_OTG_GUSBCFG_ULPIEVBUSI);
-#else
- usb_otg->GUSBCFG |= USB_OTG_GUSBCFG_PHYSEL;
-#endif
+ USB_OTG_GlobalTypeDef * usb_otg = GLOBAL_BASE(rhport);
-#if defined(USB_HS_PHYC)
- // Highspeed with embedded UTMI PHYC
- // Select UTMI Interface
- usb_otg->GUSBCFG &= ~USB_OTG_GUSBCFG_ULPI_UTMI_SEL;
- usb_otg->GCCFG |= USB_OTG_GCCFG_PHYHSEN;
+ // ReadBackReg(&Core->Usb);
+ // Core->Usb.UlpiDriveExternalVbus = 0;
+ // Core->Usb.TsDlinePulseEnable = 0;
+ // WriteThroughReg(&Core->Usb);
- // Enables control of a High Speed USB PHY
- USB_HS_PHYCInit();
-#endif
- } else
- {
- // Enable internal PHY
- usb_otg->GUSBCFG |= USB_OTG_GUSBCFG_PHYSEL;
- }
+ // This sequence is modeled after: https://github.com/Chadderz121/csud/blob/e13b9355d043a9cdd384b335060f1bc0416df61e/source/hcd/dwc/designware20.c#L689
+ usb_otg->GUSBCFG &= ~(USB_OTG_GUSBCFG_TSDPS | USB_OTG_GUSBCFG_ULPIEVBUSD);
+ reset_core(usb_otg);
- // Reset core after selecting PHY
- // Wait AHB IDLE, reset then wait until it is cleared
- while ((usb_otg->GRSTCTL & USB_OTG_GRSTCTL_AHBIDL) == 0U) {}
+ // Core->Usb.ModeSelect = UTMI;
+ // LOG_DEBUG("HCD: Interface: UTMI+.\n");
+ // Core->Usb.PhyInterface = false;
- TU_LOG(2, " resetting");
- usb_otg->GRSTCTL |= USB_OTG_GRSTCTL_CSRST;
- TU_LOG(2, " waiting");
- while ((usb_otg->GRSTCTL & USB_OTG_GRSTCTL_CSRST) == USB_OTG_GRSTCTL_CSRST) {}
+ // HcdReset();
+ TU_LOG2("init phy\r\n");
+ usb_otg->GUSBCFG |= (1 << 4); // bit four sets UTMI+ mode
+ usb_otg->GUSBCFG &= ~(1 << 3); // bit three disables phy interface
+ reset_core(usb_otg);
- TU_LOG(2, " reset done");
+ // LOG_DEBUG("HCD: ULPI FSLS configuration: disabled.\n");
+ // Core->Usb.UlpiFsls = false;
+ // Core->Usb.ulpi_clk_sus_m = false;
+ usb_otg->GUSBCFG &= ~(USB_OTG_GUSBCFG_ULPIFSLS | USB_OTG_GUSBCFG_ULPICSM);
- // Restart PHY clock
- *((volatile uint32_t *)(RHPORT_REGS_BASE + USB_OTG_PCGCCTL_BASE)) = 0;
+ // LOG_DEBUG("HCD: DMA configuration: enabled.\n");
+ // Core->Ahb.DmaEnable = true;
+ // Core->Ahb.DmaRemainderMode = Incremental;
+ usb_otg->GAHBCFG &= ~(1 << 23); // Remainder mode
+ usb_otg->GAHBCFG |= USB_OTG_GAHBCFG_DMAEN;
+
+ // LOG_DEBUG("HCD: HNP/SRP configuration: HNP, SRP.\n");
+ // Core->Usb.HnpCapable = true;
+ // Core->Usb.SrpCapable = true;
+ usb_otg->GUSBCFG |= USB_OTG_GUSBCFG_SRPCAP | USB_OTG_GUSBCFG_HNPCAP;
// Clear all interrupts
usb_otg->GINTSTS |= usb_otg->GINTSTS;
@@ -509,8 +512,7 @@ void dcd_init (uint8_t rhport)
set_speed(rhport, TUSB_SPEED_FULL);
#endif
- // Enable internal USB transceiver, unless using HS core (port 1) with external PHY.
- if (!(rhport == 1 && (CFG_TUSB_RHPORT1_MODE & OPT_MODE_HIGH_SPEED))) usb_otg->GCCFG |= USB_OTG_GCCFG_PWRDWN;
+ usb_otg->GCCFG |= USB_OTG_GCCFG_PWRDWN;
usb_otg->GINTMSK |= USB_OTG_GINTMSK_USBRST | USB_OTG_GINTMSK_ENUMDNEM |
USB_OTG_GINTMSK_USBSUSPM | USB_OTG_GINTMSK_WUIM |