From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tom Rini Date: Fri, 12 Jan 2018 11:23:22 -0500 Subject: [U-Boot] [PATCH 3/9] optee: Make OPTEE_TZDRAM_BASE a mandatory define In-Reply-To: <1515768744-25246-4-git-send-email-bryan.odonoghue@linaro.org> References: <1515768744-25246-1-git-send-email-bryan.odonoghue@linaro.org> <1515768744-25246-4-git-send-email-bryan.odonoghue@linaro.org> Message-ID: <20180112162322.GQ4660@bill-the-cat> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On Fri, Jan 12, 2018 at 02:52:18PM +0000, Bryan O'Donoghue wrote: > This patch makes OTPEE_TZDRAM_BASE a mandatory parameter. > Subsequent patches will ensure that the region between > OTPEE_TZDRAM_BASE and (OTPEE_TZDRAM_BASE + > CONFIG_OPTEE_TZDRAM_SIZE) match the information given in the OPTEE header > before handing off control to the OPTEE image when booting OPTEE directly > via bootm. > > Signed-off-by: Bryan O'Donoghue > Cc: Harinarayan Bhatta > Cc: Andrew F. Davis > Cc: Tom Rini > Cc: Kever Yang > Cc: Philipp Tomsich > Cc: Peng Fan > --- > lib/optee/optee.c | 5 +++++ > 1 file changed, 5 insertions(+) > > diff --git a/lib/optee/optee.c b/lib/optee/optee.c > index a6c856a..6e55027 100644 > --- a/lib/optee/optee.c > +++ b/lib/optee/optee.c > @@ -5,9 +5,14 @@ > * SPDX-License-Identifier: GPL-2.0+ > */ > > +#include > #include > #include > > +#ifndef OPTEE_TZDRAM_BASE > +#error "OPTEE_TZDRAM_BASE not defined" > +#endif > + > int optee_verify_image(struct optee_header *hdr, unsigned long tzdram_start, > unsigned long tzdram_len, unsigned long image_len) > { I'm not a fan of adding #error's like this. Since this is a static value,it should be in Kconfig (with appropriate depends) or defined in a consistent location (asm/arch/optee.h ?) and it should be obvious from the code that uses the value that you need to have this value be provided and how to determine what the valid and correct value is. Thanks! -- Tom -------------- next part -------------- A non-text attachment was scrubbed... Name: signature.asc Type: application/pgp-signature Size: 819 bytes Desc: not available URL: