u-boot.lists.denx.de archive mirror
 help / color / mirror / Atom feed
* [PATCH v2 1/2] nvme: Enable FUA
@ 2021-09-27 13:22 Jon Lin
  2021-09-27 13:22 ` [PATCH v2 2/2] nvme: Fix error in nvme_setup_prps Jon Lin
                   ` (2 more replies)
  0 siblings, 3 replies; 5+ messages in thread
From: Jon Lin @ 2021-09-27 13:22 UTC (permalink / raw)
  To: Bin Meng; +Cc: u-boot, zyf, Kever Yang, Lin Shawn, xxm, Jon Lin

Most NVME devcies maintain data in internal cache for an uncertain
times, and u-boot has no method to force NVME to flush cache.
So this patch adds FUA to avoid data loss caused by power off after data
programming.

Signed-off-by: Jon Lin <jon.lin@rock-chips.com>
Reviewed-by: Stefan Agner <stefan@agner.ch>
---

(no changes since v1)

 drivers/nvme/nvme.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/drivers/nvme/nvme.c b/drivers/nvme/nvme.c
index f6465ea7f4..5d05cb6e9e 100644
--- a/drivers/nvme/nvme.c
+++ b/drivers/nvme/nvme.c
@@ -761,6 +761,9 @@ static ulong nvme_blk_rw(struct udevice *udev, lbaint_t blknr,
 	c.rw.appmask = 0;
 	c.rw.metadata = 0;
 
+	/* Always enable FUA for data integrity */
+	c.rw.control |= NVME_RW_FUA;
+
 	while (total_lbas) {
 		if (total_lbas < lbas) {
 			lbas = (u16)total_lbas;
-- 
2.17.1




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

end of thread, other threads:[~2021-09-29  3:17 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-27 13:22 [PATCH v2 1/2] nvme: Enable FUA Jon Lin
2021-09-27 13:22 ` [PATCH v2 2/2] nvme: Fix error in nvme_setup_prps Jon Lin
2021-09-28  0:44   ` Shawn Lin
2021-09-28  0:37 ` [PATCH v2 1/2] nvme: Enable FUA Shawn Lin
2021-09-29  3:17 ` Bin Meng

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).