Openwear requires RC oscillator to be used
Fork of nRF51822 by
nordic/nrf-sdk/s110/nrf_mbr.h
- Committer:
- janekm
- Date:
- 2014-09-04
- Revision:
- 62:4dfe75dd5769
- Parent:
- 37:c29c330d942c
File content as of revision 62:4dfe75dd5769:
/* * Copyright (c) 2014 Nordic Semiconductor. All Rights Reserved. * * The information contained herein is confidential property of Nordic Semiconductor. The use, * copying, transfer or disclosure of such information is prohibited except by express written * agreement with Nordic Semiconductor. * */ /** @defgroup nrf_mbr_api Master Boot Record API @{ @brief APIs for updating SoftDevice and BootLoader */ /* Header guard */ #ifndef NRF_MBR_H__ #define NRF_MBR_H__ #include "nrf_svc.h" #include <stdint.h> /** @addtogroup NRF_MBR_DEFINES Defines * @{ */ /**@brief MBR SVC Base number. */ #define MBR_SVC_BASE 0x18 /** @} */ /** @addtogroup NRF_MBR_ENUMS Enumerations * @{ */ /**@brief nRF Master Boot Record API SVC numbers. */ enum NRF_MBR_SVCS { SD_MBR_COMMAND = MBR_SVC_BASE, /**< ::sd_mbr_command */ }; /**@brief Possible values for ::sd_mbr_command_t.command */ enum NRF_MBR_COMMANDS { SD_MBR_COMMAND_COPY_BL, /**< Copy a new a new BootLoader. @see sd_mbr_command_copy_bl_t */ SD_MBR_COMMAND_COPY_SD, /**< Copy a new SoftDevice. @see ::sd_mbr_command_copy_sd_t*/ SD_MBR_COMMAND_INIT_SD, /**< Init forwarding interrupts to SD, and run reset function in SD*/ SD_MBR_COMMAND_COMPARE, /**< This command works like memcmp. @see ::sd_mbr_command_compare_t*/ SD_MBR_COMMAND_VECTOR_TABLE_BASE_SET, /**< Start forwarding all exception to this address @see ::sd_mbr_command_vector_table_base_set_t*/ }; /** @} */ /** @addtogroup NRF_MBR_TYPES Types * @{ */ /**@brief This command copies part of a new SoftDevice * The destination area is erased before copying. * If dst is in the middle of a flash page, that whole flash page will be erased. * If (dst+len) is in the middle of a flash page, that whole flash page will be erased. * * The user of this function is responsible for setting the PROTENSET registers. * * @retval ::NRF_SUCCESS indicates that the contents of the memory blocks where copied correctly. * @retval ::NRF_ERROR_INTERNAL indicates that the contents of the memory blocks where not verified correctly after copying. */ typedef struct { uint32_t *src; /**< Pointer to the source of data to be copied.*/ uint32_t *dst; /**< Pointer to the destination where the content is to be copied.*/ uint32_t len; /**< Number of 32 bit words to copy. Must be a multiple of 256 words*/ }sd_mbr_command_copy_sd_t; /**@brief This command works like memcmp, but takes the length in words. * * @retval ::NRF_SUCCESS indicates that the contents of both memory blocks are equal. * @retval ::NRF_ERROR_NULL indicates that the contents of the memory blocks are not equal. */ typedef struct { uint32_t *ptr1; /**< Pointer to block of memory */ uint32_t *ptr2; /**< Pointer to block of memory */ uint32_t len; /**< Number of 32 bit words to compare*/ }sd_mbr_command_compare_t; /**@brief This command copies a new BootLoader. * With this command, destination of BootLoader is always the address written in NRF_UICR->BOOTADDR. * * Destination is erased by this function. * If (destination+bl_len) is in the middle of a flash page, that whole flash page will be erased. * * This function will use PROTENSET to protect the flash that is not intended to be written. * * On Success, this function will not return. It will start the new BootLoader from reset-vector as normal. * * @retval ::NRF_ERROR_INVALID_STATE indicates that something was wrong. * @retval ::NRF_ERROR_INTERNAL indicates an internal error that should not happen. * @retval ::NRF_ERROR_FORBIDDEN if NRF_UICR->BOOTADDR is not set * @retval ::NRF_ERROR_INVALID_LENGTH is invalid. */ typedef struct { uint32_t *bl_src; /**< Pointer to the source of the Bootloader to be be copied.*/ uint32_t bl_len; /**< Number of 32 bit words to copy for BootLoader */ }sd_mbr_command_copy_bl_t; /**@brief Sets the base address of the interrupt vector table for interrupts forwarded from the MBR * * Once this function has been called, this address is where the MBR will start to forward interrupts to after a reset. * * To restore default forwarding thiss function should be called with @param address set to 0. * The MBR will then start forwarding to interrupts to the adress in NFR_UICR->BOOTADDR or to the SoftDevice if the BOOTADDR is not set. * * @retval ::NRF_SUCCESS */ typedef struct { uint32_t address; /**< The base address of the interrupt vector table for forwarded interrupts.*/ }sd_mbr_command_vector_table_base_set_t; typedef struct { uint32_t command; /**< type of command to be issued see @ref NRF_MBR_COMMANDS. */ union { sd_mbr_command_copy_sd_t copy_sd; /**< Parameters for copy*/ sd_mbr_command_copy_bl_t copy_bl; /**< Parameters for copy SoftDevice and BootLoader*/ sd_mbr_command_compare_t compare; /**< Parameters for verify*/ sd_mbr_command_vector_table_base_set_t base_set; /**< Parameters for vector table base set.*/ } params; }sd_mbr_command_t; /** @} */ /** @addtogroup NRF_MBR_FUNCTIONS Functions * @{ */ /**@brief Issue Master Boot Record commands * * Commands used when updating a SoftDevice and bootloader * * @param[in] param Pointer to a struct describing the command * *@note for retvals see ::sd_mbr_command_copy_sd_t ::sd_mbr_command_copy_bl_t ::sd_mbr_command_compare_t */ SVCALL(SD_MBR_COMMAND, uint32_t, sd_mbr_command(sd_mbr_command_t* param)); /** @} */ #endif // NRF_MBR_H__ /** @} */