3      Copyright (C) Dean Camera, 2014. 
   5   dean [at] fourwalledcubicle [dot] com 
  10   Copyright 2014  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 disclaims 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 
  32  *  \brief Master include file for the board dataflash IC driver. 
  33  *  \brief Atmel Dataflash storage IC board hardware driver. 
  35  *  This file is the master dispatch header file for the board-specific Atmel dataflash driver, for boards containing 
  36  *  Atmel Dataflash ICs for external non-volatile storage. 
  38  *  User code should include this file, which will in turn include the correct dataflash driver header file for 
  39  *  the currently selected board. 
  41  *  If the \c BOARD value is set to \c BOARD_USER, this will include the \c /Board/Dataflash.h file in the user project 
  44  *  For possible \c BOARD makefile values, see \ref Group_BoardTypes. 
  47 /** \ingroup Group_BoardDrivers 
  48  *  \defgroup Group_Dataflash Dataflash Driver - LUFA/Drivers/Board/Dataflash.h 
  49  *  \brief Atmel Dataflash storage IC board hardware driver. 
  51  *  \section Sec_Dataflash_Dependencies Module Source Dependencies 
  52  *  The following files must be built with any user project that uses this module: 
  55  *  \section Sec_Dataflash_ModDescription Module Description 
  56  *  Dataflash driver. This module provides an easy to use interface for the Dataflash ICs located on many boards, 
  57  *  for the storage of large amounts of data into the Dataflash's non-volatile memory. 
  59  *  If the \c BOARD value is set to \c BOARD_USER, this will include the \c /Board/Dataflash.h file in the user project 
  60  *  directory. Otherwise, it will include the appropriate built-in board driver header file. 
  62  *  For possible \c BOARD makefile values, see \ref Group_BoardTypes. 
  64  *  \section Sec_Dataflash_ExampleUsage Example Usage 
  65  *  The following snippet is an example of how this module may be used within a typical 
  69  *      // Initialize the SPI and board Dataflash drivers before first use 
  70  *      SPI_Init(SPI_SPEED_FCPU_DIV_2 | SPI_ORDER_MSB_FIRST | SPI_SCK_LEAD_FALLING | 
  71  *               SPI_SAMPLE_TRAILING | SPI_MODE_MASTER); 
  74  *      uint8_t WriteBuffer[DATAFLASH_PAGE_SIZE]; 
  75  *      uint8_t ReadBuffer[DATAFLASH_PAGE_SIZE]; 
  77  *      // Fill page write buffer with a repeating pattern 
  78  *      for (uint16_t i = 0; i < DATAFLASH_PAGE_SIZE; i++) 
  79  *        WriteBuffer[i] = (i & 0xFF); 
  81  *      // Must select the chip of interest first before operating on it 
  82  *      Dataflash_SelectChip(DATAFLASH_CHIP1); 
  84  *      // Write to the Dataflash's first internal memory buffer 
  85  *      printf("Writing data to first dataflash buffer:\r\n"); 
  86  *      Dataflash_SendByte(DF_CMD_BUFF1WRITE); 
  87  *      Dataflash_SendAddressBytes(0, 0); 
  89  *      for (uint16_t i = 0; i < DATAFLASH_PAGE_SIZE; i++) 
  90  *        Dataflash_SendByte(WriteBuffer[i]); 
  92  *      // Commit the Dataflash's first memory buffer to the non-volatile FLASH memory 
  93  *      printf("Committing page to non-volatile memory page index 5:\r\n"); 
  94  *      Dataflash_SendByte(DF_CMD_BUFF1TOMAINMEMWITHERASE); 
  95  *      Dataflash_SendAddressBytes(5, 0); 
  96  *      Dataflash_WaitWhileBusy(); 
  98  *      // Read the page from non-volatile FLASH memory into the Dataflash's second memory buffer 
  99  *      printf("Reading data into second dataflash buffer:\r\n"); 
 100  *      Dataflash_SendByte(DF_CMD_MAINMEMTOBUFF2); 
 101  *      Dataflash_SendAddressBytes(5, 0); 
 102  *      Dataflash_WaitWhileBusy(); 
 104  *      // Read the Dataflash's second internal memory buffer 
 105  *      Dataflash_SendByte(DF_CMD_BUFF2READ); 
 106  *      Dataflash_SendAddressBytes(0, 0); 
 108  *      for (uint16_t i = 0; i < DATAFLASH_PAGE_SIZE; i++) 
 109  *        ReadBuffer[i] = Dataflash_ReceiveByte(); 
 111  *      // Deselect the chip after use 
 112  *      Dataflash_DeselectChip(); 
 118 #ifndef __DATAFLASH_H__ 
 119 #define __DATAFLASH_H__ 
 122                 #define __INCLUDE_FROM_DATAFLASH_H 
 125                 #include "../../Common/Common.h" 
 127         /* Enable C linkage for C++ Compilers: */ 
 128                 #if defined(__cplusplus) 
 132         /* Public Interface - May be used in end-application: */ 
 134                         /** Retrieves the Dataflash chip select mask for the given Dataflash chip index. 
 136                          *  \attention This macro will only work correctly on chip index numbers that are compile-time 
 137                          *             constants defined by the preprocessor. 
 139                          *  \param[in] index  Index of the dataflash chip mask to retrieve. 
 141                          *  \return Mask for the given Dataflash chip's /CS pin 
 143                         #define DATAFLASH_CHIP_MASK(index)      CONCAT_EXPANDED(DATAFLASH_CHIP, index) 
 145                 /* Inline Functions: */ 
 146                         /** Initializes the dataflash driver so that commands and data may be sent to an attached dataflash IC. 
 148                          *  \note The microcontroller's physical interface driver connected to the Dataflash IC must be initialized before 
 149                          *        any of the dataflash commands are used. This is usually a SPI hardware port, but on some devices/boards may 
 150                          *        be a USART operating in SPI Master mode. 
 152                         static inline void Dataflash_Init(void); 
 154                         /** Determines the currently selected dataflash chip. 
 156                          *  \return Mask of the currently selected Dataflash chip, either \ref DATAFLASH_NO_CHIP if no chip is selected 
 157                          *  or a \c DATAFLASH_CHIPn mask (where n is the chip number). 
 159                         static inline uint8_t Dataflash_GetSelectedChip(void) ATTR_ALWAYS_INLINE ATTR_WARN_UNUSED_RESULT
; 
 161                         /** Selects the given dataflash chip. 
 163                          *  \param[in]  ChipMask  Mask of the Dataflash IC to select, in the form of a \c DATAFLASH_CHIPn mask (where n is 
 166                         static inline void Dataflash_SelectChip(const uint8_t ChipMask
) ATTR_ALWAYS_INLINE
; 
 168                         /** Deselects the current dataflash chip, so that no dataflash is selected. */ 
 169                         static inline void Dataflash_DeselectChip(void) ATTR_ALWAYS_INLINE
; 
 171                         /** Selects a dataflash IC from the given page number, which should range from 0 to 
 172                          *  ((DATAFLASH_PAGES * DATAFLASH_TOTALCHIPS) - 1). For boards containing only one 
 173                          *  dataflash IC, this will select \ref DATAFLASH_CHIP1. If the given page number is outside 
 174                          *  the total number of pages contained in the boards dataflash ICs, all dataflash ICs 
 177                          *  \param[in] PageAddress  Address of the page to manipulate, ranging from 
 178                          *                          0 to ((DATAFLASH_PAGES * DATAFLASH_TOTALCHIPS) - 1). 
 180                         static inline void Dataflash_SelectChipFromPage(const uint16_t PageAddress
); 
 182                         /** Toggles the select line of the currently selected dataflash IC, so that it is ready to receive 
 185                         static inline void Dataflash_ToggleSelectedChipCS(void); 
 187                         /** Spin-loops while the currently selected dataflash is busy executing a command, such as a main 
 188                          *  memory page program or main memory to buffer transfer. 
 190                         static inline void Dataflash_WaitWhileBusy(void); 
 192                         /** Sends a set of page and buffer address bytes to the currently selected dataflash IC, for use with 
 193                          *  dataflash commands which require a complete 24-bit address. 
 195                          *  \param[in] PageAddress  Page address within the selected dataflash IC 
 196                          *  \param[in] BufferByte   Address within the dataflash's buffer 
 198                         static inline void Dataflash_SendAddressBytes(uint16_t PageAddress
, 
 199                                                                       const uint16_t BufferByte
); 
 201                         /** Sends a byte to the currently selected dataflash IC, and returns a byte from the dataflash. 
 203                          *  \param[in] Byte  Byte of data to send to the dataflash 
 205                          *  \return Last response byte from the dataflash 
 207                         static inline uint8_t Dataflash_TransferByte(const uint8_t Byte
) ATTR_ALWAYS_INLINE
; 
 209                         /** Sends a byte to the currently selected dataflash IC, and ignores the next byte from the dataflash. 
 211                          *  \param[in] Byte  Byte of data to send to the dataflash 
 213                         static inline void Dataflash_SendByte(const uint8_t Byte
) ATTR_ALWAYS_INLINE
; 
 215                         /** Sends a dummy byte to the currently selected dataflash IC, and returns the next byte from the dataflash. 
 217                          *  \return Last response byte from the dataflash 
 219                         static inline uint8_t Dataflash_ReceiveByte(void) ATTR_ALWAYS_INLINE ATTR_WARN_UNUSED_RESULT
; 
 222                         #if (BOARD == BOARD_NONE) 
 223                                 #define DATAFLASH_TOTALCHIPS  0 
 224                                 #define DATAFLASH_NO_CHIP     0 
 225                                 #define DATAFLASH_CHIP1       0 
 226                                 #define DATAFLASH_PAGE_SIZE   0 
 227                                 #define DATAFLASH_PAGES       0 
 228                                 static inline void    Dataflash_Init(void) {}; 
 229                                 static inline uint8_t Dataflash_TransferByte(const uint8_t Byte
) { return 0; }; 
 230                                 static inline void    Dataflash_SendByte(const uint8_t Byte
) {}; 
 231                                 static inline uint8_t Dataflash_ReceiveByte(void) { return 0; }; 
 232                                 static inline uint8_t Dataflash_GetSelectedChip(void) { return 0; }; 
 233                                 static inline void    Dataflash_SelectChip(const uint8_t ChipMask
) {}; 
 234                                 static inline void    Dataflash_DeselectChip(void) {}; 
 235                                 static inline void    Dataflash_SelectChipFromPage(const uint16_t PageAddress
) {}; 
 236                                 static inline void    Dataflash_ToggleSelectedChipCS(void) {}; 
 237                                 static inline void    Dataflash_WaitWhileBusy(void) {}; 
 238                                 static inline void    Dataflash_SendAddressBytes(uint16_t PageAddress
, 
 239                                                                                  const uint16_t BufferByte
) {}; 
 240                         #elif (BOARD == BOARD_USBKEY) 
 241                                 #include "AVR8/USBKEY/Dataflash.h" 
 242                         #elif (BOARD == BOARD_STK525) 
 243                                 #include "AVR8/STK525/Dataflash.h" 
 244                         #elif (BOARD == BOARD_STK526) 
 245                                 #include "AVR8/STK526/Dataflash.h" 
 246                         #elif ((BOARD == BOARD_XPLAIN) || (BOARD == BOARD_XPLAIN_REV1)) 
 247                                 #include "AVR8/XPLAIN/Dataflash.h" 
 248                         #elif (BOARD == BOARD_EVK527) 
 249                                 #include "AVR8/EVK527/Dataflash.h" 
 250                         #elif (BOARD == BOARD_A3BU_XPLAINED) 
 251                                 #include "XMEGA/A3BU_XPLAINED/Dataflash.h" 
 252                         #elif (BOARD == BOARD_B1_XPLAINED) 
 253                                 #include "XMEGA/B1_XPLAINED/Dataflash.h" 
 255                                 #include "Board/Dataflash.h" 
 258         /* Disable C linkage for C++ Compilers: */ 
 259                 #if defined(__cplusplus)