From: Vignesh R <vigneshr@ti.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 2/2] ARM: dra7xx_evm: Add DFU support for qspi flash
Date: Tue, 20 Oct 2015 16:16:32 +0530 [thread overview]
Message-ID: <56261B88.9090203@ti.com> (raw)
In-Reply-To: <20151020123709.255b62a2@amdc2363>
Hi Lukasz,
On 10/20/2015 04:07 PM, Lukasz Majewski wrote:
> Hi Vignesh,
>
>> This adds support to update firmware on qspi flash using DFU.
>>
>> On device:
>> => setenv dfu_alt_info ${dfu_alt_info_qspi}
>> => dfu 0 sf 0:0
>>
>> On host:
>> $ sudo dfu-util -l
>> $ sudo dfu-util -D MLO -a MLO
>> $ sudo dfu-util -D u-boot.img -a u-boot.img
>
> This patch series seems ok. I just have one question regarding dfu-util:
>
> sudo dfu-util -D MLO -a MLO
>
> Is the above correct?
>
> Shouldn't it be sudo dfu-util -a 0 -D MLO
> where alt setting 0 corresponds to MLO?
>
According to man page of dfu-util 0.5 (supports DFU v1.0):
"-a" can be used Specify the Altsetting of the DFU Interface by name or
by number
So since "MLO" is the name for alt setting 0 both
sudo dfu-util -D MLO -a MLO and
sudo dfu-util -a 0 -D MLO are correct.
I used the above format as its easier for reading. Thanks!
>>
>> Signed-off-by: Vignesh R <vigneshr@ti.com>
>> ---
>> include/configs/dra7xx_evm.h | 16 +++++++++++++++-
>> 1 file changed, 15 insertions(+), 1 deletion(-)
>>
>> diff --git a/include/configs/dra7xx_evm.h
>> b/include/configs/dra7xx_evm.h index 6e32de854619..cb9544b49efb 100644
>> --- a/include/configs/dra7xx_evm.h
>> +++ b/include/configs/dra7xx_evm.h
>> @@ -82,11 +82,24 @@
>> "fdt ram 0x80f80000 0x80000;" \
>> "ramdisk ram 0x81000000 0x4000000\0"
>>
>> +#define DFU_ALT_INFO_QSPI \
>> + "dfu_alt_info_qspi=" \
>> + "MLO raw 0x0 0x010000;" \
>> + "MLO.backup1 raw 0x010000 0x010000;" \
>> + "MLO.backup2 raw 0x020000 0x010000;" \
>> + "MLO.backup3 raw 0x030000 0x010000;" \
>> + "u-boot.img raw 0x040000 0x0100000;" \
>> + "u-boot-spl-os raw 0x140000 0x080000;" \
>> + "u-boot-env raw 0x1C0000 0x010000;" \
>> + "u-boot-env.backup raw 0x1D0000 0x010000;" \
>> + "kernel raw 0x1E0000 0x800000\0"
>> +
>> #define DFUARGS \
>> "dfu_bufsiz=0x10000\0" \
>> DFU_ALT_INFO_MMC \
>> DFU_ALT_INFO_EMMC \
>> - DFU_ALT_INFO_RAM
>> + DFU_ALT_INFO_RAM \
>> + DFU_ALT_INFO_QSPI
>>
>> /* Fastboot */
>> #define CONFIG_USB_FUNCTION_FASTBOOT
>> @@ -207,6 +220,7 @@
>>
>> #define CONFIG_DFU_MMC
>> #define CONFIG_DFU_RAM
>> +#define CONFIG_DFU_SF
>>
>> /* SATA */
>> #define CONFIG_BOARD_LATE_INIT
>
>
>
--
Regards
Vignesh
next prev parent reply other threads:[~2015-10-20 10:46 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-10-20 9:51 [U-Boot] [PATCH 0/2] DFU support for qspi on dra7xx Vignesh R
2015-10-20 9:52 ` [U-Boot] [PATCH 1/2] dfu: dfu_sf: Pass duplicate devstr to parse_dev Vignesh R
2015-10-20 15:45 ` Tom Rini
2015-10-20 9:52 ` [U-Boot] [PATCH 2/2] ARM: dra7xx_evm: Add DFU support for qspi flash Vignesh R
2015-10-20 10:37 ` Lukasz Majewski
2015-10-20 10:46 ` Vignesh R [this message]
2015-10-20 11:06 ` Lukasz Majewski
2015-10-20 15:45 ` Tom Rini
2015-10-20 15:58 ` Lukasz Majewski
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=56261B88.9090203@ti.com \
--to=vigneshr@ti.com \
--cc=u-boot@lists.denx.de \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox