Imt.Base C++ API V4.1.1.0
Loading...
Searching...
No Matches
OSPI.h
Go to the documentation of this file.
1// (c) IMT - Information Management Technology AG, CH-9470 Buchs, www.imt.ch.
2
3#ifndef STM32H730_OSPI_H
4#define STM32H730_OSPI_H
5
8
9namespace imt {
10namespace base {
11namespace hal {
12namespace stm32h730 {
13namespace peripherals {
14
21class OSPI {
22public:
23
27 enum class SampleShift {
28 NoShift,
30 };
31
35 enum class ChipSelectHighTime {
36 Cycle1,
37 Cycle2,
38 Cycle3,
39 Cycle4,
40 Cycle5,
41 Cycle6,
42 Cycle7,
43 Cycle8,
44 Cycle9,
45 Cycle10,
46 Cycle11,
47 Cycle12,
48 Cycle13,
49 Cycle14,
50 Cycle15,
51 Cycle16,
52 Cycle17,
53 Cycle18,
54 Cycle19,
55 Cycle20,
56 Cycle21,
57 Cycle22,
58 Cycle23,
59 Cycle24,
60 Cycle25,
61 Cycle26,
62 Cycle27,
63 Cycle28,
64 Cycle29,
65 Cycle30,
66 Cycle31,
67 Cycle32,
68 Cycle33,
69 Cycle34,
70 Cycle35,
71 Cycle36,
72 Cycle37,
73 Cycle38,
74 Cycle39,
75 Cycle40,
76 Cycle41,
77 Cycle42,
78 Cycle43,
79 Cycle44,
80 Cycle45,
81 Cycle46,
82 Cycle47,
83 Cycle48,
84 Cycle49,
85 Cycle50,
86 Cycle51,
87 Cycle52,
88 Cycle53,
89 Cycle54,
90 Cycle55,
91 Cycle56,
92 Cycle57,
93 Cycle58,
94 Cycle59,
95 Cycle60,
96 Cycle61,
97 Cycle62,
98 Cycle63,
99 Cycle64
100 };
101
105 enum class Mode {
106 Mode0,
107 Mode3
108 };
109
114 Flash1,
115 Flash2
116 };
117
121 enum class DualQuadMode {
122 disabled,
123 enabled
124 };
125
129 enum class MemoryType {
130 Micron = 0U,
131 Macronix = 1U,
132 Standard = 2U,
133 MacronixRam = 3U,
134 HyperBusSingle = 4U,
136 };
137
141 enum class FreeRunningClock {
144 };
145
149 enum class WrapSize {
150 notSupported = 0U,
151 Bytes16 = 2U,
152 Bytes32 = 3U,
153 Bytes64 = 4U,
154 Bytes128 = 5U
155 };
156
168 struct InitStruct {
180 };
181
185 enum class ByteSize {
186 Bit8,
187 Bit16,
188 Bit24,
189 Bit32
190 };
191
195 enum class DataLines {
196 None,
197 Line1,
198 Line2,
199 Line4,
200 Line8
201 };
202
206 enum class DDR_SIOO_Mode {
209 };
210
237 };
238
242 enum class MatchMode {
243 And,
244 Or
245 };
246
250 enum class AutomaticStop {
251 Disable,
252 Enable
253 };
254
267 };
268
272 enum class FunctionalMode {
277 };
278
282 enum class TimeOutActivation {
283 Disable,
284 Enable
285 };
286
295 };
296
302 static bool init(OCTOSPIModuleAddress module, InitStruct const& initStruct);
303
307 static void deInit();
308
315 static bool commandBlocking(OCTOSPIModuleAddress module, CommandInitStruct const& initStruct, uint32_t const timeout);
316
323 static bool command(OCTOSPIModuleAddress module, CommandInitStruct const& initStruct, uint32_t const timeout);
324
332 static void configureAutoPollingModeBlocking(OCTOSPIModuleAddress module, CommandInitStruct& initStruct, AutoPollingInitStructure const& apInitStruct, uint32_t const timeout);
333
341 static void configureAutoPollingMode(OCTOSPIModuleAddress module, CommandInitStruct& initStruct, AutoPollingInitStructure const& apInitStruct, uint32_t const timeout);
342
349 static void receiveBlocking(OCTOSPIModuleAddress module, uint8_t* pData, uint32_t const timeout);
350
356 static void receive(OCTOSPIModuleAddress module, uint8_t* const pData);
357
364 static void transmitBlocking(OCTOSPIModuleAddress module, uint8_t const* pData, uint32_t const timeout);
365
371 static void transmit(OCTOSPIModuleAddress module, uint8_t const* const pData);
372
379 static void configureMemoryMappedMode(OCTOSPIModuleAddress module, CommandInitStruct const& cmdInitStruct, MemoryMapInitStructure const& mmInitStruct);
380
386 static bool isBusy(OCTOSPIModuleAddress module);
387
392 static void cancel(OCTOSPIModuleAddress module);
393
399
405
411
417
423
431 static void readData(OCTOSPIModuleAddress module, CommandInitStruct const& cmdInitStruct, uint8_t* pData, uint32_t const maxlen);
432
440 static void writeData(OCTOSPIModuleAddress module, CommandInitStruct const& cmdInitStruct, uint32_t const* pData, uint32_t const timeout);
441
442private:
443
447 OSPI();
448
452 OSPI(const OSPI& other);
453
457 OSPI& operator=(const OSPI& other);
458
464 static bool checkCommandInitStructParameters(CommandInitStruct const& initStruct);
465
472 static void configure(OCTOSPIModuleAddress module, CommandInitStruct const& initStruct, FunctionalMode const functionalMode);
473
474 static uint32_t const FIFIO_BUFFER_SIZE = 32U;
475
476 static uint8_t s_txBuffer[FIFIO_BUFFER_SIZE];
477 static uint8_t s_bytesToTransmit;
478 static uint8_t s_transmitedBytes;
479 static uint8_t* s_rxBuffer;
480 static uint32_t s_bytesToReceive;
481 static uint8_t s_receivedBytes;
482};
483
484} // namespace peripherals
485} // namespace stm32h730
486} // namespace hal
487} // namespace base
488} // namespace imt
489
490#endif // #define STM32H730_OSPI_H
(OSPI) module register structure
Definition OSPI.h:21
DataLines
Enumeration for LineNumbers.
Definition OSPI.h:195
static void onTOInterrupt(OCTOSPIModuleAddress module)
Helper to call to handle time out interrupt.
ByteSize
Enumeration for ByteSize.
Definition OSPI.h:185
static void configureMemoryMappedMode(OCTOSPIModuleAddress module, CommandInitStruct const &cmdInitStruct, MemoryMapInitStructure const &mmInitStruct)
Configure the memory mapped mode.
static void configureAutoPollingModeBlocking(OCTOSPIModuleAddress module, CommandInitStruct &initStruct, AutoPollingInitStructure const &apInitStruct, uint32_t const timeout)
Configure the OSPI Automatic Polling Mode in blocking mode.
SampleShift
Enumeration for Sample shift.
Definition OSPI.h:27
static void cancel(OCTOSPIModuleAddress module)
Helper to cancel current transfer.
static void configureAutoPollingMode(OCTOSPIModuleAddress module, CommandInitStruct &initStruct, AutoPollingInitStructure const &apInitStruct, uint32_t const timeout)
Configure the OSPI Automatic Polling Mode with interrupt.
WrapSize
Enumeration for wrap size.
Definition OSPI.h:149
DualQuadMode
Enumeration for dual quad mode.
Definition OSPI.h:121
static bool isBusy(OCTOSPIModuleAddress module)
Determines if the OSPI interface is busy.
static void receiveBlocking(OCTOSPIModuleAddress module, uint8_t *pData, uint32_t const timeout)
Read an amount of data in blocking mode.
AutomaticStop
Enumeration for OSPI Autopolling Automatic Stop.
Definition OSPI.h:250
static void transmitBlocking(OCTOSPIModuleAddress module, uint8_t const *pData, uint32_t const timeout)
Transmit an amount of data in blocking mode.
static void onFTInterrupt(OCTOSPIModuleAddress module)
Helper to call to handle fifo threshold interrupt.
DDR_SIOO_Mode
Enumeration for OSPI DDR SIOOMode.
Definition OSPI.h:206
static void onSMInterrupt(OCTOSPIModuleAddress module)
Helper to call to handle status match interrupt.
static bool commandBlocking(OCTOSPIModuleAddress module, CommandInitStruct const &initStruct, uint32_t const timeout)
Sets the command configuration in blocking mode.
static void receive(OCTOSPIModuleAddress module, uint8_t *const pData)
Read an amount of data with interrupt.
static bool init(OCTOSPIModuleAddress module, InitStruct const &initStruct)
Initializes the OSPI peripheral according to the specified parameters in the OSPI_InitStruct.
static void readData(OCTOSPIModuleAddress module, CommandInitStruct const &cmdInitStruct, uint8_t *pData, uint32_t const maxlen)
Helper to read data.
FlashMemorySelection
Enumeration for Flash Memory Selection.
Definition OSPI.h:113
static void onTEInterrupt(OCTOSPIModuleAddress module)
Helper to call to handle transfer error interrupt.
Mode
Enumeration for Mode Selection.
Definition OSPI.h:105
@ Mode0
CLK must stay low while nCS is high (chip select released)
@ Mode3
CLK must stay high while nCS is high (chip select released)
static bool command(OCTOSPIModuleAddress module, CommandInitStruct const &initStruct, uint32_t const timeout)
Sets the command configuration in interrupt mode.
static void writeData(OCTOSPIModuleAddress module, CommandInitStruct const &cmdInitStruct, uint32_t const *pData, uint32_t const timeout)
Helper to write data.
FunctionalMode
Enumeration for OSPI Functional Mode.
Definition OSPI.h:272
MemoryType
Enumeration for Memory Type.
Definition OSPI.h:129
FreeRunningClock
Enumeration for free running clock.
Definition OSPI.h:141
TimeOutActivation
Enumeration for OSPI TimeOutActivation.
Definition OSPI.h:282
static void onTCInterrupt(OCTOSPIModuleAddress module)
Helper to call to handle transfer complete interrupt.
MatchMode
Enumeration for OSPI Autopolling MatchMode.
Definition OSPI.h:242
static void deInit()
Deinitializes the OSPI peripheral according to the specified parameters in the OSPI_InitStruct.
static void transmit(OCTOSPIModuleAddress module, uint8_t const *const pData)
Transmit an amount of data in interrupt mode.
ChipSelectHighTime
Enumeration for Chip select high time.
Definition OSPI.h:35
@ Cycle47
nCS stays high for at least 47 cycle between Flash memory commands
@ Cycle35
nCS stays high for at least 35 cycle between Flash memory commands
@ Cycle53
nCS stays high for at least 53 cycle between Flash memory commands
@ Cycle49
nCS stays high for at least 49 cycle between Flash memory commands
@ Cycle43
nCS stays high for at least 43 cycle between Flash memory commands
@ Cycle63
nCS stays high for at least 63 cycle between Flash memory commands
@ Cycle38
nCS stays high for at least 38 cycle between Flash memory commands
@ Cycle12
nCS stays high for at least 12 cycle between Flash memory commands
@ Cycle15
nCS stays high for at least 15 cycle between Flash memory commands
@ Cycle21
nCS stays high for at least 21 cycle between Flash memory commands
@ Cycle62
nCS stays high for at least 62 cycle between Flash memory commands
@ Cycle45
nCS stays high for at least 45 cycle between Flash memory commands
@ Cycle29
nCS stays high for at least 29 cycle between Flash memory commands
@ Cycle48
nCS stays high for at least 48 cycle between Flash memory commands
@ Cycle40
nCS stays high for at least 40 cycle between Flash memory commands
@ Cycle27
nCS stays high for at least 27 cycle between Flash memory commands
@ Cycle17
nCS stays high for at least 17 cycle between Flash memory commands
@ Cycle33
nCS stays high for at least 33 cycle between Flash memory commands
@ Cycle44
nCS stays high for at least 44 cycle between Flash memory commands
@ Cycle61
nCS stays high for at least 61 cycle between Flash memory commands
@ Cycle4
nCS stays high for at least 4 cycle between Flash memory commands
@ Cycle64
nCS stays high for at least 64 cycle between Flash memory commands
@ Cycle36
nCS stays high for at least 36 cycle between Flash memory commands
@ Cycle41
nCS stays high for at least 41 cycle between Flash memory commands
@ Cycle6
nCS stays high for at least 6 cycle between Flash memory commands
@ Cycle3
nCS stays high for at least 3 cycle between Flash memory commands
@ Cycle7
nCS stays high for at least 7 cycle between Flash memory commands
@ Cycle56
nCS stays high for at least 56 cycle between Flash memory commands
@ Cycle55
nCS stays high for at least 55 cycle between Flash memory commands
@ Cycle22
nCS stays high for at least 22 cycle between Flash memory commands
@ Cycle59
nCS stays high for at least 59 cycle between Flash memory commands
@ Cycle31
nCS stays high for at least 31 cycle between Flash memory commands
@ Cycle23
nCS stays high for at least 23 cycle between Flash memory commands
@ Cycle51
nCS stays high for at least 51 cycle between Flash memory commands
@ Cycle26
nCS stays high for at least 26 cycle between Flash memory commands
@ Cycle5
nCS stays high for at least 5 cycle between Flash memory commands
@ Cycle24
nCS stays high for at least 24 cycle between Flash memory commands
@ Cycle58
nCS stays high for at least 58 cycle between Flash memory commands
@ Cycle8
nCS stays high for at least 8 cycle between Flash memory commands
@ Cycle11
nCS stays high for at least 11 cycle between Flash memory commands
@ Cycle10
nCS stays high for at least 10 cycle between Flash memory commands
@ Cycle30
nCS stays high for at least 30 cycle between Flash memory commands
@ Cycle18
nCS stays high for at least 18 cycle between Flash memory commands
@ Cycle9
nCS stays high for at least 9 cycle between Flash memory commands
@ Cycle1
nCS stays high for at least 1 cycle between Flash memory commands
@ Cycle2
nCS stays high for at least 2 cycle between Flash memory commands
@ Cycle25
nCS stays high for at least 25 cycle between Flash memory commands
@ Cycle32
nCS stays high for at least 32 cycle between Flash memory commands
@ Cycle39
nCS stays high for at least 39 cycle between Flash memory commands
@ Cycle50
nCS stays high for at least 50 cycle between Flash memory commands
@ Cycle60
nCS stays high for at least 60 cycle between Flash memory commands
@ Cycle14
nCS stays high for at least 14 cycle between Flash memory commands
@ Cycle20
nCS stays high for at least 20 cycle between Flash memory commands
@ Cycle42
nCS stays high for at least 42 cycle between Flash memory commands
@ Cycle13
nCS stays high for at least 13 cycle between Flash memory commands
@ Cycle52
nCS stays high for at least 52 cycle between Flash memory commands
@ Cycle37
nCS stays high for at least 37 cycle between Flash memory commands
@ Cycle34
nCS stays high for at least 34 cycle between Flash memory commands
@ Cycle16
nCS stays high for at least 16 cycle between Flash memory commands
@ Cycle46
nCS stays high for at least 46 cycle between Flash memory commands
@ Cycle19
nCS stays high for at least 19 cycle between Flash memory commands
@ Cycle28
nCS stays high for at least 28 cycle between Flash memory commands
@ Cycle57
nCS stays high for at least 57 cycle between Flash memory commands
@ Cycle54
nCS stays high for at least 54 cycle between Flash memory commands
OCTOSPIModuleAddress
Enumeration of the available OCTOSPI modules on STM32H730.
This is a application specific file which is used to configure Imt.Base.Core.Math.
unsigned __int32 uint32_t
Definition stdint.h:64
unsigned __int8 uint8_t
Definition stdint.h:62
uint32_t interval
Specifies the number of clock cycles between two read during automatic polling phases....
Definition OSPI.h:263
AutomaticStop automaticStop
Specifies if automatic polling is stopped after a match.
Definition OSPI.h:266
MatchMode matchMode
Specifies the method used for determining a match.
Definition OSPI.h:265
uint32_t mask
Specifies the mask to be applied to the status bytes received. -> value between 0 and 0xFFFFFFFF.
Definition OSPI.h:262
uint32_t statusByteSize
Specifies the size of the status bytes received. -> Value between 1 and 4.
Definition OSPI.h:264
uint32_t match
Specifies the value to be compared with the masked status register to get a match....
Definition OSPI.h:261
uint32_t dummyCycle
Specifies the Number of Dummy Cycles. -> value between 0 and 31.
Definition OSPI.h:230
DataLines dataMode
Specifies the Data Mode (used for dummy cycles and data phases)
Definition OSPI.h:234
DataLines instructionMode
Specifies the Instruction Mode.
Definition OSPI.h:231
DataLines addressMode
Specifies the Address Mode.
Definition OSPI.h:232
ByteSize instructionSize
Specifies the Instruction size.
Definition OSPI.h:225
ByteSize addressSize
Specifies the Address Size.
Definition OSPI.h:228
uint32_t alternateBytes
Specifies the Alternate Bytes to be sent (Size from 1 to 4 bytes according AlternateBytesSize)
Definition OSPI.h:227
uint32_t address
Specifies the Address to be sent (Size from 1 to 4 bytes according AddressSize) -> value between 0x0 ...
Definition OSPI.h:226
ByteSize alternateByteSize
Specifies the Address Size.
Definition OSPI.h:229
uint32_t instruction
Specifies the Instruction to be sent -> value between 0x00 and 0xFF.
Definition OSPI.h:224
DataLines alternateByteMode
Specifies the Alternate Bytes Mode.
Definition OSPI.h:233
DDR_SIOO_Mode siooMode
Specifies the send instruction only once mode.
Definition OSPI.h:236
uint32_t numberData
Specifies the number of data to transfer. -> value between 0 and 0xFFFFFFFF (0 means undefined length...
Definition OSPI.h:235
WrapSize wrapSize
Specifies thewrap size of the memory.
Definition OSPI.h:179
uint32_t clockPrescaler
Specifies the prescaler factor for generating clock based on the AHB clock. (0x00-0xFF)
Definition OSPI.h:169
uint32_t fifoThreshold
Specifies the threshold number of bytes in the FIFO (used only in indirect mode) (1-32)
Definition OSPI.h:170
SampleShift sampleShift
Specifies the Sample Shift. The data is sampled 1/2 clock cycle delay later to take in account extern...
Definition OSPI.h:171
FlashMemorySelection flashId
Specifies the Flash which will be used.
Definition OSPI.h:175
uint32_t flashSize
Number of bytes in Flash memory = 2^[FSIZE+1].
Definition OSPI.h:172
ChipSelectHighTime chipSelectHighTime
Specifies the Chip Select High Time.
Definition OSPI.h:173
FreeRunningClock freeRunningClock
Specifies if clock is free running.
Definition OSPI.h:178
MemoryType MemType
Specifies the memory type.
Definition OSPI.h:177
DualQuadMode dualQuad
Specifies if dual quad mode is enabled.
Definition OSPI.h:176
OSPI Memory Mapped mode structure definition.
Definition OSPI.h:292
TimeOutActivation timeOutActivation
Specifies if the time out counter is enabled to release the chip select.
Definition OSPI.h:294
uint32_t timeOutPeriod
Specifies the number of clock to wait when the FIFO is full before to release the chip select.
Definition OSPI.h:293