GM6000 Digital Heater Controller Branch: main
SDX-1330
BdSpi.h
Go to the documentation of this file.
1#ifndef Cpl_Io_File_Littlefs__bdspi_BdSpi_h_
2#define Cpl_Io_File_Littlefs__bdspi_BdSpi_h_
3/*-----------------------------------------------------------------------------
4 * This file is part of the Colony.Core Project. The Colony.Core Project is an
5 * open source project with a BSD type of licensing agreement. See the license
6 * agreement (license.txt) in the top/ directory or on the Internet at
7 * http://integerfox.com/colony.core/license.txt
8 *
9 * Copyright (c) 2014-2020 John T. Taylor
10 *
11 * Redistributions of the source code must retain the above copyright notice.
12 *----------------------------------------------------------------------------*/
13/** @file */
14
15#include "colony_config.h"
18#include "Driver/DIO/Out.h"
19
20
21/** Number of times to retry a read operation when an error occurs
22
23 Note: OPTION_CPL_IO_FILE_LITTLEFS_BDSPI_READ_MAX_RETRIES * OPTION_CPL_IO_FILE_LITTLEFS_BDSPI_READ_RETRY_DELAY_MS
24 should be greater than the max block erase time of the flash chip
25*/
26#ifndef OPTION_CPL_IO_FILE_LITTLEFS_BDSPI_READ_MAX_RETRIES
27#define OPTION_CPL_IO_FILE_LITTLEFS_BDSPI_READ_MAX_RETRIES 2100
28#endif
29
30/// Delay, in milliseconds, between read retries
31#ifndef OPTION_CPL_IO_FILE_LITTLEFS_BDSPI_READ_RETRY_DELAY_MS
32#define OPTION_CPL_IO_FILE_LITTLEFS_BDSPI_READ_RETRY_DELAY_MS 1
33#endif
34
35/// Default Page size in bytes
36#ifndef OPTION_CPL_IO_FILE_LITTLEFS_BDSPI_DEFAULT_FLASH_PAGE_SIZE
37#define OPTION_CPL_IO_FILE_LITTLEFS_BDSPI_DEFAULT_FLASH_PAGE_SIZE 256
38#endif
39
40
41///
42namespace Cpl {
43///
44namespace Io {
45///
46namespace File {
47///
48namespace Littlefs {
49
50
51/** Concrete Block Driver for a 'traditional' SPI based NOR flash. The driver
52 is intended to be generic driver with a 24bit address space. That said,
53 the driver was verified using a Winbond W25Q128JV SPI NOR flash device.
54 */
55class BdSpi : public BlockDriverApi
56{
57public:
58 /// JEDEC ID
59 struct JedecID_T
60 {
61 uint8_t manufacturerID; //!< Manufacturer ID
62 uint8_t memoryType; //!< Memory Type
63 uint8_t capacity; //!< Capacity
64 };
65
66public:
67 /** Constructor. Note: The class ASSUMES that is responsible for starting
68 and stopping the SPI and CS drivers.
69 */
72 lfs_size_t flashPageSize = OPTION_CPL_IO_FILE_LITTLEFS_BDSPI_DEFAULT_FLASH_PAGE_SIZE ) noexcept;
73
74 /// Destructor
75 ~BdSpi() noexcept;
76
77
78public:
79 /// See Cpl::Io::File::BlockDriverApi
80 bool start() noexcept;
81
82 /// See Cpl::Io::File::BlockDriverApi
83 void stop() noexcept;
84
85
86public:
87 /// See Cpl::Io::Littlefs::BlockDriverApi
88 bool readfn( const struct lfs_config* c, lfs_block_t block, lfs_off_t off, void* buffer, lfs_size_t size ) noexcept;
89
90 /// See Cpl::Io::Littlefs::BlockDriverApi
91 bool progfn( const struct lfs_config* c, lfs_block_t block, lfs_off_t off, const void* buffer, lfs_size_t size ) noexcept;
92
93 /// See Cpl::Io::Littlefs::BlockDriverApi
94 bool erasefn( const struct lfs_config* c, lfs_block_t block ) noexcept;
95
96 /// See Cpl::Io::Littlefs::BlockDriverApi
97 bool syncfn( const struct lfs_config* c ) noexcept;
98
99protected:
100 /// Helper function
101 uint8_t readStatus() noexcept;
102
103 /// Helper function
104 uint8_t readStatus2() noexcept;
105
106 /// Helper function
107 bool waitUntilReady() noexcept;
108
109 /// Helper function
110 bool waitUntilSUS() noexcept;
111
112 /// Helper function
113 bool sendCommand( uint8_t command ) noexcept;
114
115 /// Helper function
116 bool readJedecID( JedecID_T& dstID ) noexcept;
117
118 /// Helper function (assume the requested write offset/size fits into a single page)
119 bool writeToPage( lfs_off_t offset, const void* buffer, lfs_size_t numBytes ) noexcept;
120
121protected:
122 /// SPI driver
123 Driver::SPI::MasterHalfDuplex& m_spi;
124
125 /// Chip Select driver
126 Driver::DIO::Out& m_cs;
127
128 /// Page size
129 lfs_size_t m_flashPageSize;
130
131 /// Started state
133};
134
135} // end namespace
136}
137}
138}
139#endif // end header latch
#define OPTION_CPL_IO_FILE_LITTLEFS_BDSPI_DEFAULT_FLASH_PAGE_SIZE
Default Page size in bytes.
Definition BdSpi.h:37
Concrete Block Driver for a 'traditional' SPI based NOR flash.
Definition BdSpi.h:56
bool readfn(const struct lfs_config *c, lfs_block_t block, lfs_off_t off, void *buffer, lfs_size_t size) noexcept
See Cpl::Io::Littlefs::BlockDriverApi.
bool waitUntilSUS() noexcept
Helper function.
bool m_started
Started state.
Definition BdSpi.h:132
bool writeToPage(lfs_off_t offset, const void *buffer, lfs_size_t numBytes) noexcept
Helper function (assume the requested write offset/size fits into a single page)
bool sendCommand(uint8_t command) noexcept
Helper function.
bool syncfn(const struct lfs_config *c) noexcept
See Cpl::Io::Littlefs::BlockDriverApi.
uint8_t manufacturerID
Manufacturer ID.
Definition BdSpi.h:61
bool readJedecID(JedecID_T &dstID) noexcept
Helper function.
~BdSpi() noexcept
Destructor.
Driver::DIO::Out & m_cs
Chip Select driver.
Definition BdSpi.h:126
bool erasefn(const struct lfs_config *c, lfs_block_t block) noexcept
See Cpl::Io::Littlefs::BlockDriverApi.
void stop() noexcept
See Cpl::Io::File::BlockDriverApi.
BdSpi(Driver::SPI::MasterHalfDuplex &spi, Driver::DIO::Out &cs, lfs_size_t flashPageSize=OPTION_CPL_IO_FILE_LITTLEFS_BDSPI_DEFAULT_FLASH_PAGE_SIZE) noexcept
Constructor.
lfs_size_t m_flashPageSize
Page size.
Definition BdSpi.h:129
uint8_t readStatus() noexcept
Helper function.
uint8_t capacity
Capacity.
Definition BdSpi.h:63
uint8_t memoryType
Memory Type.
Definition BdSpi.h:62
uint8_t readStatus2() noexcept
Helper function.
bool waitUntilReady() noexcept
Helper function.
Driver::SPI::MasterHalfDuplex & m_spi
SPI driver.
Definition BdSpi.h:123
bool progfn(const struct lfs_config *c, lfs_block_t block, lfs_off_t off, const void *buffer, lfs_size_t size) noexcept
See Cpl::Io::Littlefs::BlockDriverApi.
bool start() noexcept
See Cpl::Io::File::BlockDriverApi.
JEDEC ID.
Definition BdSpi.h:60
This partial abstract class defines the interface for block drivers.
Definition BlockDriverApi.h:36
This class defines a generic interface for controlling a single Digital output signal.
Definition Out.h:32
This class defines a non-platform specific interface for an SPI master device driver using HALF-DUPLE...
Definition MasterHalfDuplex.h:38
The 'Cpl' namespace is the root name space for the Colony.
Definition Api16.h:20
namespace