Re: [U-Boot] [PATCH V4 1/3] eMMC: add support for operations in RPMB partition

2014-04-24 Thread Pierre AUBERT
Hello Wolfgang, Le 24/04/2014 08:59, Wolfgang Denk a écrit : Dear Pierre. In message <1398321641-7113-2-git-send-email-p.aub...@staubli.com> you wrote: ... --- a/lib/Makefile +++ b/lib/Makefile @@ -35,6 +35,9 @@ obj-y += net_utils.o obj-$(CONFIG_PHYSMEM) += physmem.o obj-y += qsort.o obj

Re: [U-Boot] [PATCH V4 1/3] eMMC: add support for operations in RPMB partition

2014-04-24 Thread Pierre AUBERT
Hello Wolfgang, Le 24/04/2014 09:33, Wolfgang Denk a écrit : Dear Pierre, In message <5358ba6a.3030...@staubli.com> you wrote: The changelog goes into the comment section (i. e. below the "---" I will fix it in V5. I made the same mistake for the patch 3/3. Thanks. Actually I cannot see a V

Re: [U-Boot] [PATCH V4 1/3] eMMC: add support for operations in RPMB partition

2014-04-24 Thread Wolfgang Denk
Dear Pierre, In message <5358ba6a.3030...@staubli.com> you wrote: > > > The changelog goes into the comment section (i. e. below the "---" > I will fix it in V5. I made the same mistake for the patch 3/3. Thanks. Actually I cannot see a V4 of patch 3/3 ? > > line), not into the commit message.

Re: [U-Boot] [PATCH V4 1/3] eMMC: add support for operations in RPMB partition

2014-04-24 Thread Pierre AUBERT
Hello Wolfgang, Le 24/04/2014 08:55, Wolfgang Denk a écrit : Dear Pierre Aubert, In message <1398321641-7113-2-git-send-email-p.aub...@staubli.com> you wrote: This patch adds functions for read, write and authentication key programming for the Replay Protected Memory Block partition in the eMM

Re: [U-Boot] [PATCH V4 1/3] eMMC: add support for operations in RPMB partition

2014-04-24 Thread Wolfgang Denk
Dear Pierre. In message <1398321641-7113-2-git-send-email-p.aub...@staubli.com> you wrote: > ... > --- a/lib/Makefile > +++ b/lib/Makefile > @@ -35,6 +35,9 @@ obj-y += net_utils.o > obj-$(CONFIG_PHYSMEM) += physmem.o > obj-y += qsort.o > obj-$(CONFIG_SHA1) += sha1.o > +ifdef CONFIG_SUPPORT_EMMC

Re: [U-Boot] [PATCH V4 1/3] eMMC: add support for operations in RPMB partition

2014-04-23 Thread Wolfgang Denk
Dear Pierre Aubert, In message <1398321641-7113-2-git-send-email-p.aub...@staubli.com> you wrote: > This patch adds functions for read, write and authentication > key programming for the Replay Protected Memory Block partition > in the eMMC. > > Changes in V2: > - use ALLOC_CACHE_ALIGN_BUFFER in

[U-Boot] [PATCH V4 1/3] eMMC: add support for operations in RPMB partition

2014-04-23 Thread Pierre Aubert
This patch adds functions for read, write and authentication key programming for the Replay Protected Memory Block partition in the eMMC. Changes in V2: - use ALLOC_CACHE_ALIGN_BUFFER in rpmb.c instead of a static buffer for the RPMB frames. Signed-off-by: Pierre Aubert CC: Pantelis Antoniou