AM62x MCU+ SDK  09.02.01
gpmc/v0/gpmc.h
Go to the documentation of this file.
1 /*
2  * Copyright (C) 2023-24 Texas Instruments Incorporated
3  *
4  * Redistribution and use in source and binary forms, with or without
5  * modification, are permitted provided that the following conditions
6  * are met:
7  *
8  * Redistributions of source code must retain the above copyright
9  * notice, this list of conditions and the following disclaimer.
10  *
11  * Redistributions in binary form must reproduce the above copyright
12  * notice, this list of conditions and the following disclaimer in the
13  * documentation and/or other materials provided with the
14  * distribution.
15  *
16  * Neither the name of Texas Instruments Incorporated nor the names of
17  * its contributors may be used to endorse or promote products derived
18  * from this software without specific prior written permission.
19  *
20  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23  * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24  * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25  * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26  * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30  * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31  */
32 
53 #ifndef _GPMC__H_
54 #define _GPMC__H_
55 
56 
57 /* ========================================================================== */
58 /* Include Files */
59 /* ========================================================================== */
60 
61 #include <stdint.h>
62 #include <kernel/dpl/SystemP.h>
63 #include <kernel/dpl/SemaphoreP.h>
64 #include <kernel/dpl/HwiP.h>
65 #include <drivers/hw_include/csl_types.h>
66 #include <drivers/hw_include/cslr_gpmc.h>
67 #include <kernel/dpl/CacheP.h>
68 
69 #ifdef __cplusplus
70 extern "C" {
71 #endif
72 
73 /* ========================================================================== */
74 /* Macros & Typedefs */
75 /* ========================================================================== */
83 #define GPMC_CHIP_SELECT_CS0 (0U)
84 #define GPMC_CHIP_SELECT_CS1 (1U)
85 #define GPMC_CHIP_SELECT_CS2 (2U)
86 #define GPMC_CHIP_SELECT_CS3 (3U)
87 
97 #define GPMC_FIFOEVENT_STATUS (0U)
98 #define GPMC_TERMINALCOUNT_STATUS (1U)
99 #define GPMC_WAIT0EDGEDETECTION_STATUS (2U)
100 #define GPMC_WAIT1EDGEDETECTION_STATUS (3U)
101 
111 #define GPMC_FIFOEVENT_INT (0U)
112 #define GPMC_TERMINALCOUNT_INT (1U)
113 #define GPMC_WAIT0EDGEDETECTION_INT (2U)
114 #define GPMC_WAIT1EDGEDETECTION_INT (3U)
115 
125 #define GPMC_PREFETCH_ACCESSMODE_READ (0U)
126 #define GPMC_PREFETCH_ACCESSMODE_WRITE (1U)
127 
137 #define GPMC_ECC_ALGORITHM_HAMMINGCODE (0U)
138 #define GPMC_ECC_ALGORITHM_BCH (1U)
139 
148 #define GPMC_ECC_BCH_ERRCORRCAP_UPTO_4BITS (0U)
149 #define GPMC_ECC_BCH_ERRCORRCAP_UPTO_8BITS (1U)
150 #define GPMC_ECC_BCH_ERRCORRCAP_UPTO_16BITS (2U)
151 
161 #define GPMC_ECCPOINTER_RESULT_1 (1U)
162 #define GPMC_ECCPOINTER_RESULT_2 (2U)
163 #define GPMC_ECCPOINTER_RESULT_3 (3U)
164 #define GPMC_ECCPOINTER_RESULT_4 (4U)
165 #define GPMC_ECCPOINTER_RESULT_5 (5U)
166 #define GPMC_ECCPOINTER_RESULT_6 (6U)
167 #define GPMC_ECCPOINTER_RESULT_7 (7U)
168 #define GPMC_ECCPOINTER_RESULT_8 (8U)
169 #define GPMC_ECCPOINTER_RESULT_9 (9U)
170 
178 #define GPMC_ECC_SIZE_0 (0U)
179 #define GPMC_ECC_SIZE_1 (1U)
180 
188 #define GPMC_ECC_RESULT_1 (1U)
189 #define GPMC_ECC_RESULT_2 (2U)
190 #define GPMC_ECC_RESULT_3 (3U)
191 #define GPMC_ECC_RESULT_4 (4U)
192 #define GPMC_ECC_RESULT_5 (5U)
193 #define GPMC_ECC_RESULT_6 (6U)
194 #define GPMC_ECC_RESULT_7 (7U)
195 #define GPMC_ECC_RESULT_8 (8U)
196 #define GPMC_ECC_RESULT_9 (9U)
197 
205 #define GPMC_BCH_RESULT0 (0U)
206 #define GPMC_BCH_RESULT1 (1U)
207 #define GPMC_BCH_RESULT2 (2U)
208 #define GPMC_BCH_RESULT3 (3U)
209 #define GPMC_BCH_RESULT4 (4U)
210 #define GPMC_BCH_RESULT5 (5U)
211 #define GPMC_BCH_RESULT6 (6U)
212 
220 #define GPMC_CS_MASK_ADDR_SIZE_256MB (0x00U)
221 #define GPMC_CS_MASK_ADDR_SIZE_128MB (0x08U)
222 #define GPMC_CS_MASK_ADDR_SIZE_64MB (0x0cU)
223 #define GPMC_CS_MASK_ADDR_SIZE_32MB (0x0eU)
224 #define GPMC_CS_MASK_ADDR_SIZE_16MB (0x0fU)
225 
250 #define GPMC_CS_TIMING_CONFIG(CSWrOffTime, CSRdOffTime, CSExtDelayFlag, \
251  CSOnTime) \
252  ((uint32_t) (((CSWrOffTime) << CSL_GPMC_CONFIG2_CSWROFFTIME_SHIFT) \
253  & CSL_GPMC_CONFIG2_CSWROFFTIME_MASK) | \
254  (((CSRdOffTime) << CSL_GPMC_CONFIG2_CSRDOFFTIME_SHIFT) \
255  & CSL_GPMC_CONFIG2_CSRDOFFTIME_MASK) | \
256  (((CSExtDelayFlag) << CSL_GPMC_CONFIG2_CSEXTRADELAY_SHIFT) \
257  & CSL_GPMC_CONFIG2_CSEXTRADELAY_MASK) | \
258  (((CSOnTime) << CSL_GPMC_CONFIG2_CSONTIME_SHIFT) \
259  & CSL_GPMC_CONFIG2_CSONTIME_MASK))
260 
261 
297 #define GPMC_ADV_TIMING_CONFIG(ADVAADMuxWrOffTime, ADVAADMuxRdOffTime, \
298  ADVWrOffTime, ADVRdOffTime, ADVExtDelayFlag, \
299  ADVAADMuxOnTime, \
300  ADVOnTime) \
301  ((uint32_t) (((ADVAADMuxWrOffTime) << \
302  CSL_GPMC_CONFIG3_ADVAADMUXWROFFTIME_SHIFT) & \
303  CSL_GPMC_CONFIG3_ADVAADMUXWROFFTIME_MASK) | \
304  (((ADVAADMuxRdOffTime) << CSL_GPMC_CONFIG3_ADVAADMUXRDOFFTIME_SHIFT) & \
305  CSL_GPMC_CONFIG3_ADVAADMUXRDOFFTIME_MASK) | \
306  (((ADVWrOffTime) << CSL_GPMC_CONFIG3_ADVWROFFTIME_SHIFT) & \
307  CSL_GPMC_CONFIG3_ADVWROFFTIME_MASK) | \
308  (((ADVRdOffTime) << CSL_GPMC_CONFIG3_ADVRDOFFTIME_SHIFT) & \
309  CSL_GPMC_CONFIG3_ADVRDOFFTIME_MASK) | \
310  (((ADVExtDelayFlag) << CSL_GPMC_CONFIG3_ADVEXTRADELAY_SHIFT) & \
311  CSL_GPMC_CONFIG3_ADVEXTRADELAY_MASK) | \
312  (((ADVAADMuxOnTime) << CSL_GPMC_CONFIG3_ADVAADMUXONTIME_SHIFT) & \
313  CSL_GPMC_CONFIG3_ADVAADMUXONTIME_MASK) | \
314  (((ADVOnTime) << CSL_GPMC_CONFIG3_ADVONTIME_SHIFT) & \
315  CSL_GPMC_CONFIG3_ADVONTIME_MASK))
316 
317 
361 #define GPMC_WE_OE_TIMING_CONFIG(WEOffTime, WEExtDelayFlag, WEOnTime, \
362  OEAADMuxOffTime, OEOffTime, OEExtDelayFlag, \
363  OEAADMuxOnTime, OEOnTime) \
364  ((uint32_t) (((WEOffTime) << \
365  CSL_GPMC_CONFIG4_WEOFFTIME_SHIFT) & \
366  CSL_GPMC_CONFIG4_WEOFFTIME_MASK) | \
367  (((WEExtDelayFlag) << \
368  CSL_GPMC_CONFIG4_WEEXTRADELAY_SHIFT) & CSL_GPMC_CONFIG4_WEEXTRADELAY_MASK) | \
369  (((WEOnTime) << \
370  CSL_GPMC_CONFIG4_WEONTIME_SHIFT) & CSL_GPMC_CONFIG4_WEONTIME_MASK) | \
371  (((OEAADMuxOffTime) << \
372  CSL_GPMC_CONFIG4_OEAADMUXOFFTIME_SHIFT) & \
373  CSL_GPMC_CONFIG4_OEAADMUXOFFTIME_MASK) | \
374  (((OEOffTime) << \
375  CSL_GPMC_CONFIG4_OEOFFTIME_SHIFT) & CSL_GPMC_CONFIG4_OEOFFTIME_MASK) | \
376  (((OEExtDelayFlag) << \
377  CSL_GPMC_CONFIG4_OEEXTRADELAY_SHIFT) & CSL_GPMC_CONFIG4_OEEXTRADELAY_MASK) | \
378  (((OEAADMuxOnTime) << \
379  CSL_GPMC_CONFIG4_OEAADMUXONTIME_SHIFT) & \
380  CSL_GPMC_CONFIG4_OEAADMUXONTIME_MASK) | \
381  (((OEOnTime) << \
382  CSL_GPMC_CONFIG4_OEONTIME_SHIFT) & CSL_GPMC_CONFIG4_OEONTIME_MASK))
383 
384 
385 
402 #define GPMC_RDACCESS_CYCLETIME_TIMING_CONFIG(rdCycleTime, wrCycleTime, \
403  rdAccessTime, \
404  pageBurstAccessTime) \
405  ((uint32_t) (((rdCycleTime) << \
406  CSL_GPMC_CONFIG5_RDCYCLETIME_SHIFT) & \
407  CSL_GPMC_CONFIG5_RDCYCLETIME_MASK) | \
408  (((wrCycleTime) << \
409  CSL_GPMC_CONFIG5_WRCYCLETIME_SHIFT) & CSL_GPMC_CONFIG5_WRCYCLETIME_MASK) | \
410  (((rdAccessTime) << \
411  CSL_GPMC_CONFIG5_RDACCESSTIME_SHIFT) & CSL_GPMC_CONFIG5_RDACCESSTIME_MASK) | \
412  (((pageBurstAccessTime) << \
413  CSL_GPMC_CONFIG5_PAGEBURSTACCESSTIME_SHIFT) & \
414  CSL_GPMC_CONFIG5_PAGEBURSTACCESSTIME_MASK))
415 
416 
417 
447 #define GPMC_CYCLE2CYCLE_BUSTURNAROUND_TIMING_CONFIG(cycle2CycleDelay, \
448  cycle2CycleDelaySameCSCfg, \
449  cycle2CycleDelayDiffCSCfg, \
450  busTAtime) \
451  ((uint32_t) (((cycle2CycleDelay) << \
452  CSL_GPMC_CONFIG6_CYCLE2CYCLEDELAY_SHIFT) & \
453  CSL_GPMC_CONFIG6_CYCLE2CYCLEDELAY_MASK) | \
454  (((cycle2CycleDelaySameCSCfg) << \
455  CSL_GPMC_CONFIG6_CYCLE2CYCLESAMECSEN_SHIFT) & \
456  CSL_GPMC_CONFIG6_CYCLE2CYCLESAMECSEN_MASK) | \
457  (((cycle2CycleDelayDiffCSCfg) << \
458  CSL_GPMC_CONFIG6_CYCLE2CYCLEDIFFCSEN_SHIFT) & \
459  CSL_GPMC_CONFIG6_CYCLE2CYCLEDIFFCSEN_MASK) | \
460  (((busTAtime) << \
461  CSL_GPMC_CONFIG6_BUSTURNAROUND_SHIFT) & CSL_GPMC_CONFIG6_BUSTURNAROUND_MASK))
462 
464 #define GPMC_DMA_COPY_LOWER_LIMIT (512U)
465 
466 #define GPMC_CS_BASE_ADDR_SHIFT (24U)
467 
468 #define GPMC_ECC_WRAP_MODE1 (1)
469 
470 #define GPMC_CMD_INVALID (0xFFFFFFFFU)
471 
473 typedef void* GPMC_Handle;
474 
475 /* ========================================================================== */
476 /* Structure Declarations */
477 /* ========================================================================== */
483 typedef enum GPMC_v1_nandEccAlgo_s
484 {
490 
492 
498 typedef enum GPMC_OperatingMode_s {
499 
508 
514 typedef enum GPMC_TransferMode_s {
515 
527 
532 typedef enum GPMC_TransactionType_e {
542 
547 typedef enum GPMC_TransactionStatus_s {
555 
556 
561 typedef struct
562 {
563  uint32_t cmdCycle1;
565  uint32_t cmdCycle2;
567  uint32_t rowAddress;
571  uint32_t colAddress;
575  uint32_t waitTimeout;
577  uint32_t checkReadypin;
580 
581 
586 typedef struct GPMC_Transaction_s {
587 
590  uint32_t count;
592  void *Buf;
594  void *arg;
596  uint32_t transferTimeout;
601 
609 typedef void (*GPMC_CallbackFxn)(GPMC_Handle handle,
610  GPMC_Transaction * transaction);
611 
612 
622 typedef struct GPMC_Params_s
623 {
627  int32_t gpmcDmaChIndex;
629  uint32_t devType;
631  uint32_t devSize;
633  uint32_t chipSel;
635  uint32_t intrEnable;
636 
637  uint32_t dmaEnable;
643 } GPMC_Params;
644 
653 typedef struct
654 {
655  uint32_t regionStartAddr;
657  uint32_t regionSize;
661 
666 typedef struct GPMC_Object_s {
667 
676  /*
677  * State variables
678  */
679  uint32_t isOpen;
691 } GPMC_Object;
692 
696 typedef struct GPMC_timingParams_s
697 {
698  uint32_t csOnTime;
699  /* Chip Select assertion time. */
700  uint32_t csRdOffTime;
702  uint32_t csWrOffTime;
704  uint32_t advOnTime;
706  uint32_t advRdOffTime;
708  uint32_t advWrOffTime;
710  uint32_t advAadMuxOnTime;
716  uint32_t weOnTtime;
718  uint32_t weOffTime;
720  uint32_t oeOnTime;
722  uint32_t oeOffTime;
724  uint32_t oeAadMuxOnTime;
726  uint32_t oeAadMuxOffTime;
728  uint32_t pageBurstAccess;
730  uint32_t rdAccessTime;
732  uint32_t wrAcessTime;
734  uint32_t rdCycleTime;
736  uint32_t wrCycleTime;
754 
758 typedef struct GPMC_HwAttrs_s
759 {
760 
761  uint32_t gpmcBaseAddr;
763  uint32_t dataBaseAddr;
765  uint32_t elmBaseAddr;
767  uint32_t inputClkFreq;
769  uint32_t intrNum;
771  uint32_t intrPriority;
773  uint32_t clkDivider;
775  uint32_t addrDataMux;
777  uint32_t timeLatency;
779  uint32_t chipSelBaseAddr;
781  uint32_t chipSelAddrSize;
783  uint32_t waitPinNum;
785  uint32_t waitPinPol;
791  uint32_t readType;
793  uint32_t writeType;
795  uint32_t csExDelay;
797  uint32_t accessType;
799  uint32_t optimisedAccess;
809 } GPMC_HwAttrs;
810 
814 typedef struct GPMC_Config_s {
815 
821 } GPMC_Config;
822 
823 
825 extern GPMC_Config gGpmcConfig[];
827 extern uint32_t gGpmcConfigNum;
828 
829 /* ========================================================================== */
830 /* Function Declarations */
831 /* ========================================================================== */
837 static inline void GPMC_Params_init(GPMC_Params *params);
838 
842 void GPMC_init(void);
846 void GPMC_deinit(void);
847 
862 GPMC_Handle GPMC_open(uint32_t index, const GPMC_Params *prms);
863 
873 void GPMC_close(GPMC_Handle handle);
874 
884 uint32_t GPMC_getInputClk(GPMC_Handle handle);
885 
898 GPMC_Handle GPMC_getHandle(uint32_t driverInstanceIndex);
899 
908 
920 
929 
941 
952 
963 
974 
984 
997 int32_t GPMC_eccValueSizeSet(GPMC_Handle handle, uint32_t eccSize, uint32_t eccSizeVal);
998 
1009 int32_t GPMC_eccBchConfigureElm(GPMC_Handle handle, uint8_t numSectors);
1010 
1021 int32_t GPMC_eccEngineBCHConfig (GPMC_Handle handle, uint32_t eccSteps);
1022 
1031 
1039 
1052 int32_t GPMC_eccBchFillSyndromeValue(GPMC_Handle handle, uint32_t sector, uint32_t *bchData);
1053 
1065 int32_t GPMC_eccBchStartErrorProcessing(GPMC_Handle handle, uint8_t sector);
1066 
1076 int32_t GPMC_eccBchCheckErrorProcessingStatus(GPMC_Handle handle, uint32_t sector);
1077 
1091 int32_t GPMC_eccBchSectorGetError(GPMC_Handle handle, uint32_t sector, uint32_t *errCount, uint32_t *errLoc);
1092 
1104 int32_t GPMC_eccCalculateBchSyndromePolynomial(GPMC_Handle handle, uint8_t *pEccdata, uint32_t sector);
1105 
1117 int32_t GPMC_eccGetBchSyndromePolynomial(GPMC_Handle handle, uint32_t sector, uint32_t *bchData);
1118 
1128 
1138 
1148 /* ========================================================================== */
1149 /* Static Function Definitions */
1150 /* ========================================================================== */
1151 static inline void GPMC_Params_init(GPMC_Params *params)
1152 {
1153  if (params != NULL)
1154  {
1155  params->dmaEnable = FALSE;
1156  params->intrEnable = FALSE;
1157  params->chipSel = 0;
1158  params->devType = CSL_GPMC_CONFIG1_DEVICETYPE_NANDLIKE;
1159  params->devType = CSL_GPMC_CONFIG1_DEVICESIZE_EIGHTBITS;
1160  params->gpmcDmaChIndex = -1;
1162  params->transferCallBckFunc = NULL;
1163  }
1164 }
1165 
1166 #ifdef __cplusplus
1167 }
1168 #endif
1169 
1170 #endif /* _GPMC__H_ */
1171 
GPMC_Object::transferCallbackFxn
GPMC_CallbackFxn transferCallbackFxn
Definition: gpmc/v0/gpmc.h:670
GPMC_Object
GPMC driver object.
Definition: gpmc/v0/gpmc.h:666
GPMC_writeNandCommand
int32_t GPMC_writeNandCommand(GPMC_Handle handle, GPMC_nandCmdParams *cmdParams)
Function to write NAND command parameters.
GPMC_HwAttrs::waitPinPol
uint32_t waitPinPol
Definition: gpmc/v0/gpmc.h:785
GPMC_configureTimingParameters
int32_t GPMC_configureTimingParameters(GPMC_Handle handle)
Function to configure GPMC timing parameters.
GPMC_HwAttrs::waitPinNum
uint32_t waitPinNum
Definition: gpmc/v0/gpmc.h:783
GPMC_eccBchConfigureElm
int32_t GPMC_eccBchConfigureElm(GPMC_Handle handle, uint8_t numSectors)
Function to configure ELM module for error correction.
GPMC_configurePrefetchPostWriteEngine
int32_t GPMC_configurePrefetchPostWriteEngine(GPMC_Handle handle)
Function to configure GPMC PREFETCH read and POST write engine.
GPMC_timingParams::cycleDelaySameChipSel
uint32_t cycleDelaySameChipSel
Definition: gpmc/v0/gpmc.h:742
GPMC_TRANSACTION_TYPE_WRITE_CMDREG
@ GPMC_TRANSACTION_TYPE_WRITE_CMDREG
Definition: gpmc/v0/gpmc.h:539
GPMC_Object::isOpen
uint32_t isOpen
Definition: gpmc/v0/gpmc.h:679
GPMC_HwAttrs::intrPriority
uint32_t intrPriority
Definition: gpmc/v0/gpmc.h:771
GPMC_HwAttrs::dataBaseAddr
uint32_t dataBaseAddr
Definition: gpmc/v0/gpmc.h:763
GPMC_TRANSFER_CSN_DEASSERT
@ GPMC_TRANSFER_CSN_DEASSERT
Definition: gpmc/v0/gpmc.h:552
GPMC_Params::transferCallBckFunc
GPMC_CallbackFxn transferCallBckFunc
Definition: gpmc/v0/gpmc.h:641
GPMC_HwAttrs::writeType
uint32_t writeType
Definition: gpmc/v0/gpmc.h:793
GPMC_init
void GPMC_init(void)
This function initializes the GPMC module.
GPMC_timingParams::csOnTime
uint32_t csOnTime
Definition: gpmc/v0/gpmc.h:698
GPMC_HwAttrs::intrNum
uint32_t intrNum
Definition: gpmc/v0/gpmc.h:769
GPMC_timingParams::rdCycleTime
uint32_t rdCycleTime
Definition: gpmc/v0/gpmc.h:734
GPMC_TRANSACTION_TYPE_READ_CMDREG
@ GPMC_TRANSACTION_TYPE_READ_CMDREG
Definition: gpmc/v0/gpmc.h:537
GPMC_timingParams::rdAccessTime
uint32_t rdAccessTime
Definition: gpmc/v0/gpmc.h:730
GPMC_Handle
void * GPMC_Handle
A handle that is returned from a GPMC_open() call.
Definition: gpmc/v0/gpmc.h:473
GPMC_nandWriteData
int32_t GPMC_nandWriteData(GPMC_Handle handle, GPMC_Transaction *trans)
Function to write data to NANDflash using CPU prefetch/post write engine.
GPMC_nandReadData
int32_t GPMC_nandReadData(GPMC_Handle handle, GPMC_Transaction *trans)
Function to read data from NAND flash using DMA or CPU prefetch/post write engine.
index
uint16_t index
Definition: tisci_rm_proxy.h:3
GPMC_timingParams::oeOffTime
uint32_t oeOffTime
Definition: gpmc/v0/gpmc.h:722
GPMC_TRANSFER_FAILED
@ GPMC_TRANSFER_FAILED
Definition: gpmc/v0/gpmc.h:551
SystemP.h
GPMC_timingParams::busTurnAroundTime
uint32_t busTurnAroundTime
Definition: gpmc/v0/gpmc.h:748
GPMC_timingParams::advAadMuxOnTime
uint32_t advAadMuxOnTime
Definition: gpmc/v0/gpmc.h:710
GPMC_Config
GPMC Driver configuration structure.
Definition: gpmc/v0/gpmc.h:814
GPMC_Config::attrs
const GPMC_HwAttrs * attrs
Definition: gpmc/v0/gpmc.h:816
GPMC_HwAttrs::optimisedAccess
uint32_t optimisedAccess
Definition: gpmc/v0/gpmc.h:799
GPMC_HwAttrs::gpmcBaseAddr
uint32_t gpmcBaseAddr
Definition: gpmc/v0/gpmc.h:761
GPMC_Config::object
GPMC_Object * object
Definition: gpmc/v0/gpmc.h:818
GPMC_AddrRegion::regionSize
uint32_t regionSize
Definition: gpmc/v0/gpmc.h:657
GPMC_HwAttrs::csExDelay
uint32_t csExDelay
Definition: gpmc/v0/gpmc.h:795
GPMC_Params::transferMode
GPMC_TransferMode transferMode
Definition: gpmc/v0/gpmc.h:639
GPMC_Transaction
GPMC_Transaction data structure is used with GPMC_transactionInit(), GPMC_nandReadData() and GPMC_nan...
Definition: gpmc/v0/gpmc.h:586
GPMC_transactionInit
void GPMC_transactionInit(GPMC_Transaction *trans)
Function to initialise GPMC_Transaction structure to default values.
GPMC_HwAttrs
GPMC instance attributes.
Definition: gpmc/v0/gpmc.h:759
GPMC_HwAttrs::inputClkFreq
uint32_t inputClkFreq
Definition: gpmc/v0/gpmc.h:767
GPMC_Transaction::Buf
void * Buf
Definition: gpmc/v0/gpmc.h:592
GPMC_timingParams::cycle2CycleDelay
uint32_t cycle2CycleDelay
Definition: gpmc/v0/gpmc.h:740
GPMC_setDeviceType
int32_t GPMC_setDeviceType(GPMC_Handle handle)
Function to set device type (NANDLIKE OR NORLIKE) for GPMC instance connected to external device.
GPMC_NAND_ECC_ALGO_HAMMING_1BIT
@ GPMC_NAND_ECC_ALGO_HAMMING_1BIT
Definition: gpmc/v0/gpmc.h:486
GPMC_Transaction::transferTimeout
uint32_t transferTimeout
Definition: gpmc/v0/gpmc.h:596
GPMC_eccCalculateBchSyndromePolynomial
int32_t GPMC_eccCalculateBchSyndromePolynomial(GPMC_Handle handle, uint8_t *pEccdata, uint32_t sector)
Function to compute BCH syndrome polynomial for NAND write operation.
GPMC_HwAttrs::timeLatency
uint32_t timeLatency
Definition: gpmc/v0/gpmc.h:777
GPMC_eccResultRegisterClear
void GPMC_eccResultRegisterClear(GPMC_Handle handle)
Function to clear GPMC ECC result register.
GPMC_HwAttrs::cycleOptimisation
uint32_t cycleOptimisation
Definition: gpmc/v0/gpmc.h:801
GPMC_OperatingMode
GPMC_OperatingMode
GPMC driver operating modes.
Definition: gpmc/v0/gpmc.h:498
GPMC_OPERATING_MODE_POLLING
@ GPMC_OPERATING_MODE_POLLING
Definition: gpmc/v0/gpmc.h:504
GPMC_HwAttrs::chipSelAddrSize
uint32_t chipSelAddrSize
Definition: gpmc/v0/gpmc.h:781
SemaphoreP.h
GPMC_Params::devType
uint32_t devType
Definition: gpmc/v0/gpmc.h:629
GPMC_Transaction::transType
GPMC_TransactionType transType
Definition: gpmc/v0/gpmc.h:588
GPMC_enableFlashWriteProtect
int32_t GPMC_enableFlashWriteProtect(GPMC_Handle handle)
Function to disable WRITE protect line.
GPMC_nandCmdParams::numRowAddrCycles
uint32_t numRowAddrCycles
Definition: gpmc/v0/gpmc.h:569
GPMC_NAND_ECC_ALGO_BCH_8BIT
@ GPMC_NAND_ECC_ALGO_BCH_8BIT
Definition: gpmc/v0/gpmc.h:488
GPMC_Object::mutex
SemaphoreP_Object mutex
Definition: gpmc/v0/gpmc.h:683
GPMC_nandCmdParams::cmdCycle2
uint32_t cmdCycle2
Definition: gpmc/v0/gpmc.h:565
GPMC_NAND_ECC_ALGO_BCH_16BIT
@ GPMC_NAND_ECC_ALGO_BCH_16BIT
Definition: gpmc/v0/gpmc.h:489
GPMC_timingParams::wrCycleTime
uint32_t wrCycleTime
Definition: gpmc/v0/gpmc.h:736
GPMC_TRANSACTION_TYPE_READ
@ GPMC_TRANSACTION_TYPE_READ
Definition: gpmc/v0/gpmc.h:533
GPMC_Object::hwi
HwiP_Object hwi
Definition: gpmc/v0/gpmc.h:681
GPMC_OPERATING_MODE_BLOCKING
@ GPMC_OPERATING_MODE_BLOCKING
Definition: gpmc/v0/gpmc.h:500
GPMC_Params_init
static void GPMC_Params_init(GPMC_Params *params)
Function to initialize the GPMC_Params struct to its defaults.
Definition: gpmc/v0/gpmc.h:1151
GPMC_setDeviceSize
int32_t GPMC_setDeviceSize(GPMC_Handle handle)
Function to set device width for GPMC instance connected to external device.
GPMC_timingParams::oeOnTime
uint32_t oeOnTime
Definition: gpmc/v0/gpmc.h:720
GPMC_timingParams::oeAadMuxOffTime
uint32_t oeAadMuxOffTime
Definition: gpmc/v0/gpmc.h:726
CacheP.h
GPMC_TransferMode
GPMC_TransferMode
GPMC data transfer modes.
Definition: gpmc/v0/gpmc.h:514
GPMC_eccGetBchSyndromePolynomial
int32_t GPMC_eccGetBchSyndromePolynomial(GPMC_Handle handle, uint32_t sector, uint32_t *bchData)
Function to get BCH syndrome polynomial per sector NAND read operation.
GPMC_close
void GPMC_close(GPMC_Handle handle)
Function to close a GPMC peripheral specified by the GPMC handle.
GPMC_HwAttrs::timingParams
GPMC_timingParams timingParams
Definition: gpmc/v0/gpmc.h:787
GPMC_timingParams::weOffTime
uint32_t weOffTime
Definition: gpmc/v0/gpmc.h:718
GPMC_nandCmdParams::waitTimeout
uint32_t waitTimeout
Definition: gpmc/v0/gpmc.h:575
GPMC_Params::intrEnable
uint32_t intrEnable
Definition: gpmc/v0/gpmc.h:635
GPMC_Object::params
GPMC_Params params
Definition: gpmc/v0/gpmc.h:672
GPMC_timingParams::advOnTime
uint32_t advOnTime
Definition: gpmc/v0/gpmc.h:704
GPMC_nandCmdParams::colAddress
uint32_t colAddress
Definition: gpmc/v0/gpmc.h:571
GPMC_timingParams::weOnTtime
uint32_t weOnTtime
Definition: gpmc/v0/gpmc.h:716
GPMC_disableFlashWriteProtect
int32_t GPMC_disableFlashWriteProtect(GPMC_Handle handle)
Function to disable WRITE protect line.
GPMC_TRANSFER_MODE_BLOCKING
@ GPMC_TRANSFER_MODE_BLOCKING
Definition: gpmc/v0/gpmc.h:516
GPMC_NAND_ECC_ALGO_BCH_4BIT
@ GPMC_NAND_ECC_ALGO_BCH_4BIT
Definition: gpmc/v0/gpmc.h:487
GPMC_open
GPMC_Handle GPMC_open(uint32_t index, const GPMC_Params *prms)
This function opens a given GPMC peripheral.
GPMC_eccValueSizeSet
int32_t GPMC_eccValueSizeSet(GPMC_Handle handle, uint32_t eccSize, uint32_t eccSizeVal)
Function to set ECC used and unused bytes size in nibbles.
GPMC_timingParams::oeAadMuxOnTime
uint32_t oeAadMuxOnTime
Definition: gpmc/v0/gpmc.h:724
GPMC_HwAttrs::elmBaseAddr
uint32_t elmBaseAddr
Definition: gpmc/v0/gpmc.h:765
GPMC_NAND_ECC_ALGO_NONE
@ GPMC_NAND_ECC_ALGO_NONE
Definition: gpmc/v0/gpmc.h:485
GPMC_timingParams::csWrOffTime
uint32_t csWrOffTime
Definition: gpmc/v0/gpmc.h:702
HwiP.h
GPMC_HwAttrs::eccAlgo
GPMC_nandEccAlgo eccAlgo
Definition: gpmc/v0/gpmc.h:789
GPMC_timingParams::advAadMuxRdOffTime
uint32_t advAadMuxRdOffTime
Definition: gpmc/v0/gpmc.h:712
GPMC_TRANSFER_CANCELED
@ GPMC_TRANSFER_CANCELED
Definition: gpmc/v0/gpmc.h:550
GPMC_AddrRegion::regionStartAddr
uint32_t regionStartAddr
Definition: gpmc/v0/gpmc.h:655
GPMC_timingParams::cycleDelayDiffChipSel
uint32_t cycleDelayDiffChipSel
Definition: gpmc/v0/gpmc.h:745
GPMC_timingParams::advWrOffTime
uint32_t advWrOffTime
Definition: gpmc/v0/gpmc.h:708
GPMC_timingParams
GPMC timing parameters.
Definition: gpmc/v0/gpmc.h:697
GPMC_TRANSFER_TIMEOUT
@ GPMC_TRANSFER_TIMEOUT
Definition: gpmc/v0/gpmc.h:553
GPMC_nandCmdParams::numColAddrCycles
uint32_t numColAddrCycles
Definition: gpmc/v0/gpmc.h:573
GPMC_TRANSFER_STARTED
@ GPMC_TRANSFER_STARTED
Definition: gpmc/v0/gpmc.h:549
GPMC_Object::transferComplete
SemaphoreP_Object transferComplete
Definition: gpmc/v0/gpmc.h:685
gGpmcConfigNum
uint32_t gGpmcConfigNum
Externally defined driver configuration array size.
GPMC_eccBchFillSyndromeValue
int32_t GPMC_eccBchFillSyndromeValue(GPMC_Handle handle, uint32_t sector, uint32_t *bchData)
Function to fill BCH syndrome value per sector to ELM module.
GPMC_timingParams::advAadMuxWrOffTime
uint32_t advAadMuxWrOffTime
Definition: gpmc/v0/gpmc.h:714
GPMC_OPERATING_MODE_CALLBACK
@ GPMC_OPERATING_MODE_CALLBACK
Definition: gpmc/v0/gpmc.h:502
GPMC_eccBchSectorGetError
int32_t GPMC_eccBchSectorGetError(GPMC_Handle handle, uint32_t sector, uint32_t *errCount, uint32_t *errLoc)
Function to get number of errors per sector by ELM module.
GPMC_HwAttrs::dmaRestrictedRegions
const GPMC_AddrRegion * dmaRestrictedRegions
Definition: gpmc/v0/gpmc.h:803
GPMC_Object::handle
GPMC_Handle handle
Definition: gpmc/v0/gpmc.h:668
GPMC_nandCmdParams::cmdCycle1
uint32_t cmdCycle1
Definition: gpmc/v0/gpmc.h:563
GPMC_timingParams::csRdOffTime
uint32_t csRdOffTime
Definition: gpmc/v0/gpmc.h:700
GPMC_nandCmdParams::rowAddress
uint32_t rowAddress
Definition: gpmc/v0/gpmc.h:567
GPMC_eccEngineEnable
int32_t GPMC_eccEngineEnable(GPMC_Handle handle)
Function to enable GPMC ECC engine.
GPMC_Transaction::arg
void * arg
Definition: gpmc/v0/gpmc.h:594
GPMC_Params
GPMC driver instance parameters.
Definition: gpmc/v0/gpmc.h:623
GPMC_TRANSFER_MODE_CALLBACK
@ GPMC_TRANSFER_MODE_CALLBACK
Definition: gpmc/v0/gpmc.h:521
GPMC_HwAttrs::accessType
uint32_t accessType
Definition: gpmc/v0/gpmc.h:797
GPMC_eccBchCheckErrorProcessingStatus
int32_t GPMC_eccBchCheckErrorProcessingStatus(GPMC_Handle handle, uint32_t sector)
Function to get error processing status for a sector by ELM module.
GPMC_Transaction::count
uint32_t count
Definition: gpmc/v0/gpmc.h:590
GPMC_HwAttrs::readType
uint32_t readType
Definition: gpmc/v0/gpmc.h:791
GPMC_getHandle
GPMC_Handle GPMC_getHandle(uint32_t driverInstanceIndex)
This function returns the handle of an open GPMC Instance from the instance index.
GPMC_Object::gpmcDmaHandle
void * gpmcDmaHandle
Definition: gpmc/v0/gpmc.h:689
GPMC_getInputClk
uint32_t GPMC_getInputClk(GPMC_Handle handle)
This function returns the input clk frequency GPMC was programmed at.
HwiP_Object
Opaque Hwi object used with the Hwi APIs.
Definition: HwiP.h:93
GPMC_HwAttrs::chipSelBaseAddr
uint32_t chipSelBaseAddr
Definition: gpmc/v0/gpmc.h:779
GPMC_timingParams::wrAcessTime
uint32_t wrAcessTime
Definition: gpmc/v0/gpmc.h:732
GPMC_TRANSFER_COMPLETED
@ GPMC_TRANSFER_COMPLETED
Definition: gpmc/v0/gpmc.h:548
SemaphoreP_Object
Opaque semaphore object used with the semaphore APIs.
Definition: SemaphoreP.h:59
GPMC_Object::operMode
GPMC_OperatingMode operMode
Definition: gpmc/v0/gpmc.h:674
GPMC_nandCmdParams
Data structure to set NAND command parameters.
Definition: gpmc/v0/gpmc.h:562
GPMC_Params::gpmcDmaChIndex
int32_t gpmcDmaChIndex
Definition: gpmc/v0/gpmc.h:627
GPMC_HwAttrs::clkDivider
uint32_t clkDivider
Definition: gpmc/v0/gpmc.h:773
GPMC_Params::chipSel
uint32_t chipSel
Definition: gpmc/v0/gpmc.h:633
GPMC_timingParams::pageBurstAccess
uint32_t pageBurstAccess
Definition: gpmc/v0/gpmc.h:728
GPMC_Params::dmaEnable
uint32_t dmaEnable
Definition: gpmc/v0/gpmc.h:637
GPMC_Transaction::status
GPMC_TransactionStatus status
Definition: gpmc/v0/gpmc.h:598
GPMC_nandCmdParams::checkReadypin
uint32_t checkReadypin
Definition: gpmc/v0/gpmc.h:577
GPMC_TransactionType
GPMC_TransactionType
Type of the GPMC transaction for read and write.
Definition: gpmc/v0/gpmc.h:532
GPMC_nandEccAlgo
GPMC_nandEccAlgo
GPMC ECC engine algoritms.
Definition: gpmc/v0/gpmc.h:484
GPMC_timingParams::advRdOffTime
uint32_t advRdOffTime
Definition: gpmc/v0/gpmc.h:706
GPMC_AddrRegion
GPMC Address Region.
Definition: gpmc/v0/gpmc.h:654
GPMC_Object::transaction
GPMC_Transaction * transaction
Definition: gpmc/v0/gpmc.h:687
GPMC_writeNandCommandParamsInit
void GPMC_writeNandCommandParamsInit(GPMC_nandCmdParams *cmdParams)
Function to initialise GPMC_nandCmdParams structure to default values.
GPMC_CallbackFxn
void(* GPMC_CallbackFxn)(GPMC_Handle handle, GPMC_Transaction *transaction)
The definition of a callback function used by the GPMC driver when used in GPMC_OPERATING_MODE_CALLBA...
Definition: gpmc/v0/gpmc.h:609
GPMC_TRANSACTION_TYPE_WRITE
@ GPMC_TRANSACTION_TYPE_WRITE
Definition: gpmc/v0/gpmc.h:535
GPMC_timingParams::wrDataOnMuxBusTime
uint32_t wrDataOnMuxBusTime
Definition: gpmc/v0/gpmc.h:738
GPMC_HwAttrs::addrDataMux
uint32_t addrDataMux
Definition: gpmc/v0/gpmc.h:775
gGpmcConfig
GPMC_Config gGpmcConfig[]
Externally defined driver configuration array.
GPMC_deinit
void GPMC_deinit(void)
This function de-initializes the GPMC module.
GPMC_eccBchStartErrorProcessing
int32_t GPMC_eccBchStartErrorProcessing(GPMC_Handle handle, uint8_t sector)
Function to start error processing for a sector by ELM module.
GPMC_eccEngineBCHConfig
int32_t GPMC_eccEngineBCHConfig(GPMC_Handle handle, uint32_t eccSteps)
Function to configure GPMC ECC engine for BCH algorithm.
GPMC_TransactionStatus
GPMC_TransactionStatus
Transaction status codes that are set by the GPMC driver.
Definition: gpmc/v0/gpmc.h:547
GPMC_Params::devSize
uint32_t devSize
Definition: gpmc/v0/gpmc.h:631