Re: [PATCH v7 1/3] docs: Add support for TPM devices over I2C bus

2023-03-27 Thread Ninad Palsule
On 3/27/23 10:10 AM, Cédric Le Goater wrote: +In case a ast2600-evb bmc machine is emulated and want to use TPM device +attached to I2C bus, use the following command line: + +.. code-block:: console + +  qemu-system-arm -M ast2600-evb -nographic \ +    -kernel arch/arm/boot/zImage \ +   

Re: [PATCH v7 1/3] docs: Add support for TPM devices over I2C bus

2023-03-27 Thread Cédric Le Goater
+In case a ast2600-evb bmc machine is emulated and want to use TPM device +attached to I2C bus, use the following command line: + +.. code-block:: console + +  qemu-system-arm -M ast2600-evb -nographic \ +    -kernel arch/arm/boot/zImage \ +    -dtb arch/arm/boot/dts/aspeed-ast2600-evb.dtb \ +   

Re: [PATCH v7 1/3] docs: Add support for TPM devices over I2C bus

2023-03-27 Thread Ninad Palsule
Hi Cedric, On 3/27/23 2:52 AM, Cédric Le Goater wrote: On 3/27/23 09:47, Joel Stanley wrote: On Sun, 26 Mar 2023 at 22:44, Ninad Palsule wrote: This is a documentation change for I2C TPM device support. Qemu already supports devices attached to ISA and sysbus. This drop adds support for

Re: [PATCH v7 1/3] docs: Add support for TPM devices over I2C bus

2023-03-27 Thread Ninad Palsule
Hi Joel, On 3/27/23 2:47 AM, Joel Stanley wrote: On Sun, 26 Mar 2023 at 22:44, Ninad Palsule wrote: This is a documentation change for I2C TPM device support. Qemu already supports devices attached to ISA and sysbus. This drop adds support for the I2C bus attached TPM devices.

Re: [PATCH v7 1/3] docs: Add support for TPM devices over I2C bus

2023-03-27 Thread Cédric Le Goater
On 3/27/23 09:47, Joel Stanley wrote: On Sun, 26 Mar 2023 at 22:44, Ninad Palsule wrote: This is a documentation change for I2C TPM device support. Qemu already supports devices attached to ISA and sysbus. This drop adds support for the I2C bus attached TPM devices. Signed-off-by: Ninad

Re: [PATCH v7 1/3] docs: Add support for TPM devices over I2C bus

2023-03-27 Thread Joel Stanley
On Sun, 26 Mar 2023 at 22:44, Ninad Palsule wrote: > > This is a documentation change for I2C TPM device support. > > Qemu already supports devices attached to ISA and sysbus. > This drop adds support for the I2C bus attached TPM devices. > > Signed-off-by: Ninad Palsule > > --- > V2: > >

[PATCH v7 1/3] docs: Add support for TPM devices over I2C bus

2023-03-26 Thread Ninad Palsule
This is a documentation change for I2C TPM device support. Qemu already supports devices attached to ISA and sysbus. This drop adds support for the I2C bus attached TPM devices. Signed-off-by: Ninad Palsule --- V2: Incorporated Stephen's review comments - Added example in the document. ---