mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
d9863c6b3c
This adds the board specification of the Adafruit Metro M4 Express [1]. The significance of this board is that it is compatible with both classical SPI Arduino Shields using the ISP header for SPI (such as `shield_w5100`) and more recent shields using D11/D12/D13 as SPI (such as `shield_llcc68`). [1]: https://learn.adafruit.com/adafruit-metro-m4-express-featuring-atsamd51/overview
66 lines
1.6 KiB
C
66 lines
1.6 KiB
C
/*
|
|
* Copyright (C) 2024 ML!PA Consulting GmbH
|
|
*
|
|
* 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_adafruit-metro-m4-express
|
|
* @{
|
|
*
|
|
* @file
|
|
* @brief Board specific implementations for the Adafruit Metro M4 Express
|
|
*
|
|
* @author Marian Buschsieweke <marian.buschsieweke@posteo.net>
|
|
* @}
|
|
*/
|
|
|
|
#include "board.h"
|
|
#include "periph/gpio.h"
|
|
#include "timex.h"
|
|
#ifdef MODULE_VFS_DEFAULT
|
|
#include "vfs_default.h"
|
|
#endif
|
|
|
|
#ifdef MODULE_MTD_SPI_NOR
|
|
|
|
#include "mtd_spi_nor.h"
|
|
|
|
/* GD25Q16C */
|
|
static const mtd_spi_nor_params_t _samd51_nor_params = {
|
|
.opcode = &mtd_spi_nor_opcode_default,
|
|
.wait_chip_erase = 25 * US_PER_SEC,
|
|
.wait_32k_erase = 150 * US_PER_MS,
|
|
.wait_64k_erase = 200 * US_PER_MS,
|
|
.wait_sector_erase = 50 * US_PER_MS,
|
|
.wait_chip_wake_up = 10 * US_PER_MS,
|
|
.clk = MHZ(54),
|
|
.flag = SPI_NOR_F_SECT_4K
|
|
| SPI_NOR_F_SECT_32K
|
|
| SPI_NOR_F_SECT_64K,
|
|
.spi = SPI_DEV(SPI_NUMOF - 1),
|
|
.mode = SPI_MODE_0,
|
|
.cs = SAM0_QSPI_PIN_CS,
|
|
.wp = SAM0_QSPI_PIN_DATA_2,
|
|
.hold = SAM0_QSPI_PIN_DATA_3,
|
|
};
|
|
|
|
static mtd_spi_nor_t samd51_nor_dev = {
|
|
.base = {
|
|
.driver = &mtd_spi_nor_driver,
|
|
.page_size = 256,
|
|
.pages_per_sector = 16,
|
|
},
|
|
.params = &_samd51_nor_params,
|
|
};
|
|
|
|
MTD_XFA_ADD(samd51_nor_dev, 0);
|
|
|
|
#ifdef MODULE_VFS_DEFAULT
|
|
VFS_AUTO_MOUNT(littlefs2, VFS_MTD(samd51_nor_dev), VFS_DEFAULT_NVM(0), 0);
|
|
#endif
|
|
|
|
#endif /* MODULE_MTD_SPI_NOR */
|