2020-03-11 18:13:06 -04:00
|
|
|
/*
|
|
|
|
* This file is part of the Micro Python project, http://micropython.org/
|
|
|
|
*
|
|
|
|
* The MIT License (MIT)
|
|
|
|
*
|
|
|
|
* Copyright (c) 2018 hathach for Adafruit Industries
|
|
|
|
* Copyright (c) 2019 Lucian Copeland for Adafruit Industries
|
|
|
|
*
|
|
|
|
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
|
|
* of this software and associated documentation files (the "Software"), to deal
|
|
|
|
* in the Software without restriction, including without limitation the rights
|
|
|
|
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
|
|
* copies of the Software, and to permit persons to whom the Software is
|
|
|
|
* furnished to do so, subject to the following conditions:
|
|
|
|
*
|
|
|
|
* The above copyright notice and this permission notice shall be included in
|
|
|
|
* all copies or substantial portions of the Software.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
|
|
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
|
|
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
|
|
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
|
|
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
|
|
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
|
|
|
|
* THE SOFTWARE.
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
|
|
#include "supervisor/usb.h"
|
|
|
|
#include "lib/utils/interrupt_char.h"
|
|
|
|
#include "lib/mp-readline/readline.h"
|
2020-04-24 14:48:55 -04:00
|
|
|
#include "lib/tinyusb/src/device/usbd.h"
|
2020-03-11 18:13:06 -04:00
|
|
|
|
|
|
|
#include "py/mpconfig.h"
|
|
|
|
|
|
|
|
#include "common-hal/microcontroller/Pin.h"
|
|
|
|
|
|
|
|
STATIC void init_usb_vbus_sense(void) {
|
|
|
|
|
2021-03-15 09:57:36 -04:00
|
|
|
#if (BOARD_NO_VBUS_SENSE)
|
2020-03-11 18:13:06 -04:00
|
|
|
// Disable VBUS sensing
|
|
|
|
#ifdef USB_OTG_GCCFG_VBDEN
|
2021-03-15 09:57:36 -04:00
|
|
|
// Deactivate VBUS Sensing B
|
|
|
|
USB_OTG_FS->GCCFG &= ~USB_OTG_GCCFG_VBDEN;
|
2020-03-18 03:35:20 -04:00
|
|
|
|
2021-03-15 09:57:36 -04:00
|
|
|
// B-peripheral session valid override enable
|
|
|
|
USB_OTG_FS->GOTGCTL |= USB_OTG_GOTGCTL_BVALOEN;
|
|
|
|
USB_OTG_FS->GOTGCTL |= USB_OTG_GOTGCTL_BVALOVAL;
|
2020-03-11 18:13:06 -04:00
|
|
|
#else
|
2021-03-15 09:57:36 -04:00
|
|
|
USB_OTG_FS->GCCFG |= USB_OTG_GCCFG_NOVBUSSENS;
|
|
|
|
USB_OTG_FS->GCCFG &= ~USB_OTG_GCCFG_VBUSBSEN;
|
|
|
|
USB_OTG_FS->GCCFG &= ~USB_OTG_GCCFG_VBUSASEN;
|
2020-03-11 18:13:06 -04:00
|
|
|
#endif
|
2021-03-15 09:57:36 -04:00
|
|
|
#else
|
2020-03-11 18:13:06 -04:00
|
|
|
// Enable VBUS hardware sensing
|
|
|
|
#ifdef USB_OTG_GCCFG_VBDEN
|
2021-03-15 09:57:36 -04:00
|
|
|
USB_OTG_FS->GCCFG |= USB_OTG_GCCFG_VBDEN;
|
2020-03-11 18:13:06 -04:00
|
|
|
#else
|
2021-03-15 09:57:36 -04:00
|
|
|
USB_OTG_FS->GCCFG &= ~USB_OTG_GCCFG_NOVBUSSENS;
|
|
|
|
USB_OTG_FS->GCCFG |= USB_OTG_GCCFG_VBUSBSEN; // B Device sense
|
|
|
|
#endif
|
2020-03-11 18:13:06 -04:00
|
|
|
#endif
|
|
|
|
}
|
|
|
|
|
|
|
|
void init_usb_hardware(void) {
|
2021-03-15 09:57:36 -04:00
|
|
|
// TODO: if future chips overload this with options, move to peripherals management.
|
2020-03-11 18:13:06 -04:00
|
|
|
|
|
|
|
GPIO_InitTypeDef GPIO_InitStruct = {0};
|
|
|
|
/**USB_OTG_FS GPIO Configuration
|
|
|
|
PA10 ------> USB_OTG_FS_ID
|
|
|
|
PA11 ------> USB_OTG_FS_DM
|
2020-03-20 15:58:34 -04:00
|
|
|
PA12 ------> USB_OTG_FS_DP
|
2020-03-11 18:13:06 -04:00
|
|
|
*/
|
|
|
|
__HAL_RCC_GPIOA_CLK_ENABLE();
|
|
|
|
|
2021-03-15 09:57:36 -04:00
|
|
|
/* Configure DM DP Pins */
|
2020-03-11 18:13:06 -04:00
|
|
|
GPIO_InitStruct.Pin = GPIO_PIN_11 | GPIO_PIN_12;
|
|
|
|
GPIO_InitStruct.Speed = GPIO_SPEED_HIGH;
|
|
|
|
GPIO_InitStruct.Mode = GPIO_MODE_AF_PP;
|
|
|
|
GPIO_InitStruct.Pull = GPIO_NOPULL;
|
2020-04-13 12:03:05 -04:00
|
|
|
#if CPY_STM32H7
|
2020-03-17 18:26:13 -04:00
|
|
|
GPIO_InitStruct.Alternate = GPIO_AF10_OTG1_FS;
|
2020-04-13 12:03:05 -04:00
|
|
|
#elif CPY_STM32F4 || CPY_STM32F7
|
2020-03-11 18:13:06 -04:00
|
|
|
GPIO_InitStruct.Alternate = GPIO_AF10_OTG_FS;
|
2020-03-17 18:26:13 -04:00
|
|
|
#endif
|
2020-03-11 18:13:06 -04:00
|
|
|
HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
|
|
|
|
never_reset_pin_number(0, 11);
|
|
|
|
never_reset_pin_number(0, 12);
|
2020-07-22 14:11:00 -04:00
|
|
|
claim_pin(0, 11);
|
|
|
|
claim_pin(0, 12);
|
2020-03-11 18:13:06 -04:00
|
|
|
|
|
|
|
/* Configure VBUS Pin */
|
2020-04-13 12:03:05 -04:00
|
|
|
#if !(BOARD_NO_VBUS_SENSE)
|
2020-03-11 18:13:06 -04:00
|
|
|
GPIO_InitStruct.Pin = GPIO_PIN_9;
|
|
|
|
GPIO_InitStruct.Mode = GPIO_MODE_INPUT;
|
|
|
|
GPIO_InitStruct.Pull = GPIO_NOPULL;
|
|
|
|
HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
|
|
|
|
never_reset_pin_number(0, 9);
|
2020-07-22 14:11:00 -04:00
|
|
|
claim_pin(0, 9);
|
2020-04-13 12:03:05 -04:00
|
|
|
#endif
|
2020-03-11 18:13:06 -04:00
|
|
|
|
|
|
|
/* This for ID line debug */
|
|
|
|
GPIO_InitStruct.Pin = GPIO_PIN_10;
|
|
|
|
GPIO_InitStruct.Mode = GPIO_MODE_AF_OD;
|
|
|
|
GPIO_InitStruct.Pull = GPIO_PULLUP;
|
|
|
|
GPIO_InitStruct.Speed = GPIO_SPEED_HIGH;
|
2020-04-13 12:03:05 -04:00
|
|
|
#if CPY_STM32H7
|
2020-03-17 18:26:13 -04:00
|
|
|
GPIO_InitStruct.Alternate = GPIO_AF10_OTG1_FS;
|
2020-04-13 12:03:05 -04:00
|
|
|
#elif CPY_STM32F4 || CPY_STM32F7
|
2020-03-11 18:13:06 -04:00
|
|
|
GPIO_InitStruct.Alternate = GPIO_AF10_OTG_FS;
|
2020-03-17 18:26:13 -04:00
|
|
|
#endif
|
2020-03-11 18:13:06 -04:00
|
|
|
HAL_GPIO_Init(GPIOA, &GPIO_InitStruct);
|
|
|
|
never_reset_pin_number(0, 10);
|
2020-07-22 14:11:00 -04:00
|
|
|
claim_pin(0, 10);
|
2020-03-11 18:13:06 -04:00
|
|
|
|
2020-04-13 12:03:05 -04:00
|
|
|
#ifdef STM32F412Zx
|
2020-03-11 18:13:06 -04:00
|
|
|
/* Configure POWER_SWITCH IO pin (F412 ONLY)*/
|
|
|
|
GPIO_InitStruct.Pin = GPIO_PIN_8;
|
|
|
|
GPIO_InitStruct.Mode = GPIO_MODE_OUTPUT_OD;
|
|
|
|
GPIO_InitStruct.Pull = GPIO_NOPULL;
|
|
|
|
HAL_GPIO_Init(GPIOG, &GPIO_InitStruct);
|
|
|
|
never_reset_pin_number(0, 8);
|
2020-07-22 14:11:00 -04:00
|
|
|
claim_pin(0, 8);
|
2020-04-13 12:03:05 -04:00
|
|
|
#endif
|
2020-03-20 15:58:34 -04:00
|
|
|
|
2020-04-13 12:03:05 -04:00
|
|
|
#if CPY_STM32H7
|
2020-03-17 18:26:13 -04:00
|
|
|
HAL_PWREx_EnableUSBVoltageDetector();
|
|
|
|
__HAL_RCC_USB2_OTG_FS_CLK_ENABLE();
|
2020-04-13 12:03:05 -04:00
|
|
|
#else
|
2020-03-11 18:13:06 -04:00
|
|
|
/* Peripheral clock enable */
|
|
|
|
__HAL_RCC_USB_OTG_FS_CLK_ENABLE();
|
2020-04-13 12:03:05 -04:00
|
|
|
#endif
|
2020-03-11 18:13:06 -04:00
|
|
|
|
|
|
|
init_usb_vbus_sense();
|
|
|
|
}
|
2020-04-17 17:16:49 -04:00
|
|
|
|
|
|
|
void OTG_FS_IRQHandler(void) {
|
2021-03-15 09:57:36 -04:00
|
|
|
usb_irq_handler();
|
2020-04-17 17:16:49 -04:00
|
|
|
}
|