Contiki-NG
pstorage_platform.h
1 /* Copyright (c) 2013 Nordic Semiconductor. All Rights Reserved.
2  *
3  * The information contained herein is property of Nordic Semiconductor ASA.
4  * Terms and conditions of usage are described in detail in NORDIC
5  * SEMICONDUCTOR STANDARD SOFTWARE LICENSE AGREEMENT.
6  *
7  * Licensees are granted free, non-transferable use of the information. NO
8  * WARRANTY of ANY KIND is provided. This heading must NOT be removed from
9  * the file.
10  *
11  */
12 
13  /** @cond To make doxygen skip this file */
14 
15 /** @file
16  * This header contains defines with respect persistent storage that are specific to
17  * persistent storage implementation and application use case.
18  */
19 #ifndef PSTORAGE_PL_H__
20 #define PSTORAGE_PL_H__
21 
22 #include <stdint.h>
23 #include "nrf.h"
24 
25 static __INLINE uint16_t pstorage_flash_page_size()
26 {
27  return (uint16_t)NRF_FICR->CODEPAGESIZE;
28 }
29 
30 #define PSTORAGE_FLASH_PAGE_SIZE pstorage_flash_page_size() /**< Size of one flash page. */
31 #define PSTORAGE_FLASH_EMPTY_MASK 0xFFFFFFFF /**< Bit mask that defines an empty address in flash. */
32 
33 #ifdef NRF51
34 #define BOOTLOADER_ADDRESS (NRF_UICR->BOOTLOADERADDR)
35 #elif defined NRF52
36 #define BOOTLOADER_ADDRESS (PSTORAGE_FLASH_EMPTY_MASK)
37 #endif
38 
39 #define PSTORAGE_FLASH_PAGE_END \
40  ((BOOTLOADER_ADDRESS != PSTORAGE_FLASH_EMPTY_MASK) \
41  ? (BOOTLOADER_ADDRESS / PSTORAGE_FLASH_PAGE_SIZE) \
42  : NRF_FICR->CODESIZE)
43 
44 
45 #define PSTORAGE_NUM_OF_PAGES 2 /**< Number of flash pages allocated for the pstorage module excluding the swap page, configurable based on system requirements. */
46 #define PSTORAGE_MIN_BLOCK_SIZE 0x0010 /**< Minimum size of block that can be registered with the module. Should be configured based on system requirements, recommendation is not have this value to be at least size of word. */
47 
48 #define PSTORAGE_DATA_START_ADDR ((PSTORAGE_FLASH_PAGE_END - PSTORAGE_NUM_OF_PAGES - 1) \
49  * PSTORAGE_FLASH_PAGE_SIZE) /**< Start address for persistent data, configurable according to system requirements. */
50 #define PSTORAGE_DATA_END_ADDR ((PSTORAGE_FLASH_PAGE_END - 1) * PSTORAGE_FLASH_PAGE_SIZE) /**< End address for persistent data, configurable according to system requirements. */
51 #define PSTORAGE_SWAP_ADDR PSTORAGE_DATA_END_ADDR /**< Top-most page is used as swap area for clear and update. */
52 
53 #define PSTORAGE_MAX_BLOCK_SIZE PSTORAGE_FLASH_PAGE_SIZE /**< Maximum size of block that can be registered with the module. Should be configured based on system requirements. And should be greater than or equal to the minimum size. */
54 #define PSTORAGE_CMD_QUEUE_SIZE 30 /**< Maximum number of flash access commands that can be maintained by the module for all applications. Configurable. */
55 
56 
57 /** Abstracts persistently memory block identifier. */
58 typedef uint32_t pstorage_block_t;
59 
60 typedef struct
61 {
62  uint32_t module_id; /**< Module ID.*/
63  pstorage_block_t block_id; /**< Block ID.*/
64 } pstorage_handle_t;
65 
66 typedef uint16_t pstorage_size_t; /** Size of length and offset fields. */
67 
68 /**\brief Handles Flash Access Result Events. To be called in the system event dispatcher of the application. */
69 void pstorage_sys_event_handler (uint32_t sys_evt);
70 
71 #endif // PSTORAGE_PL_H__
72 
73 /** @} */
74 /** @endcond */