[Core] Add support for RISC-V builds and GD32VF103 MCU (#12508)
* Add support for RISC-V builds and GD32VF103 MCU * Add toolchain selection in chibios.mk based on the mcu selected in mcu_selection.mk * Reorder and added comments to chibios.mk to have a streamlined makefile * Add GD32VF103 mcu to possible targets for QMK. * Add STM32 compatibility for GD32VF103 MCU, this is hacky but more efficent then rewriting every driver. * Add GigaDevice DFU bootloader as flash target, please note that dfu-util of at least version 0.10 is needed. * Add analog driver compatibility * Add apa102 bitbang driver compatibility * Add ws2812 bitbang driver compatibility * Add eeprom in flash emulation compatibility * Allow faster re-builds with ccache * Add SiPeed Longan Nano to platform files * Add SiPeed Longan Nano Onekeys * Make quine compatible with other bootloaders * Support builds with picolibc * Add risc-v toolchain to arch and debian/ubuntu scriptsfix_template_bootmagic
parent
7e3ff206b8
commit
e50867d52d
@ -1 +0,0 @@ |
|||||||
BOOTLOADER = atmel-dfu
|
|
@ -0,0 +1,23 @@ |
|||||||
|
/* Copyright 2021 QMK
|
||||||
|
* |
||||||
|
* This program is free software: you can redistribute it and/or modify |
||||||
|
* it under the terms of the GNU General Public License as published by |
||||||
|
* the Free Software Foundation, either version 2 of the License, or |
||||||
|
* (at your option) any later version. |
||||||
|
* |
||||||
|
* This program is distributed in the hope that it will be useful, |
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||||
|
* GNU General Public License for more details. |
||||||
|
* |
||||||
|
* You should have received a copy of the GNU General Public License |
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/ |
||||||
|
|
||||||
|
#pragma once |
||||||
|
|
||||||
|
#define CH_CFG_ST_RESOLUTION 16 |
||||||
|
|
||||||
|
#define CH_CFG_ST_FREQUENCY 10000 |
||||||
|
|
||||||
|
#include_next <chconf.h> |
@ -0,0 +1,37 @@ |
|||||||
|
/* Copyright 2021 QMK
|
||||||
|
* |
||||||
|
* This program is free software: you can redistribute it and/or modify |
||||||
|
* it under the terms of the GNU General Public License as published by |
||||||
|
* the Free Software Foundation, either version 2 of the License, or |
||||||
|
* (at your option) any later version. |
||||||
|
* |
||||||
|
* This program is distributed in the hope that it will be useful, |
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||||
|
* GNU General Public License for more details. |
||||||
|
* |
||||||
|
* You should have received a copy of the GNU General Public License |
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/ |
||||||
|
|
||||||
|
#pragma once |
||||||
|
|
||||||
|
#include "config_common.h" |
||||||
|
|
||||||
|
#define MATRIX_COL_PINS \ |
||||||
|
{ B0 } |
||||||
|
#define MATRIX_ROW_PINS \ |
||||||
|
{ A7 } |
||||||
|
#define UNUSED_PINS |
||||||
|
|
||||||
|
#define BACKLIGHT_PIN A1 /* Green LED. */ |
||||||
|
#define BACKLIGHT_PWM_DRIVER PWMD5 /* GD32 numbering scheme starts from 0, TIMER4 on GD32 boards is TIMER5 on STM32 boards. */ |
||||||
|
#define BACKLIGHT_PWM_CHANNEL 2 /* GD32 numbering scheme starts from 0, Channel 1 on GD32 boards is Channel 2 on STM32 boards. */ |
||||||
|
|
||||||
|
#define RGB_DI_PIN A2 |
||||||
|
#define RGB_CI_PIN B13 |
||||||
|
|
||||||
|
#define ADC_PIN A0 |
||||||
|
|
||||||
|
#define I2C1_CLOCK_SPEED 1000000 /* GD32VF103 supports fast mode plus. */ |
||||||
|
#define I2C1_DUTY_CYCLE FAST_DUTY_CYCLE_2 |
@ -0,0 +1,23 @@ |
|||||||
|
/* Copyright 2021 QMK
|
||||||
|
* |
||||||
|
* This program is free software: you can redistribute it and/or modify |
||||||
|
* it under the terms of the GNU General Public License as published by |
||||||
|
* the Free Software Foundation, either version 2 of the License, or |
||||||
|
* (at your option) any later version. |
||||||
|
* |
||||||
|
* This program is distributed in the hope that it will be useful, |
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||||
|
* GNU General Public License for more details. |
||||||
|
* |
||||||
|
* You should have received a copy of the GNU General Public License |
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/ |
||||||
|
|
||||||
|
#pragma once |
||||||
|
|
||||||
|
#define HAL_USE_PWM TRUE |
||||||
|
#define HAL_USE_ADC TRUE |
||||||
|
#define HAL_USE_I2C TRUE |
||||||
|
|
||||||
|
#include_next <halconf.h> |
@ -0,0 +1,29 @@ |
|||||||
|
/*
|
||||||
|
ChibiOS - Copyright (C) 2006..2018 Giovanni Di Sirio |
||||||
|
ChibiOS - Copyright (C) 2021 Stefan Kerkmann |
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License"); |
||||||
|
you may not use this file except in compliance with the License. |
||||||
|
You may obtain a copy of the License at |
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software |
||||||
|
distributed under the License is distributed on an "AS IS" BASIS, |
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||||
|
See the License for the specific language governing permissions and |
||||||
|
limitations under the License. |
||||||
|
*/ |
||||||
|
|
||||||
|
#pragma once |
||||||
|
|
||||||
|
#include_next <mcuconf.h> |
||||||
|
|
||||||
|
#undef GD32_ADC_USE_ADC0 |
||||||
|
#define GD32_ADC_USE_ADC0 TRUE |
||||||
|
|
||||||
|
#undef GD32_I2C_USE_I2C0 |
||||||
|
#define GD32_I2C_USE_I2C0 TRUE |
||||||
|
|
||||||
|
#undef GD32_PWM_USE_TIM4 |
||||||
|
#define GD32_PWM_USE_TIM4 TRUE |
@ -0,0 +1,5 @@ |
|||||||
|
# Sipeed Longan Nano onekey |
||||||
|
|
||||||
|
Supported Hardware: *GD32VF103CB Sipeed Longan Nano*. |
||||||
|
|
||||||
|
To trigger keypress, short together pins *B0* and *A7*. |
@ -0,0 +1,11 @@ |
|||||||
|
# MCU name
|
||||||
|
MCU = GD32VF103
|
||||||
|
BOARD = SIPEED_LONGAN_NANO
|
||||||
|
|
||||||
|
# Bootloader selection
|
||||||
|
BOOTLOADER = gd32v-dfu
|
||||||
|
|
||||||
|
# Build Options
|
||||||
|
# change yes to no to disable
|
||||||
|
#
|
||||||
|
KEYBOARD_SHARED_EP = yes
|
@ -0,0 +1,9 @@ |
|||||||
|
# List of all the board related files.
|
||||||
|
BOARDSRC = ${CHIBIOS_CONTRIB}/os/hal/boards/SIPEED_LONGAN_NANO/board.c
|
||||||
|
|
||||||
|
# Required include directories
|
||||||
|
BOARDINC = ${CHIBIOS_CONTRIB}/os/hal/boards/SIPEED_LONGAN_NANO
|
||||||
|
|
||||||
|
# Shared variables
|
||||||
|
ALLCSRC += $(BOARDSRC)
|
||||||
|
ALLINC += $(BOARDINC)
|
@ -0,0 +1,23 @@ |
|||||||
|
/* Copyright 2021 QMK
|
||||||
|
* |
||||||
|
* This program is free software: you can redistribute it and/or modify |
||||||
|
* it under the terms of the GNU General Public License as published by |
||||||
|
* the Free Software Foundation, either version 2 of the License, or |
||||||
|
* (at your option) any later version. |
||||||
|
* |
||||||
|
* This program is distributed in the hope that it will be useful, |
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||||
|
* GNU General Public License for more details. |
||||||
|
* |
||||||
|
* You should have received a copy of the GNU General Public License |
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/ |
||||||
|
|
||||||
|
/* To compile the ChibiOS syscall stubs with picolibc
|
||||||
|
* the _reent struct has to be defined. */ |
||||||
|
#if !defined(_FROM_ASM_) && defined(USE_PICOLIBC) |
||||||
|
struct _reent; |
||||||
|
#endif |
||||||
|
|
||||||
|
#include_next <chconf.h> |
@ -0,0 +1,302 @@ |
|||||||
|
/*
|
||||||
|
ChibiOS - Copyright (C) 2006..2018 Giovanni Di Sirio |
||||||
|
ChibiOS - Copyright (C) 2021 Stefan Kerkmann |
||||||
|
|
||||||
|
Licensed under the Apache License, Version 2.0 (the "License"); |
||||||
|
you may not use this file except in compliance with the License. |
||||||
|
You may obtain a copy of the License at |
||||||
|
|
||||||
|
http://www.apache.org/licenses/LICENSE-2.0
|
||||||
|
|
||||||
|
Unless required by applicable law or agreed to in writing, software |
||||||
|
distributed under the License is distributed on an "AS IS" BASIS, |
||||||
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
||||||
|
See the License for the specific language governing permissions and |
||||||
|
limitations under the License. |
||||||
|
*/ |
||||||
|
|
||||||
|
#pragma once |
||||||
|
|
||||||
|
#define GD32VF103_MCUCONF |
||||||
|
#define GD32VF103CB |
||||||
|
|
||||||
|
/*
|
||||||
|
* GD32VF103 drivers configuration. |
||||||
|
* The following settings override the default settings present in |
||||||
|
* the various device driver implementation headers. |
||||||
|
* Note that the settings for each driver only have effect if the whole |
||||||
|
* driver is enabled in halconf.h. |
||||||
|
* |
||||||
|
* IRQ priorities: |
||||||
|
* 0...15 Lowest...Highest. |
||||||
|
* |
||||||
|
* DMA priorities: |
||||||
|
* 0...3 Lowest...Highest. |
||||||
|
*/ |
||||||
|
|
||||||
|
/*
|
||||||
|
* HAL driver system settings. |
||||||
|
*/ |
||||||
|
|
||||||
|
#if defined(OVERCLOCK_120MHZ) |
||||||
|
/* (8MHz / 2) * 30 = 120MHz Sysclock */ |
||||||
|
#define GD32_ALLOW_120MHZ_SYSCLK |
||||||
|
#define GD32_PLLMF_VALUE 30 |
||||||
|
#define GD32_USBFSPSC GD32_USBFSPSC_DIV2P5 |
||||||
|
#else |
||||||
|
/* (8MHz / 2) * 24 = 96MHz Sysclock */ |
||||||
|
#define GD32_PLLMF_VALUE 24 |
||||||
|
#define GD32_USBFSPSC GD32_USBFSPSC_DIV2 |
||||||
|
#endif |
||||||
|
|
||||||
|
#define GD32_NO_INIT FALSE |
||||||
|
#define GD32_IRC8M_ENABLED TRUE |
||||||
|
#define GD32_IRC40K_ENABLED FALSE |
||||||
|
#define GD32_HXTAL_ENABLED TRUE |
||||||
|
#define GD32_LXTAL_ENABLED FALSE |
||||||
|
#define GD32_SCS GD32_SCS_PLL |
||||||
|
#define GD32_PLLSEL GD32_PLLSEL_PREDV0 |
||||||
|
#define GD32_PREDV0SEL GD32_PREDV0SEL_HXTAL |
||||||
|
#define GD32_PREDV0_VALUE 2 |
||||||
|
#define GD32_PREDV1_VALUE 2 |
||||||
|
#define GD32_PLL1MF_VALUE 14 |
||||||
|
#define GD32_PLL2MF_VALUE 13 |
||||||
|
#define GD32_AHBPSC GD32_AHBPSC_DIV1 |
||||||
|
#define GD32_APB1PSC GD32_APB1PSC_DIV2 |
||||||
|
#define GD32_APB2PSC GD32_APB2PSC_DIV1 |
||||||
|
#define GD32_ADCPSC GD32_ADCPSC_DIV16 |
||||||
|
#define GD32_USB_CLOCK_REQUIRED TRUE |
||||||
|
#define GD32_I2S_CLOCK_REQUIRED FALSE |
||||||
|
#define GD32_CKOUT0SEL GD32_CKOUT0SEL_NOCLOCK |
||||||
|
#define GD32_RTCSRC GD32_RTCSRC_NOCLOCK |
||||||
|
#define GD32_PVD_ENABLE FALSE |
||||||
|
#define GD32_LVDT GD32_LVDT_LEV0 |
||||||
|
|
||||||
|
/*
|
||||||
|
* ECLIC system settings. |
||||||
|
*/ |
||||||
|
#define ECLIC_TRIGGER_DEFAULT ECLIC_POSTIVE_EDGE_TRIGGER |
||||||
|
#define ECLIC_DMA_TRIGGER ECLIC_TRIGGER_DEFAULT |
||||||
|
|
||||||
|
/*
|
||||||
|
* IRQ system settings. |
||||||
|
*/ |
||||||
|
#define GD32_IRQ_EXTI0_PRIORITY 6 |
||||||
|
#define GD32_IRQ_EXTI1_PRIORITY 6 |
||||||
|
#define GD32_IRQ_EXTI2_PRIORITY 6 |
||||||
|
#define GD32_IRQ_EXTI3_PRIORITY 6 |
||||||
|
#define GD32_IRQ_EXTI4_PRIORITY 6 |
||||||
|
#define GD32_IRQ_EXTI5_9_PRIORITY 6 |
||||||
|
#define GD32_IRQ_EXTI10_15_PRIORITY 6 |
||||||
|
#define GD32_IRQ_EXTI0_TRIGGER ECLIC_TRIGGER_DEFAULT |
||||||
|
#define GD32_IRQ_EXTI1_TRIGGER ECLIC_TRIGGER_DEFAULT |
||||||
|
#define GD32_IRQ_EXTI2_TRIGGER ECLIC_TRIGGER_DEFAULT |
||||||
|
#define GD32_IRQ_EXTI3_TRIGGER ECLIC_TRIGGER_DEFAULT |
||||||
|
#define GD32_IRQ_EXTI4_TRIGGER ECLIC_TRIGGER_DEFAULT |
||||||
|
#define GD32_IRQ_EXTI5_9_TRIGGER ECLIC_TRIGGER_DEFAULT |
||||||
|
#define GD32_IRQ_EXTI10_15_TRIGGER ECLIC_TRIGGER_DEFAULT |
||||||
|
|
||||||
|
/*
|
||||||
|
* ADC driver system settings. |
||||||
|
*/ |
||||||
|
#define GD32_ADC_USE_ADC0 FALSE |
||||||
|
#define GD32_ADC_ADC0_DMA_PRIORITY 2 |
||||||
|
#define GD32_ADC_ADC0_IRQ_PRIORITY 6 |
||||||
|
|
||||||
|
/*
|
||||||
|
* CAN driver system settings. |
||||||
|
*/ |
||||||
|
#define GD32_CAN_USE_CAN0 FALSE |
||||||
|
#define GD32_CAN_CAN0_IRQ_PRIORITY 11 |
||||||
|
#define GD32_CAN_USE_CAN1 FALSE |
||||||
|
#define GD32_CAN_CAN1_IRQ_PRIORITY 11 |
||||||
|
#define GD32_CAN_CAN0_IRQ_TRIGGER ECLIC_TRIGGER_DEFAULT |
||||||
|
#define GD32_CAN_CAN1_IRQ_TRIGGER ECLIC_TRIGGER_DEFAULT |
||||||
|
|
||||||
|
/*
|
||||||
|
* CRC driver system settings. |
||||||
|
*/ |
||||||
|
#define GD32_CRC_USE_CRC0 FALSE |
||||||
|
#define GD32_CRC_CRC0_DMA_IRQ_PRIORITY 14 |
||||||
|
#define GD32_CRC_CRC0_DMA_PRIORITY 2 |
||||||
|
#define GD32_CRC_CRC0_DMA_STREAM GD32_DMA_STREAM_ID(0, 0) |
||||||
|
#define CRC_USE_DMA FALSE |
||||||
|
#define CRCSW_USE_CRC1 FALSE |
||||||
|
#define CRCSW_CRC32_TABLE FALSE |
||||||
|
#define CRCSW_CRC16_TABLE FALSE |
||||||
|
#define CRCSW_PROGRAMMABLE FALSE |
||||||
|
|
||||||
|
/*
|
||||||
|
* DAC driver system settings. |
||||||
|
*/ |
||||||
|
#define GD32_DAC_USE_DAC_CH1 FALSE |
||||||
|
#define GD32_DAC_USE_DAC_CH2 FALSE |
||||||
|
|
||||||
|
/*
|
||||||
|
* GPT driver system settings. |
||||||
|
*/ |
||||||
|
#define GD32_GPT_USE_TIM0 FALSE |
||||||
|
#define GD32_GPT_USE_TIM1 FALSE |
||||||
|
#define GD32_GPT_USE_TIM2 FALSE |
||||||
|
#define GD32_GPT_USE_TIM3 FALSE |
||||||
|
#define GD32_GPT_USE_TIM4 FALSE |
||||||
|
#define GD32_GPT_TIM0_IRQ_PRIORITY 7 |
||||||
|
#define GD32_GPT_TIM1_IRQ_PRIORITY 7 |
||||||
|
#define GD32_GPT_TIM2_IRQ_PRIORITY 7 |
||||||
|
#define GD32_GPT_TIM3_IRQ_PRIORITY 7 |
||||||
|
#define GD32_GPT_TIM4_IRQ_PRIORITY 7 |
||||||
|
#define GD32_GPT_TIM0_IRQ_TRIGGER ECLIC_TRIGGER_DEFAULT |
||||||
|
#define GD32_GPT_TIM1_IRQ_TRIGGER ECLIC_TRIGGER_DEFAULT |
||||||
|
#define GD32_GPT_TIM2_IRQ_TRIGGER ECLIC_TRIGGER_DEFAULT |
||||||
|
#define GD32_GPT_TIM3_IRQ_TRIGGER ECLIC_TRIGGER_DEFAULT |
||||||
|
#define GD32_GPT_TIM4_IRQ_TRIGGER ECLIC_TRIGGER_DEFAULT |
||||||
|
#define GD32_GPT_TIM5_IRQ_TRIGGER ECLIC_TRIGGER_DEFAULT |
||||||
|
#define GD32_GPT_TIM6_IRQ_TRIGGER ECLIC_TRIGGER_DEFAULT |
||||||
|
|
||||||
|
/*
|
||||||
|
* I2S driver system settings. |
||||||
|
*/ |
||||||
|
#define GD32_I2S_USE_SPI1 FALSE |
||||||
|
#define GD32_I2S_USE_SPI2 FALSE |
||||||
|
#define GD32_I2S_SPI1_IRQ_PRIORITY 10 |
||||||
|
#define GD32_I2S_SPI2_IRQ_PRIORITY 10 |
||||||
|
#define GD32_I2S_SPI1_DMA_PRIORITY 1 |
||||||
|
#define GD32_I2S_SPI2_DMA_PRIORITY 1 |
||||||
|
#define GD32_I2S_DMA_ERROR_HOOK(i2sp) osalSysHalt("DMA failure") |
||||||
|
|
||||||
|
/*
|
||||||
|
* I2C driver system settings. |
||||||
|
*/ |
||||||
|
#define GD32_I2C_USE_I2C0 FALSE |
||||||
|
#define GD32_I2C_USE_I2C1 FALSE |
||||||
|
#define GD32_I2C_BUSY_TIMEOUT 50 |
||||||
|
#define GD32_I2C_I2C0_IRQ_PRIORITY 10 |
||||||
|
#define GD32_I2C_I2C1_IRQ_PRIORITY 5 |
||||||
|
#define GD32_I2C_I2C0_IRQ_TRIGGER ECLIC_TRIGGER_DEFAULT |
||||||
|
#define GD32_I2C_I2C1_IRQ_TRIGGER ECLIC_TRIGGER_DEFAULT |
||||||
|
#define GD32_I2C_I2C0_DMA_PRIORITY 2 |
||||||
|
#define GD32_I2C_I2C1_DMA_PRIORITY 2 |
||||||
|
#define GD32_I2C_DMA_ERROR_HOOK(i2cp) osalSysHalt("DMA failure") |
||||||
|
|
||||||
|
/*
|
||||||
|
* ICU driver system settings. |
||||||
|
*/ |
||||||
|
#define GD32_ICU_USE_TIM0 FALSE |
||||||
|
#define GD32_ICU_USE_TIM1 FALSE |
||||||
|
#define GD32_ICU_USE_TIM2 FALSE |
||||||
|
#define GD32_ICU_USE_TIM3 FALSE |
||||||
|
#define GD32_ICU_USE_TIM4 FALSE |
||||||
|
#define GD32_ICU_TIM0_IRQ_PRIORITY 7 |
||||||
|
#define GD32_ICU_TIM1_IRQ_PRIORITY 7 |
||||||
|
#define GD32_ICU_TIM2_IRQ_PRIORITY 7 |
||||||
|
#define GD32_ICU_TIM3_IRQ_PRIORITY 7 |
||||||
|
#define GD32_ICU_TIM4_IRQ_PRIORITY 7 |
||||||
|
#define GD32_ICU_TIM0_IRQ_TRIGGER ECLIC_TRIGGER_DEFAULT |
||||||
|
#define GD32_ICU_TIM1_IRQ_TRIGGER ECLIC_TRIGGER_DEFAULT |
||||||
|
#define GD32_ICU_TIM2_IRQ_TRIGGER ECLIC_TRIGGER_DEFAULT |
||||||
|
#define GD32_ICU_TIM3_IRQ_TRIGGER ECLIC_TRIGGER_DEFAULT |
||||||
|
#define GD32_ICU_TIM4_IRQ_TRIGGER ECLIC_TRIGGER_DEFAULT |
||||||
|
|
||||||
|
/*
|
||||||
|
* PWM driver system settings. |
||||||
|
*/ |
||||||
|
#define GD32_PWM_USE_ADVANCED FALSE |
||||||
|
#define GD32_PWM_USE_TIM0 FALSE |
||||||
|
#define GD32_PWM_USE_TIM1 FALSE |
||||||
|
#define GD32_PWM_USE_TIM2 FALSE |
||||||
|
#define GD32_PWM_USE_TIM3 FALSE |
||||||
|
#define GD32_PWM_USE_TIM4 FALSE |
||||||
|
#define GD32_PWM_TIM0_IRQ_PRIORITY 10 |
||||||
|
#define GD32_PWM_TIM1_IRQ_PRIORITY 10 |
||||||
|
#define GD32_PWM_TIM2_IRQ_PRIORITY 10 |
||||||
|
#define GD32_PWM_TIM3_IRQ_PRIORITY 10 |
||||||
|
#define GD32_PWM_TIM4_IRQ_PRIORITY 10 |
||||||
|
#define GD32_PWM_TIM0_IRQ_TRIGGER ECLIC_TRIGGER_DEFAULT |
||||||
|
#define GD32_PWM_TIM1_IRQ_TRIGGER ECLIC_TRIGGER_DEFAULT |
||||||
|
#define GD32_PWM_TIM2_IRQ_TRIGGER ECLIC_TRIGGER_DEFAULT |
||||||
|
#define GD32_PWM_TIM3_IRQ_TRIGGER ECLIC_TRIGGER_DEFAULT |
||||||
|
#define GD32_PWM_TIM4_IRQ_TRIGGER ECLIC_TRIGGER_DEFAULT |
||||||
|
|
||||||
|
/*
|
||||||
|
* RTC driver system settings. |
||||||
|
*/ |
||||||
|
#define GD32_RTC_IRQ_PRIORITY 15 |
||||||
|
#define GD32_RTC_IRQ_TRIGGER ECLIC_TRIGGER_DEFAULT |
||||||
|
|
||||||
|
/*
|
||||||
|
* SERIAL driver system settings. |
||||||
|
*/ |
||||||
|
#define GD32_SERIAL_USE_USART0 FALSE |
||||||
|
#define GD32_SERIAL_USE_USART1 FALSE |
||||||
|
#define GD32_SERIAL_USE_USART2 FALSE |
||||||
|
#define GD32_SERIAL_USE_UART3 FALSE |
||||||
|
#define GD32_SERIAL_USE_UART4 FALSE |
||||||
|
#define GD32_SERIAL_USART0_PRIORITY 10 |
||||||
|
#define GD32_SERIAL_USART1_PRIORITY 10 |
||||||
|
#define GD32_SERIAL_USART2_PRIORITY 10 |
||||||
|
#define GD32_SERIAL_UART3_PRIORITY 10 |
||||||
|
#define GD32_SERIAL_UART4_PRIORITY 10 |
||||||
|
#define GD32_SERIAL_USART0_TRIGGER ECLIC_TRIGGER_DEFAULT |
||||||
|
#define GD32_SERIAL_USART1_TRIGGER ECLIC_TRIGGER_DEFAULT |
||||||
|
#define GD32_SERIAL_USART2_TRIGGER ECLIC_TRIGGER_DEFAULT |
||||||
|
#define GD32_SERIAL_UART3_TRIGGER ECLIC_TRIGGER_DEFAULT |
||||||
|
#define GD32_SERIAL_UART4_TRIGGER ECLIC_TRIGGER_DEFAULT |
||||||
|
|
||||||
|
/*
|
||||||
|
* SPI driver system settings. |
||||||
|
*/ |
||||||
|
#define GD32_SPI_USE_SPI0 FALSE |
||||||
|
#define GD32_SPI_USE_SPI1 FALSE |
||||||
|
#define GD32_SPI_USE_SPI2 FALSE |
||||||
|
#define GD32_SPI_SPI0_DMA_PRIORITY 1 |
||||||
|
#define GD32_SPI_SPI1_DMA_PRIORITY 1 |
||||||
|
#define GD32_SPI_SPI2_DMA_PRIORITY 1 |
||||||
|
#define GD32_SPI_SPI0_IRQ_PRIORITY 10 |
||||||
|
#define GD32_SPI_SPI1_IRQ_PRIORITY 10 |
||||||
|
#define GD32_SPI_SPI2_IRQ_PRIORITY 10 |
||||||
|
#define GD32_SPI_DMA_ERROR_HOOK(spip) osalSysHalt("DMA failure") |
||||||
|
|
||||||
|
/*
|
||||||
|
* ST driver system settings. |
||||||
|
*/ |
||||||
|
#define GD32_ST_IRQ_PRIORITY 10 |
||||||
|
#define GD32_ST_IRQ_TRIGGER ECLIC_TRIGGER_DEFAULT |
||||||
|
#define GD32_ST_USE_TIMER 1 |
||||||
|
|
||||||
|
/*
|
||||||
|
* UART driver system settings. |
||||||
|
*/ |
||||||
|
#define GD32_UART_USE_USART0 FALSE |
||||||
|
#define GD32_UART_USE_USART1 FALSE |
||||||
|
#define GD32_UART_USE_USART2 FALSE |
||||||
|
#define GD32_UART_USE_UART3 FALSE |
||||||
|
#define GD32_UART_USE_UART4 FALSE |
||||||
|
#define GD32_UART_USART0_IRQ_PRIORITY 10 |
||||||
|
#define GD32_UART_USART1_IRQ_PRIORITY 10 |
||||||
|
#define GD32_UART_USART2_IRQ_PRIORITY 10 |
||||||
|
#define GD32_UART_UART3_IRQ_PRIORITY 10 |
||||||
|
#define GD32_UART_UART4_IRQ_PRIORITY 10 |
||||||
|
#define GD32_UART_USART0_IRQ_TRIGGER ECLIC_TRIGGER_DEFAULT |
||||||
|
#define GD32_UART_USART1_IRQ_TRIGGER ECLIC_TRIGGER_DEFAULT |
||||||
|
#define GD32_UART_USART2_IRQ_TRIGGER ECLIC_TRIGGER_DEFAULT |
||||||
|
#define GD32_UART_UART3_IRQ_TRIGGER ECLIC_TRIGGER_DEFAULT |
||||||
|
#define GD32_UART_UART4_IRQ_TRIGGER ECLIC_TRIGGER_DEFAULT |
||||||
|
#define GD32_UART_USART0_DMA_PRIORITY 3 |
||||||
|
#define GD32_UART_USART1_DMA_PRIORITY 3 |
||||||
|
#define GD32_UART_USART2_DMA_PRIORITY 3 |
||||||
|
#define GD32_UART_UART3_DMA_PRIORITY 3 |
||||||
|
#define GD32_UART_UART4_DMA_PRIORITY 3 |
||||||
|
#define GD32_UART_DMA_ERROR_HOOK(uartp) osalSysHalt("DMA failure") |
||||||
|
|
||||||
|
/*
|
||||||
|
* USB driver system settings. |
||||||
|
*/ |
||||||
|
#define GD32_USB_USE_USBFS TRUE |
||||||
|
#define GD32_USB_USBFS_IRQ_PRIORITY 10 |
||||||
|
#define GD32_USB_USBFS_IRQ_TRIGGER ECLIC_TRIGGER_DEFAULT |
||||||
|
#define GD32_USB_USBFS_RX_FIFO_SIZE 256 |
||||||
|
|
||||||
|
/*
|
||||||
|
* WDG driver system settings. |
||||||
|
*/ |
||||||
|
#define GD32_WDG_USE_FWDGT FALSE |
@ -0,0 +1,120 @@ |
|||||||
|
/* Copyright 2021 QMK
|
||||||
|
* |
||||||
|
* This program is free software: you can redistribute it and/or modify |
||||||
|
* it under the terms of the GNU General Public License as published by |
||||||
|
* the Free Software Foundation, either version 2 of the License, or |
||||||
|
* (at your option) any later version. |
||||||
|
* |
||||||
|
* This program is distributed in the hope that it will be useful, |
||||||
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of |
||||||
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||||
|
* GNU General Public License for more details. |
||||||
|
* |
||||||
|
* You should have received a copy of the GNU General Public License |
||||||
|
* along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
*/ |
||||||
|
|
||||||
|
#pragma once |
||||||
|
|
||||||
|
/* GD32VF103 has the same API as STM32F103, but uses different names for literally the same thing.
|
||||||
|
* As of 23.7.2021 QMK is tailored to use STM32 defines/names, for compatibility sake |
||||||
|
* we just redefine the GD32 names. */ |
||||||
|
|
||||||
|
/* Close your eyes kids. */ |
||||||
|
#define MCU_STM32 |
||||||
|
|
||||||
|
/* AFIO redefines */ |
||||||
|
#define MAPR PCF0 |
||||||
|
#define AFIO_MAPR_USART1_REMAP AFIO_PCF0_USART0_REMAP |
||||||
|
#define AFIO_MAPR_USART2_REMAP AFIO_PCF0_USART1_REMAP |
||||||
|
#define AFIO_MAPR_USART3_REMAP_PARTIALREMAP AFIO_PCF0_USART2_REMAP_PARTIALREMAP |
||||||
|
#define AFIO_MAPR_USART3_REMAP_FULLREMAP AFIO_PCF0_USART2_REMAP_FULLREMAP |
||||||
|
|
||||||
|
/* DMA redefines. */ |
||||||
|
#define STM32_DMA_STREAM(stream) GD32_DMA_STREAM(stream) |
||||||
|
#define STM32_DMA_STREAM_ID(peripheral, channel) GD32_DMA_STREAM_ID(peripheral - 1, channel - 1) |
||||||
|
#define STM32_DMA_CR_DIR_M2P GD32_DMA_CTL_DIR_M2P |
||||||
|
#define STM32_DMA_CR_PSIZE_WORD GD32_DMA_CTL_PWIDTH_WORD |
||||||
|
#define STM32_DMA_CR_MSIZE_WORD GD32_DMA_CTL_MWIDTH_WORD |
||||||
|
#define STM32_DMA_CR_MINC GD32_DMA_CTL_MNAGA |
||||||
|
#define STM32_DMA_CR_CIRC GD32_DMA_CTL_CMEN |
||||||
|
#define STM32_DMA_CR_PL GD32_DMA_CTL_PRIO |
||||||
|
#define STM32_DMA_CR_CHSEL GD32_DMA_CTL_CHSEL |
||||||
|
#define cr1 ctl0 |
||||||
|
#define cr2 ctl1 |
||||||
|
#define cr3 ctl2 |
||||||
|
#define dier dmainten |
||||||
|
|
||||||
|
/* ADC redefines */ |
||||||
|
#if HAL_USE_ADC |
||||||
|
# define STM32_ADC_USE_ADC1 GD32_ADC_USE_ADC0 |
||||||
|
|
||||||
|
# define smpr1 sampt0 |
||||||
|
# define smpr2 sampt1 |
||||||
|
# define sqr1 rsq0 |
||||||
|
# define sqr2 rsq1 |
||||||
|
# define sqr3 rsq2 |
||||||
|
|
||||||
|
# define ADC_SMPR2_SMP_AN0 ADC_SAMPT1_SMP_SPT0 |
||||||
|
# define ADC_SMPR2_SMP_AN1 ADC_SAMPT1_SMP_SPT1 |
||||||
|
# define ADC_SMPR2_SMP_AN2 ADC_SAMPT1_SMP_SPT2 |
||||||
|
# define ADC_SMPR2_SMP_AN3 ADC_SAMPT1_SMP_SPT3 |
||||||
|
# define ADC_SMPR2_SMP_AN4 ADC_SAMPT1_SMP_SPT4 |
||||||
|
# define ADC_SMPR2_SMP_AN5 ADC_SAMPT1_SMP_SPT5 |
||||||
|
# define ADC_SMPR2_SMP_AN6 ADC_SAMPT1_SMP_SPT6 |
||||||
|
# define ADC_SMPR2_SMP_AN7 ADC_SAMPT1_SMP_SPT7 |
||||||
|
# define ADC_SMPR2_SMP_AN8 ADC_SAMPT1_SMP_SPT8 |
||||||
|
# define ADC_SMPR2_SMP_AN9 ADC_SAMPT1_SMP_SPT9 |
||||||
|
|
||||||
|
# define ADC_SMPR1_SMP_AN10 ADC_SAMPT0_SMP_SPT10 |
||||||
|
# define ADC_SMPR1_SMP_AN11 ADC_SAMPT0_SMP_SPT11 |
||||||
|
# define ADC_SMPR1_SMP_AN12 ADC_SAMPT0_SMP_SPT12 |
||||||
|
# define ADC_SMPR1_SMP_AN13 ADC_SAMPT0_SMP_SPT13 |
||||||
|
# define ADC_SMPR1_SMP_AN14 ADC_SAMPT0_SMP_SPT14 |
||||||
|
# define ADC_SMPR1_SMP_AN15 ADC_SAMPT0_SMP_SPT15 |
||||||
|
|
||||||
|
# define ADC_SQR3_SQ1_N ADC_RSQ2_RSQ1_N |
||||||
|
#endif |
||||||
|
|
||||||
|
/* FLASH redefines */ |
||||||
|
#if defined(EEPROM_ENABLE) |
||||||
|
# define SR STAT |
||||||
|
# define FLASH_SR_BSY FLASH_STAT_BUSY |
||||||
|
# define FLASH_SR_PGERR FLASH_STAT_PGERR |
||||||
|
# define FLASH_SR_EOP FLASH_STAT_ENDF |
||||||
|
# define FLASH_SR_WRPRTERR FLASH_STAT_WPERR |
||||||
|
# define FLASH_SR_WRPERR FLASH_SR_WRPRTERR |
||||||
|
# define FLASH_OBR_OPTERR FLASH_OBSTAT_OBERR |
||||||
|
# define AR ADDR |
||||||
|
# define CR CTL |
||||||
|
# define FLASH_CR_PER FLASH_CTL_PER |
||||||
|
# define FLASH_CR_STRT FLASH_CTL_START |
||||||
|
# define FLASH_CR_LOCK FLASH_CTL_LK |
||||||
|
# define FLASH_CR_PG FLASH_CTL_PG |
||||||
|
# define KEYR KEY |
||||||
|
#endif |
||||||
|
|
||||||
|
/* Serial USART redefines. */ |
||||||
|
#if HAL_USE_SERIAL |
||||||
|
# if !defined(SERIAL_USART_CR1) |
||||||
|
# define SERIAL_USART_CR1 (USART_CTL0_PCEN | USART_CTL0_PM | USART_CTL0_WL) // parity enable, odd parity, 9 bit length
|
||||||
|
# endif |
||||||
|
# if !defined(SERIAL_USART_CR2) |
||||||
|
# define SERIAL_USART_CR2 (USART_CTL1_STB_1) // 2 stop bits
|
||||||
|
# endif |
||||||
|
# if !defined(SERIAL_USART_CR3) |
||||||
|
# define SERIAL_USART_CR3 0x0 |
||||||
|
# endif |
||||||
|
# define USART_CR3_HDSEL USART_CTL2_HDEN |
||||||
|
# define CCR CHCV |
||||||
|
#endif |
||||||
|
|
||||||
|
/* SPI redefines. */ |
||||||
|
#if HAL_USE_SPI |
||||||
|
# define SPI_CR1_LSBFIRST SPI_CTL0_LF |
||||||
|
# define SPI_CR1_CPHA SPI_CTL0_CKPH |
||||||
|
# define SPI_CR1_CPOL SPI_CTL0_CKPL |
||||||
|
# define SPI_CR1_BR_0 SPI_CTL0_PSC_0 |
||||||
|
# define SPI_CR1_BR_1 SPI_CTL0_PSC_1 |
||||||
|
# define SPI_CR1_BR_2 SPI_CTL0_PSC_2 |
||||||
|
#endif |
Loading…
Reference in new issue