espressif_tinyusb/hw/bsp/rp2040/family.c

152 lines
4.7 KiB
C
Raw Normal View History

2021-01-20 02:52:07 +01:00
/*
* The MIT License (MIT)
*
* Copyright (c) 2020 Raspberry Pi (Trading) Ltd.
2021-01-22 18:32:14 +01:00
* Copyright (c) 2021, Ha Thach (tinyusb.org)
2021-01-20 02:52:07 +01:00
*
* 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.
*
* This file is part of the TinyUSB stack.
*/
#include "pico/stdlib.h"
#include "hardware/gpio.h"
#include "hardware/sync.h"
#include "hardware/structs/ioqspi.h"
#include "hardware/structs/sio.h"
2021-01-20 02:52:07 +01:00
#include "bsp/board.h"
2021-01-22 18:32:14 +01:00
#include "board.h"
2021-01-22 18:32:14 +01:00
#ifdef BUTTON_BOOTSEL
// This example blinks the Picoboard LED when the BOOTSEL button is pressed.
//
// Picoboard has a button attached to the flash CS pin, which the bootrom
// checks, and jumps straight to the USB bootcode if the button is pressed
// (pulling flash CS low). We can check this pin in by jumping to some code in
// SRAM (so that the XIP interface is not required), floating the flash CS
// pin, and observing whether it is pulled low.
//
// This doesn't work if others are trying to access flash at the same time,
// e.g. XIP streamer, or the other core.
bool __no_inline_not_in_flash_func(get_bootsel_button)() {
const uint CS_PIN_INDEX = 1;
// Must disable interrupts, as interrupt handlers may be in flash, and we
// are about to temporarily disable flash access!
uint32_t flags = save_and_disable_interrupts();
// Set chip select to Hi-Z
hw_write_masked(&ioqspi_hw->io[CS_PIN_INDEX].ctrl,
GPIO_OVERRIDE_LOW << IO_QSPI_GPIO_QSPI_SS_CTRL_OEOVER_LSB,
IO_QSPI_GPIO_QSPI_SS_CTRL_OEOVER_BITS);
// Note we can't call into any sleep functions in flash right now
for (volatile int i = 0; i < 1000; ++i);
// The HI GPIO registers in SIO can observe and control the 6 QSPI pins.
// Note the button pulls the pin *low* when pressed.
bool button_state = (sio_hw->gpio_hi_in & (1u << CS_PIN_INDEX));
// Need to restore the state of chip select, else we are going to have a
// bad time when we return to code in flash!
hw_write_masked(&ioqspi_hw->io[CS_PIN_INDEX].ctrl,
GPIO_OVERRIDE_NORMAL << IO_QSPI_GPIO_QSPI_SS_CTRL_OEOVER_LSB,
IO_QSPI_GPIO_QSPI_SS_CTRL_OEOVER_BITS);
restore_interrupts(flags);
return button_state;
}
2021-01-22 18:32:14 +01:00
#endif
2021-01-20 02:52:07 +01:00
void board_init(void)
{
2021-01-22 18:32:14 +01:00
gpio_init(LED_PIN);
gpio_set_dir(LED_PIN, GPIO_OUT);
2021-01-20 02:52:07 +01:00
2021-01-22 18:32:14 +01:00
// Button
2021-01-22 18:59:50 +01:00
#ifndef BUTTON_BOOTSEL
#endif
2021-01-20 02:52:07 +01:00
2021-01-27 10:37:31 +01:00
#ifdef UART_DEV
uart_init(UART_DEV, CFG_BOARD_UART_BAUDRATE);
gpio_set_function(UART_TX_PIN, GPIO_FUNC_UART);
gpio_set_function(UART_RX_PIN, GPIO_FUNC_UART);
#endif
2021-01-22 18:32:14 +01:00
// todo probably set up device mode?
#if TUSB_OPT_DEVICE_ENABLED
#endif
2021-01-20 02:52:07 +01:00
#if TUSB_OPT_HOST_ENABLED
2021-01-22 18:32:14 +01:00
// set portfunc to host !!!
2021-01-20 02:52:07 +01:00
#endif
}
//--------------------------------------------------------------------+
// Board porting API
//--------------------------------------------------------------------+
void board_led_write(bool state)
{
2021-01-22 18:32:14 +01:00
gpio_put(LED_PIN, state ? LED_STATE_ON : (1-LED_STATE_ON));
2021-01-20 02:52:07 +01:00
}
uint32_t board_button_read(void)
{
2021-01-22 18:32:14 +01:00
#ifdef BUTTON_BOOTSEL
return BUTTON_STATE_ACTIVE == get_bootsel_button();
#else
return 0;
#endif
2021-01-20 02:52:07 +01:00
}
int board_uart_read(uint8_t* buf, int len)
{
2021-01-27 10:37:31 +01:00
#ifdef UART_DEV
2021-01-22 18:32:14 +01:00
for(int i=0;i<len;i++) {
2021-01-27 10:37:31 +01:00
buf[i] = uart_getc(UART_DEV);
2021-01-22 18:32:14 +01:00
}
2021-01-27 10:37:31 +01:00
return len;
#else
2021-01-22 18:32:14 +01:00
return 0;
2021-01-27 10:37:31 +01:00
#endif
2021-01-20 02:52:07 +01:00
}
int board_uart_write(void const * buf, int len)
{
2021-01-27 10:37:31 +01:00
#ifdef UART_DEV
char const* bufch = (uint8_t const*) buf;
2021-01-22 18:32:14 +01:00
for(int i=0;i<len;i++) {
2021-01-27 10:37:31 +01:00
uart_putc(UART_DEV, bufch[i]);
2021-01-22 18:32:14 +01:00
}
2021-01-27 10:37:31 +01:00
return len;
#else
2021-01-22 18:32:14 +01:00
return 0;
2021-01-27 10:37:31 +01:00
#endif
2021-01-20 02:52:07 +01:00
}
2021-01-22 18:59:50 +01:00
//--------------------------------------------------------------------+
// USB Interrupt Handler
// rp2040 implementation will install approriate handler when initializing
// tinyusb. There is no need to forward IRQ from application
//--------------------------------------------------------------------+