From ca0b2a235d6b537896efeb11f263d7e103a92d82 Mon Sep 17 00:00:00 2001 From: gdisirio Date: Wed, 24 Oct 2012 09:46:46 +0000 Subject: git-svn-id: svn://svn.code.sf.net/p/chibios/svn/trunk@4778 35acf78f-673a-0410-8e92-d51de3d6d3f4 --- boards/ST_STM32F3_DISCOVERY/board.c | 84 ++ boards/ST_STM32F3_DISCOVERY/board.h | 161 ++++ boards/ST_STM32F3_DISCOVERY/board.mk | 5 + boards/ST_STM32F3_DISCOVERY/cfg/board.chcfg | 1186 +++++++++++++++++++++++++++ 4 files changed, 1436 insertions(+) create mode 100644 boards/ST_STM32F3_DISCOVERY/board.c create mode 100644 boards/ST_STM32F3_DISCOVERY/board.h create mode 100644 boards/ST_STM32F3_DISCOVERY/board.mk create mode 100644 boards/ST_STM32F3_DISCOVERY/cfg/board.chcfg (limited to 'boards/ST_STM32F3_DISCOVERY') diff --git a/boards/ST_STM32F3_DISCOVERY/board.c b/boards/ST_STM32F3_DISCOVERY/board.c new file mode 100644 index 000000000..ef65f94aa --- /dev/null +++ b/boards/ST_STM32F3_DISCOVERY/board.c @@ -0,0 +1,84 @@ +/* + ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010, + 2011,2012 Giovanni Di Sirio. + + This file is part of ChibiOS/RT. + + ChibiOS/RT 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 3 of the License, or + (at your option) any later version. + + ChibiOS/RT 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 . +*/ + +#include "ch.h" +#include "hal.h" + +#if HAL_USE_PAL || defined(__DOXYGEN__) +/** + * @brief PAL setup. + * @details Digital I/O ports static configuration as defined in @p board.h. + * This variable is used by the HAL when initializing the PAL driver. + */ +const PALConfig pal_default_config = +{ + {VAL_GPIOA_MODER, VAL_GPIOA_OTYPER, VAL_GPIOA_OSPEEDR, VAL_GPIOA_PUPDR, + VAL_GPIOA_ODR, VAL_GPIOA_AFRL, VAL_GPIOA_AFRH}, + {VAL_GPIOB_MODER, VAL_GPIOB_OTYPER, VAL_GPIOB_OSPEEDR, VAL_GPIOB_PUPDR, + VAL_GPIOB_ODR, VAL_GPIOB_AFRL, VAL_GPIOB_AFRH}, + {VAL_GPIOC_MODER, VAL_GPIOC_OTYPER, VAL_GPIOC_OSPEEDR, VAL_GPIOC_PUPDR, + VAL_GPIOC_ODR, VAL_GPIOC_AFRL, VAL_GPIOC_AFRH}, + {VAL_GPIOD_MODER, VAL_GPIOD_OTYPER, VAL_GPIOD_OSPEEDR, VAL_GPIOD_PUPDR, + VAL_GPIOD_ODR, VAL_GPIOD_AFRL, VAL_GPIOD_AFRH}, + {VAL_GPIOE_MODER, VAL_GPIOE_OTYPER, VAL_GPIOE_OSPEEDR, VAL_GPIOE_PUPDR, + VAL_GPIOE_ODR, VAL_GPIOE_AFRL, VAL_GPIOE_AFRH}, + {VAL_GPIOF_MODER, VAL_GPIOF_OTYPER, VAL_GPIOF_OSPEEDR, VAL_GPIOF_PUPDR, + VAL_GPIOF_ODR, VAL_GPIOF_AFRL, VAL_GPIOF_AFRH} +}; +#endif + +/** + * @brief Early initialization code. + * @details This initialization must be performed just after stack setup + * and before any other initialization. + */ +void __early_init(void) { + + stm32_clock_init(); +} + +#if HAL_USE_MMC_SPI || defined(__DOXYGEN__) +/** + * @brief MMC_SPI card detection. + */ +bool_t mmc_lld_is_card_inserted(MMCDriver *mmcp) { + + (void)mmcp; + /* TODO: Fill the implementation.*/ + return TRUE; +} + +/** + * @brief MMC_SPI card write protection detection. + */ +bool_t mmc_lld_is_write_protected(MMCDriver *mmcp) { + + (void)mmcp; + /* TODO: Fill the implementation.*/ + return FALSE; +} +#endif + +/** + * @brief Board-specific initialization code. + * @todo Add your board-specific code, if any. + */ +void boardInit(void) { +} diff --git a/boards/ST_STM32F3_DISCOVERY/board.h b/boards/ST_STM32F3_DISCOVERY/board.h new file mode 100644 index 000000000..a79d6a122 --- /dev/null +++ b/boards/ST_STM32F3_DISCOVERY/board.h @@ -0,0 +1,161 @@ +/* + ChibiOS/RT - Copyright (C) 2006,2007,2008,2009,2010, + 2011,2012 Giovanni Di Sirio. + + This file is part of ChibiOS/RT. + + ChibiOS/RT 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 3 of the License, or + (at your option) any later version. + + ChibiOS/RT 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 . +*/ + +#ifndef _BOARD_H_ +#define _BOARD_H_ + +/* + * Setup for STMicroelectronics STM32F4-Discovery board. + */ + +/* + * Board identifier. + */ +#define BOARD_ST_STM32F3_DISCOVERY +#define BOARD_NAME "STMicroelectronics STM32F3-Discovery" + + +/* + * Board oscillators-related settings. + * NOTE: LSE not fitted. + */ +#if !defined(STM32_LSECLK) +#define STM32_LSECLK 0 +#endif + +#if !defined(STM32_HSECLK) +#define STM32_HSECLK 8000000 +#endif + +#define STM32_HSE_BYPASS + +/* + * MCU type as defined in the ST header file stm32f30x.h. + */ +#define STM32F30X + +/* + * IO pins assignments. + */ + +/* + * I/O ports initial setup, this configuration is established soon after reset + * in the initialization code. + * Please refer to the STM32 Reference Manual for details. + */ +#define PIN_MODE_INPUT(n) (0U << ((n) * 2)) +#define PIN_MODE_OUTPUT(n) (1U << ((n) * 2)) +#define PIN_MODE_ALTERNATE(n) (2U << ((n) * 2)) +#define PIN_MODE_ANALOG(n) (3U << ((n) * 2)) +#define PIN_ODR_LOW(n) (0U << (n)) +#define PIN_ODR_HIGH(n) (1U << (n)) +#define PIN_OTYPE_PUSHPULL(n) (0U << (n)) +#define PIN_OTYPE_OPENDRAIN(n) (1U << (n)) +#define PIN_OSPEED_2M(n) (0U << ((n) * 2)) +#define PIN_OSPEED_10M(n) (1U << ((n) * 2)) +#define PIN_OSPEED_50M(n) (3U << ((n) * 2)) +#define PIN_PUPDR_FLOATING(n) (0U << ((n) * 2)) +#define PIN_PUPDR_PULLUP(n) (1U << ((n) * 2)) +#define PIN_PUPDR_PULLDOWN(n) (2U << ((n) * 2)) +#define PIN_AFIO_AF(n, v) ((v##U) << ((n % 8) * 4)) + +/* + * GPIOA setup: + * + */ +#define VAL_GPIOA_MODER 0 +#define VAL_GPIOA_OTYPER 0 +#define VAL_GPIOA_OSPEEDR 0 +#define VAL_GPIOA_PUPDR 0 +#define VAL_GPIOA_ODR 0 +#define VAL_GPIOA_AFRL 0 +#define VAL_GPIOA_AFRH 0 + +/* + * GPIOB setup: + * + */ +#define VAL_GPIOB_MODER 0 +#define VAL_GPIOB_OTYPER 0 +#define VAL_GPIOB_OSPEEDR 0 +#define VAL_GPIOB_PUPDR 0 +#define VAL_GPIOB_ODR 0 +#define VAL_GPIOB_AFRL 0 +#define VAL_GPIOB_AFRH 0 + +/* + * GPIOC setup: + * + */ +#define VAL_GPIOC_MODER 0 +#define VAL_GPIOC_OTYPER 0 +#define VAL_GPIOC_OSPEEDR 0 +#define VAL_GPIOC_PUPDR 0 +#define VAL_GPIOC_ODR 0 +#define VAL_GPIOC_AFRL 0 +#define VAL_GPIOC_AFRH 0 + +/* + * GPIOD setup: + * +0 */ +#define VAL_GPIOD_MODER 0 +#define VAL_GPIOD_OTYPER 0 +#define VAL_GPIOD_OSPEEDR 0 +#define VAL_GPIOD_PUPDR 0 +#define VAL_GPIOD_ODR 0 +#define VAL_GPIOD_AFRL 0 +#define VAL_GPIOD_AFRH 0 + +/* + * GPIOE setup: + * + */ +#define VAL_GPIOE_MODER 0 +#define VAL_GPIOE_OTYPER 0 +#define VAL_GPIOE_OSPEEDR 0 +#define VAL_GPIOE_PUPDR 0 +#define VAL_GPIOE_ODR 0 +#define VAL_GPIOE_AFRL 0 +#define VAL_GPIOE_AFRH 0 + +/* + * GPIOF setup: + * + */ +#define VAL_GPIOF_MODER 0 +#define VAL_GPIOF_OTYPER 0 +#define VAL_GPIOF_OSPEEDR 0 +#define VAL_GPIOF_PUPDR 0 +#define VAL_GPIOF_ODR 0 +#define VAL_GPIOF_AFRL 0 +#define VAL_GPIOF_AFRH 0 + +#if !defined(_FROM_ASM_) +#ifdef __cplusplus +extern "C" { +#endif + void boardInit(void); +#ifdef __cplusplus +} +#endif +#endif /* _FROM_ASM_ */ + +#endif /* _BOARD_H_ */ diff --git a/boards/ST_STM32F3_DISCOVERY/board.mk b/boards/ST_STM32F3_DISCOVERY/board.mk new file mode 100644 index 000000000..522082fe9 --- /dev/null +++ b/boards/ST_STM32F3_DISCOVERY/board.mk @@ -0,0 +1,5 @@ +# List of all the board related files. +BOARDSRC = ${CHIBIOS}/boards/ST_STM32F3_DISCOVERY/board.c + +# Required include directories +BOARDINC = ${CHIBIOS}/boards/ST_STM32F3_DISCOVERY diff --git a/boards/ST_STM32F3_DISCOVERY/cfg/board.chcfg b/boards/ST_STM32F3_DISCOVERY/cfg/board.chcfg new file mode 100644 index 000000000..a54fca2fe --- /dev/null +++ b/boards/ST_STM32F3_DISCOVERY/cfg/board.chcfg @@ -0,0 +1,1186 @@ + + + + + resources/gencfg/processors/boards/stm32f3xx/templates + .. + + STMicroelectronics STM32F3-Discovery + ST_STM32F3_DISCOVERY + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + -- cgit v1.2.3