mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
108 lines
2.3 KiB
C
108 lines
2.3 KiB
C
/*
|
|
* Copyright (C) 2022 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 pkg_flashdb
|
|
* @{
|
|
*
|
|
* @file
|
|
* @brief Flash Abstraction Layer partition configuration
|
|
*
|
|
* FlashDB can only use a single MTD device, but allows for multiple
|
|
* named partitions on the MTD device.
|
|
*
|
|
* This file pre-defines up to 4 partitions, if you need more edit
|
|
* this file or provide your own `FAL_PART_TABLE`.
|
|
*
|
|
* @author Benjamin Valentin <benjamin.valentin@ml-pa.com>
|
|
*/
|
|
|
|
#ifndef FAL_CFG_H
|
|
#define FAL_CFG_H
|
|
|
|
#include "board.h"
|
|
|
|
#ifdef __cplusplus
|
|
extern "C" {
|
|
#endif
|
|
|
|
/**
|
|
* @brief Partition table is defined at compile time (not read from flash)
|
|
*/
|
|
#define FAL_PART_HAS_TABLE_CFG
|
|
|
|
/**
|
|
* @brief FAL <-> MTD adapter
|
|
*/
|
|
extern struct fal_flash_dev mtd_flash0;
|
|
|
|
/**
|
|
* @brief flash device table
|
|
*/
|
|
#define FAL_FLASH_DEV_TABLE \
|
|
{ \
|
|
&mtd_flash0, \
|
|
}
|
|
|
|
/**
|
|
* @brief Partition 0
|
|
*/
|
|
#ifdef FAL_PART0_LABEL
|
|
#define FAL_ROW_PART0 { FAL_PART_MAGIC_WORD, FAL_PART0_LABEL, "fal_mtd", \
|
|
0, FAL_PART0_LENGTH, 0 },
|
|
#else
|
|
#define FAL_ROW_PART0
|
|
#endif
|
|
|
|
/**
|
|
* @brief Partition 1
|
|
*/
|
|
#ifdef FAL_PART1_LABEL
|
|
#define FAL_ROW_PART1 { FAL_PART_MAGIC_WORD, FAL_PART1_LABEL, "fal_mtd", \
|
|
FAL_PART0_LENGTH, FAL_PART1_LENGTH, 0 },
|
|
#else
|
|
#define FAL_ROW_PART1
|
|
#endif
|
|
|
|
/**
|
|
* @brief Partition 2
|
|
*/
|
|
#ifdef FAL_PART2_LABEL
|
|
#define FAL_ROW_PART2 { FAL_PART_MAGIC_WORD, FAL_PART2_LABEL, "fal_mtd",
|
|
FAL_PART1_LENGTH, FAL_PART2_LENGTH, 0 },
|
|
#else
|
|
#define FAL_ROW_PART2
|
|
#endif
|
|
|
|
/**
|
|
* @brief Partition 3
|
|
*/
|
|
#ifdef FAL_PART3_LABEL
|
|
#define FAL_ROW_PART3 { FAL_PART_MAGIC_WORD, FAL_PART2_LABEL, "fal_mtd",
|
|
FAL_PART2_LENGTH, FAL_PART3_LENGTH, 0 },
|
|
#else
|
|
#define FAL_ROW_PART3
|
|
#endif
|
|
|
|
/**
|
|
* @brief Partition Table
|
|
*/
|
|
#define FAL_PART_TABLE \
|
|
{ \
|
|
FAL_ROW_PART0 \
|
|
FAL_ROW_PART1 \
|
|
FAL_ROW_PART2 \
|
|
FAL_ROW_PART3 \
|
|
}
|
|
|
|
#ifdef __cplusplus
|
|
}
|
|
#endif
|
|
#endif /* FAL_CFG_H */
|
|
/** @} */
|