From: Miquel Raynal <miquel.raynal@bootlin.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v2 09/19] tpm: add TPM2_Startup command support
Date: Fri, 27 Apr 2018 15:45:36 +0200 [thread overview]
Message-ID: <20180427154536.1e483904@xps13> (raw)
In-Reply-To: <CAPnjgZ1q8MbrP31Uf9zTzh-+yicK3JBRBbAA2Jvj5fR1x6ekig@mail.gmail.com>
Hi Simon,
> > enum tpm_physical_presence {
> > TPM_PHYSICAL_PRESENCE_HW_DISABLE = 0x0200,
> > TPM_PHYSICAL_PRESENCE_CMD_DISABLE = 0x0100,
> > @@ -445,7 +469,7 @@ int tpm_get_specification(void);
> > * @param mode TPM startup mode
> > * @return return code of the operation
> > */
> > -uint32_t tpm_startup(enum tpm_startup_type mode);
> > +int tpm_startup(enum tpm_startup_type mode);
>
> How come the change to an int? It's fine, I just want to understand it.
>
Good catch, that is a mistake and has no interest. In the new version I
moved all the functions to be aligned by returning an u32.
Thanks,
Miquèl
--
Miquel Raynal, Bootlin (formerly Free Electrons)
Embedded Linux and Kernel engineering
https://bootlin.com
next prev parent reply other threads:[~2018-04-27 13:45 UTC|newest]
Thread overview: 44+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-03-29 7:43 [U-Boot] [PATCH v2 00/19] Introduce SPI TPM v2.0 support Miquel Raynal
2018-03-29 7:43 ` [U-Boot] [PATCH v2 01/19] tpm: add Revision ID field in the chip structure Miquel Raynal
2018-03-29 22:41 ` Simon Glass
2018-03-29 7:43 ` [U-Boot] [PATCH v2 02/19] tpm: rename tpm_tis_infineon in tpm_tis_infineon_i2c Miquel Raynal
2018-03-29 22:41 ` Simon Glass
2018-03-29 7:43 ` [U-Boot] [PATCH v2 03/19] tpm: add support for TPMv2 SPI modules Miquel Raynal
2018-03-29 22:41 ` Simon Glass
2018-04-24 13:02 ` Miquel Raynal
2018-03-29 7:43 ` [U-Boot] [PATCH v2 04/19] tpm: fix indentation in command list before adding more Miquel Raynal
2018-03-29 22:41 ` Simon Glass
2018-03-29 7:43 ` [U-Boot] [PATCH v2 05/19] tpm: prepare support for TPMv2 commands Miquel Raynal
2018-03-29 22:42 ` Simon Glass
2018-03-29 7:43 ` [U-Boot] [PATCH v2 06/19] tpm: add macros " Miquel Raynal
2018-03-29 22:42 ` Simon Glass
2018-03-29 7:43 ` [U-Boot] [PATCH v2 07/19] tpm: add possible traces to analyze buffers returned by the TPM Miquel Raynal
2018-03-29 22:42 ` Simon Glass
2018-04-28 12:27 ` Miquel Raynal
2018-03-29 7:43 ` [U-Boot] [PATCH v2 08/19] tpm: handle different buffer sizes Miquel Raynal
2018-03-29 22:42 ` Simon Glass
2018-03-29 7:43 ` [U-Boot] [PATCH v2 09/19] tpm: add TPM2_Startup command support Miquel Raynal
2018-03-29 22:42 ` Simon Glass
2018-04-27 13:45 ` Miquel Raynal [this message]
2018-03-29 7:43 ` [U-Boot] [PATCH v2 10/19] tpm: add TPM2_SelfTest " Miquel Raynal
2018-03-29 22:42 ` Simon Glass
2018-04-24 12:53 ` Miquel Raynal
2018-04-26 14:40 ` Simon Glass
2018-04-28 13:10 ` Miquel Raynal
2018-03-29 7:43 ` [U-Boot] [PATCH v2 11/19] tpm: add TPM2_Clear " Miquel Raynal
2018-03-29 22:42 ` Simon Glass
2018-04-24 13:17 ` Miquel Raynal
2018-04-26 14:40 ` Simon Glass
2018-04-27 13:39 ` Miquel Raynal
2018-05-03 19:01 ` Simon Glass
2018-03-29 7:43 ` [U-Boot] [PATCH v2 12/19] tpm: rename the _extend() function to be _pcr_event() Miquel Raynal
2018-03-29 9:44 ` Reinhard Pfau
2018-03-29 9:46 ` Miquel Raynal
2018-03-29 7:43 ` [U-Boot] [PATCH v2 13/19] tpm: add TPM2_PCR_Extend command support Miquel Raynal
2018-03-29 7:43 ` [U-Boot] [PATCH v2 14/19] tpm: add TPM2_PCR_Read " Miquel Raynal
2018-03-29 7:43 ` [U-Boot] [PATCH v2 15/19] tpm: add TPM2_GetCapability " Miquel Raynal
2018-03-29 7:43 ` [U-Boot] [PATCH v2 16/19] tpm: add dictionary attack mitigation commands support Miquel Raynal
2018-03-29 7:43 ` [U-Boot] [PATCH v2 17/19] tpm: add TPM2_HierarchyChangeAuth command support Miquel Raynal
2018-03-29 7:44 ` [U-Boot] [PATCH v2 18/19] tpm: add PCR authentication commands support Miquel Raynal
2018-03-29 22:42 ` Simon Glass
2018-03-29 7:44 ` [U-Boot] [PATCH v2 19/19] test/py: add TPMv2.0 test suite Miquel Raynal
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=20180427154536.1e483904@xps13 \
--to=miquel.raynal@bootlin.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