3e43128f07
Allows to easily enable and configure ipcc for board. Signed-off-by: Michał Łyszczek <michal.lyszczek@bofc.pl>
179 lines
6.5 KiB
C
179 lines
6.5 KiB
C
/****************************************************************************
|
|
* boards/arm/stm32wl5/nucleo-wl55jc/src/nucleo-wl55jc.h
|
|
*
|
|
* 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 __BOARDS_ARM_STM32WL5_NUCLEO_WL55JC_SRC_NUCLEO_WL55JC_H
|
|
#define __BOARDS_ARM_STM32WL5_NUCLEO_WL55JC_SRC_NUCLEO_WL55JC_H
|
|
|
|
/****************************************************************************
|
|
* Included Files
|
|
****************************************************************************/
|
|
|
|
#include <nuttx/config.h>
|
|
#include <nuttx/compiler.h>
|
|
|
|
#include <stdint.h>
|
|
#include <stm32wl5.h>
|
|
|
|
/****************************************************************************
|
|
* Pre-processor Definitions
|
|
****************************************************************************/
|
|
|
|
/* Configuration ************************************************************/
|
|
|
|
#define HAVE_PROC 1
|
|
|
|
#if !defined(CONFIG_FS_PROCFS)
|
|
# undef HAVE_PROC
|
|
#endif
|
|
|
|
#if defined(HAVE_PROC) && defined(CONFIG_DISABLE_MOUNTPOINT)
|
|
# warning Mountpoints disabled. No procfs support
|
|
# undef HAVE_PROC
|
|
#endif
|
|
|
|
#if defined(CONFIG_LCD_SSD1680)
|
|
|
|
/* There is no E-ink display on a board.
|
|
* It can be connected on many different ways
|
|
* It is possible to configure pins using make menuconfig
|
|
*/
|
|
|
|
# if defined(CONFIG_SSD1680_GPIO_CS_PORTA)
|
|
# define CONFIG_SSD1680_CS_PORT GPIO_PORTA
|
|
# elif defined(CONFIG_SSD1680_GPIO_CS_PORTB)
|
|
# define CONFIG_SSD1680_CS_PORT GPIO_PORTB
|
|
# elif defined(CONFIG_SSD1680_GPIO_CS_PORTC)
|
|
# define CONFIG_SSD1680_CS_PORT GPIO_PORTC
|
|
# elif defined(CONFIG_SSD1680_GPIO_CS_PORTD)
|
|
# define CONFIG_SSD1680_CS_PORT GPIO_PORTD
|
|
# endif
|
|
|
|
# if defined(CONFIG_SSD1680_GPIO_DTA_CMD_PORTA)
|
|
# define CONFIG_SSD1680_DC_PORT GPIO_PORTA
|
|
# elif defined(CONFIG_SSD1680_GPIO_DTA_CMD_PORTB)
|
|
# define CONFIG_SSD1680_DC_PORT GPIO_PORTB
|
|
# elif defined(CONFIG_SSD1680_GPIO_DTA_CMD_PORTC)
|
|
# define CONFIG_SSD1680_DC_PORT GPIO_PORTC
|
|
# elif defined(CONFIG_SSD1680_GPIO_DTA_CMD_PORTD)
|
|
# define CONFIG_SSD1680_DC_PORT GPIO_PORTD
|
|
# endif
|
|
|
|
# if defined(CONFIG_SSD1680_GPIO_RST_PORTA)
|
|
# define CONFIG_SSD1680_RST_PORT GPIO_PORTA
|
|
# elif defined(CONFIG_SSD1680_GPIO_RST_PORTB)
|
|
# define CONFIG_SSD1680_RST_PORT GPIO_PORTB
|
|
# elif defined(CONFIG_SSD1680_GPIO_RST_PORTC)
|
|
# define CONFIG_SSD1680_RST_PORT GPIO_PORTC
|
|
# elif defined(CONFIG_SSD1680_GPIO_RST_PORTD)
|
|
# define CONFIG_SSD1680_RST_PORT GPIO_PORTD
|
|
# endif
|
|
|
|
# if defined(CONFIG_SSD1680_GPIO_BUSY_PORTA)
|
|
# define CONFIG_SSD1680_BUSY_PORT GPIO_PORTA
|
|
# elif defined(CONFIG_SSD1680_GPIO_BUSY_PORTB)
|
|
# define CONFIG_SSD1680_BUSY_PORT GPIO_PORTB
|
|
# elif defined(CONFIG_SSD1680_GPIO_BUSY_PORTC)
|
|
# define CONFIG_SSD1680_BUSY_PORT GPIO_PORTC
|
|
# elif defined(CONFIG_SSD1680_GPIO_BUSY_PORTD)
|
|
# define CONFIG_SSD1680_BUSY_PORT GPIO_PORTD
|
|
# endif
|
|
|
|
# define GPIO_SSD1680_CS (GPIO_OUTPUT|GPIO_OTYPER_PP(0)|GPIO_SPEED_2MHz|\
|
|
GPIO_OUTPUT_SET|\
|
|
CONFIG_SSD1680_CS_PORT|\
|
|
CONFIG_SSD1680_GPIO_PIN_CS)
|
|
|
|
# define GPIO_SSD1680_CMD (GPIO_OUTPUT|GPIO_OTYPER_PP(0)|GPIO_OSPEED_2MHz|\
|
|
GPIO_OUTPUT_SET|\
|
|
CONFIG_SSD1680_DC_PORT|\
|
|
CONFIG_SSD1680_GPIO_PIN_DTA_CMD)
|
|
|
|
# ifdef CONFIG_SSD1680_RST_PORT
|
|
# define GPIO_SSD1680_RST (GPIO_OUTPUT|GPIO_OTYPER_PP(0)|GPIO_SPEED_2MHz|\
|
|
GPIO_OUTPUT_SET|\
|
|
CONFIG_SSD1680_RST_PORT|\
|
|
CONFIG_SSD1680_GPIO_PIN_RST)
|
|
# endif
|
|
|
|
# ifdef CONFIG_SSD1680_BUSY_PORT
|
|
# define GPIO_SSD1680_BUSY (GPIO_INPUT|GPIO_PULLUP|GPIO_SPEED_2MHz|\
|
|
CONFIG_SSD1680_BUSY_PORT|\
|
|
CONFIG_SSD1680_GPIO_PIN_BUSY)
|
|
# endif
|
|
#endif
|
|
|
|
#define GPIO_LED_GREEN (GPIO_PORTB|GPIO_PIN9 |GPIO_OUTPUT|GPIO_PULLUP|GPIO_SPEED_50MHz)
|
|
#define GPIO_LED_RED (GPIO_PORTB|GPIO_PIN11|GPIO_OUTPUT|GPIO_PULLUP|GPIO_SPEED_50MHz)
|
|
#define GPIO_LED_BLUE (GPIO_PORTB|GPIO_PIN15|GPIO_OUTPUT|GPIO_PULLUP|GPIO_SPEED_50MHz)
|
|
|
|
#define GPIO_BUTTON1 (GPIO_PORTA|GPIO_PIN0|GPIO_INPUT|GPIO_PULLUP)
|
|
#define GPIO_BUTTON2 (GPIO_PORTA|GPIO_PIN1|GPIO_INPUT|GPIO_PULLUP)
|
|
#define GPIO_BUTTON3 (GPIO_PORTC|GPIO_PIN6|GPIO_INPUT|GPIO_PULLUP|GPIO_EXTI)
|
|
|
|
/****************************************************************************
|
|
* Public Data
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Public Functions Prototypes
|
|
****************************************************************************/
|
|
|
|
/****************************************************************************
|
|
* Name: board_leds_initialize
|
|
*
|
|
* Description:
|
|
* Initialize LEDs
|
|
*
|
|
****************************************************************************/
|
|
|
|
void board_leds_initialize(void);
|
|
|
|
/****************************************************************************
|
|
* Name: stm32wl5_flash_init
|
|
*
|
|
* Description:
|
|
* Initialize on-board FLASH partition table
|
|
*
|
|
****************************************************************************/
|
|
|
|
int stm32wl5_flash_init(void);
|
|
|
|
/****************************************************************************
|
|
* Name: stm32wl5_spidev_initialize
|
|
*
|
|
* Description:
|
|
* Initialize SPIs
|
|
*
|
|
****************************************************************************/
|
|
|
|
void stm32wl5_spidev_initialize(void);
|
|
|
|
/****************************************************************************
|
|
* Name: ipcc_init
|
|
*
|
|
* Description:
|
|
* Initializes configured IPCC channels.
|
|
*
|
|
****************************************************************************/
|
|
|
|
int ipcc_init(void);
|
|
|
|
#endif /* __BOARDS_ARM_STM32WL5_NUCLEO_WL55JC_SRC_NUCLEO_WL55JC_H */
|