All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] mtd: Fixes for v5.10-rc6
@ 2020-11-27 18:38 ` Miquel Raynal
  0 siblings, 0 replies; 4+ messages in thread
From: Miquel Raynal @ 2020-11-27 18:38 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: linux-mtd, Richard Weinberger, Tudor Ambarus,
	Vignesh Raghavendra, Frieder Schrempf, linux-kernel

Hello Linus,

This is an MTD fixes PR for the next -rc.

Thanks,
Miquèl

The following changes since commit f8394f232b1eab649ce2df5c5f15b0e528c92091:

  Linux 5.10-rc3 (2020-11-08 16:10:16 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git tags/mtd/fixes-for-5.10-rc6

for you to fetch changes up to b36bf0a0fe5d18561dd98eb774ef61dd396edc42:

  mtd: rawnand: socrates: Move the ECC initialization to ->attach_chip() (2020-11-20 12:31:26 +0100)

----------------------------------------------------------------
Raw NAND changes:
* Because of a recent change in the core, NAND controller drivers
  initializing the ECC engine too early in the probe path are
  broken. Drivers should wait for the NAND device to be discovered and
  its memory layout known before doing any ECC related initialization,
  so instead of reverting the faulty change which is actually moving
  in the right direction, let's fix the drivers directly: socrates,
  sharpsl, r852, plat_nand, pasemi, tmio, txx9ndfmc, orion, mpc5121,
  lpc32xx_slc, lpc32xx_mlc, fsmc, diskonchip, davinci, cs553x, au1550,
  ams-delta, xway and gpio.

----------------------------------------------------------------
Miquel Raynal (19):
      mtd: rawnand: gpio: Move the ECC initialization to ->attach_chip()
      mtd: rawnand: xway: Move the ECC initialization to ->attach_chip()
      mtd: rawnand: ams-delta: Move the ECC initialization to ->attach_chip()
      mtd: rawnand: au1550: Move the ECC initialization to ->attach_chip()
      mtd: rawnand: cs553x: Move the ECC initialization to ->attach_chip()
      mtd: rawnand: davinci: Move the ECC initialization to ->attach_chip()
      mtd: rawnand: diskonchip: Move the ECC initialization to ->attach_chip()
      mtd: rawnand: fsmc: Move the ECC initialization to ->attach_chip()
      mtd: rawnand: lpc32xx_mlc: Move the ECC initialization to ->attach_chip()
      mtd: rawnand: lpc32xx_slc: Move the ECC initialization to ->attach_chip()
      mtd: rawnand: mpc5121: Move the ECC initialization to ->attach_chip()
      mtd: rawnand: orion: Move the ECC initialization to ->attach_chip()
      mtd: rawnand: txx9ndfmc: Move the ECC initialization to ->attach_chip()
      mtd: rawnand: tmio: Move the ECC initialization to ->attach_chip()
      mtd: rawnand: pasemi: Move the ECC initialization to ->attach_chip()
      mtd: rawnand: plat_nand: Move the ECC initialization to ->attach_chip()
      mtd: rawnand: r852: Move the ECC initialization to ->attach_chip()
      mtd: rawnand: sharpsl: Move the ECC initialization to ->attach_chip()
      mtd: rawnand: socrates: Move the ECC initialization to ->attach_chip()

 drivers/mtd/nand/raw/ams-delta.c     | 12 +++++++++---
 drivers/mtd/nand/raw/au1550nd.c      | 11 +++++++++--
 drivers/mtd/nand/raw/cs553x_nand.c   | 24 ++++++++++++++++--------
 drivers/mtd/nand/raw/davinci_nand.c  |  8 ++++----
 drivers/mtd/nand/raw/diskonchip.c    | 29 +++++++++++++++++++----------
 drivers/mtd/nand/raw/fsmc_nand.c     | 30 +++++++++++++++---------------
 drivers/mtd/nand/raw/gpio.c          | 11 +++++++++--
 drivers/mtd/nand/raw/lpc32xx_mlc.c   | 23 +++++++++++++----------
 drivers/mtd/nand/raw/lpc32xx_slc.c   | 26 ++++++++++++++------------
 drivers/mtd/nand/raw/mpc5121_nfc.c   | 19 +++++++++++++++++--
 drivers/mtd/nand/raw/orion_nand.c    | 19 +++++++++++++++++--
 drivers/mtd/nand/raw/pasemi_nand.c   | 19 +++++++++++++++++--
 drivers/mtd/nand/raw/plat_nand.c     | 20 +++++++++++++++++---
 drivers/mtd/nand/raw/r852.c          | 40 +++++++++++++++++++++++++++-------------
 drivers/mtd/nand/raw/r852.h          |  1 +
 drivers/mtd/nand/raw/sharpsl.c       | 32 ++++++++++++++++++++++++--------
 drivers/mtd/nand/raw/socrates_nand.c | 21 +++++++++++++++++----
 drivers/mtd/nand/raw/tmio_nand.c     | 33 ++++++++++++++++++++++++---------
 drivers/mtd/nand/raw/txx9ndfmc.c     | 14 +++++++++-----
 drivers/mtd/nand/raw/xway_nand.c     | 18 ++++++++++++++++--
 20 files changed, 294 insertions(+), 116 deletions(-)

^ permalink raw reply	[flat|nested] 4+ messages in thread

* [GIT PULL] mtd: Fixes for v5.10-rc6
@ 2020-11-27 18:38 ` Miquel Raynal
  0 siblings, 0 replies; 4+ messages in thread
From: Miquel Raynal @ 2020-11-27 18:38 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: Vignesh Raghavendra, Tudor Ambarus, Richard Weinberger,
	linux-kernel, Frieder Schrempf, linux-mtd

Hello Linus,

This is an MTD fixes PR for the next -rc.

Thanks,
Miquèl

The following changes since commit f8394f232b1eab649ce2df5c5f15b0e528c92091:

  Linux 5.10-rc3 (2020-11-08 16:10:16 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git tags/mtd/fixes-for-5.10-rc6

for you to fetch changes up to b36bf0a0fe5d18561dd98eb774ef61dd396edc42:

  mtd: rawnand: socrates: Move the ECC initialization to ->attach_chip() (2020-11-20 12:31:26 +0100)

----------------------------------------------------------------
Raw NAND changes:
* Because of a recent change in the core, NAND controller drivers
  initializing the ECC engine too early in the probe path are
  broken. Drivers should wait for the NAND device to be discovered and
  its memory layout known before doing any ECC related initialization,
  so instead of reverting the faulty change which is actually moving
  in the right direction, let's fix the drivers directly: socrates,
  sharpsl, r852, plat_nand, pasemi, tmio, txx9ndfmc, orion, mpc5121,
  lpc32xx_slc, lpc32xx_mlc, fsmc, diskonchip, davinci, cs553x, au1550,
  ams-delta, xway and gpio.

----------------------------------------------------------------
Miquel Raynal (19):
      mtd: rawnand: gpio: Move the ECC initialization to ->attach_chip()
      mtd: rawnand: xway: Move the ECC initialization to ->attach_chip()
      mtd: rawnand: ams-delta: Move the ECC initialization to ->attach_chip()
      mtd: rawnand: au1550: Move the ECC initialization to ->attach_chip()
      mtd: rawnand: cs553x: Move the ECC initialization to ->attach_chip()
      mtd: rawnand: davinci: Move the ECC initialization to ->attach_chip()
      mtd: rawnand: diskonchip: Move the ECC initialization to ->attach_chip()
      mtd: rawnand: fsmc: Move the ECC initialization to ->attach_chip()
      mtd: rawnand: lpc32xx_mlc: Move the ECC initialization to ->attach_chip()
      mtd: rawnand: lpc32xx_slc: Move the ECC initialization to ->attach_chip()
      mtd: rawnand: mpc5121: Move the ECC initialization to ->attach_chip()
      mtd: rawnand: orion: Move the ECC initialization to ->attach_chip()
      mtd: rawnand: txx9ndfmc: Move the ECC initialization to ->attach_chip()
      mtd: rawnand: tmio: Move the ECC initialization to ->attach_chip()
      mtd: rawnand: pasemi: Move the ECC initialization to ->attach_chip()
      mtd: rawnand: plat_nand: Move the ECC initialization to ->attach_chip()
      mtd: rawnand: r852: Move the ECC initialization to ->attach_chip()
      mtd: rawnand: sharpsl: Move the ECC initialization to ->attach_chip()
      mtd: rawnand: socrates: Move the ECC initialization to ->attach_chip()

 drivers/mtd/nand/raw/ams-delta.c     | 12 +++++++++---
 drivers/mtd/nand/raw/au1550nd.c      | 11 +++++++++--
 drivers/mtd/nand/raw/cs553x_nand.c   | 24 ++++++++++++++++--------
 drivers/mtd/nand/raw/davinci_nand.c  |  8 ++++----
 drivers/mtd/nand/raw/diskonchip.c    | 29 +++++++++++++++++++----------
 drivers/mtd/nand/raw/fsmc_nand.c     | 30 +++++++++++++++---------------
 drivers/mtd/nand/raw/gpio.c          | 11 +++++++++--
 drivers/mtd/nand/raw/lpc32xx_mlc.c   | 23 +++++++++++++----------
 drivers/mtd/nand/raw/lpc32xx_slc.c   | 26 ++++++++++++++------------
 drivers/mtd/nand/raw/mpc5121_nfc.c   | 19 +++++++++++++++++--
 drivers/mtd/nand/raw/orion_nand.c    | 19 +++++++++++++++++--
 drivers/mtd/nand/raw/pasemi_nand.c   | 19 +++++++++++++++++--
 drivers/mtd/nand/raw/plat_nand.c     | 20 +++++++++++++++++---
 drivers/mtd/nand/raw/r852.c          | 40 +++++++++++++++++++++++++++-------------
 drivers/mtd/nand/raw/r852.h          |  1 +
 drivers/mtd/nand/raw/sharpsl.c       | 32 ++++++++++++++++++++++++--------
 drivers/mtd/nand/raw/socrates_nand.c | 21 +++++++++++++++++----
 drivers/mtd/nand/raw/tmio_nand.c     | 33 ++++++++++++++++++++++++---------
 drivers/mtd/nand/raw/txx9ndfmc.c     | 14 +++++++++-----
 drivers/mtd/nand/raw/xway_nand.c     | 18 ++++++++++++++++--
 20 files changed, 294 insertions(+), 116 deletions(-)

______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [GIT PULL] mtd: Fixes for v5.10-rc6
  2020-11-27 18:38 ` Miquel Raynal
@ 2020-11-27 20:05   ` pr-tracker-bot
  -1 siblings, 0 replies; 4+ messages in thread
From: pr-tracker-bot @ 2020-11-27 20:05 UTC (permalink / raw)
  To: Miquel Raynal
  Cc: Linus Torvalds, linux-mtd, Richard Weinberger, Tudor Ambarus,
	Vignesh Raghavendra, Frieder Schrempf, linux-kernel

The pull request you sent on Fri, 27 Nov 2020 19:38:03 +0100:

> git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git tags/mtd/fixes-for-5.10-rc6

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/76dc2bfc2e1b40573cd33eb1c2027ef6cb7fed6c

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [GIT PULL] mtd: Fixes for v5.10-rc6
@ 2020-11-27 20:05   ` pr-tracker-bot
  0 siblings, 0 replies; 4+ messages in thread
From: pr-tracker-bot @ 2020-11-27 20:05 UTC (permalink / raw)
  To: Miquel Raynal
  Cc: Vignesh Raghavendra, Tudor Ambarus, Richard Weinberger,
	linux-kernel, Frieder Schrempf, linux-mtd, Linus Torvalds

The pull request you sent on Fri, 27 Nov 2020 19:38:03 +0100:

> git://git.kernel.org/pub/scm/linux/kernel/git/mtd/linux.git tags/mtd/fixes-for-5.10-rc6

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/76dc2bfc2e1b40573cd33eb1c2027ef6cb7fed6c

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

______________________________________________________
Linux MTD discussion mailing list
http://lists.infradead.org/mailman/listinfo/linux-mtd/

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2020-11-27 23:16 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-11-27 18:38 [GIT PULL] mtd: Fixes for v5.10-rc6 Miquel Raynal
2020-11-27 18:38 ` Miquel Raynal
2020-11-27 20:05 ` pr-tracker-bot
2020-11-27 20:05   ` pr-tracker-bot

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.