3 Copyright (C) Dean Camera, 2009.
5 dean [at] fourwalledcubicle [dot] com
6 www.fourwalledcubicle.com
10 Copyright 2009 Dean Camera (dean [at] fourwalledcubicle [dot] com)
12 Permission to use, copy, modify, and distribute this software
13 and its documentation for any purpose and without fee is hereby
14 granted, provided that the above copyright notice appear in all
15 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 * This file is the master dispatch header file for the board-specific dataflash driver, for boards containing
34 * dataflash ICs for external non-volatile storage.
36 * User code should include this file, which will in turn include the correct dataflash driver header file for
37 * the currently selected board.
39 * If the BOARD value is set to BOARD_USER, this will include the /Board/Dataflash.h file in the user project
43 /** \ingroup Group_BoardDrivers
44 * @defgroup Group_Dataflash Dataflash Driver - LUFA/Drivers/Board/Dataflash.h
46 * \section Sec_Dependencies Module Source Dependencies
47 * The following files must be built with any user project that uses this module:
50 * \section Module Description
51 * Functions, macros, variables, enums and types related to the control of board Dataflash ICs.
53 * If the BOARD value is set to BOARD_USER, this will include the /Board/Dataflash.h file in the user project
54 * directory. Otherwise, it will include the appropriate built in board driver header file.
59 #ifndef __DATAFLASH_H__
60 #define __DATAFLASH_H__
63 #if !defined(__DOXYGEN__)
64 #define INCLUDE_FROM_DATAFLASH_H
65 #define INCLUDE_FROM_BOARD_DRIVER
69 #include "../Peripheral/SPI.h"
70 #include "../../Common/Common.h"
72 /* Enable C linkage for C++ Compilers: */
73 #if defined(__cplusplus)
77 /* Public Interface - May be used in end-application: */
79 #if !defined(__DOXYGEN__)
80 #define __GET_DATAFLASH_MASK2(x, y) x ## y
81 #define __GET_DATAFLASH_MASK(x) __GET_DATAFLASH_MASK2(DATAFLASH_CHIP,x)
84 /* Retrieves the Dataflash chip select mask for the given Dataflash chip index.
86 * \param index Index of the dataflash chip mask to retrieve
88 #define DATAFLASH_CHIP_MASK(index) __GET_DATAFLASH_MASK(index)
90 /* Pseudo-Function Macros: */
91 #if defined(__DOXYGEN__)
92 /** Determines the currently selected dataflash chip.
94 * \return Mask of the currently selected Dataflash chip, either \ref DATAFLASH_NO_CHIP if no chip is selected
95 * or a DATAFLASH_CHIPn mask (where n is the chip number).
97 static inline uint8_t Dataflash_GetSelectedChip(void);
99 /** Selects the given dataflash chip.
101 * \param[in] ChipMask Mask of the Dataflash IC to select, in the form of DATAFLASH_CHIPn mask (where n is
104 static inline void Dataflash_SelectChip(uint8_t ChipMask
);
106 /** Deselects the current dataflash chip, so that no dataflash is selected. */
107 static inline void Dataflash_DeselectChip(void);
109 #define Dataflash_GetSelectedChip() (DATAFLASH_CHIPCS_PORT & DATAFLASH_CHIPCS_MASK)
111 #define Dataflash_SelectChip(mask) MACROS{ DATAFLASH_CHIPCS_PORT = ((DATAFLASH_CHIPCS_PORT \
112 & ~DATAFLASH_CHIPCS_MASK) | mask); }MACROE
114 #define Dataflash_DeselectChip() Dataflash_SelectChip(DATAFLASH_NO_CHIP)
117 /* Inline Functions: */
118 /** Sends a byte to the currently selected dataflash IC, and returns a byte from the dataflash.
120 * \param[in] Byte of data to send to the dataflash
122 * \return Last response byte from the dataflash
124 static inline uint8_t Dataflash_TransferByte(const uint8_t Byte
) ATTR_ALWAYS_INLINE
;
125 static inline uint8_t Dataflash_TransferByte(const uint8_t Byte
)
127 return SPI_TransferByte(Byte
);
130 /** Sends a byte to the currently selected dataflash IC, and ignores the next byte from the dataflash.
132 * \param[in] Byte of data to send to the dataflash
134 static inline void Dataflash_SendByte(const uint8_t Byte
) ATTR_ALWAYS_INLINE
;
135 static inline void Dataflash_SendByte(const uint8_t Byte
)
140 /** Sends a dummy byte to the currently selected dataflash IC, and returns the next byte from the dataflash.
142 * \return Last response byte from the dataflash
144 static inline uint8_t Dataflash_ReceiveByte(void) ATTR_ALWAYS_INLINE ATTR_WARN_UNUSED_RESULT
;
145 static inline uint8_t Dataflash_ReceiveByte(void)
147 return SPI_ReceiveByte();
152 #error BOARD must be set in makefile to a value specified in BoardTypes.h.
153 #elif (BOARD == BOARD_USBKEY)
154 #include "USBKEY/Dataflash.h"
155 #elif (BOARD == BOARD_STK525)
156 #include "STK525/Dataflash.h"
157 #elif (BOARD == BOARD_STK526)
158 #include "STK526/Dataflash.h"
159 #elif (BOARD == BOARD_USER)
160 #include "Board/Dataflash.h"
162 #error The selected board does not contain a dataflash IC.
165 /* Inline Functions: */
166 /** Initializes the dataflash driver (including the SPI driver) so that commands and data may be
167 * sent to an attached dataflash IC.
169 * \param[in] PrescalerMask SPI prescaler mask, see SPI.h documentation
171 static inline void Dataflash_Init(const uint8_t PrescalerMask
)
173 DATAFLASH_CHIPCS_DDR
|= DATAFLASH_CHIPCS_MASK
;
174 DATAFLASH_CHIPCS_PORT
|= DATAFLASH_CHIPCS_MASK
;
176 SPI_Init(PrescalerMask
, true);
179 /** Toggles the select line of the currently selected dataflash IC, so that it is ready to receive
182 static inline void Dataflash_ToggleSelectedChipCS(void)
184 uint8_t SelectedChipMask
= Dataflash_GetSelectedChip();
186 Dataflash_DeselectChip();
187 Dataflash_SelectChip(SelectedChipMask
);
190 /** Spinloops while the currently selected dataflash is busy executing a command, such as a main
191 * memory page program or main memory to buffer transfer.
193 static inline void Dataflash_WaitWhileBusy(void)
195 Dataflash_ToggleSelectedChipCS();
196 Dataflash_SendByte(DF_CMD_GETSTATUS
);
197 while (!(Dataflash_ReceiveByte() & DF_STATUS_READY
));
198 Dataflash_ToggleSelectedChipCS();
201 /** Selects a dataflash IC from the given page number, which should range from 0 to
202 * ((DATAFLASH_PAGES * DATAFLASH_TOTALCHIPS) - 1). For boards containing only one
203 * dataflash IC, this will select DATAFLASH_CHIP1. If the given page number is outside
204 * the total number of pages contained in the boards dataflash ICs, all dataflash ICs
207 * \param[in] PageAddress Address of the page to manipulate, ranging from
208 * ((DATAFLASH_PAGES * DATAFLASH_TOTALCHIPS) - 1).
210 static inline void Dataflash_SelectChipFromPage(const uint16_t PageAddress
);
212 /** Sends a set of page and buffer address bytes to the currently selected dataflash IC, for use with
213 * dataflash commands which require a complete 24-byte address.
215 * \param[in] PageAddress Page address within the selected dataflash IC
216 * \param[in] BufferByte Address within the dataflash's buffer
218 static inline void Dataflash_SendAddressBytes(uint16_t PageAddress
, const uint16_t BufferByte
);
220 /* Disable C linkage for C++ Compilers: */
221 #if defined(__cplusplus)