b6b039aa808bd8a6dd06c0e860d10c6befaa16e0
   3      Copyright (C) Dean Camera, 2010. 
   5   dean [at] fourwalledcubicle [dot] com 
   6       www.fourwalledcubicle.com 
  10   Copyright 2010  Dean Camera (dean [at] fourwalledcubicle [dot] com) 
  12   Permission to use, copy, modify, distribute, and sell this  
  13   software and its documentation for any purpose is hereby granted 
  14   without fee, provided that the above copyright notice appear in  
  15   all copies and that both that the copyright notice and this 
  16   permission notice and warranty disclaimer appear in supporting  
  17   documentation, and that the name of the author not be used in  
  18   advertising or publicity pertaining to distribution of the  
  19   software without specific, written prior permission. 
  21   The author disclaim all warranties with regard to this 
  22   software, including all implied warranties of merchantability 
  23   and fitness.  In no event shall the author be liable for any 
  24   special, indirect or consequential damages or any damages 
  25   whatsoever resulting from loss of use, data or profits, whether 
  26   in an action of contract, negligence or other tortious action, 
  27   arising out of or in connection with the use or performance of 
  33  *  Target-related functions for the XMEGA target's NVM module. 
  36 #define  INCLUDE_FROM_XMEGA_NVM_C 
  39 #if defined(ENABLE_XPROG_PROTOCOL) || defined(__DOXYGEN__) 
  41 /** Sends the given 32-bit absolute address to the target. 
  43  *  \param[in] AbsoluteAddress  Absolute address to send to the target 
  45 static void XMEGANVM_SendAddress(const uint32_t AbsoluteAddress
) 
  47         /* Send the given 32-bit address to the target, LSB first */ 
  48         XPROGTarget_SendByte(((uint8_t*)&AbsoluteAddress
)[0]); 
  49         XPROGTarget_SendByte(((uint8_t*)&AbsoluteAddress
)[1]); 
  50         XPROGTarget_SendByte(((uint8_t*)&AbsoluteAddress
)[2]); 
  51         XPROGTarget_SendByte(((uint8_t*)&AbsoluteAddress
)[3]); 
  54 /** Sends the given NVM register address to the target. 
  56  *  \param[in] Register  NVM register whose absolute address is to be sent 
  58 static void XMEGANVM_SendNVMRegAddress(const uint8_t Register
) 
  60         /* Determine the absolute register address from the NVM base memory address and the NVM register address */ 
  61         uint32_t Address 
= XPROG_Param_NVMBase 
| Register
; 
  63         /* Send the calculated 32-bit address to the target, LSB first */ 
  64         XMEGANVM_SendAddress(Address
); 
  67 /** Busy-waits while the NVM controller is busy performing a NVM operation, such as a FLASH page read or CRC 
  70  *  \return Boolean true if the NVM controller became ready within the timeout period, false otherwise 
  72 bool XMEGANVM_WaitWhileNVMBusBusy(void) 
  74         /* Poll the STATUS register to check to see if NVM access has been enabled */ 
  75         while (TimeoutMSRemaining
) 
  77                 /* Send the LDCS command to read the PDI STATUS register to see the NVM bus is active */ 
  78                 XPROGTarget_SendByte(PDI_CMD_LDCS 
| PDI_STATUS_REG
); 
  80                 uint8_t StatusRegister 
= XPROGTarget_ReceiveByte(); 
  82                 /* We might have timed out waiting for the status register read response, check here */ 
  83                 if (!(TimeoutMSRemaining
)) 
  86                 /* Check the status register read response to see if the NVM bus is enabled */ 
  87                 if (StatusRegister 
& PDI_STATUS_NVM
) 
  89                         TimeoutMSRemaining 
= COMMAND_TIMEOUT_MS
; 
  93                 /* Manage software timeout */ 
  94                 if (TIFR0 
& (1 << OCF0A
)) 
  96                         TIFR0 
|= (1 << OCF0A
); 
 104 /** Waits while the target's NVM controller is busy performing an operation, exiting if the 
 105  *  timeout period expires. 
 107  *  \return Boolean true if the NVM controller became ready within the timeout period, false otherwise 
 109 bool XMEGANVM_WaitWhileNVMControllerBusy(void) 
 111         /* Poll the NVM STATUS register while the NVM controller is busy */ 
 112         while (TimeoutMSRemaining
) 
 114                 /* Send a LDS command to read the NVM STATUS register to check the BUSY flag */ 
 115                 XPROGTarget_SendByte(PDI_CMD_LDS 
| (PDI_DATSIZE_4BYTES 
<< 2)); 
 116                 XMEGANVM_SendNVMRegAddress(XMEGA_NVM_REG_STATUS
); 
 118                 uint8_t StatusRegister 
= XPROGTarget_ReceiveByte(); 
 120                 /* We might have timed out waiting for the status register read response, check here */ 
 121                 if (!(TimeoutMSRemaining
)) 
 124                 /* Check to see if the BUSY flag is still set */ 
 125                 if (!(StatusRegister 
& (1 << 7))) 
 127                         TimeoutMSRemaining 
= COMMAND_TIMEOUT_MS
; 
 131                 /* Manage software timeout */ 
 132                 if (TIFR0 
& (1 << OCF0A
)) 
 134                         TIFR0 
|= (1 << OCF0A
); 
 135                         TimeoutMSRemaining
--; 
 142 /** Retrieves the CRC value of the given memory space. 
 144  *  \param[in]  CRCCommand  NVM CRC command to issue to the target 
 145  *  \param[out] CRCDest     CRC Destination when read from the target 
 147  *  \return Boolean true if the command sequence complete successfully 
 149 bool XMEGANVM_GetMemoryCRC(const uint8_t CRCCommand
, uint32_t* const CRCDest
) 
 151         /* Wait until the NVM controller is no longer busy */ 
 152         if (!(XMEGANVM_WaitWhileNVMControllerBusy())) 
 155         /* Set the NVM command to the correct CRC read command */ 
 156         XPROGTarget_SendByte(PDI_CMD_STS 
| (PDI_DATSIZE_4BYTES 
<< 2)); 
 157         XMEGANVM_SendNVMRegAddress(XMEGA_NVM_REG_CMD
); 
 158         XPROGTarget_SendByte(CRCCommand
); 
 160         /* Set CMDEX bit in NVM CTRLA register to start the CRC generation */ 
 161         XPROGTarget_SendByte(PDI_CMD_STS 
| (PDI_DATSIZE_4BYTES 
<< 2)); 
 162         XMEGANVM_SendNVMRegAddress(XMEGA_NVM_REG_CTRLA
); 
 163         XPROGTarget_SendByte(1 << 0); 
 165         /* Wait until the NVM bus is ready again */ 
 166         if (!(XMEGANVM_WaitWhileNVMBusBusy())) 
 169         /* Wait until the NVM controller is no longer busy */ 
 170         if (!(XMEGANVM_WaitWhileNVMControllerBusy())) 
 173         /* Load the PDI pointer register with the DAT0 register start address */ 
 174         XPROGTarget_SendByte(PDI_CMD_ST 
| (PDI_POINTER_DIRECT 
<< 2) | PDI_DATSIZE_4BYTES
); 
 175         XMEGANVM_SendNVMRegAddress(XMEGA_NVM_REG_DAT0
); 
 177         /* Send the REPEAT command to grab the CRC bytes */ 
 178         XPROGTarget_SendByte(PDI_CMD_REPEAT 
| PDI_DATSIZE_1BYTE
); 
 179         XPROGTarget_SendByte(XMEGA_CRC_LENGTH 
- 1); 
 181         /* Read in the CRC bytes from the target */ 
 182         XPROGTarget_SendByte(PDI_CMD_LD 
| (PDI_POINTER_INDIRECT_PI 
<< 2) | PDI_DATSIZE_1BYTE
); 
 183         for (uint8_t i 
= 0; i 
< XMEGA_CRC_LENGTH
; i
++) 
 184           ((uint8_t*)CRCDest
)[i
] = XPROGTarget_ReceiveByte(); 
 186         return (TimeoutMSRemaining 
!= 0); 
 189 /** Reads memory from the target's memory spaces. 
 191  *  \param[in]  ReadAddress  Start address to read from within the target's address space 
 192  *  \param[out] ReadBuffer   Buffer to store read data into 
 193  *  \param[in]  ReadSize     Number of bytes to read 
 195  *  \return Boolean true if the command sequence complete successfully 
 197 bool XMEGANVM_ReadMemory(const uint32_t ReadAddress
, uint8_t* ReadBuffer
, uint16_t ReadSize
) 
 199         /* Wait until the NVM controller is no longer busy */ 
 200         if (!(XMEGANVM_WaitWhileNVMControllerBusy())) 
 203         /* Send the READNVM command to the NVM controller for reading of an arbitrary location */ 
 204         XPROGTarget_SendByte(PDI_CMD_STS 
| (PDI_DATSIZE_4BYTES 
<< 2)); 
 205         XMEGANVM_SendNVMRegAddress(XMEGA_NVM_REG_CMD
); 
 206         XPROGTarget_SendByte(XMEGA_NVM_CMD_READNVM
); 
 208         /* Load the PDI pointer register with the start address we want to read from */ 
 209         XPROGTarget_SendByte(PDI_CMD_ST 
| (PDI_POINTER_DIRECT 
<< 2) | PDI_DATSIZE_4BYTES
); 
 210         XMEGANVM_SendAddress(ReadAddress
); 
 212         /* Send the REPEAT command with the specified number of bytes to read */ 
 213         XPROGTarget_SendByte(PDI_CMD_REPEAT 
| PDI_DATSIZE_1BYTE
); 
 214         XPROGTarget_SendByte(ReadSize 
- 1); 
 216         /* Send a LD command with indirect access and postincrement to read out the bytes */ 
 217         XPROGTarget_SendByte(PDI_CMD_LD 
| (PDI_POINTER_INDIRECT_PI 
<< 2) | PDI_DATSIZE_1BYTE
); 
 218         while (ReadSize
-- && TimeoutMSRemaining
) 
 219           *(ReadBuffer
++) = XPROGTarget_ReceiveByte(); 
 221         return (TimeoutMSRemaining 
!= 0); 
 224 /** Writes byte addressed memory to the target's memory spaces. 
 226  *  \param[in]  WriteCommand  Command to send to the device to write each memory byte 
 227  *  \param[in]  WriteAddress  Address to write to within the target's address space 
 228  *  \param[in]  Byte          Byte to write to the target 
 230  *  \return Boolean true if the command sequence complete successfully 
 232 bool XMEGANVM_WriteByteMemory(const uint8_t WriteCommand
, const uint32_t WriteAddress
, const uint8_t Byte
) 
 234         /* Wait until the NVM controller is no longer busy */ 
 235         if (!(XMEGANVM_WaitWhileNVMControllerBusy())) 
 238         /* Send the memory write command to the target */ 
 239         XPROGTarget_SendByte(PDI_CMD_STS 
| (PDI_DATSIZE_4BYTES 
<< 2)); 
 240         XMEGANVM_SendNVMRegAddress(XMEGA_NVM_REG_CMD
); 
 241         XPROGTarget_SendByte(WriteCommand
); 
 243         /* Send new memory byte to the memory to the target */ 
 244         XPROGTarget_SendByte(PDI_CMD_STS 
| (PDI_DATSIZE_4BYTES 
<< 2)); 
 245         XMEGANVM_SendAddress(WriteAddress
); 
 246         XPROGTarget_SendByte(Byte
); 
 251 /** Writes page addressed memory to the target's memory spaces. 
 253  *  \param[in]  WriteBuffCommand  Command to send to the device to write a byte to the memory page buffer 
 254  *  \param[in]  EraseBuffCommand  Command to send to the device to erase the memory page buffer 
 255  *  \param[in]  WritePageCommand  Command to send to the device to write the page buffer to the destination memory 
 256  *  \param[in]  PageMode          Bitfield indicating what operations need to be executed on the specified page 
 257  *  \param[in]  WriteAddress      Start address to write the page data to within the target's address space 
 258  *  \param[in]  WriteBuffer       Buffer to source data from 
 259  *  \param[in]  WriteSize         Number of bytes to write 
 261  *  \return Boolean true if the command sequence complete successfully 
 263 bool XMEGANVM_WritePageMemory(const uint8_t WriteBuffCommand
, const uint8_t EraseBuffCommand
, 
 264                               const uint8_t WritePageCommand
, const uint8_t PageMode
, const uint32_t WriteAddress
, 
 265                               const uint8_t* WriteBuffer
, uint16_t WriteSize
) 
 267         if (PageMode 
& XPRG_PAGEMODE_ERASE
) 
 269                 /* Wait until the NVM controller is no longer busy */ 
 270                 if (!(XMEGANVM_WaitWhileNVMControllerBusy())) 
 273                 /* Send the memory buffer erase command to the target */ 
 274                 XPROGTarget_SendByte(PDI_CMD_STS 
| (PDI_DATSIZE_4BYTES 
<< 2)); 
 275                 XMEGANVM_SendNVMRegAddress(XMEGA_NVM_REG_CMD
); 
 276                 XPROGTarget_SendByte(EraseBuffCommand
); 
 278                 /* Set CMDEX bit in NVM CTRLA register to start the buffer erase */ 
 279                 XPROGTarget_SendByte(PDI_CMD_STS 
| (PDI_DATSIZE_4BYTES 
<< 2)); 
 280                 XMEGANVM_SendNVMRegAddress(XMEGA_NVM_REG_CTRLA
); 
 281                 XPROGTarget_SendByte(1 << 0); 
 286                 /* Wait until the NVM controller is no longer busy */ 
 287                 if (!(XMEGANVM_WaitWhileNVMControllerBusy())) 
 290                 /* Send the memory buffer write command to the target */ 
 291                 XPROGTarget_SendByte(PDI_CMD_STS 
| (PDI_DATSIZE_4BYTES 
<< 2)); 
 292                 XMEGANVM_SendNVMRegAddress(XMEGA_NVM_REG_CMD
); 
 293                 XPROGTarget_SendByte(WriteBuffCommand
); 
 295                 /* Load the PDI pointer register with the start address we want to write to */ 
 296                 XPROGTarget_SendByte(PDI_CMD_ST 
| (PDI_POINTER_DIRECT 
<< 2) | PDI_DATSIZE_4BYTES
); 
 297                 XMEGANVM_SendAddress(WriteAddress
); 
 299                 /* Send the REPEAT command with the specified number of bytes to write */ 
 300                 XPROGTarget_SendByte(PDI_CMD_REPEAT 
| PDI_DATSIZE_1BYTE
); 
 301                 XPROGTarget_SendByte(WriteSize 
- 1); 
 303                 /* Send a ST command with indirect access and postincrement to write the bytes */ 
 304                 XPROGTarget_SendByte(PDI_CMD_ST 
| (PDI_POINTER_INDIRECT_PI 
<< 2) | PDI_DATSIZE_1BYTE
); 
 306                   XPROGTarget_SendByte(*(WriteBuffer
++)); 
 309         if (PageMode 
& XPRG_PAGEMODE_WRITE
) 
 311                 /* Wait until the NVM controller is no longer busy */ 
 312                 if (!(XMEGANVM_WaitWhileNVMControllerBusy())) 
 315                 /* Send the memory write command to the target */ 
 316                 XPROGTarget_SendByte(PDI_CMD_STS 
| (PDI_DATSIZE_4BYTES 
<< 2)); 
 317                 XMEGANVM_SendNVMRegAddress(XMEGA_NVM_REG_CMD
); 
 318                 XPROGTarget_SendByte(WritePageCommand
); 
 320                 /* Send the address of the first page location to write the memory page */ 
 321                 XPROGTarget_SendByte(PDI_CMD_STS 
| (PDI_DATSIZE_4BYTES 
<< 2)); 
 322                 XMEGANVM_SendAddress(WriteAddress
); 
 323                 XPROGTarget_SendByte(0x00); 
 329 /** Erases a specific memory space of the target. 
 331  *  \param[in] EraseCommand  NVM erase command to send to the device 
 332  *  \param[in] Address  Address inside the memory space to erase 
 334  *  \return Boolean true if the command sequence complete successfully 
 336 bool XMEGANVM_EraseMemory(const uint8_t EraseCommand
, const uint32_t Address
) 
 338         /* Wait until the NVM controller is no longer busy */ 
 339         if (!(XMEGANVM_WaitWhileNVMControllerBusy())) 
 342         /* Send the memory erase command to the target */ 
 343         XPROGTarget_SendByte(PDI_CMD_STS 
| (PDI_DATSIZE_4BYTES 
<< 2)); 
 344         XMEGANVM_SendNVMRegAddress(XMEGA_NVM_REG_CMD
); 
 345         XPROGTarget_SendByte(EraseCommand
); 
 347         /* Chip erase is handled separately, since it's procedure is different to other erase types */ 
 348         if (EraseCommand 
== XMEGA_NVM_CMD_CHIPERASE
) 
 350                 /* Set CMDEX bit in NVM CTRLA register to start the chip erase */ 
 351                 XPROGTarget_SendByte(PDI_CMD_STS 
| (PDI_DATSIZE_4BYTES 
<< 2)); 
 352                 XMEGANVM_SendNVMRegAddress(XMEGA_NVM_REG_CTRLA
); 
 353                 XPROGTarget_SendByte(1 << 0);            
 357                 /* Other erase modes just need us to address a byte within the target memory space */ 
 358                 XPROGTarget_SendByte(PDI_CMD_STS 
| (PDI_DATSIZE_4BYTES 
<< 2)); 
 359                 XMEGANVM_SendAddress(Address
); 
 360                 XPROGTarget_SendByte(0x00); 
 363         /* Wait until the NVM bus is ready again */ 
 364         if (!(XMEGANVM_WaitWhileNVMBusBusy()))