mirror of
https://github.com/lkl/linux.git
synced 2025-12-19 16:13:19 +09:00
mtd: rawnand: Access SDR and NV-DDR timings through a common macro
Most timings related to the bus timings are different between SDR and NV-DDR. However, we identified 9 individual timings which are more related to the NAND chip internals. These are common between the two interface types. Fortunately, only these common timings are being shared through the NAND core and its ->exec_op() interface, which allows the writing of a simple macro checking the interface type and depending on it, returning either the relevant SDR timing or the NV-DDR timing. This is the purpose of the NAND_COMMON_TIMING_PS() macro. As all this is evaluated at build time, one will immediately be notified in case a non common timing is being accessed through this macro. Two handy macros are also inserted at the same time, which use PSEC_TO_NSEC or PSEC_TO_MSEC so that it is very easy to return timings in milli-, nano- or pico-seconds, as usually requested by the internal API. Signed-off-by: Miquel Raynal <miquel.raynal@bootlin.com> Link: https://lore.kernel.org/linux-mtd/20210505213750.257417-14-miquel.raynal@bootlin.com
This commit is contained in:
@@ -557,6 +557,34 @@ struct nand_nvddr_timings {
|
||||
u32 tWW_min;
|
||||
};
|
||||
|
||||
/*
|
||||
* While timings related to the data interface itself are mostly different
|
||||
* between SDR and NV-DDR, timings related to the internal chip behavior are
|
||||
* common. IOW, the following entries which describe the internal delays have
|
||||
* the same definition and are shared in both SDR and NV-DDR timing structures:
|
||||
* - tADL_min
|
||||
* - tBERS_max
|
||||
* - tCCS_min
|
||||
* - tFEAT_max
|
||||
* - tPROG_max
|
||||
* - tR_max
|
||||
* - tRR_min
|
||||
* - tRST_max
|
||||
* - tWB_max
|
||||
*
|
||||
* The below macros return the value of a given timing, no matter the interface.
|
||||
*/
|
||||
#define NAND_COMMON_TIMING_PS(conf, timing_name) \
|
||||
nand_interface_is_sdr(conf) ? \
|
||||
nand_get_sdr_timings(conf)->timing_name : \
|
||||
nand_get_nvddr_timings(conf)->timing_name
|
||||
|
||||
#define NAND_COMMON_TIMING_MS(conf, timing_name) \
|
||||
PSEC_TO_MSEC(NAND_COMMON_TIMING_PS((conf), timing_name))
|
||||
|
||||
#define NAND_COMMON_TIMING_NS(conf, timing_name) \
|
||||
PSEC_TO_NSEC(NAND_COMMON_TIMING_PS((conf), timing_name))
|
||||
|
||||
/**
|
||||
* enum nand_interface_type - NAND interface type
|
||||
* @NAND_SDR_IFACE: Single Data Rate interface
|
||||
|
||||
Reference in New Issue
Block a user