1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/boards/pinetime/board.c
Benjamin Valentin c839fe2e77 boards: define mtd_spi_nor HOLD and WP pins
None of the boards used them before, so just set them to GPIO_UNDEF
2020-11-02 21:17:36 +01:00

83 lines
2.1 KiB
C

/*
* Copyright (C) 2017 Freie Universität Berlin
* 2020 Inria
* 2020 Kaspar Schleiser <kaspar@schleiser.de>
*
* This file is subject to the terms and conditions of the GNU Lesser
* General Public License v2.1. See the file LICENSE in the top level
* directory for more details.
*/
/**
* @ingroup boards_pinetime
* @{
*
* @file
* @brief Board initialization for the PineTime
*
* @author Hauke Petersen <hauke.petersen@fu-berlin.de>
* @author Kaspar Schleiser <kaspar@schleiser.de>
*
* @}
*/
#include "cpu.h"
#include "board.h"
#include "mtd.h"
#include "mtd_spi_nor.h"
#include "periph/gpio.h"
#include "periph/spi.h"
#include "timex.h"
#ifdef MODULE_MTD
static const mtd_spi_nor_params_t _pinetime_nor_params = {
.opcode = &mtd_spi_nor_opcode_default,
.wait_chip_erase = 9LU * US_PER_SEC,
.wait_32k_erase = 160LU *US_PER_MS,
.wait_sector_erase = 70LU * US_PER_MS,
.wait_chip_wake_up = 1LU * US_PER_MS,
.clk = PINETIME_NOR_SPI_CLK,
.flag = PINETIME_NOR_FLAGS,
.spi = PINETIME_NOR_SPI_DEV,
.mode = PINETIME_NOR_SPI_MODE,
.cs = PINETIME_NOR_SPI_CS,
.wp = GPIO_UNDEF,
.hold = GPIO_UNDEF,
.addr_width = 3,
};
static mtd_spi_nor_t pinetime_nor_dev = {
.base = {
.driver = &mtd_spi_nor_driver,
.page_size = PINETIME_NOR_PAGE_SIZE,
.pages_per_sector = PINETIME_NOR_PAGES_PER_SECTOR,
.sector_count = PINETIME_NOR_SECTOR_COUNT,
},
.params = &_pinetime_nor_params,
};
mtd_dev_t *mtd0 = (mtd_dev_t *)&pinetime_nor_dev;
#endif /* MODULE_MTD */
void board_init(void)
{
/* initialize the CPU */
cpu_init();
/* initialize pins */
gpio_init(VCC33, GPIO_OUT);
gpio_init(BUTTON0_ENABLE, GPIO_OUT);
gpio_init(BUTTON0, GPIO_IN);
gpio_init(VIBRATOR, GPIO_OUT);
gpio_init(LCD_BACKLIGHT_LOW, GPIO_OUT);
gpio_init(LCD_BACKLIGHT_MID, GPIO_OUT);
gpio_init(LCD_BACKLIGHT_HIGH, GPIO_OUT);
gpio_set(VCC33);
gpio_set(BUTTON0_ENABLE);
gpio_set(VIBRATOR);
gpio_set(LCD_BACKLIGHT_LOW);
gpio_set(LCD_BACKLIGHT_MID);
gpio_set(LCD_BACKLIGHT_HIGH);
}