mirror of
https://github.com/apache/nuttx.git
synced 2026-08-27 20:30:38 +00:00
BREAKING CHANGE: Part of splitting the legacy stm32 super-directory; relocates the stm32f1 sources, headers and boards into arch/arm/src/stm32f1, arch/arm/include/stm32f1 and boards/arm/stm32f1. Signed-off-by: raiden00pl <raiden00@railab.me>
495 lines
28 KiB
C
495 lines
28 KiB
C
/****************************************************************************
|
|
* arch/arm/include/stm32f1/chip.h
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*
|
|
* Licensed to the Apache Software Foundation (ASF) under one or more
|
|
* contributor license agreements. See the NOTICE file distributed with
|
|
* this work for additional information regarding copyright ownership. The
|
|
* ASF licenses this file to you 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.
|
|
*
|
|
****************************************************************************/
|
|
|
|
#ifndef __ARCH_ARM_INCLUDE_STM32F1_CHIP_H
|
|
#define __ARCH_ARM_INCLUDE_STM32F1_CHIP_H
|
|
|
|
/****************************************************************************
|
|
* Included Files
|
|
****************************************************************************/
|
|
|
|
#include <nuttx/config.h>
|
|
|
|
/****************************************************************************
|
|
* Pre-processor Prototypes
|
|
****************************************************************************/
|
|
|
|
/* Get customizations for each supported chip and provide alternate function
|
|
* pin-mapping
|
|
*
|
|
* NOTE: Each GPIO pin may serve either for general purpose I/O or for a
|
|
* special alternate function (such as USART, CAN, USB, SDIO, etc.). That
|
|
* particular pin-mapping will depend on the package and STM32 family. If
|
|
* you are incorporating a new STM32 chip into NuttX, you will need to add
|
|
* the pin-mapping to a header file and to include that header file below.
|
|
* The chip-specific pin-mapping is defined in the chip datasheet.
|
|
*/
|
|
|
|
#if defined(CONFIG_ARCH_CHIP_STM32F100C8) || defined(CONFIG_ARCH_CHIP_STM32F100CB) \
|
|
|| defined(CONFIG_ARCH_CHIP_STM32F100R8) || defined(CONFIG_ARCH_CHIP_STM32F100RB)
|
|
# define STM32_NFSMC 0 /* No FSMC */
|
|
# define STM32_NATIM 1 /* One advanced timer TIM1 */
|
|
# define STM32_NGTIM 3 /* 16-bit general timers TIM2-4 with DMA */
|
|
# define STM32_NGTIMNDMA 0 /* No 16-bit general timers without DMA */
|
|
# define STM32_NBTIM 2 /* 2 basic timers: TIM6, TIM7 */
|
|
|
|
/* TODO: there are also 3 additional timers (15-17)
|
|
* that don't fit any existing category
|
|
*/
|
|
|
|
# define STM32_NDMA 1 /* DMA1 */
|
|
# define STM32_NSPI 2 /* SPI1-2 */
|
|
# define STM32_NI2S 0 /* No I2S */
|
|
# define STM32_NUSART 3 /* USART1-3 */
|
|
# define STM32_NLPUART 0 /* No LPUART */
|
|
# define STM32_NI2C 2 /* I2C1-2 */
|
|
# define STM32_NCAN 0 /* No CAN */
|
|
# define STM32_NSDIO 0 /* No SDIO */
|
|
# define STM32_NLCD 0 /* No LCD */
|
|
# define STM32_NUSBOTG 0 /* No USB OTG FS/HS */
|
|
# define STM32_NGPIO 64 /* GPIOA-D */
|
|
# define STM32_NADC 1 /* ADC1 */
|
|
# define STM32_NDAC 2 /* DAC 1, 2 channels */
|
|
# define STM32_NCAPSENSE 0 /* No capacitive sensing channels */
|
|
# define STM32_NCRC 1 /* CRC1 */
|
|
# define STM32_NETHERNET 0 /* No Ethernet */
|
|
# define STM32_NRNG 0 /* No random number generator (RNG) */
|
|
# define STM32_NDCMI 0 /* No digital camera interface (DCMI) */
|
|
|
|
#elif defined(CONFIG_ARCH_CHIP_STM32F100V8) || defined(CONFIG_ARCH_CHIP_STM32F100VB)
|
|
# define STM32_NFSMC 0 /* FSMC */
|
|
# define STM32_NATIM 1 /* One advanced timer TIM1 */
|
|
# define STM32_NGTIM 3 /* 16-bit general timers TIM2-4 with DMA */
|
|
# define STM32_NGTIMNDMA 0 /* No 16-bit general timers without DMA */
|
|
# define STM32_NBTIM 2 /* 2 basic timers: TIM6, TIM7 */
|
|
|
|
/* TODO: there are also 3 additional timers (15-17)
|
|
* that don't fit any existing category
|
|
*/
|
|
|
|
# define STM32_NDMA 1 /* DMA1 */
|
|
# define STM32_NSPI 2 /* SPI1-2 */
|
|
# define STM32_NI2S 0 /* No I2S */
|
|
# define STM32_NUSART 3 /* USART1-3 */
|
|
# define STM32_NLPUART 0 /* No LPUART */
|
|
# define STM32_NI2C 2 /* I2C1-2 */
|
|
# define STM32_NCAN 0 /* No CAN */
|
|
# define STM32_NSDIO 0 /* No SDIO */
|
|
# define STM32_NLCD 0 /* No LCD */
|
|
# define STM32_NUSBOTG 0 /* No USB OTG FS/HS */
|
|
# define STM32_NGPIO 80 /* GPIOA-E */
|
|
# define STM32_NADC 1 /* ADC1 */
|
|
# define STM32_NDAC 2 /* DAC 1, 2 channels */
|
|
# define STM32_NCAPSENSE 0 /* No capacitive sensing channels */
|
|
# define STM32_NCRC 1 /* CRC1 */
|
|
# define STM32_NETHERNET 0 /* No Ethernet */
|
|
# define STM32_NRNG 0 /* No random number generator (RNG) */
|
|
# define STM32_NDCMI 0 /* No digital camera interface (DCMI) */
|
|
|
|
/* STM32 F100 High-density value Line ***************************************/
|
|
|
|
#elif defined(CONFIG_ARCH_CHIP_STM32F100RC) || defined(CONFIG_ARCH_CHIP_STM32F100RD) \
|
|
|| defined(CONFIG_ARCH_CHIP_STM32F100RE)
|
|
# define STM32_NFSMC 0 /* FSMC */
|
|
# define STM32_NATIM 1 /* One advanced timer TIM1 */
|
|
# define STM32_NGTIM 4 /* 16-bit general timers TIM2-5 with DMA */
|
|
# define STM32_NGTIMNDMA 0 /* No 16-bit general timers without DMA */
|
|
# define STM32_NBTIM 2 /* 2 basic timers: TIM6, TIM7 */
|
|
|
|
/* TODO: there are also 6 additional timers (12-17)
|
|
* that don't fit any existing category
|
|
*/
|
|
|
|
# define STM32_NDMA 2 /* DMA1-2 */
|
|
# define STM32_NSPI 3 /* SPI1-3 */
|
|
# define STM32_NI2S 0 /* No I2S */
|
|
# define STM32_NUSART 5 /* USART1-5 */
|
|
# define STM32_NLPUART 0 /* No LPUART */
|
|
# define STM32_NI2C 2 /* I2C1-2 */
|
|
# define STM32_NCAN 0 /* No CAN */
|
|
# define STM32_NSDIO 0 /* No SDIO */
|
|
# define STM32_NLCD 0 /* No LCD */
|
|
# define STM32_NUSBOTG 0 /* No USB OTG FS/HS */
|
|
# define STM32_NGPIO 64 /* GPIOA-D */
|
|
# define STM32_NADC 1 /* ADC1 */
|
|
# define STM32_NDAC 2 /* DAC 1, 2 channels */
|
|
# define STM32_NCAPSENSE 0 /* No capacitive sensing channels */
|
|
# define STM32_NCRC 1 /* CRC1 */
|
|
# define STM32_NETHERNET 0 /* No Ethernet */
|
|
# define STM32_NRNG 0 /* No random number generator (RNG) */
|
|
# define STM32_NDCMI 0 /* No digital camera interface (DCMI) */
|
|
|
|
#elif defined(CONFIG_ARCH_CHIP_STM32F100VC) || defined(CONFIG_ARCH_CHIP_STM32F100VD) \
|
|
|| defined(CONFIG_ARCH_CHIP_STM32F100VE)
|
|
# define STM32_NFSMC 1 /* FSMC */
|
|
# define STM32_NATIM 1 /* One advanced timer TIM1 */
|
|
# define STM32_NGTIM 4 /* 16-bit general timers TIM2-5 with DMA */
|
|
# define STM32_NGTIMNDMA 0 /* No 16-bit general timers without DMA */
|
|
# define STM32_NBTIM 2 /* 2 basic timers: TIM6, TIM7 */
|
|
|
|
/* TODO: there are also 6 additional timers (12-17)
|
|
* that don't fit any existing category
|
|
*/
|
|
|
|
# define STM32_NDMA 2 /* DMA1-2 */
|
|
# define STM32_NSPI 3 /* SPI1-3 */
|
|
# define STM32_NI2S 0 /* No I2S */
|
|
# define STM32_NUSART 5 /* USART1-5 */
|
|
# define STM32_NLPUART 0 /* No LPUART */
|
|
# define STM32_NI2C 2 /* I2C1-2 */
|
|
# define STM32_NCAN 0 /* No CAN */
|
|
# define STM32_NSDIO 0 /* No SDIO */
|
|
# define STM32_NLCD 0 /* No LCD */
|
|
# define STM32_NUSBOTG 0 /* No USB OTG FS/HS */
|
|
# define STM32_NGPIO 80 /* GPIOA-E */
|
|
# define STM32_NADC 1 /* ADC1 */
|
|
# define STM32_NDAC 2 /* DAC 1, 2 channels */
|
|
# define STM32_NCAPSENSE 0 /* No capacitive sensing channels */
|
|
# define STM32_NCRC 1 /* CRC1 */
|
|
# define STM32_NETHERNET 0 /* No Ethernet */
|
|
# define STM32_NRNG 0 /* No random number generator (RNG) */
|
|
# define STM32_NDCMI 0 /* No digital camera interface (DCMI) */
|
|
|
|
/* STM32 F102x8/102xB Medium Density USB Access Family **********************/
|
|
|
|
#elif defined(CONFIG_ARCH_CHIP_STM32F102CB)
|
|
# define STM32_NFSMC 1 /* FSMC */
|
|
# define STM32_NATIM 0 /* No advanced timer TIM1 */
|
|
# define STM32_NGTIM 3 /* 16-bit general timers TIM2-4 */
|
|
# define STM32_NGTIMNDMA 0 /* No 16-bit general timers without DMA */
|
|
# define STM32_NBTIM 0 /* No basic timers */
|
|
# define STM32_NDMA 1 /* DMA */
|
|
# define STM32_NSPI 2 /* SPI1-2 */
|
|
# define STM32_NI2S 0 /* No I2S */
|
|
# define STM32_NUSART 3 /* USART1-3 */
|
|
# define STM32_NLPUART 0 /* No LPUART */
|
|
# define STM32_NI2C 2 /* I2C1-2 */
|
|
# define STM32_NCAN 0 /* No CAN */
|
|
# define STM32_NSDIO 0 /* No SDIO */
|
|
# define STM32_NLCD 0 /* No LCD */
|
|
# define STM32_NUSBOTG 0 /* No USB OTG FS/HS */
|
|
# define STM32_NGPIO 37 /* GPIOA-D */
|
|
# define STM32_NADC 1 /* ADC1 */
|
|
# define STM32_NDAC 0 /* No DAC */
|
|
# define STM32_NCAPSENSE 0 /* No capacitive sensing channels */
|
|
# define STM32_NCRC 1 /* CRC1 */
|
|
# define STM32_NETHERNET 0 /* No ethernet */
|
|
# define STM32_NRNG 0 /* No random number generator (RNG) */
|
|
# define STM32_NDCMI 0 /* No digital camera interface (DCMI) */
|
|
|
|
/* STM32 F103 Low Density Family ********************************************/
|
|
|
|
/* STM32F103C4 & STM32F103C6 */
|
|
|
|
#elif defined(CONFIG_ARCH_CHIP_STM32F103C4)
|
|
# define STM32_NFSMC 0 /* FSMC */
|
|
# define STM32_NATIM 1 /* One advanced timer TIM1 */
|
|
# define STM32_NGTIM 2 /* General timers TIM2,3 */
|
|
# define STM32_NGTIMNDMA 0 /* No 16-bit general timers without DMA */
|
|
# define STM32_NBTIM 0 /* No basic timer */
|
|
# define STM32_NDMA 1 /* DMA1 */
|
|
# define STM32_NSPI 1 /* SPI1 */
|
|
# define STM32_NI2S 0 /* No I2S */
|
|
# define STM32_NUSART 2 /* USART1-2 */
|
|
# define STM32_NLPUART 0 /* No LPUART */
|
|
# define STM32_NI2C 1 /* I2C1 */
|
|
# define STM32_NCAN 1 /* bxCAN1 */
|
|
# define STM32_NSDIO 0 /* No SDIO */
|
|
# define STM32_NUSBOTG 0 /* No USB OTG FS/HS */
|
|
# define STM32_NGPIO 37 /* GPIOA-C */
|
|
# define STM32_NADC 2 /* ADC1-2 */
|
|
# define STM32_NDAC 0 /* No DAC */
|
|
# define STM32_NCRC 1 /* CRC */
|
|
# define STM32_NETHERNET 0 /* No Ethernet */
|
|
# define STM32_NRNG 0 /* No random number generator (RNG) */
|
|
# define STM32_NDCMI 0 /* No digital camera interface (DCMI) */
|
|
|
|
/* STM32 F103 Medium Density Performance Line *******************************/
|
|
|
|
#elif defined(CONFIG_ARCH_CHIP_STM32F103T8) || defined(CONFIG_ARCH_CHIP_STM32F103TB)
|
|
# define STM32_NFSMC 0 /* No FSMC */
|
|
# define STM32_NATIM 1 /* One advanced timer TIM1 */
|
|
# define STM32_NGTIM 3 /* General timers TIM2-4 */
|
|
# define STM32_NGTIMNDMA 0 /* No 16-bit general timers without DMA */
|
|
# define STM32_NBTIM 0 /* No basic timers */
|
|
# define STM32_NDMA 1 /* DMA1, 7 channels */
|
|
# define STM32_NSPI 1 /* SPI1 */
|
|
# define STM32_NI2S 0 /* No I2S */
|
|
# define STM32_NUSART 2 /* USART1-2 */
|
|
# define STM32_NLPUART 0 /* No LPUART */
|
|
# define STM32_NI2C 1 /* I2C1 */
|
|
# define STM32_NCAN 1 /* bxCAN1 */
|
|
# define STM32_NSDIO 0 /* No SDIO */
|
|
# define STM32_NLCD 0 /* No LCD */
|
|
# define STM32_NUSBOTG 0 /* No USB OTG FS/HS */
|
|
# define STM32_NGPIO 26 /* GPIOA-E */
|
|
# define STM32_NADC 2 /* ADC1-2 */
|
|
# define STM32_NDAC 0 /* No DAC */
|
|
# define STM32_NCAPSENSE 0 /* No capacitive sensing channels */
|
|
# define STM32_NCRC 1 /* CRC */
|
|
# define STM32_NETHERNET 0 /* No Ethernet */
|
|
# define STM32_NRNG 0 /* No random number generator (RNG) */
|
|
# define STM32_NDCMI 0 /* No digital camera interface (DCMI) */
|
|
|
|
#elif defined(CONFIG_ARCH_CHIP_STM32F103C8) || defined(CONFIG_ARCH_CHIP_STM32F103CB)
|
|
# define STM32_NFSMC 0 /* No FSMC */
|
|
# define STM32_NATIM 1 /* One advanced timer TIM1 */
|
|
# define STM32_NGTIM 3 /* General timers TIM2-4 */
|
|
# define STM32_NGTIMNDMA 0 /* No 16-bit general timers without DMA */
|
|
# define STM32_NBTIM 0 /* No basic timers */
|
|
# define STM32_NDMA 1 /* DMA1, 7 channels */
|
|
# define STM32_NSPI 2 /* SPI1-2 */
|
|
# define STM32_NI2S 0 /* No I2S */
|
|
# define STM32_NUSART 3 /* USART1-3 */
|
|
# define STM32_NLPUART 0 /* No LPUART */
|
|
# define STM32_NI2C 2 /* I2C1-2 */
|
|
# define STM32_NCAN 1 /* bxCAN1 */
|
|
# define STM32_NSDIO 0 /* No SDIO */
|
|
# define STM32_NLCD 0 /* No LCD */
|
|
# define STM32_NUSBOTG 0 /* No USB OTG FS/HS */
|
|
# define STM32_NGPIO 37 /* GPIOA-C */
|
|
# define STM32_NADC 2 /* ADC1-2 */
|
|
# define STM32_NDAC 0 /* No DAC */
|
|
# define STM32_NCAPSENSE 0 /* No capacitive sensing channels */
|
|
# define STM32_NCRC 1 /* CRC */
|
|
# define STM32_NETHERNET 0 /* No Ethernet */
|
|
# define STM32_NRNG 0 /* No random number generator (RNG) */
|
|
# define STM32_NDCMI 0 /* No digital camera interface (DCMI) */
|
|
|
|
#elif defined(CONFIG_ARCH_CHIP_STM32F103R8) || defined(CONFIG_ARCH_CHIP_STM32F103RB)
|
|
# define STM32_NFSMC 0 /* No FSMC */
|
|
# define STM32_NATIM 1 /* One advanced timer TIM1 */
|
|
# define STM32_NGTIM 3 /* General timers TIM2-4 */
|
|
# define STM32_NGTIMNDMA 0 /* No 16-bit general timers without DMA */
|
|
# define STM32_NBTIM 0 /* No basic timers */
|
|
# define STM32_NDMA 1 /* DMA1, 7 channels */
|
|
# define STM32_NSPI 2 /* SPI1-2 */
|
|
# define STM32_NI2S 0 /* No I2S */
|
|
# define STM32_NUSART 3 /* USART1-3 */
|
|
# define STM32_NLPUART 0 /* No LPUART */
|
|
# define STM32_NI2C 2 /* I2C1-2 */
|
|
# define STM32_NCAN 1 /* bxCAN1 */
|
|
# define STM32_NSDIO 0 /* No SDIO */
|
|
# define STM32_NLCD 0 /* No LCD */
|
|
# define STM32_NUSBOTG 0 /* No USB OTG FS/HS */
|
|
# define STM32_NGPIO 51 /* GPIOA-E */
|
|
# define STM32_NADC 2 /* ADC1-2 */
|
|
# define STM32_NDAC 0 /* No DAC */
|
|
# define STM32_NCAPSENSE 0 /* No capacitive sensing channels */
|
|
# define STM32_NCRC 1 /* CRC */
|
|
# define STM32_NETHERNET 0 /* No Ethernet */
|
|
# define STM32_NRNG 0 /* No random number generator (RNG) */
|
|
# define STM32_NDCMI 0 /* No digital camera interface (DCMI) */
|
|
|
|
/* STM32 F103 High Density Family *******************************************/
|
|
|
|
/* STM32F103RC, STM32F103RD, and STM32F103RE are all provided in 64 pin
|
|
* packages and differ only in the available FLASH and SRAM.
|
|
*/
|
|
|
|
#elif defined(CONFIG_ARCH_CHIP_STM32F103RC) || defined(CONFIG_ARCH_CHIP_STM32F103RD) || \
|
|
defined(CONFIG_ARCH_CHIP_STM32F103RE) || defined(CONFIG_ARCH_CHIP_STM32F103RG)
|
|
# define STM32_NFSMC 1 /* FSMC */
|
|
# define STM32_NATIM 2 /* Two advanced timers TIM1 and TIM8 */
|
|
# define STM32_NGTIM 4 /* 16-bit general timers TIM2-5 with DMA */
|
|
# define STM32_NGTIMNDMA 0 /* No 16-bit general timers without DMA */
|
|
# define STM32_NBTIM 2 /* Two basic timers TIM6 and TIM7 */
|
|
# define STM32_NDMA 2 /* DMA1-2 */
|
|
# define STM32_NSPI 3 /* SPI1-3 */
|
|
# define STM32_NI2S 0 /* No I2S (?) */
|
|
# define STM32_NUSART 5 /* USART1-5 */
|
|
# define STM32_NLPUART 0 /* No LPUART */
|
|
# define STM32_NI2C 2 /* I2C1-2 */
|
|
# define STM32_NCAN 1 /* CAN1 */
|
|
# define STM32_NSDIO 1 /* SDIO */
|
|
# define STM32_NLCD 0 /* No LCD */
|
|
# define STM32_NUSBOTG 0 /* No USB OTG FS/HS */
|
|
# define STM32_NGPIO 51 /* GPIOA-D */
|
|
# define STM32_NADC 2 /* ADC1-2 */
|
|
# define STM32_NDAC 2 /* DAC1, 2 channels */
|
|
# define STM32_NCAPSENSE 0 /* No capacitive sensing channels */
|
|
# define STM32_NCRC 1 /* CRC */
|
|
# define STM32_NETHERNET 0 /* No Ethernet */
|
|
# define STM32_NRNG 0 /* No random number generator (RNG) */
|
|
# define STM32_NDCMI 0 /* No digital camera interface (DCMI) */
|
|
|
|
/* STM32F103VC, STM32F103VD, and STM32F103VE are all provided in 100 pin
|
|
* packages and differ only in the available FLASH and SRAM.
|
|
*/
|
|
|
|
#elif defined(CONFIG_ARCH_CHIP_STM32F103VC) || defined(CONFIG_ARCH_CHIP_STM32F103VE)
|
|
# define STM32_NFSMC 1 /* FSMC */
|
|
# define STM32_NATIM 2 /* Two advanced timers TIM1 and TIM8 */
|
|
# define STM32_NGTIM 4 /* General timers TIM2-5 */
|
|
# define STM32_NGTIMNDMA 0 /* No 16-bit general timers without DMA */
|
|
# define STM32_NBTIM 2 /* Two basic timers TIM6 and TIM7 */
|
|
# define STM32_NDMA 2 /* DMA1-2 */
|
|
# define STM32_NSPI 3 /* SPI1-3 */
|
|
# define STM32_NI2S 0 /* No I2S (?) */
|
|
# define STM32_NUSART 5 /* USART1-5 */
|
|
# define STM32_NLPUART 0 /* No LPUART */
|
|
# define STM32_NI2C 2 /* I2C1-2 */
|
|
# define STM32_NCAN 1 /* bxCAN1 */
|
|
# define STM32_NSDIO 1 /* SDIO */
|
|
# define STM32_NLCD 0 /* No LCD */
|
|
# define STM32_NUSBOTG 0 /* No USB OTG FS/HS */
|
|
# define STM32_NGPIO 80 /* GPIOA-E */
|
|
# define STM32_NADC 3 /* ADC1-3 */
|
|
# define STM32_NDAC 2 /* DAC1, 2 channels */
|
|
# define STM32_NCAPSENSE 0 /* No capacitive sensing channels */
|
|
# define STM32_NCRC 1 /* CRC */
|
|
# define STM32_NETHERNET 0 /* No Ethernet */
|
|
# define STM32_NRNG 0 /* No random number generator (RNG) */
|
|
# define STM32_NDCMI 0 /* No digital camera interface (DCMI) */
|
|
|
|
/* STM32F103ZC, STM32F103ZD, and STM32F103ZE are all provided in 144 pin
|
|
* packages and differ only in the available FLASH and SRAM.
|
|
*/
|
|
|
|
#elif defined(CONFIG_ARCH_CHIP_STM32F103ZE)
|
|
# define STM32_NFSMC 1 /* FSMC */
|
|
# define STM32_NATIM 1 /* One advanced timer TIM1 */
|
|
# define STM32_NGTIM 4 /* 16-bit general timers TIM2-5 with DMA */
|
|
# define STM32_NGTIMNDMA 0 /* No 16-bit general timers without DMA */
|
|
# define STM32_NBTIM 0 /* No basic timers */
|
|
# define STM32_NDMA 2 /* DMA1-2 */
|
|
# define STM32_NSPI 3 /* SPI1-3 */
|
|
# define STM32_NI2S 0 /* No I2S (?) */
|
|
# define STM32_NUSART 3 /* USART1-3 */
|
|
# define STM32_NLPUART 0 /* No LPUART */
|
|
# define STM32_NI2C 2 /* I2C1-2 */
|
|
# define STM32_NCAN 1 /* CAN1 */
|
|
# define STM32_NSDIO 1 /* SDIO */
|
|
# define STM32_NLCD 0 /* No LCD */
|
|
# define STM32_NUSBOTG 0 /* No USB OTG FS/HS */
|
|
# define STM32_NGPIO 112 /* GPIOA-G */
|
|
# define STM32_NADC 1 /* ADC1 */
|
|
# define STM32_NDAC 0 /* No DAC */
|
|
# define STM32_NCAPSENSE 0 /* No capacitive sensing channels */
|
|
# define STM32_NCRC 0 /* No CRC */
|
|
# define STM32_NETHERNET 0 /* No Ethernet */
|
|
# define STM32_NRNG 0 /* No random number generator (RNG) */
|
|
# define STM32_NDCMI 0 /* No digital camera interface (DCMI) */
|
|
|
|
/* STM32 F105/F107 Connectivity Line ****************************************/
|
|
|
|
#elif defined(CONFIG_ARCH_CHIP_STM32F105VB)
|
|
# define STM32_NFSMC 1 /* FSMC */
|
|
# define STM32_NATIM 1 /* One advanced timers TIM1 */
|
|
# define STM32_NGTIM 4 /* 16-bit general timers TIM2-5 with DMA */
|
|
# define STM32_NGTIMNDMA 0 /* No 16-bit general timers without DMA */
|
|
# define STM32_NBTIM 2 /* Two basic timers, TIM6-7 */
|
|
# define STM32_NDMA 2 /* DMA1-2 */
|
|
# define STM32_NSPI 3 /* SPI1-3 */
|
|
# define STM32_NI2S 2 /* I2S1-2 (multiplexed with SPI2-3) */
|
|
# define STM32_NUSART 5 /* USART1-3, UART 4-5 */
|
|
# define STM32_NLPUART 0 /* No LPUART */
|
|
# define STM32_NI2C 2 /* I2C1-2 */
|
|
# define STM32_NCAN 2 /* CAN1-2 */
|
|
# define STM32_NSDIO 0 /* No SDIO */
|
|
# define STM32_NLCD 0 /* No LCD */
|
|
# define STM32_NUSBOTG 1 /* USB OTG FS/HS */
|
|
# define STM32_NGPIO 80 /* GPIOA-E */
|
|
# define STM32_NADC 2 /* ADC1-2 */
|
|
# define STM32_NDAC 2 /* DAC1, 2 channels */
|
|
# define STM32_NCAPSENSE 0 /* No capacitive sensing channels */
|
|
# define STM32_NCRC 1 /* CRC */
|
|
# define STM32_NETHERNET 0 /* 100/100 Ethernet MAC */
|
|
# define STM32_NRNG 0 /* No random number generator (RNG) */
|
|
# define STM32_NDCMI 0 /* No digital camera interface (DCMI) */
|
|
|
|
#elif defined(CONFIG_ARCH_CHIP_STM32F105RB)
|
|
# define STM32_NFSMC 1 /* FSMC */
|
|
# define STM32_NATIM 1 /* One advanced timers TIM1 */
|
|
# define STM32_NGTIM 4 /* 16-bit general timers TIM2-5 with DMA */
|
|
# define STM32_NGTIMNDMA 0 /* No 16-bit general timers without DMA */
|
|
# define STM32_NBTIM 2 /* Two basic timers, TIM6-7 */
|
|
# define STM32_NDMA 2 /* DMA1-2 */
|
|
# define STM32_NSPI 3 /* SPI1-3 */
|
|
# define STM32_NI2S 2 /* I2S1-2 (multiplexed with SPI2-3) */
|
|
# define STM32_NUSART 5 /* USART1-3, UART 4-5 */
|
|
# define STM32_NLPUART 0 /* No LPUART */
|
|
# define STM32_NI2C 2 /* I2C1-2 */
|
|
# define STM32_NCAN 2 /* CAN1-2 */
|
|
# define STM32_NSDIO 0 /* No SDIO */
|
|
# define STM32_NLCD 0 /* No LCD */
|
|
# define STM32_NUSBOTG 1 /* USB OTG FS/HS */
|
|
# define STM32_NGPIO 51 /* GPIOA-E */
|
|
# define STM32_NADC 2 /* ADC1-2 */
|
|
# define STM32_NDAC 2 /* DAC1, 2 channels */
|
|
# define STM32_NCAPSENSE 0 /* No capacitive sensing channels */
|
|
# define STM32_NCRC 1 /* CRC */
|
|
# define STM32_NETHERNET 0 /* 100/100 Ethernet MAC */
|
|
# define STM32_NRNG 0 /* No random number generator (RNG) */
|
|
# define STM32_NDCMI 0 /* No digital camera interface (DCMI) */
|
|
|
|
#elif defined(CONFIG_ARCH_CHIP_STM32F107VC)
|
|
# define STM32_NFSMC 1 /* FSMC */
|
|
# define STM32_NATIM 1 /* One advanced timers TIM1 */
|
|
# define STM32_NGTIM 4 /* 16-bit general timers TIM2-5 with DMA */
|
|
# define STM32_NGTIMNDMA 0 /* No 16-bit general timers without DMA */
|
|
# define STM32_NBTIM 2 /* Two basic timers, TIM6-7 */
|
|
# define STM32_NDMA 2 /* DMA1-2 */
|
|
# define STM32_NSPI 3 /* SPI1-3 */
|
|
# define STM32_NI2S 2 /* I2S1-2 (multiplexed with SPI2-3) */
|
|
# define STM32_NUSART 5 /* USART1-3, UART 4-5 */
|
|
# define STM32_NLPUART 0 /* No LPUART */
|
|
# define STM32_NI2C 1 /* I2C1 */
|
|
# define STM32_NCAN 2 /* CAN1-2 */
|
|
# define STM32_NSDIO 0 /* No SDIO */
|
|
# define STM32_NLCD 0 /* No LCD */
|
|
# define STM32_NUSBOTG 0 /* No USB OTG FS/HS */
|
|
# define STM32_NGPIO 80 /* GPIOA-E */
|
|
# define STM32_NADC 2 /* ADC1-2*/
|
|
# define STM32_NDAC 2 /* DAC1, 2 channels */
|
|
# define STM32_NCAPSENSE 0 /* No capacitive sensing channels */
|
|
# define STM32_NCRC 1 /* CRC */
|
|
# define STM32_NETHERNET 1 /* 100/100 Ethernet MAC */
|
|
# define STM32_NRNG 0 /* No random number generator (RNG) */
|
|
# define STM32_NDCMI 0 /* No digital camera interface (DCMI) */
|
|
|
|
/* STM32 F2 Family **********************************************************/
|
|
|
|
#else
|
|
# error "Unsupported STM32 chip"
|
|
#endif
|
|
|
|
/* Peripheral IP versions ***************************************************/
|
|
|
|
/* Peripheral IP versions are invariant and should be decided here, not in
|
|
* Kconfig.
|
|
*
|
|
* REVISIT: Currently only SPI IP version is handled here, with others being
|
|
* handled in Kconfig. Those others need to be gradually refactored
|
|
* and resolved here.
|
|
*/
|
|
|
|
#define STM32_HAVE_IP_SPI_V1
|
|
|
|
/* NVIC priority levels *****************************************************/
|
|
|
|
#define NVIC_SYSH_PRIORITY_MIN 0xf0 /* All bits set in minimum priority */
|
|
#define NVIC_SYSH_PRIORITY_DEFAULT 0x80 /* Midpoint is the default */
|
|
#define NVIC_SYSH_PRIORITY_MAX 0x00 /* Zero is maximum priority */
|
|
#define NVIC_SYSH_PRIORITY_STEP 0x10 /* Four bits of interrupt priority used */
|
|
|
|
#endif /* __ARCH_ARM_INCLUDE_STM32F1_CHIP_H */
|