Skip to content

Commit

Permalink
mtd: nand: Declare tBERS, tR and tPROG as u64 to avoid integer overflow
Browse files Browse the repository at this point in the history
All timings in nand_sdr_timings are expressed in picoseconds but some
of them may not fit in an u32.

Signed-off-by: Boris Brezillon <[email protected]>
Fixes: 204e7ec ("mtd: nand: Add a few more timings to nand_sdr_timings")
Reported-by: Alexander Dahl <[email protected]>
Cc: <[email protected]>
Reviewed-by: Alexander Dahl <[email protected]>
Tested-by: Alexander Dahl <[email protected]>
Signed-off-by: Boris Brezillon <[email protected]>
  • Loading branch information
Boris Brezillon committed Aug 2, 2017
1 parent a11bf5e commit 6d29231
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 6 deletions.
6 changes: 3 additions & 3 deletions drivers/mtd/nand/nand_timings.c
Original file line number Diff line number Diff line change
Expand Up @@ -311,9 +311,9 @@ int onfi_init_data_interface(struct nand_chip *chip,
struct nand_sdr_timings *timings = &iface->timings.sdr;

/* microseconds -> picoseconds */
timings->tPROG_max = 1000000UL * le16_to_cpu(params->t_prog);
timings->tBERS_max = 1000000UL * le16_to_cpu(params->t_bers);
timings->tR_max = 1000000UL * le16_to_cpu(params->t_r);
timings->tPROG_max = 1000000ULL * le16_to_cpu(params->t_prog);
timings->tBERS_max = 1000000ULL * le16_to_cpu(params->t_bers);
timings->tR_max = 1000000ULL * le16_to_cpu(params->t_r);

/* nanoseconds -> picoseconds */
timings->tCCS_min = 1000UL * le16_to_cpu(params->t_ccs);
Expand Down
6 changes: 3 additions & 3 deletions include/linux/mtd/nand.h
Original file line number Diff line number Diff line change
Expand Up @@ -681,10 +681,10 @@ struct nand_buffers {
* @tWW_min: WP# transition to WE# low
*/
struct nand_sdr_timings {
u32 tBERS_max;
u64 tBERS_max;
u32 tCCS_min;
u32 tPROG_max;
u32 tR_max;
u64 tPROG_max;
u64 tR_max;
u32 tALH_min;
u32 tADL_min;
u32 tALS_min;
Expand Down

0 comments on commit 6d29231

Please sign in to comment.