* [U-Boot] [PATCH 0/3] usb: dfu: introduce dfuMANIFEST state
@ 2014-03-12 10:01 Heiko Schocher
2014-03-12 10:01 ` [U-Boot] [PATCH 1/3] usb, dfu: extract flush code into seperate function Heiko Schocher
` (2 more replies)
0 siblings, 3 replies; 14+ messages in thread
From: Heiko Schocher @ 2014-03-12 10:01 UTC (permalink / raw)
To: u-boot
on nand flash using ubi, after the download of the new image into
the flash, the "rest" of the nand sectors get erased while flushing
the medium. With current u-boot version dfu-util may show:
Starting download: [##################################################] finished!
state(7) = dfuMANIFEST, status(0) = No error condition is present
unable to read DFU status
as dfu_get_status is not answered while erasing sectors, if erasing
needs some time.
So do the following changes to prevent this:
- introduce dfuManifest state
According to dfu specification [1] section 7:
"the device enters the dfuMANIFEST-SYNC state and awaits the solicitation
of the status report by the host. Upon receipt of the anticipated
DFU_GETSTATUS, the device enters the dfuMANIFEST state, where it
completes its reprogramming operations."
- when stepping into dfuManifest state, sending a PollTimeout
DFU_MANIFEST_POLL_TIMEOUT in ms, to the host, so the host
(dfu-util) waits the PollTimeout before sending a get_status again.
Patch 0002-usb-dfu-introduce-dfuMANIFEST-state.patch shows
following checkpatch errors, but I think they are OK, as the
hole file uses CamelCase for the statenames as this in sync
with [1]
CHECK: Avoid CamelCase: <DFU_STATE_dfuMANIFEST>
#103: FILE: drivers/usb/gadget/f_dfu.c:190:
+ f_dfu->dfu_state = DFU_STATE_dfuMANIFEST;
CHECK: Avoid CamelCase: <DFU_STATE_dfuIDLE>
#156: FILE: drivers/usb/gadget/f_dfu.c:491:
+ f_dfu->dfu_state = DFU_STATE_dfuIDLE;
CHECK: Avoid CamelCase: <DFU_STATE_dfuERROR>
#166: FILE: drivers/usb/gadget/f_dfu.c:501:
+ f_dfu->dfu_state = DFU_STATE_dfuERROR;
total: 0 errors, 0 warnings, 3 checks, 133 lines checked
NOTE: Ignored message types: COMPLEX_MACRO CONSIDER_KSTRTO MINMAX MULTISTATEMENT_MACRO_USE_DO_WHILE NETWORKING_BLOCK_COMMENT_STYLE USLEEP_RANGE
[1]:
http://www.usb.org/developers/devclass_docs/usbdfu10.pdf
Heiko Schocher (3):
usb, dfu: extract flush code into seperate function
usb: dfu: introduce dfuMANIFEST state
am335x, dfu: add DFU_MANIFEST_POLL_TIMEOUT to the siemens boards
README | 5 +++
drivers/dfu/dfu.c | 45 +++++++++++++------------
drivers/usb/gadget/f_dfu.c | 60 +++++++++++++++++++++++++++++-----
include/configs/siemens-am33x-common.h | 1 +
include/dfu.h | 4 +++
5 files changed, 86 insertions(+), 29 deletions(-)
Cc: Lukasz Majewski <l.majewski@samsung.com>
Cc: Kyungmin Park <kyungmin.park@samsung.com>
Cc: Marek Vasut <marex@denx.de>
--
1.8.3.1
^ permalink raw reply [flat|nested] 14+ messages in thread* [U-Boot] [PATCH 1/3] usb, dfu: extract flush code into seperate function 2014-03-12 10:01 [U-Boot] [PATCH 0/3] usb: dfu: introduce dfuMANIFEST state Heiko Schocher @ 2014-03-12 10:01 ` Heiko Schocher 2014-03-12 11:43 ` Marek Vasut 2014-03-12 10:01 ` [U-Boot] [PATCH 2/3] usb: dfu: introduce dfuMANIFEST state Heiko Schocher 2014-03-12 10:01 ` [U-Boot] [PATCH 3/3] am335x, dfu: add DFU_MANIFEST_POLL_TIMEOUT to the siemens boards Heiko Schocher 2 siblings, 1 reply; 14+ messages in thread From: Heiko Schocher @ 2014-03-12 10:01 UTC (permalink / raw) To: u-boot move the flushing code into an extra function dfu_flush(), so it can be used from other code. Signed-off-by: Heiko Schocher <hs@denx.de> Cc: Lukasz Majewski <l.majewski@samsung.com> Cc: Kyungmin Park <kyungmin.park@samsung.com> Cc: Marek Vasut <marex@denx.de> --- drivers/dfu/dfu.c | 46 ++++++++++++++++++++++++++-------------------- include/dfu.h | 1 + 2 files changed, 27 insertions(+), 20 deletions(-) diff --git a/drivers/dfu/dfu.c b/drivers/dfu/dfu.c index 56e69fd..193e047 100644 --- a/drivers/dfu/dfu.c +++ b/drivers/dfu/dfu.c @@ -127,6 +127,31 @@ static int dfu_write_buffer_drain(struct dfu_entity *dfu) return ret; } +int dfu_flush(struct dfu_entity *dfu, void *buf, int size, int blk_seq_num) +{ + int ret = 0; + + /* end? */ + if (size == 0) { + /* Now try and flush to the medium if needed. */ + if (dfu->flush_medium) + ret = dfu->flush_medium(dfu); + printf("\nDFU complete CRC32: 0x%08x\n", dfu->crc); + + /* clear everything */ + dfu_free_buf(); + dfu->crc = 0; + dfu->offset = 0; + dfu->i_blk_seq_num = 0; + dfu->i_buf_start = dfu_buf; + dfu->i_buf_end = dfu_buf; + dfu->i_buf = dfu->i_buf_start; + + dfu->inited = 0; + } + return ret; +} + int dfu_write(struct dfu_entity *dfu, void *buf, int size, int blk_seq_num) { int ret = 0; @@ -197,26 +222,7 @@ int dfu_write(struct dfu_entity *dfu, void *buf, int size, int blk_seq_num) ret = tret; } - /* end? */ - if (size == 0) { - /* Now try and flush to the medium if needed. */ - if (dfu->flush_medium) - ret = dfu->flush_medium(dfu); - printf("\nDFU complete CRC32: 0x%08x\n", dfu->crc); - - /* clear everything */ - dfu_free_buf(); - dfu->crc = 0; - dfu->offset = 0; - dfu->i_blk_seq_num = 0; - dfu->i_buf_start = dfu_buf; - dfu->i_buf_end = dfu_buf; - dfu->i_buf = dfu->i_buf_start; - - dfu->inited = 0; - - } - + ret = dfu_flush(dfu, buf, size, blk_seq_num); return ret = 0 ? size : ret; } diff --git a/include/dfu.h b/include/dfu.h index f973426..272a245 100644 --- a/include/dfu.h +++ b/include/dfu.h @@ -138,6 +138,7 @@ unsigned long dfu_get_buf_size(void); int dfu_read(struct dfu_entity *de, void *buf, int size, int blk_seq_num); int dfu_write(struct dfu_entity *de, void *buf, int size, int blk_seq_num); +int dfu_flush(struct dfu_entity *de, void *buf, int size, int blk_seq_num); /* Device specific */ #ifdef CONFIG_DFU_MMC extern int dfu_fill_entity_mmc(struct dfu_entity *dfu, char *s); -- 1.8.3.1 ^ permalink raw reply related [flat|nested] 14+ messages in thread
* [U-Boot] [PATCH 1/3] usb, dfu: extract flush code into seperate function 2014-03-12 10:01 ` [U-Boot] [PATCH 1/3] usb, dfu: extract flush code into seperate function Heiko Schocher @ 2014-03-12 11:43 ` Marek Vasut 2014-03-13 5:31 ` Heiko Schocher 0 siblings, 1 reply; 14+ messages in thread From: Marek Vasut @ 2014-03-12 11:43 UTC (permalink / raw) To: u-boot On Wednesday, March 12, 2014 at 11:01:19 AM, Heiko Schocher wrote: > move the flushing code into an extra function dfu_flush(), > so it can be used from other code. > > Signed-off-by: Heiko Schocher <hs@denx.de> > Cc: Lukasz Majewski <l.majewski@samsung.com> > Cc: Kyungmin Park <kyungmin.park@samsung.com> > Cc: Marek Vasut <marex@denx.de> > --- > drivers/dfu/dfu.c | 46 ++++++++++++++++++++++++++-------------------- > include/dfu.h | 1 + > 2 files changed, 27 insertions(+), 20 deletions(-) > > diff --git a/drivers/dfu/dfu.c b/drivers/dfu/dfu.c > index 56e69fd..193e047 100644 > --- a/drivers/dfu/dfu.c > +++ b/drivers/dfu/dfu.c > @@ -127,6 +127,31 @@ static int dfu_write_buffer_drain(struct dfu_entity > *dfu) return ret; > } > > +int dfu_flush(struct dfu_entity *dfu, void *buf, int size, int > blk_seq_num) +{ > + int ret = 0; > + > + /* end? */ What does this comment mean ? I don't understand it ... > + if (size == 0) { You can check this like so: if (size) return; code code code This would cut down the indent, no ? Please let's fix this when this popped up, either in separate patch or wrap it into this one. > + /* Now try and flush to the medium if needed. */ > + if (dfu->flush_medium) > + ret = dfu->flush_medium(dfu); > + printf("\nDFU complete CRC32: 0x%08x\n", dfu->crc); > + > + /* clear everything */ > + dfu_free_buf(); > + dfu->crc = 0; > + dfu->offset = 0; > + dfu->i_blk_seq_num = 0; > + dfu->i_buf_start = dfu_buf; > + dfu->i_buf_end = dfu_buf; > + dfu->i_buf = dfu->i_buf_start; > + > + dfu->inited = 0; > + } > + return ret; > +} [...] ^ permalink raw reply [flat|nested] 14+ messages in thread
* [U-Boot] [PATCH 1/3] usb, dfu: extract flush code into seperate function 2014-03-12 11:43 ` Marek Vasut @ 2014-03-13 5:31 ` Heiko Schocher 2014-03-13 12:38 ` Marek Vasut 2014-03-14 10:36 ` Lukasz Majewski 0 siblings, 2 replies; 14+ messages in thread From: Heiko Schocher @ 2014-03-13 5:31 UTC (permalink / raw) To: u-boot Hello Marek, Am 12.03.2014 12:43, schrieb Marek Vasut: > On Wednesday, March 12, 2014 at 11:01:19 AM, Heiko Schocher wrote: >> move the flushing code into an extra function dfu_flush(), >> so it can be used from other code. >> >> Signed-off-by: Heiko Schocher<hs@denx.de> >> Cc: Lukasz Majewski<l.majewski@samsung.com> >> Cc: Kyungmin Park<kyungmin.park@samsung.com> >> Cc: Marek Vasut<marex@denx.de> >> --- >> drivers/dfu/dfu.c | 46 ++++++++++++++++++++++++++-------------------- >> include/dfu.h | 1 + >> 2 files changed, 27 insertions(+), 20 deletions(-) >> >> diff --git a/drivers/dfu/dfu.c b/drivers/dfu/dfu.c >> index 56e69fd..193e047 100644 >> --- a/drivers/dfu/dfu.c >> +++ b/drivers/dfu/dfu.c >> @@ -127,6 +127,31 @@ static int dfu_write_buffer_drain(struct dfu_entity >> *dfu) return ret; >> } >> >> +int dfu_flush(struct dfu_entity *dfu, void *buf, int size, int >> blk_seq_num) +{ >> + int ret = 0; >> + >> + /* end? */ > > What does this comment mean ? I don't understand it ... Comes from original code... Thinking about it, it seems better to let this comment and the below "if" in the dfu_write function... >> + if (size == 0) { > > You can check this like so: > > if (size) > return; ... as when moving this "if" back to dfu_write(), this "if" kindly disappears in the patch 2/3 of this series, as calling dfu_flush() is only in the new dfuMANIFEST state necessary, which is called at the end of the dfu transfer, so no need for checking, if end of size is reached! > > code > code > code > > This would cut down the indent, no ? Yes. Did the above change and this "if" is no longer necessary ;-) I will wait for comments from Lukasz before posting v2. > Please let's fix this when this popped up, either in separate patch or wrap it > into this one. > >> + /* Now try and flush to the medium if needed. */ >> + if (dfu->flush_medium) >> + ret = dfu->flush_medium(dfu); >> + printf("\nDFU complete CRC32: 0x%08x\n", dfu->crc); >> + >> + /* clear everything */ >> + dfu_free_buf(); >> + dfu->crc = 0; >> + dfu->offset = 0; >> + dfu->i_blk_seq_num = 0; >> + dfu->i_buf_start = dfu_buf; >> + dfu->i_buf_end = dfu_buf; >> + dfu->i_buf = dfu->i_buf_start; >> + >> + dfu->inited = 0; >> + } >> + return ret; >> +} > [...] Thanks! bye, Heiko -- DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany ^ permalink raw reply [flat|nested] 14+ messages in thread
* [U-Boot] [PATCH 1/3] usb, dfu: extract flush code into seperate function 2014-03-13 5:31 ` Heiko Schocher @ 2014-03-13 12:38 ` Marek Vasut 2014-03-14 10:36 ` Lukasz Majewski 1 sibling, 0 replies; 14+ messages in thread From: Marek Vasut @ 2014-03-13 12:38 UTC (permalink / raw) To: u-boot On Thursday, March 13, 2014 at 06:31:03 AM, Heiko Schocher wrote: > Hello Marek, > > Am 12.03.2014 12:43, schrieb Marek Vasut: > > On Wednesday, March 12, 2014 at 11:01:19 AM, Heiko Schocher wrote: > >> move the flushing code into an extra function dfu_flush(), > >> so it can be used from other code. > >> > >> Signed-off-by: Heiko Schocher<hs@denx.de> > >> Cc: Lukasz Majewski<l.majewski@samsung.com> > >> Cc: Kyungmin Park<kyungmin.park@samsung.com> > >> Cc: Marek Vasut<marex@denx.de> > >> --- > >> > >> drivers/dfu/dfu.c | 46 ++++++++++++++++++++++++++-------------------- > >> include/dfu.h | 1 + > >> 2 files changed, 27 insertions(+), 20 deletions(-) > >> > >> diff --git a/drivers/dfu/dfu.c b/drivers/dfu/dfu.c > >> index 56e69fd..193e047 100644 > >> --- a/drivers/dfu/dfu.c > >> +++ b/drivers/dfu/dfu.c > >> @@ -127,6 +127,31 @@ static int dfu_write_buffer_drain(struct dfu_entity > >> *dfu) return ret; > >> > >> } > >> > >> +int dfu_flush(struct dfu_entity *dfu, void *buf, int size, int > >> blk_seq_num) +{ > >> + int ret = 0; > >> + > >> + /* end? */ > > > > What does this comment mean ? I don't understand it ... > > Comes from original code... Thinking about it, it seems better to > let this comment and the below "if" in the dfu_write function... > > >> + if (size == 0) { > > > > You can check this like so: > > > > if (size) > > > > return; > > ... as when moving this "if" back to dfu_write(), this "if" kindly > disappears in the patch 2/3 of this series, as calling dfu_flush() > is only in the new dfuMANIFEST state necessary, which is called at > the end of the dfu transfer, so no need for checking, if end of > size is reached! OK, this makes sense. Thanks for pointing this out. ^ permalink raw reply [flat|nested] 14+ messages in thread
* [U-Boot] [PATCH 1/3] usb, dfu: extract flush code into seperate function 2014-03-13 5:31 ` Heiko Schocher 2014-03-13 12:38 ` Marek Vasut @ 2014-03-14 10:36 ` Lukasz Majewski 1 sibling, 0 replies; 14+ messages in thread From: Lukasz Majewski @ 2014-03-14 10:36 UTC (permalink / raw) To: u-boot Hi Heiko, I'm also CCing Pantelis to the loop. > Hello Marek, > > Am 12.03.2014 12:43, schrieb Marek Vasut: > > On Wednesday, March 12, 2014 at 11:01:19 AM, Heiko Schocher wrote: > >> move the flushing code into an extra function dfu_flush(), > >> so it can be used from other code. > >> > >> Signed-off-by: Heiko Schocher<hs@denx.de> > >> Cc: Lukasz Majewski<l.majewski@samsung.com> > >> Cc: Kyungmin Park<kyungmin.park@samsung.com> > >> Cc: Marek Vasut<marex@denx.de> > >> --- > >> drivers/dfu/dfu.c | 46 > >> ++++++++++++++++++++++++++-------------------- include/dfu.h > >> | 1 + 2 files changed, 27 insertions(+), 20 deletions(-) > >> > >> diff --git a/drivers/dfu/dfu.c b/drivers/dfu/dfu.c > >> index 56e69fd..193e047 100644 > >> --- a/drivers/dfu/dfu.c > >> +++ b/drivers/dfu/dfu.c > >> @@ -127,6 +127,31 @@ static int dfu_write_buffer_drain(struct > >> dfu_entity *dfu) return ret; > >> } > >> > >> +int dfu_flush(struct dfu_entity *dfu, void *buf, int size, int > >> blk_seq_num) +{ > >> + int ret = 0; > >> + > >> + /* end? */ > > > > What does this comment mean ? I don't understand it ... > > Comes from original code... Thinking about it, it seems better to > let this comment and the below "if" in the dfu_write function... This comment doesn't bring any meaningful information, so can be removed. > > >> + if (size == 0) { > > > > You can check this like so: > > > > if (size) > > return; > > ... as when moving this "if" back to dfu_write(), this "if" kindly > disappears in the patch 2/3 of this series, as calling dfu_flush() > is only in the new dfuMANIFEST state necessary, which is called at > the end of the dfu transfer, so no need for checking, if end of > size is reached! So, in my opinion, this if can be safely removed. > > > > > code > > code > > code > > > > This would cut down the indent, no ? > > Yes. Did the above change and this "if" is no longer necessary ;-) > > I will wait for comments from Lukasz before posting v2. > > > Please let's fix this when this popped up, either in separate patch > > or wrap it into this one. > > > >> + /* Now try and flush to the medium if needed. */ > >> + if (dfu->flush_medium) > >> + ret = dfu->flush_medium(dfu); > >> + printf("\nDFU complete CRC32: 0x%08x\n", > >> dfu->crc); + > >> + /* clear everything */ > >> + dfu_free_buf(); > >> + dfu->crc = 0; > >> + dfu->offset = 0; > >> + dfu->i_blk_seq_num = 0; > >> + dfu->i_buf_start = dfu_buf; > >> + dfu->i_buf_end = dfu_buf; > >> + dfu->i_buf = dfu->i_buf_start; > >> + > >> + dfu->inited = 0; > >> + } > >> + return ret; > >> +} > > [...] > > Thanks! > > bye, > Heiko BTW: Thanks for proper extension of the DFU state machine in u-boot :-). -- Best regards, Lukasz Majewski Samsung R&D Institute Poland (SRPOL) | Linux Platform Group ^ permalink raw reply [flat|nested] 14+ messages in thread
* [U-Boot] [PATCH 2/3] usb: dfu: introduce dfuMANIFEST state 2014-03-12 10:01 [U-Boot] [PATCH 0/3] usb: dfu: introduce dfuMANIFEST state Heiko Schocher 2014-03-12 10:01 ` [U-Boot] [PATCH 1/3] usb, dfu: extract flush code into seperate function Heiko Schocher @ 2014-03-12 10:01 ` Heiko Schocher 2014-03-14 10:47 ` Lukasz Majewski 2014-03-12 10:01 ` [U-Boot] [PATCH 3/3] am335x, dfu: add DFU_MANIFEST_POLL_TIMEOUT to the siemens boards Heiko Schocher 2 siblings, 1 reply; 14+ messages in thread From: Heiko Schocher @ 2014-03-12 10:01 UTC (permalink / raw) To: u-boot on nand flash using ubi, after the download of the new image into the flash, the "rest" of the nand sectors get erased while flushing the medium. With current u-boot version dfu-util may show: Starting download: [##################################################] finished! state(7) = dfuMANIFEST, status(0) = No error condition is present unable to read DFU status as get_status is not answered while erasing sectors, if erasing needs some time. So do the following changes to prevent this: - introduce dfuManifest state According to dfu specification ( http://www.usb.org/developers/devclass_docs/usbdfu10.pdf ) section 7: "the device enters the dfuMANIFEST-SYNC state and awaits the solicitation of the status report by the host. Upon receipt of the anticipated DFU_GETSTATUS, the device enters the dfuMANIFEST state, where it completes its reprogramming operations." - when stepping into dfuManifest state, sending a PollTimeout DFU_MANIFEST_POLL_TIMEOUT in ms, to the host, so the host (dfu-util) waits the PollTimeout before sending a get_status again. Signed-off-by: Heiko Schocher <hs@denx.de> Cc: Lukasz Majewski <l.majewski@samsung.com> Cc: Kyungmin Park <kyungmin.park@samsung.com> Cc: Marek Vasut <marex@denx.de> --- README | 5 ++++ drivers/dfu/dfu.c | 1 - drivers/usb/gadget/f_dfu.c | 60 +++++++++++++++++++++++++++++++++++++++------- include/dfu.h | 3 +++ 4 files changed, 59 insertions(+), 10 deletions(-) diff --git a/README b/README index 216f0c7..5076248 100644 --- a/README +++ b/README @@ -1525,6 +1525,11 @@ The following options need to be configured: this to the maximum filesize (in bytes) for the buffer. Default is 4 MiB if undefined. + DFU_MANIFEST_POLL_TIMEOUT + Poll timeout [ms], which the device sends to the host when + entering dfuMANIFEST state. Host waits this timeout, before + sending again an USB request to the device. + - Journaling Flash filesystem support: CONFIG_JFFS2_NAND, CONFIG_JFFS2_NAND_OFF, CONFIG_JFFS2_NAND_SIZE, CONFIG_JFFS2_NAND_DEV diff --git a/drivers/dfu/dfu.c b/drivers/dfu/dfu.c index 193e047..f61e166 100644 --- a/drivers/dfu/dfu.c +++ b/drivers/dfu/dfu.c @@ -222,7 +222,6 @@ int dfu_write(struct dfu_entity *dfu, void *buf, int size, int blk_seq_num) ret = tret; } - ret = dfu_flush(dfu, buf, size, blk_seq_num); return ret = 0 ? size : ret; } diff --git a/drivers/usb/gadget/f_dfu.c b/drivers/usb/gadget/f_dfu.c index a045864..f4bf918 100644 --- a/drivers/usb/gadget/f_dfu.c +++ b/drivers/usb/gadget/f_dfu.c @@ -164,15 +164,22 @@ static void dnload_request_complete(struct usb_ep *ep, struct usb_request *req) dfu_write(dfu_get_entity(f_dfu->altsetting), req->buf, req->length, f_dfu->blk_seq_num); +} - if (req->length == 0) - puts("DOWNLOAD ... OK\nCtrl+C to exit ...\n"); +static void dnload_request_flush(struct usb_ep *ep, struct usb_request *req) +{ + struct f_dfu *f_dfu = req->context; + + req->length = 0; + dfu_flush(dfu_get_entity(f_dfu->altsetting), req->buf, + req->length, f_dfu->blk_seq_num); } static void handle_getstatus(struct usb_request *req) { struct dfu_status *dstat = (struct dfu_status *)req->buf; struct f_dfu *f_dfu = req->context; + int setpolltimeout = 1; switch (f_dfu->dfu_state) { case DFU_STATE_dfuDNLOAD_SYNC: @@ -180,17 +187,24 @@ static void handle_getstatus(struct usb_request *req) f_dfu->dfu_state = DFU_STATE_dfuDNLOAD_IDLE; break; case DFU_STATE_dfuMANIFEST_SYNC: + f_dfu->dfu_state = DFU_STATE_dfuMANIFEST; break; + case DFU_STATE_dfuMANIFEST: + dfu_set_poll_timeout(dstat, DFU_MANIFEST_POLL_TIMEOUT); + setpolltimeout = 0; default: break; } - dfu_set_poll_timeout(dstat, 0); + if (setpolltimeout) { + dfu_set_poll_timeout(dstat, 0); - if (f_dfu->poll_timeout) - if (!(f_dfu->blk_seq_num % - (dfu_get_buf_size() / DFU_USB_BUFSIZ))) - dfu_set_poll_timeout(dstat, f_dfu->poll_timeout); + if (f_dfu->poll_timeout) + if (!(f_dfu->blk_seq_num % + (dfu_get_buf_size() / DFU_USB_BUFSIZ))) + dfu_set_poll_timeout(dstat, + f_dfu->poll_timeout); + } /* send status response */ dstat->bStatus = f_dfu->dfu_status; @@ -446,10 +460,11 @@ static int state_dfu_manifest_sync(struct f_dfu *f_dfu, switch (ctrl->bRequest) { case USB_REQ_DFU_GETSTATUS: /* We're MainfestationTolerant */ - f_dfu->dfu_state = DFU_STATE_dfuIDLE; + f_dfu->dfu_state = DFU_STATE_dfuMANIFEST; handle_getstatus(req); f_dfu->blk_seq_num = 0; value = RET_STAT_LEN; + req->complete = dnload_request_flush; break; case USB_REQ_DFU_GETSTATE: handle_getstate(req); @@ -463,6 +478,33 @@ static int state_dfu_manifest_sync(struct f_dfu *f_dfu, return value; } +static int state_dfu_manifest(struct f_dfu *f_dfu, + const struct usb_ctrlrequest *ctrl, + struct usb_gadget *gadget, + struct usb_request *req) +{ + int value = 0; + + switch (ctrl->bRequest) { + case USB_REQ_DFU_GETSTATUS: + /* We're MainfestationTolerant */ + f_dfu->dfu_state = DFU_STATE_dfuIDLE; + handle_getstatus(req); + f_dfu->blk_seq_num = 0; + value = RET_STAT_LEN; + puts("DOWNLOAD ... OK\nCtrl+C to exit ...\n"); + break; + case USB_REQ_DFU_GETSTATE: + handle_getstate(req); + break; + default: + f_dfu->dfu_state = DFU_STATE_dfuERROR; + value = RET_STALL; + break; + } + return value; +} + static int state_dfu_upload_idle(struct f_dfu *f_dfu, const struct usb_ctrlrequest *ctrl, struct usb_gadget *gadget, @@ -539,7 +581,7 @@ static dfu_state_fn dfu_state[] = { state_dfu_dnbusy, /* DFU_STATE_dfuDNBUSY */ state_dfu_dnload_idle, /* DFU_STATE_dfuDNLOAD_IDLE */ state_dfu_manifest_sync, /* DFU_STATE_dfuMANIFEST_SYNC */ - NULL, /* DFU_STATE_dfuMANIFEST */ + state_dfu_manifest, /* DFU_STATE_dfuMANIFEST */ NULL, /* DFU_STATE_dfuMANIFEST_WAIT_RST */ state_dfu_upload_idle, /* DFU_STATE_dfuUPLOAD_IDLE */ state_dfu_error /* DFU_STATE_dfuERROR */ diff --git a/include/dfu.h b/include/dfu.h index 272a245..6c71ecb 100644 --- a/include/dfu.h +++ b/include/dfu.h @@ -80,6 +80,9 @@ static inline unsigned int get_mmc_blk_size(int dev) #ifndef DFU_DEFAULT_POLL_TIMEOUT #define DFU_DEFAULT_POLL_TIMEOUT 0 #endif +#ifndef DFU_MANIFEST_POLL_TIMEOUT +#define DFU_MANIFEST_POLL_TIMEOUT DFU_DEFAULT_POLL_TIMEOUT +#endif struct dfu_entity { char name[DFU_NAME_SIZE]; -- 1.8.3.1 ^ permalink raw reply related [flat|nested] 14+ messages in thread
* [U-Boot] [PATCH 2/3] usb: dfu: introduce dfuMANIFEST state 2014-03-12 10:01 ` [U-Boot] [PATCH 2/3] usb: dfu: introduce dfuMANIFEST state Heiko Schocher @ 2014-03-14 10:47 ` Lukasz Majewski 2014-03-17 6:34 ` Heiko Schocher 0 siblings, 1 reply; 14+ messages in thread From: Lukasz Majewski @ 2014-03-14 10:47 UTC (permalink / raw) To: u-boot Hi Heiko, > on nand flash using ubi, after the download of the new image into > the flash, the "rest" of the nand sectors get erased while flushing > the medium. With current u-boot version dfu-util may show: > > Starting download: > [##################################################] finished! > state(7) = dfuMANIFEST, status(0) = No error condition is present > unable to read DFU status > > as get_status is not answered while erasing sectors, if erasing > needs some time. > > So do the following changes to prevent this: > > - introduce dfuManifest state > According to dfu specification > ( http://www.usb.org/developers/devclass_docs/usbdfu10.pdf ) > section 7: "the device enters the dfuMANIFEST-SYNC state and awaits > the solicitation of the status report by the host. Upon receipt of > the anticipated DFU_GETSTATUS, the device enters the dfuMANIFEST > state, where it completes its reprogramming operations." > > - when stepping into dfuManifest state, sending a PollTimeout > DFU_MANIFEST_POLL_TIMEOUT in ms, to the host, so the host > (dfu-util) waits the PollTimeout before sending a get_status again. > > Signed-off-by: Heiko Schocher <hs@denx.de> > Cc: Lukasz Majewski <l.majewski@samsung.com> > Cc: Kyungmin Park <kyungmin.park@samsung.com> > Cc: Marek Vasut <marex@denx.de> > --- > README | 5 ++++ > drivers/dfu/dfu.c | 1 - > drivers/usb/gadget/f_dfu.c | 60 > +++++++++++++++++++++++++++++++++++++++------- > include/dfu.h | 3 +++ 4 files changed, 59 > insertions(+), 10 deletions(-) > > diff --git a/README b/README > index 216f0c7..5076248 100644 > --- a/README > +++ b/README > @@ -1525,6 +1525,11 @@ The following options need to be configured: > this to the maximum filesize (in bytes) for the > buffer. Default is 4 MiB if undefined. > > + DFU_MANIFEST_POLL_TIMEOUT > + Poll timeout [ms], which the device sends to the > host when > + entering dfuMANIFEST state. Host waits this timeout, > before > + sending again an USB request to the device. > + Could you also add information about the DFU_DEFAULT_POLL_TIMEOUT to the README, please (I've forgotten to do that)? > - Journaling Flash filesystem support: > CONFIG_JFFS2_NAND, CONFIG_JFFS2_NAND_OFF, > CONFIG_JFFS2_NAND_SIZE, CONFIG_JFFS2_NAND_DEV > diff --git a/drivers/dfu/dfu.c b/drivers/dfu/dfu.c > index 193e047..f61e166 100644 > --- a/drivers/dfu/dfu.c > +++ b/drivers/dfu/dfu.c > @@ -222,7 +222,6 @@ int dfu_write(struct dfu_entity *dfu, void *buf, > int size, int blk_seq_num) ret = tret; > } > > - ret = dfu_flush(dfu, buf, size, blk_seq_num); > return ret = 0 ? size : ret; > } > > diff --git a/drivers/usb/gadget/f_dfu.c b/drivers/usb/gadget/f_dfu.c > index a045864..f4bf918 100644 > --- a/drivers/usb/gadget/f_dfu.c > +++ b/drivers/usb/gadget/f_dfu.c > @@ -164,15 +164,22 @@ static void dnload_request_complete(struct > usb_ep *ep, struct usb_request *req) > dfu_write(dfu_get_entity(f_dfu->altsetting), req->buf, > req->length, f_dfu->blk_seq_num); > +} > > - if (req->length == 0) > - puts("DOWNLOAD ... OK\nCtrl+C to exit ...\n"); > +static void dnload_request_flush(struct usb_ep *ep, struct > usb_request *req) +{ > + struct f_dfu *f_dfu = req->context; > + > + req->length = 0; > + dfu_flush(dfu_get_entity(f_dfu->altsetting), req->buf, > + req->length, f_dfu->blk_seq_num); > } > > static void handle_getstatus(struct usb_request *req) > { > struct dfu_status *dstat = (struct dfu_status *)req->buf; > struct f_dfu *f_dfu = req->context; > + int setpolltimeout = 1; We can go away with this flag. Please see below. > > switch (f_dfu->dfu_state) { > case DFU_STATE_dfuDNLOAD_SYNC: > @@ -180,17 +187,24 @@ static void handle_getstatus(struct usb_request > *req) f_dfu->dfu_state = DFU_STATE_dfuDNLOAD_IDLE; > break; > case DFU_STATE_dfuMANIFEST_SYNC: > + f_dfu->dfu_state = DFU_STATE_dfuMANIFEST; > break; > + case DFU_STATE_dfuMANIFEST: > + dfu_set_poll_timeout(dstat, > DFU_MANIFEST_POLL_TIMEOUT); > + setpolltimeout = 0; > default: > break; > } > > - dfu_set_poll_timeout(dstat, 0); > + if (setpolltimeout) { > + dfu_set_poll_timeout(dstat, 0); > > - if (f_dfu->poll_timeout) > - if (!(f_dfu->blk_seq_num % > - (dfu_get_buf_size() / DFU_USB_BUFSIZ))) > - dfu_set_poll_timeout(dstat, > f_dfu->poll_timeout); > + if (f_dfu->poll_timeout) > + if (!(f_dfu->blk_seq_num % > + (dfu_get_buf_size() / DFU_USB_BUFSIZ))) > + dfu_set_poll_timeout(dstat, > + > f_dfu->poll_timeout); > + } What about this solution: dfu_set_poll_timeout(dstat, 0); switch (f_dfu->dfu_state) { case DFU_STATE_dfuDNLOAD_SYNC: case DFU_STATE_dfuDNBUSY: f_dfu->dfu_state = DFU_STATE_dfuDNLOAD_IDLE; break; case DFU_STATE_dfuMANIFEST_SYNC: f_dfu->dfu_state = DFU_STATE_dfuMANIFEST; break; case DFU_STATE_dfuMANIFEST: dfu_set_poll_timeout(dstat, DFU_MANIFEST_POLL_TIMEOUT); default: break; } if (f_dfu->poll_timeout) if (!(f_dfu->blk_seq_num % (dfu_get_buf_size() / DFU_USB_BUFSIZ))) dfu_set_poll_timeout(dstat,f_dfu->poll_timeout); Then we could avoid setpolltimeout flag. > > /* send status response */ > dstat->bStatus = f_dfu->dfu_status; > @@ -446,10 +460,11 @@ static int state_dfu_manifest_sync(struct f_dfu > *f_dfu, switch (ctrl->bRequest) { > case USB_REQ_DFU_GETSTATUS: > /* We're MainfestationTolerant */ > - f_dfu->dfu_state = DFU_STATE_dfuIDLE; > + f_dfu->dfu_state = DFU_STATE_dfuMANIFEST; > handle_getstatus(req); > f_dfu->blk_seq_num = 0; > value = RET_STAT_LEN; > + req->complete = dnload_request_flush; > break; > case USB_REQ_DFU_GETSTATE: > handle_getstate(req); > @@ -463,6 +478,33 @@ static int state_dfu_manifest_sync(struct f_dfu > *f_dfu, return value; > } > > +static int state_dfu_manifest(struct f_dfu *f_dfu, > + const struct usb_ctrlrequest *ctrl, > + struct usb_gadget *gadget, > + struct usb_request *req) > +{ > + int value = 0; > + > + switch (ctrl->bRequest) { > + case USB_REQ_DFU_GETSTATUS: > + /* We're MainfestationTolerant */ Please look into the comments globally - we do now support the DFU_STATE_dfuMANIFEST_* states > + f_dfu->dfu_state = DFU_STATE_dfuIDLE; > + handle_getstatus(req); > + f_dfu->blk_seq_num = 0; > + value = RET_STAT_LEN; > + puts("DOWNLOAD ... OK\nCtrl+C to exit ...\n"); > + break; > + case USB_REQ_DFU_GETSTATE: > + handle_getstate(req); > + break; > + default: > + f_dfu->dfu_state = DFU_STATE_dfuERROR; > + value = RET_STALL; > + break; > + } > + return value; > +} > + > static int state_dfu_upload_idle(struct f_dfu *f_dfu, > const struct usb_ctrlrequest *ctrl, > struct usb_gadget *gadget, > @@ -539,7 +581,7 @@ static dfu_state_fn dfu_state[] = { > state_dfu_dnbusy, /* DFU_STATE_dfuDNBUSY */ > state_dfu_dnload_idle, /* DFU_STATE_dfuDNLOAD_IDLE */ > state_dfu_manifest_sync, /* DFU_STATE_dfuMANIFEST_SYNC */ > - NULL, /* DFU_STATE_dfuMANIFEST */ > + state_dfu_manifest, /* DFU_STATE_dfuMANIFEST */ > NULL, /* DFU_STATE_dfuMANIFEST_WAIT_RST */ > state_dfu_upload_idle, /* DFU_STATE_dfuUPLOAD_IDLE */ > state_dfu_error /* DFU_STATE_dfuERROR */ > diff --git a/include/dfu.h b/include/dfu.h > index 272a245..6c71ecb 100644 > --- a/include/dfu.h > +++ b/include/dfu.h > @@ -80,6 +80,9 @@ static inline unsigned int get_mmc_blk_size(int dev) > #ifndef DFU_DEFAULT_POLL_TIMEOUT > #define DFU_DEFAULT_POLL_TIMEOUT 0 > #endif > +#ifndef DFU_MANIFEST_POLL_TIMEOUT > +#define DFU_MANIFEST_POLL_TIMEOUT DFU_DEFAULT_POLL_TIMEOUT > +#endif > > struct dfu_entity { > char name[DFU_NAME_SIZE]; I did some preliminary DFU testing and it seems to not introduce any regressions. I'm looking forward for v2. -- Best regards, Lukasz Majewski Samsung R&D Institute Poland (SRPOL) | Linux Platform Group ^ permalink raw reply [flat|nested] 14+ messages in thread
* [U-Boot] [PATCH 2/3] usb: dfu: introduce dfuMANIFEST state 2014-03-14 10:47 ` Lukasz Majewski @ 2014-03-17 6:34 ` Heiko Schocher 2014-03-17 9:46 ` Lukasz Majewski 0 siblings, 1 reply; 14+ messages in thread From: Heiko Schocher @ 2014-03-17 6:34 UTC (permalink / raw) To: u-boot Hello Lukasz, Am 14.03.2014 11:47, schrieb Lukasz Majewski: > Hi Heiko, > >> on nand flash using ubi, after the download of the new image into >> the flash, the "rest" of the nand sectors get erased while flushing >> the medium. With current u-boot version dfu-util may show: >> >> Starting download: >> [##################################################] finished! >> state(7) = dfuMANIFEST, status(0) = No error condition is present >> unable to read DFU status >> >> as get_status is not answered while erasing sectors, if erasing >> needs some time. >> >> So do the following changes to prevent this: >> >> - introduce dfuManifest state >> According to dfu specification >> ( http://www.usb.org/developers/devclass_docs/usbdfu10.pdf ) >> section 7: "the device enters the dfuMANIFEST-SYNC state and awaits >> the solicitation of the status report by the host. Upon receipt of >> the anticipated DFU_GETSTATUS, the device enters the dfuMANIFEST >> state, where it completes its reprogramming operations." >> >> - when stepping into dfuManifest state, sending a PollTimeout >> DFU_MANIFEST_POLL_TIMEOUT in ms, to the host, so the host >> (dfu-util) waits the PollTimeout before sending a get_status again. >> >> Signed-off-by: Heiko Schocher<hs@denx.de> >> Cc: Lukasz Majewski<l.majewski@samsung.com> >> Cc: Kyungmin Park<kyungmin.park@samsung.com> >> Cc: Marek Vasut<marex@denx.de> >> --- >> README | 5 ++++ >> drivers/dfu/dfu.c | 1 - >> drivers/usb/gadget/f_dfu.c | 60 >> +++++++++++++++++++++++++++++++++++++++------- >> include/dfu.h | 3 +++ 4 files changed, 59 >> insertions(+), 10 deletions(-) >> >> diff --git a/README b/README >> index 216f0c7..5076248 100644 >> --- a/README >> +++ b/README >> @@ -1525,6 +1525,11 @@ The following options need to be configured: >> this to the maximum filesize (in bytes) for the >> buffer. Default is 4 MiB if undefined. >> >> + DFU_MANIFEST_POLL_TIMEOUT >> + Poll timeout [ms], which the device sends to the >> host when >> + entering dfuMANIFEST state. Host waits this timeout, >> before >> + sending again an USB request to the device. >> + > > Could you also add information about the DFU_DEFAULT_POLL_TIMEOUT to > the README, please (I've forgotten to do that)? Done. [...] >> diff --git a/drivers/usb/gadget/f_dfu.c b/drivers/usb/gadget/f_dfu.c >> index a045864..f4bf918 100644 >> --- a/drivers/usb/gadget/f_dfu.c >> +++ b/drivers/usb/gadget/f_dfu.c >> @@ -164,15 +164,22 @@ static void dnload_request_complete(struct >> usb_ep *ep, struct usb_request *req) >> dfu_write(dfu_get_entity(f_dfu->altsetting), req->buf, >> req->length, f_dfu->blk_seq_num); >> +} >> >> - if (req->length == 0) >> - puts("DOWNLOAD ... OK\nCtrl+C to exit ...\n"); >> +static void dnload_request_flush(struct usb_ep *ep, struct >> usb_request *req) +{ >> + struct f_dfu *f_dfu = req->context; >> + >> + req->length = 0; >> + dfu_flush(dfu_get_entity(f_dfu->altsetting), req->buf, >> + req->length, f_dfu->blk_seq_num); >> } >> >> static void handle_getstatus(struct usb_request *req) >> { >> struct dfu_status *dstat = (struct dfu_status *)req->buf; >> struct f_dfu *f_dfu = req->context; >> + int setpolltimeout = 1; > > We can go away with this flag. Please see below. > >> >> switch (f_dfu->dfu_state) { >> case DFU_STATE_dfuDNLOAD_SYNC: >> @@ -180,17 +187,24 @@ static void handle_getstatus(struct usb_request >> *req) f_dfu->dfu_state = DFU_STATE_dfuDNLOAD_IDLE; >> break; >> case DFU_STATE_dfuMANIFEST_SYNC: >> + f_dfu->dfu_state = DFU_STATE_dfuMANIFEST; >> break; >> + case DFU_STATE_dfuMANIFEST: >> + dfu_set_poll_timeout(dstat, >> DFU_MANIFEST_POLL_TIMEOUT); >> + setpolltimeout = 0; >> default: >> break; >> } >> >> - dfu_set_poll_timeout(dstat, 0); >> + if (setpolltimeout) { >> + dfu_set_poll_timeout(dstat, 0); >> >> - if (f_dfu->poll_timeout) >> - if (!(f_dfu->blk_seq_num % >> - (dfu_get_buf_size() / DFU_USB_BUFSIZ))) >> - dfu_set_poll_timeout(dstat, >> f_dfu->poll_timeout); >> + if (f_dfu->poll_timeout) >> + if (!(f_dfu->blk_seq_num % >> + (dfu_get_buf_size() / DFU_USB_BUFSIZ))) >> + dfu_set_poll_timeout(dstat, >> + >> f_dfu->poll_timeout); >> + } > > What about this solution: > > dfu_set_poll_timeout(dstat, 0); > > switch (f_dfu->dfu_state) { > case DFU_STATE_dfuDNLOAD_SYNC: > case DFU_STATE_dfuDNBUSY: > f_dfu->dfu_state = DFU_STATE_dfuDNLOAD_IDLE; > break; > case DFU_STATE_dfuMANIFEST_SYNC: > f_dfu->dfu_state = DFU_STATE_dfuMANIFEST; > break; > case DFU_STATE_dfuMANIFEST: > dfu_set_poll_timeout(dstat, DFU_MANIFEST_POLL_TIMEOUT); > default: > break; > } > > if (f_dfu->poll_timeout) > if (!(f_dfu->blk_seq_num % > (dfu_get_buf_size() / DFU_USB_BUFSIZ))) > dfu_set_poll_timeout(dstat,f_dfu->poll_timeout); > > Then we could avoid setpolltimeout flag. Done. >> /* send status response */ >> dstat->bStatus = f_dfu->dfu_status; >> @@ -446,10 +460,11 @@ static int state_dfu_manifest_sync(struct f_dfu >> *f_dfu, switch (ctrl->bRequest) { >> case USB_REQ_DFU_GETSTATUS: >> /* We're MainfestationTolerant */ >> - f_dfu->dfu_state = DFU_STATE_dfuIDLE; >> + f_dfu->dfu_state = DFU_STATE_dfuMANIFEST; >> handle_getstatus(req); >> f_dfu->blk_seq_num = 0; >> value = RET_STAT_LEN; >> + req->complete = dnload_request_flush; >> break; >> case USB_REQ_DFU_GETSTATE: >> handle_getstate(req); >> @@ -463,6 +478,33 @@ static int state_dfu_manifest_sync(struct f_dfu >> *f_dfu, return value; >> } >> >> +static int state_dfu_manifest(struct f_dfu *f_dfu, >> + const struct usb_ctrlrequest *ctrl, >> + struct usb_gadget *gadget, >> + struct usb_request *req) >> +{ >> + int value = 0; >> + >> + switch (ctrl->bRequest) { >> + case USB_REQ_DFU_GETSTATUS: >> + /* We're MainfestationTolerant */ > > Please look into the comments globally - we do now support the > DFU_STATE_dfuMANIFEST_* states Hmm.. Yes, but we are MainfestationTolerant ... so the comment is Ok, or? >> + f_dfu->dfu_state = DFU_STATE_dfuIDLE; >> + handle_getstatus(req); >> + f_dfu->blk_seq_num = 0; >> + value = RET_STAT_LEN; >> + puts("DOWNLOAD ... OK\nCtrl+C to exit ...\n"); >> + break; >> + case USB_REQ_DFU_GETSTATE: >> + handle_getstate(req); >> + break; >> + default: >> + f_dfu->dfu_state = DFU_STATE_dfuERROR; >> + value = RET_STALL; >> + break; >> + } >> + return value; >> +} >> + >> static int state_dfu_upload_idle(struct f_dfu *f_dfu, >> const struct usb_ctrlrequest *ctrl, >> struct usb_gadget *gadget, >> @@ -539,7 +581,7 @@ static dfu_state_fn dfu_state[] = { >> state_dfu_dnbusy, /* DFU_STATE_dfuDNBUSY */ >> state_dfu_dnload_idle, /* DFU_STATE_dfuDNLOAD_IDLE */ >> state_dfu_manifest_sync, /* DFU_STATE_dfuMANIFEST_SYNC */ >> - NULL, /* DFU_STATE_dfuMANIFEST */ >> + state_dfu_manifest, /* DFU_STATE_dfuMANIFEST */ >> NULL, /* DFU_STATE_dfuMANIFEST_WAIT_RST */ >> state_dfu_upload_idle, /* DFU_STATE_dfuUPLOAD_IDLE */ >> state_dfu_error /* DFU_STATE_dfuERROR */ >> diff --git a/include/dfu.h b/include/dfu.h >> index 272a245..6c71ecb 100644 >> --- a/include/dfu.h >> +++ b/include/dfu.h >> @@ -80,6 +80,9 @@ static inline unsigned int get_mmc_blk_size(int dev) >> #ifndef DFU_DEFAULT_POLL_TIMEOUT >> #define DFU_DEFAULT_POLL_TIMEOUT 0 >> #endif >> +#ifndef DFU_MANIFEST_POLL_TIMEOUT >> +#define DFU_MANIFEST_POLL_TIMEOUT DFU_DEFAULT_POLL_TIMEOUT >> +#endif >> >> struct dfu_entity { >> char name[DFU_NAME_SIZE]; > > I did some preliminary DFU testing and it seems to not introduce any > regressions. Thanks! > I'm looking forward for v2. I am ready for sending it, but need response from you as I think the comment is correct ... BTW: With the DFU_MANIFEST_POLL_TIMEOUT solution, we have a static timeout, which is suboptimal, as we have a big MTD partittion and we must have a "big" timeout for erasing (in the worst case) the complete partition. Also this big timeout is (on nand using ubi) only needed for the nand ubi partiton, not for the raw partitions containing for example u-boot ... where it could be 0 ... Better would be, to have the information how long does it take to erase one sector (define?) and how many sectors we have to erase, and sending this value to the host... Do you see a chance to get this information within the dfu code? Thinking about it, possibly we need a callback from the mtd layer, which gives back the info, how long the flush would take, as this is a media/partition size dependent timeout ... bye, Heiko -- DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany ^ permalink raw reply [flat|nested] 14+ messages in thread
* [U-Boot] [PATCH 2/3] usb: dfu: introduce dfuMANIFEST state 2014-03-17 6:34 ` Heiko Schocher @ 2014-03-17 9:46 ` Lukasz Majewski 2014-03-17 10:11 ` Heiko Schocher 0 siblings, 1 reply; 14+ messages in thread From: Lukasz Majewski @ 2014-03-17 9:46 UTC (permalink / raw) To: u-boot Hi Heiko, > Hello Lukasz, > > Am 14.03.2014 11:47, schrieb Lukasz Majewski: > > Hi Heiko, > > > >> on nand flash using ubi, after the download of the new image into > >> the flash, the "rest" of the nand sectors get erased while flushing > >> the medium. With current u-boot version dfu-util may show: > >> > >> Starting download: > >> [##################################################] finished! > >> state(7) = dfuMANIFEST, status(0) = No error condition is present > >> unable to read DFU status > >> > >> as get_status is not answered while erasing sectors, if erasing > >> needs some time. > >> > >> So do the following changes to prevent this: > >> > >> - introduce dfuManifest state > >> According to dfu specification > >> ( http://www.usb.org/developers/devclass_docs/usbdfu10.pdf ) > >> section 7: "the device enters the dfuMANIFEST-SYNC state and awaits > >> the solicitation of the status report by the host. Upon receipt of > >> the anticipated DFU_GETSTATUS, the device enters the dfuMANIFEST > >> state, where it completes its reprogramming operations." > >> > >> - when stepping into dfuManifest state, sending a PollTimeout > >> DFU_MANIFEST_POLL_TIMEOUT in ms, to the host, so the host > >> (dfu-util) waits the PollTimeout before sending a get_status > >> again. > >> > >> Signed-off-by: Heiko Schocher<hs@denx.de> > >> Cc: Lukasz Majewski<l.majewski@samsung.com> > >> Cc: Kyungmin Park<kyungmin.park@samsung.com> > >> Cc: Marek Vasut<marex@denx.de> > >> --- > >> README | 5 ++++ > >> drivers/dfu/dfu.c | 1 - > >> drivers/usb/gadget/f_dfu.c | 60 > >> +++++++++++++++++++++++++++++++++++++++------- > >> include/dfu.h | 3 +++ 4 files changed, 59 > >> insertions(+), 10 deletions(-) > >> > >> diff --git a/README b/README > >> index 216f0c7..5076248 100644 > >> --- a/README > >> +++ b/README > >> @@ -1525,6 +1525,11 @@ The following options need to be configured: > >> this to the maximum filesize (in bytes) for the > >> buffer. Default is 4 MiB if undefined. > >> > >> + DFU_MANIFEST_POLL_TIMEOUT > >> + Poll timeout [ms], which the device sends to the > >> host when > >> + entering dfuMANIFEST state. Host waits this > >> timeout, before > >> + sending again an USB request to the device. > >> + > > > > Could you also add information about the DFU_DEFAULT_POLL_TIMEOUT to > > the README, please (I've forgotten to do that)? > > Done. > > [...] > >> diff --git a/drivers/usb/gadget/f_dfu.c > >> b/drivers/usb/gadget/f_dfu.c index a045864..f4bf918 100644 > >> --- a/drivers/usb/gadget/f_dfu.c > >> +++ b/drivers/usb/gadget/f_dfu.c > >> @@ -164,15 +164,22 @@ static void dnload_request_complete(struct > >> usb_ep *ep, struct usb_request *req) > >> dfu_write(dfu_get_entity(f_dfu->altsetting), req->buf, > >> req->length, f_dfu->blk_seq_num); > >> +} > >> > >> - if (req->length == 0) > >> - puts("DOWNLOAD ... OK\nCtrl+C to exit ...\n"); > >> +static void dnload_request_flush(struct usb_ep *ep, struct > >> usb_request *req) +{ > >> + struct f_dfu *f_dfu = req->context; > >> + > >> + req->length = 0; > >> + dfu_flush(dfu_get_entity(f_dfu->altsetting), req->buf, > >> + req->length, f_dfu->blk_seq_num); > >> } > >> > >> static void handle_getstatus(struct usb_request *req) > >> { > >> struct dfu_status *dstat = (struct dfu_status *)req->buf; > >> struct f_dfu *f_dfu = req->context; > >> + int setpolltimeout = 1; > > > > We can go away with this flag. Please see below. > > > >> > >> switch (f_dfu->dfu_state) { > >> case DFU_STATE_dfuDNLOAD_SYNC: > >> @@ -180,17 +187,24 @@ static void handle_getstatus(struct > >> usb_request *req) f_dfu->dfu_state = DFU_STATE_dfuDNLOAD_IDLE; > >> break; > >> case DFU_STATE_dfuMANIFEST_SYNC: > >> + f_dfu->dfu_state = DFU_STATE_dfuMANIFEST; > >> break; > >> + case DFU_STATE_dfuMANIFEST: > >> + dfu_set_poll_timeout(dstat, > >> DFU_MANIFEST_POLL_TIMEOUT); > >> + setpolltimeout = 0; > >> default: > >> break; > >> } > >> > >> - dfu_set_poll_timeout(dstat, 0); > >> + if (setpolltimeout) { > >> + dfu_set_poll_timeout(dstat, 0); > >> > >> - if (f_dfu->poll_timeout) > >> - if (!(f_dfu->blk_seq_num % > >> - (dfu_get_buf_size() / DFU_USB_BUFSIZ))) > >> - dfu_set_poll_timeout(dstat, > >> f_dfu->poll_timeout); > >> + if (f_dfu->poll_timeout) > >> + if (!(f_dfu->blk_seq_num % > >> + (dfu_get_buf_size() / > >> DFU_USB_BUFSIZ))) > >> + dfu_set_poll_timeout(dstat, > >> + > >> f_dfu->poll_timeout); > >> + } > > > > What about this solution: > > > > dfu_set_poll_timeout(dstat, 0); > > > > switch (f_dfu->dfu_state) { > > case DFU_STATE_dfuDNLOAD_SYNC: > > case DFU_STATE_dfuDNBUSY: > > f_dfu->dfu_state = DFU_STATE_dfuDNLOAD_IDLE; > > break; > > case DFU_STATE_dfuMANIFEST_SYNC: > > f_dfu->dfu_state = DFU_STATE_dfuMANIFEST; > > break; > > case DFU_STATE_dfuMANIFEST: > > dfu_set_poll_timeout(dstat, > > DFU_MANIFEST_POLL_TIMEOUT); default: > > break; > > } > > > > if (f_dfu->poll_timeout) > > if (!(f_dfu->blk_seq_num % > > (dfu_get_buf_size() / DFU_USB_BUFSIZ))) > > dfu_set_poll_timeout(dstat,f_dfu->poll_timeout); > > > > Then we could avoid setpolltimeout flag. > > Done. > > >> /* send status response */ > >> dstat->bStatus = f_dfu->dfu_status; > >> @@ -446,10 +460,11 @@ static int state_dfu_manifest_sync(struct > >> f_dfu *f_dfu, switch (ctrl->bRequest) { > >> case USB_REQ_DFU_GETSTATUS: > >> /* We're MainfestationTolerant */ > >> - f_dfu->dfu_state = DFU_STATE_dfuIDLE; > >> + f_dfu->dfu_state = DFU_STATE_dfuMANIFEST; > >> handle_getstatus(req); > >> f_dfu->blk_seq_num = 0; > >> value = RET_STAT_LEN; > >> + req->complete = dnload_request_flush; > >> break; > >> case USB_REQ_DFU_GETSTATE: > >> handle_getstate(req); > >> @@ -463,6 +478,33 @@ static int state_dfu_manifest_sync(struct > >> f_dfu *f_dfu, return value; > >> } > >> > >> +static int state_dfu_manifest(struct f_dfu *f_dfu, > >> + const struct usb_ctrlrequest *ctrl, > >> + struct usb_gadget *gadget, > >> + struct usb_request *req) > >> +{ > >> + int value = 0; > >> + > >> + switch (ctrl->bRequest) { > >> + case USB_REQ_DFU_GETSTATUS: > >> + /* We're MainfestationTolerant */ > > > > Please look into the comments globally - we do now support the > > DFU_STATE_dfuMANIFEST_* states > > Hmm.. Yes, but we are MainfestationTolerant ... so the comment is > Ok, or? My understanding of "ManifestationTolerant" is as follow: "We didn't used the dfuMANIFEST state and immediately went to dfuIDLE state from dfuDOWNLOAD-IDLE, so we are 'ManifestationTolerant'". > > >> + f_dfu->dfu_state = DFU_STATE_dfuIDLE; > >> + handle_getstatus(req); > >> + f_dfu->blk_seq_num = 0; > >> + value = RET_STAT_LEN; > >> + puts("DOWNLOAD ... OK\nCtrl+C to exit ...\n"); > >> + break; > >> + case USB_REQ_DFU_GETSTATE: > >> + handle_getstate(req); > >> + break; > >> + default: > >> + f_dfu->dfu_state = DFU_STATE_dfuERROR; > >> + value = RET_STALL; > >> + break; > >> + } > >> + return value; > >> +} > >> + > >> static int state_dfu_upload_idle(struct f_dfu *f_dfu, > >> const struct usb_ctrlrequest > >> *ctrl, struct usb_gadget *gadget, > >> @@ -539,7 +581,7 @@ static dfu_state_fn dfu_state[] = { > >> state_dfu_dnbusy, /* DFU_STATE_dfuDNBUSY */ > >> state_dfu_dnload_idle, /* DFU_STATE_dfuDNLOAD_IDLE */ > >> state_dfu_manifest_sync, /* DFU_STATE_dfuMANIFEST_SYNC */ > >> - NULL, /* DFU_STATE_dfuMANIFEST */ > >> + state_dfu_manifest, /* DFU_STATE_dfuMANIFEST */ > >> NULL, /* > >> DFU_STATE_dfuMANIFEST_WAIT_RST */ state_dfu_upload_idle, /* > >> DFU_STATE_dfuUPLOAD_IDLE */ state_dfu_error /* > >> DFU_STATE_dfuERROR */ diff --git a/include/dfu.h b/include/dfu.h > >> index 272a245..6c71ecb 100644 > >> --- a/include/dfu.h > >> +++ b/include/dfu.h > >> @@ -80,6 +80,9 @@ static inline unsigned int get_mmc_blk_size(int > >> dev) #ifndef DFU_DEFAULT_POLL_TIMEOUT > >> #define DFU_DEFAULT_POLL_TIMEOUT 0 > >> #endif > >> +#ifndef DFU_MANIFEST_POLL_TIMEOUT > >> +#define DFU_MANIFEST_POLL_TIMEOUT DFU_DEFAULT_POLL_TIMEOUT > >> +#endif > >> > >> struct dfu_entity { > >> char name[DFU_NAME_SIZE]; > > > > I did some preliminary DFU testing and it seems to not introduce any > > regressions. > > Thanks! > > > I'm looking forward for v2. > > I am ready for sending it, but need response from you as I think the > comment is correct ... Please explain why it is correct in your opinion. > > BTW: > With the DFU_MANIFEST_POLL_TIMEOUT solution, we have a static timeout, > which is suboptimal, as we have a big MTD partittion and we must have > a "big" timeout for erasing (in the worst case) the complete > partition. Also this big timeout is (on nand using ubi) only needed > for the nand ubi partiton, not for the raw partitions containing for > example u-boot ... where it could be 0 ... So, the problem is with setting a worst case value for all kinds of your dfu entities? > > Better would be, to have the information how long does it take to > erase one sector (define?) and how many sectors we have to erase, and > sending this value to the host... Do you see a chance to get this > information within the dfu code? We have f_dfu->poll_timeout field in the dfu function. Value from it sets the poll timeout to be waited by the host. Maybe it would be better to reuse this field to set it accordingly for MANIFEST_POLL_TIMEOUT. Now it is used for setting timeout when we store big chunks of data (32 MiB). > > Thinking about it, possibly we need a callback from the mtd layer, > which gives back the info, how long the flush would take, as this > is a media/partition size dependent timeout ... I think that we could add this callback - called e.g. (*poll_timeout) to the struct [mmc|nand]_internal_data. Then some helper functions would be defined at dfu_[mmc|nand].c and used at f_dfu.c Other question is if we accept current patches and wait for above improvement to follow of drop them and wait for solution addressing those issues. What do you think? > > bye, > Heiko -- Best regards, Lukasz Majewski Samsung R&D Institute Poland (SRPOL) | Linux Platform Group ^ permalink raw reply [flat|nested] 14+ messages in thread
* [U-Boot] [PATCH 2/3] usb: dfu: introduce dfuMANIFEST state 2014-03-17 9:46 ` Lukasz Majewski @ 2014-03-17 10:11 ` Heiko Schocher 2014-03-17 10:42 ` Lukasz Majewski 0 siblings, 1 reply; 14+ messages in thread From: Heiko Schocher @ 2014-03-17 10:11 UTC (permalink / raw) To: u-boot Hello Lukasz, Am 17.03.2014 10:46, schrieb Lukasz Majewski: > Hi Heiko, > >> Hello Lukasz, >> >> Am 14.03.2014 11:47, schrieb Lukasz Majewski: >>> Hi Heiko, >>> >>>> on nand flash using ubi, after the download of the new image into >>>> the flash, the "rest" of the nand sectors get erased while flushing >>>> the medium. With current u-boot version dfu-util may show: >>>> >>>> Starting download: >>>> [##################################################] finished! >>>> state(7) = dfuMANIFEST, status(0) = No error condition is present >>>> unable to read DFU status >>>> >>>> as get_status is not answered while erasing sectors, if erasing >>>> needs some time. >>>> >>>> So do the following changes to prevent this: >>>> >>>> - introduce dfuManifest state >>>> According to dfu specification >>>> ( http://www.usb.org/developers/devclass_docs/usbdfu10.pdf ) >>>> section 7: "the device enters the dfuMANIFEST-SYNC state and awaits >>>> the solicitation of the status report by the host. Upon receipt of >>>> the anticipated DFU_GETSTATUS, the device enters the dfuMANIFEST >>>> state, where it completes its reprogramming operations." >>>> >>>> - when stepping into dfuManifest state, sending a PollTimeout >>>> DFU_MANIFEST_POLL_TIMEOUT in ms, to the host, so the host >>>> (dfu-util) waits the PollTimeout before sending a get_status >>>> again. >>>> >>>> Signed-off-by: Heiko Schocher<hs@denx.de> >>>> Cc: Lukasz Majewski<l.majewski@samsung.com> >>>> Cc: Kyungmin Park<kyungmin.park@samsung.com> >>>> Cc: Marek Vasut<marex@denx.de> >>>> --- >>>> README | 5 ++++ >>>> drivers/dfu/dfu.c | 1 - >>>> drivers/usb/gadget/f_dfu.c | 60 >>>> +++++++++++++++++++++++++++++++++++++++------- >>>> include/dfu.h | 3 +++ 4 files changed, 59 >>>> insertions(+), 10 deletions(-) >>>> [...] >>>> diff --git a/drivers/usb/gadget/f_dfu.c >>>> b/drivers/usb/gadget/f_dfu.c index a045864..f4bf918 100644 >>>> --- a/drivers/usb/gadget/f_dfu.c >>>> +++ b/drivers/usb/gadget/f_dfu.c [...] >>>> @@ -463,6 +478,33 @@ static int state_dfu_manifest_sync(struct >>>> f_dfu *f_dfu, return value; >>>> } >>>> >>>> +static int state_dfu_manifest(struct f_dfu *f_dfu, >>>> + const struct usb_ctrlrequest *ctrl, >>>> + struct usb_gadget *gadget, >>>> + struct usb_request *req) >>>> +{ >>>> + int value = 0; >>>> + >>>> + switch (ctrl->bRequest) { >>>> + case USB_REQ_DFU_GETSTATUS: >>>> + /* We're MainfestationTolerant */ >>> >>> Please look into the comments globally - we do now support the >>> DFU_STATE_dfuMANIFEST_* states >> >> Hmm.. Yes, but we are MainfestationTolerant ... so the comment is >> Ok, or? > > My understanding of "ManifestationTolerant" is as follow: > > "We didn't used the dfuMANIFEST state and immediately went to dfuIDLE > state from dfuDOWNLOAD-IDLE, so we are 'ManifestationTolerant'". [...] >>> I'm looking forward for v2. >> >> I am ready for sending it, but need response from you as I think the >> comment is correct ... > > Please explain why it is correct in your opinion. Hmm.. http://www.usb.org/developers/devclass_docs/usbdfu10.pdf on page 26 "Figure A.1 Interface state transition diagram": State 7 bitManifestationTolerant = 1 (=ManifestationTolerant?), if PollTimeout is reached go back to state 6, and after DFU_GET_STATUS go to state 2 if State 7 and "bitManifestationTolerant = 0" and PollTimeout reached, go to state 8 ... and wait there forever? So we are in the "bitManifestationTolerant = 1" case as before my changes ... nothing changed ... before my changes there was immediately the transition from state 6 to state 2 and this is only possible if "bitManifestationTolerant = 1" is set ... I only added the dfuMANIFEST state, not changed the "bitManifestationTolerant = 1" I interpretate 'ManifestationTolerant' as: multiple dfu downloads are possible, no need for reseting the device after a download was successful ... >> BTW: >> With the DFU_MANIFEST_POLL_TIMEOUT solution, we have a static timeout, >> which is suboptimal, as we have a big MTD partittion and we must have >> a "big" timeout for erasing (in the worst case) the complete >> partition. Also this big timeout is (on nand using ubi) only needed >> for the nand ubi partiton, not for the raw partitions containing for >> example u-boot ... where it could be 0 ... > > So, the problem is with setting a worst case value for all kinds of > your dfu entities? Yes. At least each dfu entity needs an own Timeout ... think of an 1MiB Partition and a 900MiB Partition on one device ... we currently use the Polltimeout for the 900MiB Partition also when updating the 1 MiB Partition ... >> Better would be, to have the information how long does it take to >> erase one sector (define?) and how many sectors we have to erase, and >> sending this value to the host... Do you see a chance to get this >> information within the dfu code? > > We have f_dfu->poll_timeout field in the dfu function. Value from > it sets the poll timeout to be waited by the host. > > Maybe it would be better to reuse this field to set it accordingly for > MANIFEST_POLL_TIMEOUT. Now it is used for setting timeout when we store > big chunks of data (32 MiB). > >> >> Thinking about it, possibly we need a callback from the mtd layer, >> which gives back the info, how long the flush would take, as this >> is a media/partition size dependent timeout ... > > I think that we could add this callback - called e.g. (*poll_timeout) > to the struct [mmc|nand]_internal_data. Then some helper functions > would be defined at dfu_[mmc|nand].c and used at f_dfu.c Yep ... I look into this... > Other question is if we accept current patches and wait for above > improvement to follow of drop them and wait for solution addressing > those issues. > > What do you think? I prefer to accept current patches (I can post v2), as they are an improvement. On top of that the optimzation of the PollTimeout settings is a seperate patch. bye, Heiko -- DENX Software Engineering GmbH, MD: Wolfgang Denk & Detlev Zundel HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany ^ permalink raw reply [flat|nested] 14+ messages in thread
* [U-Boot] [PATCH 2/3] usb: dfu: introduce dfuMANIFEST state 2014-03-17 10:11 ` Heiko Schocher @ 2014-03-17 10:42 ` Lukasz Majewski 0 siblings, 0 replies; 14+ messages in thread From: Lukasz Majewski @ 2014-03-17 10:42 UTC (permalink / raw) To: u-boot Hi Heiko, > Hello Lukasz, > > Am 17.03.2014 10:46, schrieb Lukasz Majewski: > > Hi Heiko, > > > >> Hello Lukasz, > >> > >> Am 14.03.2014 11:47, schrieb Lukasz Majewski: > >>> Hi Heiko, > >>> > >>>> on nand flash using ubi, after the download of the new image into > >>>> the flash, the "rest" of the nand sectors get erased while > >>>> flushing the medium. With current u-boot version dfu-util may > >>>> show: > >>>> > >>>> Starting download: > >>>> [##################################################] finished! > >>>> state(7) = dfuMANIFEST, status(0) = No error condition is present > >>>> unable to read DFU status > >>>> > >>>> as get_status is not answered while erasing sectors, if erasing > >>>> needs some time. > >>>> > >>>> So do the following changes to prevent this: > >>>> > >>>> - introduce dfuManifest state > >>>> According to dfu specification > >>>> ( http://www.usb.org/developers/devclass_docs/usbdfu10.pdf ) > >>>> section 7: "the device enters the dfuMANIFEST-SYNC state and > >>>> awaits the solicitation of the status report by the host. Upon > >>>> receipt of the anticipated DFU_GETSTATUS, the device enters the > >>>> dfuMANIFEST state, where it completes its reprogramming > >>>> operations." > >>>> > >>>> - when stepping into dfuManifest state, sending a PollTimeout > >>>> DFU_MANIFEST_POLL_TIMEOUT in ms, to the host, so the host > >>>> (dfu-util) waits the PollTimeout before sending a get_status > >>>> again. > >>>> > >>>> Signed-off-by: Heiko Schocher<hs@denx.de> > >>>> Cc: Lukasz Majewski<l.majewski@samsung.com> > >>>> Cc: Kyungmin Park<kyungmin.park@samsung.com> > >>>> Cc: Marek Vasut<marex@denx.de> > >>>> --- > >>>> README | 5 ++++ > >>>> drivers/dfu/dfu.c | 1 - > >>>> drivers/usb/gadget/f_dfu.c | 60 > >>>> +++++++++++++++++++++++++++++++++++++++------- > >>>> include/dfu.h | 3 +++ 4 files changed, 59 > >>>> insertions(+), 10 deletions(-) > >>>> > [...] > >>>> diff --git a/drivers/usb/gadget/f_dfu.c > >>>> b/drivers/usb/gadget/f_dfu.c index a045864..f4bf918 100644 > >>>> --- a/drivers/usb/gadget/f_dfu.c > >>>> +++ b/drivers/usb/gadget/f_dfu.c > [...] > >>>> @@ -463,6 +478,33 @@ static int state_dfu_manifest_sync(struct > >>>> f_dfu *f_dfu, return value; > >>>> } > >>>> > >>>> +static int state_dfu_manifest(struct f_dfu *f_dfu, > >>>> + const struct usb_ctrlrequest > >>>> *ctrl, > >>>> + struct usb_gadget *gadget, > >>>> + struct usb_request *req) > >>>> +{ > >>>> + int value = 0; > >>>> + > >>>> + switch (ctrl->bRequest) { > >>>> + case USB_REQ_DFU_GETSTATUS: > >>>> + /* We're MainfestationTolerant */ > >>> > >>> Please look into the comments globally - we do now support the > >>> DFU_STATE_dfuMANIFEST_* states > >> > >> Hmm.. Yes, but we are MainfestationTolerant ... so the comment is > >> Ok, or? > > > > My understanding of "ManifestationTolerant" is as follow: > > > > "We didn't used the dfuMANIFEST state and immediately went to > > dfuIDLE state from dfuDOWNLOAD-IDLE, so we are > > 'ManifestationTolerant'". > > [...] > >>> I'm looking forward for v2. > >> > >> I am ready for sending it, but need response from you as I think > >> the comment is correct ... > > > > Please explain why it is correct in your opinion. > > Hmm.. > > http://www.usb.org/developers/devclass_docs/usbdfu10.pdf on page 26 > "Figure A.1 Interface state transition diagram": > > State 7 bitManifestationTolerant = 1 (=ManifestationTolerant?), if > PollTimeout is reached go back to state 6, and after DFU_GET_STATUS > go to state 2 > > if State 7 and "bitManifestationTolerant = 0" and PollTimeout reached, > go to state 8 ... and wait there forever? > > So we are in the "bitManifestationTolerant = 1" case as before my > changes ... nothing changed ... > > before my changes there was immediately the transition from state 6 > to state 2 and this is only possible if "bitManifestationTolerant = 1" > is set ... I only added the dfuMANIFEST state, not changed the > "bitManifestationTolerant = 1" > > I interpretate 'ManifestationTolerant' as: > multiple dfu downloads are possible, no need for reseting the device > after a download was successful ... > Thanks for very in depth explanation. You seem to be right :-). Lets not change the comment. > >> BTW: > >> With the DFU_MANIFEST_POLL_TIMEOUT solution, we have a static > >> timeout, which is suboptimal, as we have a big MTD partittion and > >> we must have a "big" timeout for erasing (in the worst case) the > >> complete partition. Also this big timeout is (on nand using ubi) > >> only needed for the nand ubi partiton, not for the raw partitions > >> containing for example u-boot ... where it could be 0 ... > > > > So, the problem is with setting a worst case value for all kinds of > > your dfu entities? > > Yes. At least each dfu entity needs an own Timeout ... think of > an 1MiB Partition and a 900MiB Partition on one device ... we > currently use the Polltimeout for the 900MiB Partition also when > updating the 1 MiB Partition ... Yes, it is a pain... to wait. > > >> Better would be, to have the information how long does it take to > >> erase one sector (define?) and how many sectors we have to erase, > >> and sending this value to the host... Do you see a chance to get > >> this information within the dfu code? > > > > We have f_dfu->poll_timeout field in the dfu function. Value from > > it sets the poll timeout to be waited by the host. > > > > Maybe it would be better to reuse this field to set it accordingly > > for MANIFEST_POLL_TIMEOUT. Now it is used for setting timeout when > > we store big chunks of data (32 MiB). > > > >> > >> Thinking about it, possibly we need a callback from the mtd layer, > >> which gives back the info, how long the flush would take, as this > >> is a media/partition size dependent timeout ... > > > > I think that we could add this callback - called e.g. > > (*poll_timeout) to the struct [mmc|nand]_internal_data. Then some > > helper functions would be defined at dfu_[mmc|nand].c and used at > > f_dfu.c > > Yep ... I look into this... > > > Other question is if we accept current patches and wait for above > > improvement to follow of drop them and wait for solution addressing > > those issues. > > > > What do you think? > > I prefer to accept current patches (I can post v2), as they are an > improvement. On top of that the optimzation of the PollTimeout > settings is a seperate patch. Ok, lets proceed in this way. > > bye, > Heiko -- Best regards, Lukasz Majewski Samsung R&D Institute Poland (SRPOL) | Linux Platform Group ^ permalink raw reply [flat|nested] 14+ messages in thread
* [U-Boot] [PATCH 3/3] am335x, dfu: add DFU_MANIFEST_POLL_TIMEOUT to the siemens boards 2014-03-12 10:01 [U-Boot] [PATCH 0/3] usb: dfu: introduce dfuMANIFEST state Heiko Schocher 2014-03-12 10:01 ` [U-Boot] [PATCH 1/3] usb, dfu: extract flush code into seperate function Heiko Schocher 2014-03-12 10:01 ` [U-Boot] [PATCH 2/3] usb: dfu: introduce dfuMANIFEST state Heiko Schocher @ 2014-03-12 10:01 ` Heiko Schocher 2014-03-14 10:48 ` Lukasz Majewski 2 siblings, 1 reply; 14+ messages in thread From: Heiko Schocher @ 2014-03-12 10:01 UTC (permalink / raw) To: u-boot as the siemens boards use dfu for updating a nand ubi partition add DFU_MANIFEST_POLL_TIMEOUT to them, so dfu host waits after complete transfer of the new image for DFU_MANIFEST_POLL_TIMEOUT ms before sending again an usb request. So the board have enough time to erase rest of the nand sectors. Signed-off-by: Heiko Schocher <hs@denx.de> Cc: Lukasz Majewski <l.majewski@samsung.com> Cc: Kyungmin Park <kyungmin.park@samsung.com> Cc: Marek Vasut <marex@denx.de> Cc: Tom Rini <trini@ti.com> --- include/configs/siemens-am33x-common.h | 1 + 1 file changed, 1 insertion(+) diff --git a/include/configs/siemens-am33x-common.h b/include/configs/siemens-am33x-common.h index 98b6e72..721c4e6 100644 --- a/include/configs/siemens-am33x-common.h +++ b/include/configs/siemens-am33x-common.h @@ -265,6 +265,7 @@ #define CONFIG_DFU_NAND #define CONFIG_CMD_DFU #define CONFIG_SYS_DFU_DATA_BUF_SIZE (1 << 20) +#define DFU_MANIFEST_POLL_TIMEOUT 25000 #endif /* CONFIG_SPL_BUILD */ -- 1.8.3.1 ^ permalink raw reply related [flat|nested] 14+ messages in thread
* [U-Boot] [PATCH 3/3] am335x, dfu: add DFU_MANIFEST_POLL_TIMEOUT to the siemens boards 2014-03-12 10:01 ` [U-Boot] [PATCH 3/3] am335x, dfu: add DFU_MANIFEST_POLL_TIMEOUT to the siemens boards Heiko Schocher @ 2014-03-14 10:48 ` Lukasz Majewski 0 siblings, 0 replies; 14+ messages in thread From: Lukasz Majewski @ 2014-03-14 10:48 UTC (permalink / raw) To: u-boot Hi Heiko, > as the siemens boards use dfu for updating a nand ubi partition > add DFU_MANIFEST_POLL_TIMEOUT to them, so dfu host waits after > complete transfer of the new image for DFU_MANIFEST_POLL_TIMEOUT > ms before sending again an usb request. So the board have enough > time to erase rest of the nand sectors. > > Signed-off-by: Heiko Schocher <hs@denx.de> > Cc: Lukasz Majewski <l.majewski@samsung.com> > Cc: Kyungmin Park <kyungmin.park@samsung.com> > Cc: Marek Vasut <marex@denx.de> > Cc: Tom Rini <trini@ti.com> > --- > include/configs/siemens-am33x-common.h | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/include/configs/siemens-am33x-common.h > b/include/configs/siemens-am33x-common.h index 98b6e72..721c4e6 100644 > --- a/include/configs/siemens-am33x-common.h > +++ b/include/configs/siemens-am33x-common.h > @@ -265,6 +265,7 @@ > #define CONFIG_DFU_NAND > #define CONFIG_CMD_DFU > #define CONFIG_SYS_DFU_DATA_BUF_SIZE (1 << 20) > +#define DFU_MANIFEST_POLL_TIMEOUT 25000 > > #endif /* CONFIG_SPL_BUILD */ > Reviewed-by: Lukasz Majewski <l.majewski@samsung.com> -- Best regards, Lukasz Majewski Samsung R&D Institute Poland (SRPOL) | Linux Platform Group ^ permalink raw reply [flat|nested] 14+ messages in thread
end of thread, other threads:[~2014-03-17 10:42 UTC | newest] Thread overview: 14+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2014-03-12 10:01 [U-Boot] [PATCH 0/3] usb: dfu: introduce dfuMANIFEST state Heiko Schocher 2014-03-12 10:01 ` [U-Boot] [PATCH 1/3] usb, dfu: extract flush code into seperate function Heiko Schocher 2014-03-12 11:43 ` Marek Vasut 2014-03-13 5:31 ` Heiko Schocher 2014-03-13 12:38 ` Marek Vasut 2014-03-14 10:36 ` Lukasz Majewski 2014-03-12 10:01 ` [U-Boot] [PATCH 2/3] usb: dfu: introduce dfuMANIFEST state Heiko Schocher 2014-03-14 10:47 ` Lukasz Majewski 2014-03-17 6:34 ` Heiko Schocher 2014-03-17 9:46 ` Lukasz Majewski 2014-03-17 10:11 ` Heiko Schocher 2014-03-17 10:42 ` Lukasz Majewski 2014-03-12 10:01 ` [U-Boot] [PATCH 3/3] am335x, dfu: add DFU_MANIFEST_POLL_TIMEOUT to the siemens boards Heiko Schocher 2014-03-14 10:48 ` Lukasz Majewski
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox