test

Fork of nRF51822 by Nordic Semiconductor

Embed: (wiki syntax)

« Back to documentation index

Show/hide line numbers dfu_types.h Source File

dfu_types.h

Go to the documentation of this file.
00001 /*
00002  * Copyright (c) Nordic Semiconductor ASA
00003  * All rights reserved.
00004  *
00005  * Redistribution and use in source and binary forms, with or without modification,
00006  * are permitted provided that the following conditions are met:
00007  *
00008  *   1. Redistributions of source code must retain the above copyright notice, this
00009  *   list of conditions and the following disclaimer.
00010  *
00011  *   2. Redistributions in binary form must reproduce the above copyright notice, this
00012  *   list of conditions and the following disclaimer in the documentation and/or
00013  *   other materials provided with the distribution.
00014  *
00015  *   3. Neither the name of Nordic Semiconductor ASA nor the names of other
00016  *   contributors to this software may be used to endorse or promote products
00017  *   derived from this software without specific prior written permission.
00018  *
00019  *
00020  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS" AND
00021  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
00022  * WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
00023  * DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER OR CONTRIBUTORS BE LIABLE FOR
00024  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
00025  * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
00026  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
00027  * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
00028  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
00029  * SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
00030  *
00031  */
00032 
00033 /**@file
00034  *
00035  * @defgroup nrf_dfu_types Types and definitions.
00036  * @{
00037  *
00038  * @ingroup nrf_dfu
00039  *
00040  * @brief Device Firmware Update module type and definitions.
00041  */
00042 
00043 #ifndef DFU_TYPES_H__
00044 #define DFU_TYPES_H__
00045 
00046 #include <stdint.h>
00047 #include "nrf51.h"
00048 #include "app_util.h"
00049 
00050 /**@brief Structure holding SoftDevice information to be used by the Bootloader/DFU. 
00051  *        Only size field is used.
00052  */
00053 typedef struct
00054 {
00055     uint8_t  info_size;                                                                                 /**< Not used. */
00056     uint8_t  reserved1[3];                                                                              /**< Not used. */
00057     uint32_t magic_number;                                                                              /**< Not used. */
00058     uint32_t softdevice_size;                                                                           /**< Size field containing the size of installed SoftDevice. */
00059     uint16_t firmware_id;                                                                               /**< Firmware id. */
00060     uint8_t  reserved2[2];                                                                                 /**< Not used. */
00061 } SOFTDEVICE_INFORMATION_Type;
00062 
00063 #define SOFTDEVICE_INFORMATION_BASE     0x0003000                                                       /**< Location in the SoftDevice image which holds the SoftDevice informations. */
00064 #define SOFTDEVICE_INFORMATION          ((SOFTDEVICE_INFORMATION_Type *) SOFTDEVICE_INFORMATION_BASE)   /**< Make SoftDevice information accessible through the structure. */
00065 
00066 #define NRF_UICR_BOOT_START_ADDRESS     (NRF_UICR_BASE + 0x14)                                          /**< Register where the bootloader start address is stored in the UICR register. */
00067 
00068 #define CODE_REGION_1_START             SOFTDEVICE_INFORMATION->softdevice_size                         /**< This field should correspond to the size of Code Region 0, (which is identical to Start of Code Region 1), found in UICR.CLEN0 register. This value is used for compile safety, as the linker will fail if application expands into bootloader. Runtime, the bootloader will use the value found in UICR.CLEN0. */
00069 
00070 #define SOFTDEVICE_REGION_START         0x00001000                                                      /**< This field should correspond to start address of the bootloader, found in UICR.RESERVED, 0x10001014, register. This value is used for sanity check, so the bootloader will fail immediately if this value differs from runtime value. The value is used to determine max application size for updating. */
00071 #define BOOTLOADER_REGION_START         0x0003C000                                                      /**< This field should correspond to start address of the bootloader, found in UICR.RESERVED, 0x10001014, register. This value is used for sanity check, so the bootloader will fail immediately if this value differs from runtime value. The value is used to determine max application size for updating. */
00072 #define BOOTLOADER_SETTINGS_ADDRESS     0x0003FC00                                                      /**< The field specifies the page location of the bootloader settings address. */
00073 
00074 #define DFU_REGION_TOTAL_SIZE           (BOOTLOADER_REGION_START - CODE_REGION_1_START)                 /**< Total size of the region between SD and Bootloader. */
00075 
00076 #define DFU_APP_DATA_RESERVED           0x0000                                                          /**< Size of Application Data that must be preserved between application updates. This value must be a multiple of page size. Page size is 0x400 (1024d) bytes, thus this value must be 0x0000, 0x0400, 0x0800, 0x0C00, 0x1000, etc. */
00077 #define DFU_BANK_PADDING                (DFU_APP_DATA_RESERVED % (2 * CODE_PAGE_SIZE))                  /**< Padding to ensure that image size banked is always page sized. */
00078 #define DFU_IMAGE_MAX_SIZE_FULL         (DFU_REGION_TOTAL_SIZE - DFU_APP_DATA_RESERVED)                 /**< Maximum size of an application, excluding save data from the application. */
00079 #define DFU_IMAGE_MAX_SIZE_BANKED       ((DFU_REGION_TOTAL_SIZE - \
00080                                           DFU_APP_DATA_RESERVED - \
00081                                           DFU_BANK_PADDING) / 2)                                        /**< Maximum size of an application, excluding save data from the application. */
00082 
00083 #define DFU_BL_IMAGE_MAX_SIZE           (BOOTLOADER_SETTINGS_ADDRESS - BOOTLOADER_REGION_START)         /**< Maximum size of a bootloader, excluding save data from the current bootloader. */
00084 
00085 #define DFU_BANK_0_REGION_START         CODE_REGION_1_START                                             /**< Bank 0 region start. */
00086 #define DFU_BANK_1_REGION_START         (DFU_BANK_0_REGION_START + DFU_IMAGE_MAX_SIZE_BANKED)           /**< Bank 1 region start. */
00087 
00088 #define CODE_PAGE_SIZE                  0x0400                                                          /**< Size of a flash codepage. Used for size of the reserved flash space in the bootloader region. Will be runtime checked against NRF_UICR->CODEPAGESIZE to ensure the region is correct. */
00089 #define EMPTY_FLASH_MASK                0xFFFFFFFF                                                      /**< Bit mask that defines an empty address in flash. */
00090 
00091 #define INVALID_PACKET                  0x00                                                            /**< Invalid packet identifies. */
00092 #define INIT_PACKET                     0x01                                                            /**< Packet identifies for initialization packet. */
00093 #define STOP_INIT_PACKET                0x02                                                            /**< Packet identifies for stop initialization packet. Used when complete init packet has been received so that the init packet can be used for pre validaiton. */
00094 #define START_PACKET                    0x03                                                            /**< Packet identifies for the Data Start Packet. */
00095 #define DATA_PACKET                     0x04                                                            /**< Packet identifies for a Data Packet. */
00096 #define STOP_DATA_PACKET                0x05                                                            /**< Packet identifies for the Data Stop Packet. */
00097 
00098 #define DFU_UPDATE_SD                   0x01                                                            /**< Bit field indicating update of SoftDevice is ongoing. */
00099 #define DFU_UPDATE_BL                   0x02                                                            /**< Bit field indicating update of bootloader is ongoing. */
00100 #define DFU_UPDATE_APP                  0x04                                                            /**< Bit field indicating update of application is ongoing. */
00101 
00102 #define DFU_INIT_RX                     0x00                                                            /**< Op Code identifies for receiving init packet. */
00103 #define DFU_INIT_COMPLETE               0x01                                                            /**< Op Code identifies for transmission complete of init packet. */
00104 
00105 // Safe guard to ensure during compile time that the DFU_APP_DATA_RESERVED is a multiple of page size.
00106 STATIC_ASSERT((((DFU_APP_DATA_RESERVED) & (CODE_PAGE_SIZE - 1)) == 0x00));
00107 
00108 /**@brief Structure holding a start packet containing update mode and image sizes.
00109  */
00110 typedef struct
00111 {
00112     uint8_t  dfu_update_mode;                                                                           /**< Packet type, used to identify the content of the received packet referenced by data packet. */
00113     uint32_t sd_image_size;                                                                             /**< Size of the SoftDevice image to be transferred. Zero if no SoftDevice image will be transfered. */
00114     uint32_t bl_image_size;                                                                             /**< Size of the Bootloader image to be transferred. Zero if no Bootloader image will be transfered. */
00115     uint32_t app_image_size;                                                                            /**< Size of the application image to be transmitted. Zero if no Bootloader image will be transfered. */
00116 } dfu_start_packet_t;
00117 
00118 /**@brief Structure holding a bootloader init/data packet received.
00119  */
00120 typedef struct
00121 {
00122     uint32_t   packet_length;                                                                           /**< Packet length of the data packet. Each data is word size, meaning length of 4 is 4 words, not bytes. */
00123     uint32_t * p_data_packet;                                                                           /**< Data Packet received. Each data is a word size entry. */
00124 } dfu_data_packet_t;
00125 
00126 /**@brief Structure for holding dfu update packet. Packet type indicate the type of packet.
00127  */
00128 typedef struct
00129 {
00130     uint32_t   packet_type;                                                                             /**< Packet type, used to identify the content of the received packet referenced by data packet. */
00131     union
00132     {
00133         dfu_data_packet_t    data_packet;                                                               /**< Used when packet type is INIT_PACKET or DATA_PACKET. Packet contains data received for init or data. */
00134         dfu_start_packet_t * start_packet;                                                              /**< Used when packet type is START_DATA_PACKET. Will contain information on software to be updtaed, i.e. SoftDevice, Bootloader and/or Application along with image sizes. */
00135     } params;
00136 } dfu_update_packet_t;
00137 
00138 /**@brief DFU status error codes.
00139 */
00140 typedef enum
00141 {
00142     DFU_UPDATE_APP_COMPLETE,                                                                            /**< Status update of application complete.*/
00143     DFU_UPDATE_SD_COMPLETE,                                                                             /**< Status update of SoftDevice update complete. Note that this solely indicates that a new SoftDevice has been received and stored in bank 0 and 1. */
00144     DFU_UPDATE_SD_SWAPPED,                                                                              /**< Status update of SoftDevice update complete. Note that this solely indicates that a new SoftDevice has been received and stored in bank 0 and 1. */
00145     DFU_UPDATE_BOOT_COMPLETE,                                                                           /**< Status update complete.*/
00146     DFU_BANK_0_ERASED,                                                                                  /**< Status bank 0 erased.*/
00147     DFU_TIMEOUT,                                                                                        /**< Status timeout.*/
00148     DFU_RESET                                                                                           /**< Status Reset to indicate current update procedure has been aborted and system should reset. */
00149 } dfu_update_status_code_t;
00150 
00151 /**@brief Structure holding DFU complete event.
00152 */
00153 typedef struct
00154 {
00155     dfu_update_status_code_t status_code;                                                               /**< Device Firmware Update status. */
00156     uint16_t                 app_crc;                                                                   /**< CRC of the recieved application. */
00157     uint32_t                 sd_size;                                                                   /**< Size of the recieved SoftDevice. */
00158     uint32_t                 bl_size;                                                                   /**< Size of the recieved BootLoader. */
00159     uint32_t                 app_size;                                                                  /**< Size of the recieved Application. */
00160     uint32_t                 sd_image_start;                                                            /**< Location in flash where the received SoftDevice image is stored. */
00161 } dfu_update_status_t;
00162 
00163 /**@brief Update complete handler type. */
00164 typedef void (*dfu_complete_handler_t)(dfu_update_status_t dfu_update_status);
00165 
00166 #endif // DFU_TYPES_H__
00167 
00168 /**@} */