Re: ARM64 TPM start method patches

2017-04-13 Thread Abdulhamid, Harb
On 4/14/2017 12:58 AM, anjia...@codeaurora.org wrote: > Adding Harb Abdulhamid for SMC details > > On 2017-04-11 06:36, Mark Rutland wrote: >> Hi, >> >> I just stumbled upon the following commits in next-20170411: >> >> cf8252ca7ca76fa4 ("ACPICA: Update TPM2 ACPI table") >> 08eff49d63ca2bf4 ("

Re: [PATCH V3 05/10] acpi: apei: handle SEA notification type for ARMv8

2016-10-19 Thread Abdulhamid, Harb
On 10/18/2016 9:04 AM, Hanjun Guo wrote: > On 2016/10/8 5:31, Tyler Baicar wrote: >> ARM APEI extension proposal added SEA (Synchrounous External >> Abort) notification type for ARMv8. >> Add a new GHES error source handling function for SEA. If an error >> source's notification type is SEA, then t

Re: [PATCH V3 05/10] acpi: apei: handle SEA notification type for ARMv8

2016-10-19 Thread Abdulhamid, Harb
On 10/18/2016 8:44 AM, Hanjun Guo wrote: > Hi Tyler, > > On 2016/10/8 5:31, Tyler Baicar wrote: >> ARM APEI extension proposal added SEA (Synchrounous External >> Abort) notification type for ARMv8. >> Add a new GHES error source handling function for SEA. If an error >> source's notification type

Re: [PATCH V2 5/9] arm64: exception: handle instruction abort at current EL

2016-04-11 Thread Abdulhamid, Harb
On 4/7/2016 3:54 AM, Marc Zyngier wrote: > On Wed, 6 Apr 2016 15:36:00 -0600 > "Baicar, Tyler" wrote: > > Hi Tyler, > >> Hello Marc, >> >> On 4/6/2016 9:36 AM, Marc Zyngier wrote: >>> On 06/04/16 16:12, Tyler Baicar wrote: Add a handler for instruction aborts at the current EL (ESR_ELx

Re: [PATCH 12/15] ACPICA: ACPI 6.1: Add full support for this version of ACPI spec

2016-02-20 Thread Abdulhamid, Harb
On 2/19/2016 1:17 AM, Lv Zheng wrote: > From: Bob Moore > > ACPICA commit 5f21bddaa2cec035ca80608803ce2f0858d4f387 > > Small changes: > 1) A couple new predefined names > 2) New _HID values I don't see where you are adding new _HID values in this patch. > 3) New subtable for HEST > > Link: htt

Re: [PATCH V1 6/6] acpi: apei: handle SEA notification type for ARMv8

2016-02-10 Thread Abdulhamid, Harb
On 2/10/2016 1:03 PM, Will Deacon wrote: > On Fri, Feb 05, 2016 at 12:13:28PM -0700, Tyler Baicar wrote: >> +#else /* CONFIG_HAVE_ACPI_APEI_SEA */ >> +static inline int ghes_sea_add(struct ghes *ghes) >> +{ >> +pr_err(GHES_PFX "ID: %d, trying to add SEA notification which is not >> supported\

Re: [PATCH V1 5/6] arm64: exception: handle instruction abort at current EL

2016-02-10 Thread Abdulhamid, Harb
On 2/10/2016 1:02 PM, Will Deacon wrote: > On Fri, Feb 05, 2016 at 12:13:27PM -0700, Tyler Baicar wrote: >> Add a handler for instruction aborts at the current EL >> (ESR_ELx_EC_IABT_CUR) so they are no longer handled in el1_inv. >> This allows firmware first handling for possible SEA >> (Synchrono

Re: [PATCH V1 4/6] arm64: exception: handle Synchronous External Abort

2016-02-10 Thread Abdulhamid, Harb
On 2/10/2016 1:03 PM, Will Deacon wrote: > On Fri, Feb 05, 2016 at 12:13:26PM -0700, Tyler Baicar wrote: >> +static int do_sea(unsigned long addr, unsigned int esr, struct pt_regs >> *regs) >> +{ >> +struct siginfo info; >> + >> +atomic_notifier_call_chain(&sea_handler_chain, 0, NULL);