sphinx.addnodesdocument)}( rawsourcechildren]( translations LanguagesNode)}(hhh](h pending_xref)}(hhh]docutils.nodesTextChinese (Simplified)}parenthsba attributes}(ids]classes]names]dupnames]backrefs] refdomainstdreftypedoc reftarget+/translations/zh_CN/arch/powerpc/kvm-nestedmodnameN classnameN refexplicitutagnamehhh ubh)}(hhh]hChinese (Traditional)}hh2sbah}(h]h ]h"]h$]h&] refdomainh)reftypeh+ reftarget+/translations/zh_TW/arch/powerpc/kvm-nestedmodnameN classnameN refexplicituh1hhh ubh)}(hhh]hItalian}hhFsbah}(h]h ]h"]h$]h&] refdomainh)reftypeh+ reftarget+/translations/it_IT/arch/powerpc/kvm-nestedmodnameN classnameN refexplicituh1hhh ubh)}(hhh]hJapanese}hhZsbah}(h]h ]h"]h$]h&] refdomainh)reftypeh+ reftarget+/translations/ja_JP/arch/powerpc/kvm-nestedmodnameN classnameN refexplicituh1hhh ubh)}(hhh]hKorean}hhnsbah}(h]h ]h"]h$]h&] refdomainh)reftypeh+ reftarget+/translations/ko_KR/arch/powerpc/kvm-nestedmodnameN classnameN refexplicituh1hhh ubh)}(hhh]hSpanish}hhsbah}(h]h ]h"]h$]h&] refdomainh)reftypeh+ reftarget+/translations/sp_SP/arch/powerpc/kvm-nestedmodnameN classnameN refexplicituh1hhh ubeh}(h]h ]h"]h$]h&]current_languageEnglishuh1h hh _documenthsourceNlineNubhcomment)}(h SPDX-License-Identifier: GPL-2.0h]h SPDX-License-Identifier: GPL-2.0}hhsbah}(h]h ]h"]h$]h&] xml:spacepreserveuh1hhhhhhE/var/lib/git/docbuild/linux/Documentation/arch/powerpc/kvm-nested.rsthKubhsection)}(hhh](htitle)}(hNested KVM on POWERh]hNested KVM on POWER}(hhhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhhhhhKubh)}(hhh](h)}(h Introductionh]h Introduction}(hhhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhhhhhKubh paragraph)}(hXThis document explains how a guest operating system can act as a hypervisor and run nested guests through the use of hypercalls, if the hypervisor has implemented them. The terms L0, L1, and L2 are used to refer to different software entities. L0 is the hypervisor mode entity that would normally be called the "host" or "hypervisor". L1 is a guest virtual machine that is directly run under L0 and is initiated and controlled by L0. L2 is a guest virtual machine that is initiated and controlled by L1 acting as a hypervisor.h]hXThis document explains how a guest operating system can act as a hypervisor and run nested guests through the use of hypercalls, if the hypervisor has implemented them. The terms L0, L1, and L2 are used to refer to different software entities. L0 is the hypervisor mode entity that would normally be called the “host” or “hypervisor”. L1 is a guest virtual machine that is directly run under L0 and is initiated and controlled by L0. L2 is a guest virtual machine that is initiated and controlled by L1 acting as a hypervisor.}(hhhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhK hhhhubeh}(h] introductionah ]h"] introductionah$]h&]uh1hhhhhhhhKubh)}(hhh](h)}(h Existing APIh]h Existing API}(hhhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhhhhhKubh)}(h?Linux/KVM has had support for Nesting as an L0 or L1 since 2018h]h?Linux/KVM has had support for Nesting as an L0 or L1 since 2018}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKhhhhubh)}(hThe L0 code was added::h]hThe L0 code was added:}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKhhhhubh literal_block)}(hcommit 8e3f5fc1045dc49fd175b978c5457f5f51e7a2ce Author: Paul Mackerras Date: Mon Oct 8 16:31:03 2018 +1100 KVM: PPC: Book3S HV: Framework and hcall stubs for nested virtualizationh]hcommit 8e3f5fc1045dc49fd175b978c5457f5f51e7a2ce Author: Paul Mackerras Date: Mon Oct 8 16:31:03 2018 +1100 KVM: PPC: Book3S HV: Framework and hcall stubs for nested virtualization}hj!sbah}(h]h ]h"]h$]h&]hhuh1jhhhKhhhhubh)}(hThe L1 code was added::h]hThe L1 code was added:}(hj/hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKhhhhubj )}(hcommit 360cae313702cdd0b90f82c261a8302fecef030a Author: Paul Mackerras Date: Mon Oct 8 16:31:04 2018 +1100 KVM: PPC: Book3S HV: Nested guest entry via hypercallh]hcommit 360cae313702cdd0b90f82c261a8302fecef030a Author: Paul Mackerras Date: Mon Oct 8 16:31:04 2018 +1100 KVM: PPC: Book3S HV: Nested guest entry via hypercall}hj=sbah}(h]h ]h"]h$]h&]hhuh1jhhhK!hhhhubh)}(hXThis API works primarily using a single hcall h_enter_nested(). This call made by the L1 to tell the L0 to start an L2 vCPU with the given state. The L0 then starts this L2 and runs until an L2 exit condition is reached. Once the L2 exits, the state of the L2 is given back to the L1 by the L0. The full L2 vCPU state is always transferred from and to L1 when the L2 is run. The L0 doesn't keep any state on the L2 vCPU (except in the short sequence in the L0 on L1 -> L2 entry and L2 -> L1 exit).h]hXThis API works primarily using a single hcall h_enter_nested(). This call made by the L1 to tell the L0 to start an L2 vCPU with the given state. The L0 then starts this L2 and runs until an L2 exit condition is reached. Once the L2 exits, the state of the L2 is given back to the L1 by the L0. The full L2 vCPU state is always transferred from and to L1 when the L2 is run. The L0 doesn’t keep any state on the L2 vCPU (except in the short sequence in the L0 on L1 -> L2 entry and L2 -> L1 exit).}(hjKhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhK&hhhhubh)}(hThe only state kept by the L0 is the partition table. The L1 registers it's partition table using the h_set_partition_table() hcall. All other state held by the L0 about the L2s is cached state (such as shadow page tables).h]hThe only state kept by the L0 is the partition table. The L1 registers it’s partition table using the h_set_partition_table() hcall. All other state held by the L0 about the L2s is cached state (such as shadow page tables).}(hjYhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhK/hhhhubh)}(hThe L1 may run any L2 or vCPU without first informing the L0. It simply starts the vCPU using h_enter_nested(). The creation of L2s and vCPUs is done implicitly whenever h_enter_nested() is called.h]hThe L1 may run any L2 or vCPU without first informing the L0. It simply starts the vCPU using h_enter_nested(). The creation of L2s and vCPUs is done implicitly whenever h_enter_nested() is called.}(hjghhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhK4hhhhubh)}(h7In this document, we call this existing API the v1 API.h]h7In this document, we call this existing API the v1 API.}(hjuhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhK8hhhhubeh}(h] existing-apiah ]h"] existing apiah$]h&]uh1hhhhhhhhKubh)}(hhh](h)}(h New PAPR APIh]h New PAPR API}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhjhhhhhK;ubh)}(hThe new PAPR API changes from the v1 API such that the creating L2 and associated vCPUs is explicit. In this document, we call this the v2 API.h]hThe new PAPR API changes from the v1 API such that the creating L2 and associated vCPUs is explicit. In this document, we call this the v2 API.}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhK=hjhhubh)}(hXh_enter_nested() is replaced with H_GUEST_VCPU_RUN(). Before this can be called the L1 must explicitly create the L2 using h_guest_create() and any associated vCPUs() created with h_guest_create_vCPU(). Getting and setting vCPU state can also be performed using h_guest_{g|s}et hcall.h]hXh_enter_nested() is replaced with H_GUEST_VCPU_RUN(). Before this can be called the L1 must explicitly create the L2 using h_guest_create() and any associated vCPUs() created with h_guest_create_vCPU(). Getting and setting vCPU state can also be performed using h_guest_{g|s}et hcall.}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKAhjhhubh)}(hPThe basic execution flow is for an L1 to create an L2, run it, and delete it is:h]hPThe basic execution flow is for an L1 to create an L2, run it, and delete it is:}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKGhjhhubh bullet_list)}(hhh](h list_item)}(haL1 and L0 negotiate capabilities with H_GUEST_{G,S}ET_CAPABILITIES() (normally at L1 boot time). h]h)}(h`L1 and L0 negotiate capabilities with H_GUEST_{G,S}ET_CAPABILITIES() (normally at L1 boot time).h]h`L1 and L0 negotiate capabilities with H_GUEST_{G,S}ET_CAPABILITIES() (normally at L1 boot time).}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKJhjubah}(h]h ]h"]h$]h&]uh1jhjhhhhhNubj)}(hKL1 requests the L0 create an L2 with H_GUEST_CREATE() and receives a token h]h)}(hJL1 requests the L0 create an L2 with H_GUEST_CREATE() and receives a tokenh]hJL1 requests the L0 create an L2 with H_GUEST_CREATE() and receives a token}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKMhjubah}(h]h ]h"]h$]h&]uh1jhjhhhhhNubj)}(h@L1 requests the L0 create an L2 vCPU with H_GUEST_CREATE_VCPU() h]h)}(h?L1 requests the L0 create an L2 vCPU with H_GUEST_CREATE_VCPU()h]h?L1 requests the L0 create an L2 vCPU with H_GUEST_CREATE_VCPU()}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKOhjubah}(h]h ]h"]h$]h&]uh1jhjhhhhhNubj)}(hGL1 and L0 communicate the vCPU state using the H_GUEST_{G,S}ET() hcall h]h)}(hFL1 and L0 communicate the vCPU state using the H_GUEST_{G,S}ET() hcallh]hFL1 and L0 communicate the vCPU state using the H_GUEST_{G,S}ET() hcall}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKQhjubah}(h]h ]h"]h$]h&]uh1jhjhhhhhNubj)}(hBL1 requests the L0 runs the vCPU running H_GUEST_VCPU_RUN() hcall h]h)}(hAL1 requests the L0 runs the vCPU running H_GUEST_VCPU_RUN() hcallh]hAL1 requests the L0 runs the vCPU running H_GUEST_VCPU_RUN() hcall}(hj1hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKShj-ubah}(h]h ]h"]h$]h&]uh1jhjhhhhhNubj)}(h$L1 deletes L2 with H_GUEST_DELETE() h]h)}(h#L1 deletes L2 with H_GUEST_DELETE()h]h#L1 deletes L2 with H_GUEST_DELETE()}(hjIhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKUhjEubah}(h]h ]h"]h$]h&]uh1jhjhhhhhNubeh}(h]h ]h"]h$]h&]bullet-uh1jhhhKJhjhhubh)}(h.More details of the individual hcalls follows:h]h.More details of the individual hcalls follows:}(hjehhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKWhjhhubeh}(h] new-papr-apiah ]h"] new papr apiah$]h&]uh1hhhhhhhhK;ubh)}(hhh](h)}(h HCALL Detailsh]h HCALL Details}(hj~hhhNhNubah}(h]h ]h"]h$]h&]uh1hhj{hhhhhKZubh)}(hThis documentation is provided to give an overall understating of the API. It doesn't aim to provide all the details required to implement an L1 or L0. Latest version of PAPR can be referred to for more details.h]hThis documentation is provided to give an overall understating of the API. It doesn’t aim to provide all the details required to implement an L1 or L0. Latest version of PAPR can be referred to for more details.}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhK\hj{hhubh)}(h.All these HCALLs are made by the L1 to the L0.h]h.All these HCALLs are made by the L1 to the L0.}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhK`hj{hhubh)}(hhh](h)}(hH_GUEST_GET_CAPABILITIES()h]hH_GUEST_GET_CAPABILITIES()}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhjhhhhhKcubh)}(hThis is called to get the capabilities of the L0 nested hypervisor. This includes capabilities such the CPU versions (eg POWER9, POWER10) that are supported as L2s::h]hThis is called to get the capabilities of the L0 nested hypervisor. This includes capabilities such the CPU versions (eg POWER9, POWER10) that are supported as L2s:}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKehjhhubj )}(hH_GUEST_GET_CAPABILITIES(uint64 flags) Parameters: Input: flags: Reserved Output: R3: Return code R4: Hypervisor Supported Capabilities bitmap 1h]hH_GUEST_GET_CAPABILITIES(uint64 flags) Parameters: Input: flags: Reserved Output: R3: Return code R4: Hypervisor Supported Capabilities bitmap 1}hjsbah}(h]h ]h"]h$]h&]hhuh1jhhhKihjhhubeh}(h]h-guest-get-capabilitiesah ]h"]h_guest_get_capabilities()ah$]h&]uh1hhj{hhhhhKcubh)}(hhh](h)}(hH_GUEST_SET_CAPABILITIES()h]hH_GUEST_SET_CAPABILITIES()}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhjhhhhhKsubh)}(hThis is called to inform the L0 of the capabilities of the L1 hypervisor. The set of flags passed here are the same as H_GUEST_GET_CAPABILITIES()h]hThis is called to inform the L0 of the capabilities of the L1 hypervisor. The set of flags passed here are the same as H_GUEST_GET_CAPABILITIES()}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKuhjhhubh)}(hTypically, GET will be called first and then SET will be called with a subset of the flags returned from GET. This process allows the L0 and L1 to negotiate an agreed set of capabilities::h]hTypically, GET will be called first and then SET will be called with a subset of the flags returned from GET. This process allows the L0 and L1 to negotiate an agreed set of capabilities:}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKyhjhhubj )}(hX~H_GUEST_SET_CAPABILITIES(uint64 flags, uint64 capabilitiesBitmap1) Parameters: Input: flags: Reserved capabilitiesBitmap1: Only capabilities advertised through H_GUEST_GET_CAPABILITIES Output: R3: Return code R4: If R3 = H_P2: The number of invalid bitmaps R5: If R3 = H_P2: The index of first invalid bitmaph]hX~H_GUEST_SET_CAPABILITIES(uint64 flags, uint64 capabilitiesBitmap1) Parameters: Input: flags: Reserved capabilitiesBitmap1: Only capabilities advertised through H_GUEST_GET_CAPABILITIES Output: R3: Return code R4: If R3 = H_P2: The number of invalid bitmaps R5: If R3 = H_P2: The index of first invalid bitmap}hj sbah}(h]h ]h"]h$]h&]hhuh1jhhhK}hjhhubeh}(h]h-guest-set-capabilitiesah ]h"]h_guest_set_capabilities()ah$]h&]uh1hhj{hhhhhKsubh)}(hhh](h)}(hH_GUEST_CREATE()h]hH_GUEST_CREATE()}(hj#hhhNhNubah}(h]h ]h"]h$]h&]uh1hhj hhhhhKubh)}(hThis is called to create an L2. A unique ID of the L2 created (similar to an LPID) is returned, which can be used on subsequent HCALLs to identify the L2::h]hThis is called to create an L2. A unique ID of the L2 created (similar to an LPID) is returned, which can be used on subsequent HCALLs to identify the L2:}(hj1hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKhj hhubj )}(hX-H_GUEST_CREATE(uint64 flags, uint64 continueToken); Parameters: Input: flags: Reserved continueToken: Initial call set to -1. Subsequent calls, after H_Busy or H_LongBusyOrder has been returned, value that was returned in R4. Output: R3: Return code. Notable: H_Not_Enough_Resources: Unable to create Guest VCPU due to not enough Hypervisor memory. See H_GUEST_CREATE_GET_STATE(flags = takeOwnershipOfVcpuState) R4: If R3 = H_Busy or_H_LongBusyOrder -> continueTokenh]hX-H_GUEST_CREATE(uint64 flags, uint64 continueToken); Parameters: Input: flags: Reserved continueToken: Initial call set to -1. Subsequent calls, after H_Busy or H_LongBusyOrder has been returned, value that was returned in R4. Output: R3: Return code. Notable: H_Not_Enough_Resources: Unable to create Guest VCPU due to not enough Hypervisor memory. See H_GUEST_CREATE_GET_STATE(flags = takeOwnershipOfVcpuState) R4: If R3 = H_Busy or_H_LongBusyOrder -> continueToken}hj?sbah}(h]h ]h"]h$]h&]hhuh1jhhhKhj hhubeh}(h]h-guest-createah ]h"]h_guest_create()ah$]h&]uh1hhj{hhhhhKubh)}(hhh](h)}(hH_GUEST_CREATE_VCPU()h]hH_GUEST_CREATE_VCPU()}(hjXhhhNhNubah}(h]h ]h"]h$]h&]uh1hhjUhhhhhKubh)}(hThis is called to create a vCPU associated with an L2. The L2 id (returned from H_GUEST_CREATE()) should be passed it. Also passed in is a unique (for this L2) vCPUid. This vCPUid is allocated by the L1::h]hThis is called to create a vCPU associated with an L2. The L2 id (returned from H_GUEST_CREATE()) should be passed it. Also passed in is a unique (for this L2) vCPUid. This vCPUid is allocated by the L1:}(hjfhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKhjUhhubj )}(hXH_GUEST_CREATE_VCPU(uint64 flags, uint64 guestId, uint64 vcpuId); Parameters: Input: flags: Reserved guestId: ID obtained from H_GUEST_CREATE vcpuId: ID of the vCPU to be created. This must be within the range of 0 to 2047 Output: R3: Return code. Notable: H_Not_Enough_Resources: Unable to create Guest VCPU due to not enough Hypervisor memory. See H_GUEST_CREATE_GET_STATE(flags = takeOwnershipOfVcpuState)h]hXH_GUEST_CREATE_VCPU(uint64 flags, uint64 guestId, uint64 vcpuId); Parameters: Input: flags: Reserved guestId: ID obtained from H_GUEST_CREATE vcpuId: ID of the vCPU to be created. This must be within the range of 0 to 2047 Output: R3: Return code. Notable: H_Not_Enough_Resources: Unable to create Guest VCPU due to not enough Hypervisor memory. See H_GUEST_CREATE_GET_STATE(flags = takeOwnershipOfVcpuState)}hjtsbah}(h]h ]h"]h$]h&]hhuh1jhhhKhjUhhubeh}(h]h-guest-create-vcpuah ]h"]h_guest_create_vcpu()ah$]h&]uh1hhj{hhhhhKubh)}(hhh](h)}(hH_GUEST_GET_STATE()h]hH_GUEST_GET_STATE()}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhjhhhhhKubh)}(hThis is called to get state associated with an L2 (Guest-wide or vCPU specific). This info is passed via the Guest State Buffer (GSB), a standard format as explained later in this doc, necessary details below:h]hThis is called to get state associated with an L2 (Guest-wide or vCPU specific). This info is passed via the Guest State Buffer (GSB), a standard format as explained later in this doc, necessary details below:}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKhjhhubh)}(hX+This can get either L2 wide or vcpu specific information. Examples of L2 wide is the timebase offset or process scoped page table info. Examples of vCPU specific are GPRs or VSRs. A bit in the flags parameter specifies if this call is L2 wide or vCPU specific and the IDs in the GSB must match this.h]hX+This can get either L2 wide or vcpu specific information. Examples of L2 wide is the timebase offset or process scoped page table info. Examples of vCPU specific are GPRs or VSRs. A bit in the flags parameter specifies if this call is L2 wide or vCPU specific and the IDs in the GSB must match this.}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKhjhhubh)}(hThe L1 provides a pointer to the GSB as a parameter to this call. Also provided is the L2 and vCPU IDs associated with the state to set.h]hThe L1 provides a pointer to the GSB as a parameter to this call. Also provided is the L2 and vCPU IDs associated with the state to set.}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKhjhhubh)}(hjThe L1 writes only the IDs and sizes in the GSB. L0 writes the associated values for each ID in the GSB::h]hiThe L1 writes only the IDs and sizes in the GSB. L0 writes the associated values for each ID in the GSB:}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKhjhhubj )}(hX^H_GUEST_GET_STATE(uint64 flags, uint64 guestId, uint64 vcpuId, uint64 dataBuffer, uint64 dataBufferSizeInBytes); Parameters: Input: flags: Bit 0: getGuestWideState: Request state of the Guest instead of an individual VCPU. Bit 1: takeOwnershipOfVcpuState Indicate the L1 is taking over ownership of the VCPU state and that the L0 can free the storage holding the state. The VCPU state will need to be returned to the Hypervisor via H_GUEST_SET_STATE prior to H_GUEST_RUN_VCPU being called for this VCPU. The data returned in the dataBuffer is in a Hypervisor internal format. Bits 2-63: Reserved guestId: ID obtained from H_GUEST_CREATE vcpuId: ID of the vCPU pass to H_GUEST_CREATE_VCPU dataBuffer: A L1 real address of the GSB. If takeOwnershipOfVcpuState, size must be at least the size returned by ID=0x0001 dataBufferSizeInBytes: Size of dataBuffer Output: R3: Return code R4: If R3 = H_Invalid_Element_Id: The array index of the bad element ID. If R3 = H_Invalid_Element_Size: The array index of the bad element size. If R3 = H_Invalid_Element_Value: The array index of the bad element value.h]hX^H_GUEST_GET_STATE(uint64 flags, uint64 guestId, uint64 vcpuId, uint64 dataBuffer, uint64 dataBufferSizeInBytes); Parameters: Input: flags: Bit 0: getGuestWideState: Request state of the Guest instead of an individual VCPU. Bit 1: takeOwnershipOfVcpuState Indicate the L1 is taking over ownership of the VCPU state and that the L0 can free the storage holding the state. The VCPU state will need to be returned to the Hypervisor via H_GUEST_SET_STATE prior to H_GUEST_RUN_VCPU being called for this VCPU. The data returned in the dataBuffer is in a Hypervisor internal format. Bits 2-63: Reserved guestId: ID obtained from H_GUEST_CREATE vcpuId: ID of the vCPU pass to H_GUEST_CREATE_VCPU dataBuffer: A L1 real address of the GSB. If takeOwnershipOfVcpuState, size must be at least the size returned by ID=0x0001 dataBufferSizeInBytes: Size of dataBuffer Output: R3: Return code R4: If R3 = H_Invalid_Element_Id: The array index of the bad element ID. If R3 = H_Invalid_Element_Size: The array index of the bad element size. If R3 = H_Invalid_Element_Value: The array index of the bad element value.}hjsbah}(h]h ]h"]h$]h&]hhuh1jhhhKhjhhubeh}(h]h-guest-get-stateah ]h"]h_guest_get_state()ah$]h&]uh1hhj{hhhhhKubh)}(hhh](h)}(hH_GUEST_SET_STATE()h]hH_GUEST_SET_STATE()}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhjhhhhhKubh)}(hThis is called to set L2 wide or vCPU specific L2 state. This info is passed via the Guest State Buffer (GSB), necessary details below:h]hThis is called to set L2 wide or vCPU specific L2 state. This info is passed via the Guest State Buffer (GSB), necessary details below:}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKhjhhubh)}(hX+This can set either L2 wide or vcpu specific information. Examples of L2 wide is the timebase offset or process scoped page table info. Examples of vCPU specific are GPRs or VSRs. A bit in the flags parameter specifies if this call is L2 wide or vCPU specific and the IDs in the GSB must match this.h]hX+This can set either L2 wide or vcpu specific information. Examples of L2 wide is the timebase offset or process scoped page table info. Examples of vCPU specific are GPRs or VSRs. A bit in the flags parameter specifies if this call is L2 wide or vCPU specific and the IDs in the GSB must match this.}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKhjhhubh)}(hThe L1 provides a pointer to the GSB as a parameter to this call. Also provided is the L2 and vCPU IDs associated with the state to set.h]hThe L1 provides a pointer to the GSB as a parameter to this call. Also provided is the L2 and vCPU IDs associated with the state to set.}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKhjhhubh)}(hQThe L1 writes all values in the GSB and the L0 only reads the GSB for this call::h]hPThe L1 writes all values in the GSB and the L0 only reads the GSB for this call:}(hj$hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhKhjhhubj )}(hXH_GUEST_SET_STATE(uint64 flags, uint64 guestId, uint64 vcpuId, uint64 dataBuffer, uint64 dataBufferSizeInBytes); Parameters: Input: flags: Bit 0: getGuestWideState: Request state of the Guest instead of an individual VCPU. Bit 1: returnOwnershipOfVcpuState Return Guest VCPU state. See GET_STATE takeOwnershipOfVcpuState Bits 2-63: Reserved guestId: ID obtained from H_GUEST_CREATE vcpuId: ID of the vCPU pass to H_GUEST_CREATE_VCPU dataBuffer: A L1 real address of the GSB. If takeOwnershipOfVcpuState, size must be at least the size returned by ID=0x0001 dataBufferSizeInBytes: Size of dataBuffer Output: R3: Return code R4: If R3 = H_Invalid_Element_Id: The array index of the bad element ID. If R3 = H_Invalid_Element_Size: The array index of the bad element size. If R3 = H_Invalid_Element_Value: The array index of the bad element value.h]hXH_GUEST_SET_STATE(uint64 flags, uint64 guestId, uint64 vcpuId, uint64 dataBuffer, uint64 dataBufferSizeInBytes); Parameters: Input: flags: Bit 0: getGuestWideState: Request state of the Guest instead of an individual VCPU. Bit 1: returnOwnershipOfVcpuState Return Guest VCPU state. See GET_STATE takeOwnershipOfVcpuState Bits 2-63: Reserved guestId: ID obtained from H_GUEST_CREATE vcpuId: ID of the vCPU pass to H_GUEST_CREATE_VCPU dataBuffer: A L1 real address of the GSB. If takeOwnershipOfVcpuState, size must be at least the size returned by ID=0x0001 dataBufferSizeInBytes: Size of dataBuffer Output: R3: Return code R4: If R3 = H_Invalid_Element_Id: The array index of the bad element ID. If R3 = H_Invalid_Element_Size: The array index of the bad element size. If R3 = H_Invalid_Element_Value: The array index of the bad element value.}hj2sbah}(h]h ]h"]h$]h&]hhuh1jhhhKhjhhubeh}(h]h-guest-set-stateah ]h"]h_guest_set_state()ah$]h&]uh1hhj{hhhhhKubh)}(hhh](h)}(hH_GUEST_RUN_VCPU()h]hH_GUEST_RUN_VCPU()}(hjKhhhNhNubah}(h]h ]h"]h$]h&]uh1hhjHhhhhhMubh)}(hThis is called to run an L2 vCPU. The L2 and vCPU IDs are passed in as parameters. The vCPU runs with the state set previously using H_GUEST_SET_STATE(). When the L2 exits, the L1 will resume from this hcall.h]hThis is called to run an L2 vCPU. The L2 and vCPU IDs are passed in as parameters. The vCPU runs with the state set previously using H_GUEST_SET_STATE(). When the L2 exits, the L1 will resume from this hcall.}(hjYhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjHhhubh)}(hXGThis hcall also has associated input and output GSBs. Unlike H_GUEST_{S,G}ET_STATE(), these GSB pointers are not passed in as parameters to the hcall (This was done in the interest of performance). The locations of these GSBs must be preregistered using the H_GUEST_SET_STATE() call with ID 0x0c00 and 0x0c01 (see table below).h]hXGThis hcall also has associated input and output GSBs. Unlike H_GUEST_{S,G}ET_STATE(), these GSB pointers are not passed in as parameters to the hcall (This was done in the interest of performance). The locations of these GSBs must be preregistered using the H_GUEST_SET_STATE() call with ID 0x0c00 and 0x0c01 (see table below).}(hjghhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM hjHhhubh)}(hThe input GSB may contain only VCPU specific elements to be set. This GSB may also contain zero elements (ie 0 in the first 4 bytes of the GSB) if nothing needs to be set.h]hThe input GSB may contain only VCPU specific elements to be set. This GSB may also contain zero elements (ie 0 in the first 4 bytes of the GSB) if nothing needs to be set.}(hjuhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM'hjHhhubh)}(hXOn exit from the hcall, the output buffer is filled with elements determined by the L0. The reason for the exit is contained in GPR4 (ie NIP is put in GPR4). The elements returned depend on the exit type. For example, if the exit reason is the L2 doing a hcall (GPR4 = 0xc00), then GPR3-12 are provided in the output GSB as this is the state likely needed to service the hcall. If additional state is needed, H_GUEST_GET_STATE() may be called by the L1.h]hXOn exit from the hcall, the output buffer is filled with elements determined by the L0. The reason for the exit is contained in GPR4 (ie NIP is put in GPR4). The elements returned depend on the exit type. For example, if the exit reason is the L2 doing a hcall (GPR4 = 0xc00), then GPR3-12 are provided in the output GSB as this is the state likely needed to service the hcall. If additional state is needed, H_GUEST_GET_STATE() may be called by the L1.}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM+hjHhhubh)}(hX=To synthesize interrupts in the L2, when calling H_GUEST_RUN_VCPU() the L1 may set a flag (as a hcall parameter) and the L0 will synthesize the interrupt in the L2. Alternatively, the L1 may synthesize the interrupt itself using H_GUEST_SET_STATE() or the H_GUEST_RUN_VCPU() input GSB to set the state appropriately::h]hX<To synthesize interrupts in the L2, when calling H_GUEST_RUN_VCPU() the L1 may set a flag (as a hcall parameter) and the L0 will synthesize the interrupt in the L2. Alternatively, the L1 may synthesize the interrupt itself using H_GUEST_SET_STATE() or the H_GUEST_RUN_VCPU() input GSB to set the state appropriately:}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM3hjHhhubj )}(hXH_GUEST_RUN_VCPU(uint64 flags, uint64 guestId, uint64 vcpuId, uint64 dataBuffer, uint64 dataBufferSizeInBytes); Parameters: Input: flags: Bit 0: generateExternalInterrupt: Generate an external interrupt Bit 1: generatePrivilegedDoorbell: Generate a Privileged Doorbell Bit 2: sendToSystemReset”: Generate a System Reset Interrupt Bits 3-63: Reserved guestId: ID obtained from H_GUEST_CREATE vcpuId: ID of the vCPU pass to H_GUEST_CREATE_VCPU Output: R3: Return code R4: If R3 = H_Success: The reason L1 VCPU exited (ie. NIA) 0x000: The VCPU stopped running for an unspecified reason. An example of this is the Hypervisor stopping a VCPU running due to an outstanding interrupt for the Host Partition. 0x980: HDEC 0xC00: HCALL 0xE00: HDSI 0xE20: HISI 0xE40: HEA 0xF80: HV Fac Unavail If R3 = H_Invalid_Element_Id, H_Invalid_Element_Size, or H_Invalid_Element_Value: R4 is offset of the invalid element in the input buffer.h]hXH_GUEST_RUN_VCPU(uint64 flags, uint64 guestId, uint64 vcpuId, uint64 dataBuffer, uint64 dataBufferSizeInBytes); Parameters: Input: flags: Bit 0: generateExternalInterrupt: Generate an external interrupt Bit 1: generatePrivilegedDoorbell: Generate a Privileged Doorbell Bit 2: sendToSystemReset”: Generate a System Reset Interrupt Bits 3-63: Reserved guestId: ID obtained from H_GUEST_CREATE vcpuId: ID of the vCPU pass to H_GUEST_CREATE_VCPU Output: R3: Return code R4: If R3 = H_Success: The reason L1 VCPU exited (ie. NIA) 0x000: The VCPU stopped running for an unspecified reason. An example of this is the Hypervisor stopping a VCPU running due to an outstanding interrupt for the Host Partition. 0x980: HDEC 0xC00: HCALL 0xE00: HDSI 0xE20: HISI 0xE40: HEA 0xF80: HV Fac Unavail If R3 = H_Invalid_Element_Id, H_Invalid_Element_Size, or H_Invalid_Element_Value: R4 is offset of the invalid element in the input buffer.}hjsbah}(h]h ]h"]h$]h&]hhuh1jhhhM9hjHhhubeh}(h]h-guest-run-vcpuah ]h"]h_guest_run_vcpu()ah$]h&]uh1hhj{hhhhhMubh)}(hhh](h)}(hH_GUEST_DELETE()h]hH_GUEST_DELETE()}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhjhhhhhMXubh)}(hpThis is called to delete an L2. All associated vCPUs are also deleted. No specific vCPU delete call is provided.h]hpThis is called to delete an L2. All associated vCPUs are also deleted. No specific vCPU delete call is provided.}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMZhjhhubh)}(hfA flag may be provided to delete all guests. This is used to reset the L0 in the case of kdump/kexec::h]heA flag may be provided to delete all guests. This is used to reset the L0 in the case of kdump/kexec:}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM]hjhhubj )}(hH_GUEST_DELETE(uint64 flags, uint64 guestId) Parameters: Input: flags: Bit 0: deleteAllGuests: deletes all guests Bits 1-63: Reserved guestId: ID obtained from H_GUEST_CREATE Output: R3: Return codeh]hH_GUEST_DELETE(uint64 flags, uint64 guestId) Parameters: Input: flags: Bit 0: deleteAllGuests: deletes all guests Bits 1-63: Reserved guestId: ID obtained from H_GUEST_CREATE Output: R3: Return code}hjsbah}(h]h ]h"]h$]h&]hhuh1jhhhM`hjhhubeh}(h]h-guest-deleteah ]h"]h_guest_delete()ah$]h&]uh1hhj{hhhhhMXubeh}(h] hcall-detailsah ]h"] hcall detailsah$]h&]uh1hhhhhhhhKZubh)}(hhh](h)}(hGuest State Bufferh]hGuest State Buffer}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhjhhhhhMlubh)}(hThe Guest State Buffer (GSB) is the main method of communicating state about the L2 between the L1 and L0 via H_GUEST_{G,S}ET() and H_GUEST_VCPU_RUN() calls.h]hThe Guest State Buffer (GSB) is the main method of communicating state about the L2 between the L1 and L0 via H_GUEST_{G,S}ET() and H_GUEST_VCPU_RUN() calls.}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMnhjhhubh)}(hState may be associated with a whole L2 (eg timebase offset) or a specific L2 vCPU (eg. GPR state). Only L2 VCPU state maybe be set by H_GUEST_VCPU_RUN().h]hState may be associated with a whole L2 (eg timebase offset) or a specific L2 vCPU (eg. GPR state). Only L2 VCPU state maybe be set by H_GUEST_VCPU_RUN().}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMrhjhhubh)}(h:All data in the GSB is big endian (as is standard in PAPR)h]h:All data in the GSB is big endian (as is standard in PAPR)}(hj-hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMvhjhhubh)}(hpThe Guest state buffer has a header which gives the number of elements, followed by the GSB elements themselves.h]hpThe Guest state buffer has a header which gives the number of elements, followed by the GSB elements themselves.}(hj;hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMxhjhhubh)}(h GSB header:h]h GSB header:}(hjIhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM{hjhhubhtable)}(hhh]htgroup)}(hhh](hcolspec)}(hhh]h}(h]h ]h"]h$]h&]colwidthK uh1jahj^ubjb)}(hhh]h}(h]h ]h"]h$]h&]colwidthK uh1jahj^ubjb)}(hhh]h}(h]h ]h"]h$]h&]colwidthK+uh1jahj^ubhthead)}(hhh]hrow)}(hhh](hentry)}(hhh]h)}(h Offset Bytesh]h Offset Bytes}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM~hjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(h Size Bytesh]h Size Bytes}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM~hjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hPurposeh]hPurpose}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM~hjubah}(h]h ]h"]h$]h&]uh1jhjubeh}(h]h ]h"]h$]h&]uh1jhjubah}(h]h ]h"]h$]h&]uh1jhj^ubhtbody)}(hhh](j)}(hhh](j)}(hhh]h)}(h0h]h0}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(h4h]h4}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hNumber of elementsh]hNumber of elements}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(hjh]h4}(hj7hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj4ubah}(h]h ]h"]h$]h&]uh1jhj1ubj)}(hhh]h}(h]h ]h"]h$]h&]uh1jhj1ubj)}(hhh]h)}(hGuest state buffer elementsh]hGuest state buffer elements}(hjVhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjSubah}(h]h ]h"]h$]h&]uh1jhj1ubeh}(h]h ]h"]h$]h&]uh1jhjubeh}(h]h ]h"]h$]h&]uh1jhj^ubeh}(h]h ]h"]h$]h&]colsKuh1j\hjYubah}(h]h ]h"]h$]h&]uh1jWhjhhhhhNubh)}(h GSB element:h]h GSB element:}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjhhubjX)}(hhh]j])}(hhh](jb)}(hhh]h}(h]h ]h"]h$]h&]colwidthK uh1jahjubjb)}(hhh]h}(h]h ]h"]h$]h&]colwidthK uh1jahjubjb)}(hhh]h}(h]h ]h"]h$]h&]colwidthK+uh1jahjubj)}(hhh]j)}(hhh](j)}(hhh]h)}(h Offset Bytesh]h Offset Bytes}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(h Size Bytesh]h Size Bytes}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hPurposeh]hPurpose}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubeh}(h]h ]h"]h$]h&]uh1jhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh](j)}(hhh]h)}(hjh]h0}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(h2h]h2}(hj+hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj(ubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hIDh]hID}(hjBhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj?ubah}(h]h ]h"]h$]h&]uh1jhjubeh}(h]h ]h"]h$]h&]uh1jhj ubj)}(hhh](j)}(hhh]h)}(hj-h]h2}(hjbhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj_ubah}(h]h ]h"]h$]h&]uh1jhj\ubj)}(hhh]h)}(hj-h]h2}(hjxhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjuubah}(h]h ]h"]h$]h&]uh1jhj\ubj)}(hhh]h)}(h Size of Valueh]h Size of Value}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhj\ubeh}(h]h ]h"]h$]h&]uh1jhj ubj)}(hhh](j)}(hhh]h)}(hjh]h4}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hAs aboveh]hAs above}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hValueh]hValue}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubeh}(h]h ]h"]h$]h&]uh1jhj ubeh}(h]h ]h"]h$]h&]uh1jhjubeh}(h]h ]h"]h$]h&]colsKuh1j\hjubah}(h]h ]h"]h$]h&]uh1jWhjhhhhhNubh)}(hThe ID in the GSB element specifies what is to be set. This includes archtected state like GPRs, VSRs, SPRs, plus also some meta data about the partition like the timebase offset and partition scoped page table information.h]hThe ID in the GSB element specifies what is to be set. This includes archtected state like GPRs, VSRs, SPRs, plus also some meta data about the partition like the timebase offset and partition scoped page table information.}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjhhubjX)}(hhh]j])}(hhh](jb)}(hhh]h}(h]h ]h"]h$]h&]colwidthKuh1jahjubjb)}(hhh]h}(h]h ]h"]h$]h&]colwidthKuh1jahjubjb)}(hhh]h}(h]h ]h"]h$]h&]colwidthKuh1jahjubjb)}(hhh]h}(h]h ]h"]h$]h&]colwidthKuh1jahjubjb)}(hhh]h}(h]h ]h"]h$]h&]colwidthK"uh1jahjubj)}(hhh]j)}(hhh](j)}(hhh]h)}(hIDh]hID}(hjWhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjTubah}(h]h ]h"]h$]h&]uh1jhjQubj)}(hhh]h)}(h Size Bytesh]h Size Bytes}(hjnhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjkubah}(h]h ]h"]h$]h&]uh1jhjQubj)}(hhh]h)}(hRWh]hRW}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjQubj)}(hhh]h)}(hThread Guest Scopeh]hThread Guest Scope}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjQubj)}(hhh]h)}(hDetailsh]hDetails}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjQubeh}(h]h ]h"]h$]h&]uh1jhjNubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh](j)}(hhh]h)}(h0x0000h]h0x0000}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hRWh]hRW}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hTGh]hTG}(hj hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj ubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(h NOP elementh]h NOP element}(hj* hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj' ubah}(h]h ]h"]h$]h&]uh1jhjubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x0001h]h0x0001}(hjJ hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjG ubah}(h]h ]h"]h$]h&]uh1jhjD ubj)}(hhh]h)}(h0x08h]h0x08}(hja hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj^ ubah}(h]h ]h"]h$]h&]uh1jhjD ubj)}(hhh]h)}(hRh]hR}(hjx hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhju ubah}(h]h ]h"]h$]h&]uh1jhjD ubj)}(hhh]h)}(hGh]hG}(hj hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj ubah}(h]h ]h"]h$]h&]uh1jhjD ubj)}(hhh]h)}(hOSize of L0 vCPU state. See: H_GUEST_GET_STATE: flags = takeOwnershipOfVcpuStateh]hOSize of L0 vCPU state. See: H_GUEST_GET_STATE: flags = takeOwnershipOfVcpuState}(hj hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj ubah}(h]h ]h"]h$]h&]uh1jhjD ubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x0002h]h0x0002}(hj hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj ubah}(h]h ]h"]h$]h&]uh1jhj ubj)}(hhh]h)}(h0x08h]h0x08}(hj hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj ubah}(h]h ]h"]h$]h&]uh1jhj ubj)}(hhh]h)}(hjz h]hR}(hj hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj ubah}(h]h ]h"]h$]h&]uh1jhj ubj)}(hhh]h)}(hj h]hG}(hj hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj ubah}(h]h ]h"]h$]h&]uh1jhj ubj)}(hhh]h)}(hSize Run vCPU out bufferh]hSize Run vCPU out buffer}(hj hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj ubah}(h]h ]h"]h$]h&]uh1jhj ubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x0003h]h0x0003}(hj@ hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj= ubah}(h]h ]h"]h$]h&]uh1jhj: ubj)}(hhh]h)}(h0x04h]h0x04}(hjW hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjT ubah}(h]h ]h"]h$]h&]uh1jhj: ubj)}(hhh]h)}(hRWh]hRW}(hjn hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjk ubah}(h]h ]h"]h$]h&]uh1jhj: ubj)}(hhh]h)}(hj h]hG}(hj hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj ubah}(h]h ]h"]h$]h&]uh1jhj: ubj)}(hhh]h)}(h Logical PVRh]h Logical PVR}(hj hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj ubah}(h]h ]h"]h$]h&]uh1jhj: ubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x0004h]h0x0004}(hj hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj ubah}(h]h ]h"]h$]h&]uh1jhj ubj)}(hhh]h)}(h0x08h]h0x08}(hj hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj ubah}(h]h ]h"]h$]h&]uh1jhj ubj)}(hhh]h)}(hRWh]hRW}(hj hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj ubah}(h]h ]h"]h$]h&]uh1jhj ubj)}(hhh]h)}(hj h]hG}(hj hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj ubah}(h]h ]h"]h$]h&]uh1jhj ubj)}(hhh]h)}(hTB Offset (L1 relative)h]hTB Offset (L1 relative)}(hj hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj ubah}(h]h ]h"]h$]h&]uh1jhj ubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x0005h]h0x0005}(hj6 hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj3 ubah}(h]h ]h"]h$]h&]uh1jhj0 ubj)}(hhh]h)}(h0x18h]h0x18}(hjM hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjJ ubah}(h]h ]h"]h$]h&]uh1jhj0 ubj)}(hhh]h)}(hRWh]hRW}(hjd hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhja ubah}(h]h ]h"]h$]h&]uh1jhj0 ubj)}(hhh]h)}(hj h]hG}(hj{ hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjx ubah}(h]h ]h"]h$]h&]uh1jhj0 ubj)}(hhh](h)}(hPartition scoped page tbl info:h]hPartition scoped page tbl info:}(hj hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj ubj)}(hhh](j)}(h0x00 Addr part scope tableh]h)}(hj h]h0x00 Addr part scope table}(hj hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj ubah}(h]h ]h"]h$]h&]uh1jhj ubj)}(h0x08 Num addr bitsh]h)}(hj h]h0x08 Num addr bits}(hj hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj ubah}(h]h ]h"]h$]h&]uh1jhj ubj)}(h0x10 Size root dirh]h)}(hj h]h0x10 Size root dir}(hj hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj ubah}(h]h ]h"]h$]h&]uh1jhj ubeh}(h]h ]h"]h$]h&]jcjduh1jhhhMhj ubeh}(h]h ]h"]h$]h&]uh1jhj0 ubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x0006h]h0x0006}(hj hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj ubah}(h]h ]h"]h$]h&]uh1jhj ubj)}(hhh]h)}(h0x10h]h0x10}(hj hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj ubah}(h]h ]h"]h$]h&]uh1jhj ubj)}(hhh]h)}(hRWh]hRW}(hj- hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj* ubah}(h]h ]h"]h$]h&]uh1jhj ubj)}(hhh]h)}(hj h]hG}(hjD hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjA ubah}(h]h ]h"]h$]h&]uh1jhj ubj)}(hhh](h)}(hProcess Table Information:h]hProcess Table Information:}(hjZ hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjW ubj)}(hhh](j)}(h0x0 Addr proc scope tableh]h)}(hjm h]h0x0 Addr proc scope table}(hjo hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjk ubah}(h]h ]h"]h$]h&]uh1jhjh ubj)}(h0x8 Table size.h]h)}(hj h]h0x8 Table size.}(hj hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj ubah}(h]h ]h"]h$]h&]uh1jhjh ubeh}(h]h ]h"]h$]h&]jcjduh1jhhhMhjW ubeh}(h]h ]h"]h$]h&]uh1jhj ubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x0007- 0x0BFFh]h0x0007- 0x0BFF}(hj hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj ubah}(h]h ]h"]h$]h&]uh1jhj ubj)}(hhh]h}(h]h ]h"]h$]h&]uh1jhj ubj)}(hhh]h}(h]h ]h"]h$]h&]uh1jhj ubj)}(hhh]h}(h]h ]h"]h$]h&]uh1jhj ubj)}(hhh]h)}(hReservedh]hReserved}(hj hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj ubah}(h]h ]h"]h$]h&]uh1jhj ubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x0C00h]h0x0C00}(hj hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj ubah}(h]h ]h"]h$]h&]uh1jhj ubj)}(hhh]h)}(h0x10h]h0x10}(hj hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj ubah}(h]h ]h"]h$]h&]uh1jhj ubj)}(hhh]h)}(hRWh]hRW}(hj1 hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj. ubah}(h]h ]h"]h$]h&]uh1jhj ubj)}(hhh]h)}(hTh]hT}(hjH hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjE ubah}(h]h ]h"]h$]h&]uh1jhj ubj)}(hhh](h)}(hRun vCPU Input Buffer:h]hRun vCPU Input Buffer:}(hj_ hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj\ ubj)}(hhh](j)}(h0x0 Addr of bufferh]h)}(hjr h]h0x0 Addr of buffer}(hjt hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjp ubah}(h]h ]h"]h$]h&]uh1jhjm ubj)}(h0x8 Buffer Size.h]h)}(hj h]h0x8 Buffer Size.}(hj hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj ubah}(h]h ]h"]h$]h&]uh1jhjm ubeh}(h]h ]h"]h$]h&]jcjduh1jhhhMhj\ ubeh}(h]h ]h"]h$]h&]uh1jhj ubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x0C01h]h0x0C01}(hj hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj ubah}(h]h ]h"]h$]h&]uh1jhj ubj)}(hhh]h)}(h0x10h]h0x10}(hj hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj ubah}(h]h ]h"]h$]h&]uh1jhj ubj)}(hhh]h)}(hRWh]hRW}(hj hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj ubah}(h]h ]h"]h$]h&]uh1jhj ubj)}(hhh]h)}(hjJ h]hT}(hj hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj ubah}(h]h ]h"]h$]h&]uh1jhj ubj)}(hhh](h)}(hRun vCPU Output Buffer:h]hRun vCPU Output Buffer:}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubj)}(hhh](j)}(h0x0 Addr of bufferh]h)}(hj$h]h0x0 Addr of buffer}(hj&hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj"ubah}(h]h ]h"]h$]h&]uh1jhjubj)}(h0x8 Buffer Size.h]h)}(hj;h]h0x8 Buffer Size.}(hj=hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj9ubah}(h]h ]h"]h$]h&]uh1jhjubeh}(h]h ]h"]h$]h&]jcjduh1jhhhMhjubeh}(h]h ]h"]h$]h&]uh1jhj ubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x0C02h]h0x0C02}(hjhhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjeubah}(h]h ]h"]h$]h&]uh1jhjbubj)}(hhh]h)}(h0x08h]h0x08}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj|ubah}(h]h ]h"]h$]h&]uh1jhjbubj)}(hhh]h)}(hRWh]hRW}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjbubj)}(hhh]h)}(hjJ h]hT}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjbubj)}(hhh]h)}(hvCPU VPA Addressh]hvCPU VPA Address}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjbubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x0C03- 0x0FFFh]h0x0C03- 0x0FFF}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hReservedh]hReserved}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x1000- 0x101Fh]h0x1000- 0x101F}(hj5hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj2ubah}(h]h ]h"]h$]h&]uh1jhj/ubj)}(hhh]h)}(h0x08h]h0x08}(hjLhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjIubah}(h]h ]h"]h$]h&]uh1jhj/ubj)}(hhh]h)}(hRWh]hRW}(hjchhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj`ubah}(h]h ]h"]h$]h&]uh1jhj/ubj)}(hhh]h)}(hjJ h]hT}(hjzhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjwubah}(h]h ]h"]h$]h&]uh1jhj/ubj)}(hhh]h)}(hGPR 0-31h]hGPR 0-31}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhj/ubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x1020h]h0x1020}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(h0x08h]h0x08}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hjJ h]hT}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hjJ h]hT}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hHDEC expiry TBh]hHDEC expiry TB}(hj hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x1021h]h0x1021}(hj*hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj'ubah}(h]h ]h"]h$]h&]uh1jhj$ubj)}(hhh]h)}(h0x08h]h0x08}(hjAhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj>ubah}(h]h ]h"]h$]h&]uh1jhj$ubj)}(hhh]h)}(hRWh]hRW}(hjXhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjUubah}(h]h ]h"]h$]h&]uh1jhj$ubj)}(hhh]h)}(hjJ h]hT}(hjohhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjlubah}(h]h ]h"]h$]h&]uh1jhj$ubj)}(hhh]h)}(hNIAh]hNIA}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhj$ubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x1022h]h0x1022}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(h0x08h]h0x08}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hRWh]hRW}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hjJ h]hT}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hMSRh]hMSR}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x1023h]h0x1023}(hj hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(h0x08h]h0x08}(hj7hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj4ubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hRWh]hRW}(hjNhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjKubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hjJ h]hT}(hjehhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjbubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hLRh]hLR}(hj{hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjxubah}(h]h ]h"]h$]h&]uh1jhjubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x1024h]h0x1024}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(h0x08h]h0x08}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hRWh]hRW}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hjJ h]hT}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hXERh]hXER}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x1025h]h0x1025}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(h0x08h]h0x08}(hj-hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj*ubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hRWh]hRW}(hjDhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjAubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hjJ h]hT}(hj[hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjXubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hCTRh]hCTR}(hjqhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjnubah}(h]h ]h"]h$]h&]uh1jhjubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x1026h]h0x1026}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(h0x08h]h0x08}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hRWh]hRW}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hjJ h]hT}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hCFARh]hCFAR}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x1027h]h0x1027}(hj hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj ubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(h0x08h]h0x08}(hj#hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj ubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hRWh]hRW}(hj:hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj7ubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hjJ h]hT}(hjQhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjNubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hSRR0h]hSRR0}(hjghhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjdubah}(h]h ]h"]h$]h&]uh1jhjubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)z}(hhh]h)}(h0x1028h]h0x1028}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(h0x08h]h0x08}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hRWh]hRW}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hjJ h]hT}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hSRR1h]hSRR1}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x1029h]h0x1029}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(h0x08h]h0x08}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hRWh]hRW}(hj0hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj-ubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hjJ h]hT}(hjGhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjDubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hDARh]hDAR}(hj]hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjZubah}(h]h ]h"]h$]h&]uh1jhjubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x102Ah]h0x102A}(hj}hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjzubah}(h]h ]h"]h$]h&]uh1jhjwubj)}(hhh]h)}(h0x08h]h0x08}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjwubj)}(hhh]h)}(hRWh]hRW}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjwubj)}(hhh]h)}(hjJ h]hT}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjwubj)}(hhh]h)}(h DEC expiry TBh]h DEC expiry TB}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjwubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x102Bh]h0x102B}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(h0x08h]h0x08}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj ubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hRWh]hRW}(hj&hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj#ubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hjJ h]hT}(hj=hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj:ubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hVTBh]hVTB}(hjShhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjPubah}(h]h ]h"]h$]h&]uh1jhjubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x102Ch]h0x102C}(hjshhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjpubah}(h]h ]h"]h$]h&]uh1jhjmubj)}(hhh]h)}(h0x08h]h0x08}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjmubj)}(hhh]h)}(hRWh]hRW}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjmubj)}(hhh]h)}(hjJ h]hT}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjmubj)}(hhh]h)}(hLPCRh]hLPCR}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjmubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x102Dh]h0x102D}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(h0x08h]h0x08}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hRWh]hRW}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hjJ h]hT}(hj3hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj0ubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hHFSCRh]hHFSCR}(hjIhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjFubah}(h]h ]h"]h$]h&]uh1jhjubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x102Eh]h0x102E}(hjihhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjfubah}(h]h ]h"]h$]h&]uh1jhjcubj)}(hhh]h)}(h0x08h]h0x08}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj}ubah}(h]h ]h"]h$]h&]uh1jhjcubj)}(hhh]h)}(hRWh]hRW}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjcubj)}(hhh]h)}(hjJ h]hT}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjcubj)}(hhh]h)}(hFSCRh]hFSCR}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjcubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x102Fh]h0x102F}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(h0x08h]h0x08}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hRWh]hRW}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hjJ h]hT}(hj)hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj&ubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hFPSCRh]hFPSCR}(hj?hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj<ubah}(h]h ]h"]h$]h&]uh1jhjubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x1030h]h0x1030}(hj_hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj\ubah}(h]h ]h"]h$]h&]uh1jhjYubj)}(hhh]h)}(h0x08h]h0x08}(hjvhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjsubah}(h]h ]h"]h$]h&]uh1jhjYubj)}(hhh]h)}(hRWh]hRW}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjYubj)}(hhh]h)}(hjJ h]hT}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjYubj)}(hhh]h)}(hDAWR0h]hDAWR0}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjYubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x1031h]h0x1031}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(h0x08h]h0x08}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hRWh]hRW}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hjJ h]hT}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hDAWR1h]hDAWR1}(hj5hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj2ubah}(h]h ]h"]h$]h&]uh1jhjubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x1032h]h0x1032}(hjUhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjRubah}(h]h ]h"]h$]h&]uh1jhjOubj)}(hhh]h)}(h0x08h]h0x08}(hjlhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjiubah}(h]h ]h"]h$]h&]uh1jhjOubj)}(hhh]h)}(hRWh]hRW}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjOubj)}(hhh]h)}(hjJ h]hT}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjOubj)}(hhh]h)}(hCIABRh]hCIABR}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjOubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x1033h]h0x1033}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(h0x08h]h0x08}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hRWh]hRW}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hjJ h]hT}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hPURRh]hPURR}(hj+hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj(ubah}(h]h ]h"]h$]h&]uh1jhjubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x1034h]h0x1034}(hjKhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjHubah}(h]h ]h"]h$]h&]uh1jhjEubj)}(hhh]h)}(h0x08h]h0x08}(hjbhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj_ubah}(h]h ]h"]h$]h&]uh1jhjEubj)}(hhh]h)}(hRWh]hRW}(hjyhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjvubah}(h]h ]h"]h$]h&]uh1jhjEubj)}(hhh]h)}(hjJ h]hT}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjEubj)}(hhh]h)}(hSPURRh]hSPURR}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjEubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x1035h]h0x1035}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(h0x08h]h0x08}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hRWh]hRW}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hjJ h]hT}(hj hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hICh]hIC}(hj!hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x1036- 0x1039h]h0x1036- 0x1039}(hjAhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj>ubah}(h]h ]h"]h$]h&]uh1jhj;ubj)}(hhh]h)}(h0x08h]h0x08}(hjXhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjUubah}(h]h ]h"]h$]h&]uh1jhj;ubj)}(hhh]h)}(hRWh]hRW}(hjohhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjlubah}(h]h ]h"]h$]h&]uh1jhj;ubj)}(hhh]h)}(hjJ h]hT}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhj;ubj)}(hhh]h)}(hSPRG 0-3h]hSPRG 0-3}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhj;ubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x103Ah]h0x103A}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(h0x08h]h0x08}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hWh]hW}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hjJ h]hT}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hPPRh]hPPR}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h 0x103B 0x103Eh]h 0x103B 0x103E}(hj7hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj4ubah}(h]h ]h"]h$]h&]uh1jhj1ubj)}(hhh]h)}(h0x08h]h0x08}(hjNhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjKubah}(h]h ]h"]h$]h&]uh1jhj1ubj)}(hhh]h)}(hRWh]hRW}(hjehhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjbubah}(h]h ]h"]h$]h&]uh1jhj1ubj)}(hhh]h)}(hjJ h]hT}(hj|hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjyubah}(h]h ]h"]h$]h&]uh1jhj1ubj)}(hhh]h)}(hMMCR 0-3h]hMMCR 0-3}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhj1ubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x103Fh]h0x103F}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(h0x08h]h0x08}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hRWh]hRW}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hjJ h]hT}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hMMCRAh]hMMCRA}(hj hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj ubah}(h]h ]h"]h$]h&]uh1jhjubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x1040h]h0x1040}(hj-hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj*ubah}(h]h ]h"]h$]h&]uh1jhj'ubj)}(hhh]h)}(h0x08h]h0x08}(hjDhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjAubah}(h]h ]h"]h$]h&]uh1jhj'ubj)}(hhh]h)}(hRWh]hRW}(hj[hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjXubah}(h]h ]h"]h$]h&]uh1jhj'ubj)}(hhh]h)}(hjJ h]hT}(hjrhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjoubah}(h]h ]h"]h$]h&]uh1jhj'ubj)}(hhh]h)}(hSIERh]hSIER}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhj'ubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x1041h]h0x1041}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(h0x08h]h0x08}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hRWh]hRW}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hjJ h]hT}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hSIER 2h]hSIER 2}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x1042h]h0x1042}(hj#hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj ubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(h0x08h]h0x08}(hj:hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj7ubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hRWh]hRW}(hjQhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjNubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hjJ h]hT}(hjhhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjeubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hSIER 3h]hSIER 3}(hj~hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj{ubah}(h]h ]h"]h$]h&]uh1jhjubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x1043h]h0x1043}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(h0x08h]h0x08}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hRWh]hRW}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hjJ h]hT}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hBESCRh]hBESCR}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x1044h]h0x1044}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(h0x08h]h0x08}(hj0hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj-ubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hRWh]hRW}(hjGhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjDubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hjJ h]hT}(hj^hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj[ubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hEBBHRh]hEBBHR}(hjthhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjqubah}(h]h ]h"]h$]h&]uh1jhjubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x1045h]h0x1045}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM hjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(h0x08h]h0x08}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM hjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hRWh]hRW}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM hjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hjJ h]hT}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM hjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hEBBRRh]hEBBRR}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM hjubah}(h]h ]h"]h$]h&]uh1jhjubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x1046h]h0x1046}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM hj ubah}(h]h ]h"]h$]h&]uh1jhj ubj)}(hhh]h)}(h0x08h]h0x08}(hj&hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM hj#ubah}(h]h ]h"]h$]h&]uh1jhj ubj)}(hhh]h)}(hRWh]hRW}(hj=hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM hj:ubah}(h]h ]h"]h$]h&]uh1jhj ubj)}(hhh]h)}(hjJ h]hT}(hjThhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM hjQubah}(h]h ]h"]h$]h&]uh1jhj ubj)}(hhh]h)}(hAMRh]hAMR}(hjjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM hjgubah}(h]h ]h"]h$]h&]uh1jhj ubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x1047h]h0x1047}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM hjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(h0x08h]h0x08}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM hjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hRWh]hRW}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM hjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hjJ h]hT}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM hjubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hIAMRh]hIAMR}(hjhhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM hjubah}(h]h ]h"]h$]h&]uh1jhjubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x1048h]h0x1048}(hj hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj ubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(h0x08h]h0x08}(hj hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj ubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hRWh]hRW}(hj3 hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj0 ubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hjJ h]hT}(hjJ hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjG ubah}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh]h)}(hAMORh]hAMOR}(hj` hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj] ubah}(h]h ]h"]h$]h&]uh1jhjubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x1049h]h0x1049}(hj hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj} ubah}(h]h ]h"]h$]h&]uh1jhjz ubj)}(hhh]h)}(h0x08h]h0x08}(hj hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj ubah}(h]h ]h"]h$]h&]uh1jhjz ubj)}(hhh]h)}(hRWh]hRW}(hj hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj ubah}(h]h ]h"]h$]h&]uh1jhjz ubj)}(hhh]h)}(hjJ h]hT}(hj hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj ubah}(h]h ]h"]h$]h&]uh1jhjz ubj)}(hhh]h)}(hUAMORh]hUAMOR}(hj hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj ubah}(h]h ]h"]h$]h&]uh1jhjz ubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x104Ah]h0x104A}(hj hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj ubah}(h]h ]h"]h$]h&]uh1jhj ubj)}(hhh]h)}(h0x08h]h0x08}(hj!hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj!ubah}(h]h ]h"]h$]h&]uh1jhj ubj)}(hhh]h)}(hRWh]hRW}(hj)!hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj&!ubah}(h]h ]h"]h$]h&]uh1jhj ubj)}(hhh]h)}(hjJ h]hT}(hj@!hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj=!ubah}(h]h ]h"]h$]h&]uh1jhj ubj)}(hhh]h)}(hSDARh]hSDAR}(hjV!hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjS!ubah}(h]h ]h"]h$]h&]uh1jhj ubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x104Bh]h0x104B}(hjv!hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjs!ubah}(h]h ]h"]h$]h&]uh1jhjp!ubj)}(hhh]h)}(h0x08h]h0x08}(hj!hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj!ubah}(h]h ]h"]h$]h&]uh1jhjp!ubj)}(hhh]h)}(hRWh]hRW}(hj!hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj!ubah}(h]h ]h"]h$]h&]uh1jhjp!ubj)}(hhh]h)}(hjJ h]hT}(hj!hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj!ubah}(h]h ]h"]h$]h&]uh1jhjp!ubj)}(hhh]h)}(hSIARh]hSIAR}(hj!hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj!ubah}(h]h ]h"]h$]h&]uh1jhjp!ubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x104Ch]h0x104C}(hj!hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj!ubah}(h]h ]h"]h$]h&]uh1jhj!ubj)}(hhh]h)}(h0x08h]h0x08}(hj"hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj"ubah}(h]h ]h"]h$]h&]uh1jhj!ubj)}(hhh]h)}(hRWh]hRW}(hj"hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj"ubah}(h]h ]h"]h$]h&]uh1jhj!ubj)}(hhh]h)}(hjJ h]hT}(hj6"hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj3"ubah}(h]h ]h"]h$]h&]uh1jhj!ubj)}(hhh]h)}(hDSCRh]hDSCR}(hjL"hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjI"ubah}(h]h ]h"]h$]h&]uh1jhj!ubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x104Dh]h0x104D}(hjl"hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhji"ubah}(h]h ]h"]h$]h&]uh1jhjf"ubj)}(hhh]h)}(h0x08h]h0x08}(hj"hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj"ubah}(h]h ]h"]h$]h&]uh1jhjf"ubj)}(hhh]h)}(hRWh]hRW}(hj"hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj"ubah}(h]h ]h"]h$]h&]uh1jhjf"ubj)}(hhh]h)}(hjJ h]hT}(hj"hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj"ubah}(h]h ]h"]h$]h&]uh1jhjf"ubj)}(hhh]h)}(hTARh]hTAR}(hj"hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj"ubah}(h]h ]h"]h$]h&]uh1jhjf"ubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x104Eh]h0x104E}(hj"hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj"ubah}(h]h ]h"]h$]h&]uh1jhj"ubj)}(hhh]h)}(h0x08h]h0x08}(hj"hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj"ubah}(h]h ]h"]h$]h&]uh1jhj"ubj)}(hhh]h)}(hRWh]hRW}(hj#hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj#ubah}(h]h ]h"]h$]h&]uh1jhj"ubj)}(hhh]h)}(hjJ h]hT}(hj,#hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj)#ubah}(h]h ]h"]h$]h&]uh1jhj"ubj)}(hhh]h)}(hDEXCRh]hDEXCR}(hjB#hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj?#ubah}(h]h ]h"]h$]h&]uh1jhj"ubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x104Fh]h0x104F}(hjb#hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj_#ubah}(h]h ]h"]h$]h&]uh1jhj\#ubj)}(hhh]h)}(h0x08h]h0x08}(hjy#hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhjv#ubah}(h]h ]h"]h$]h&]uh1jhj\#ubj)}(hhh]h)}(hRWh]hRW}(hj#hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj#ubah}(h]h ]h"]h$]h&]uh1jhj\#ubj)}(hhh]h)}(hjJ h]hT}(hj#hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj#ubah}(h]h ]h"]h$]h&]uh1jhj\#ubj)}(hhh]h)}(hHDEXCRh]hHDEXCR}(hj#hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj#ubah}(h]h ]h"]h$]h&]uh1jhj\#ubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x1050h]h0x1050}(hj#hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj#ubah}(h]h ]h"]h$]h&]uh1jhj#ubj)}(hhh]h)}(h0x08h]h0x08}(hj#hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj#ubah}(h]h ]h"]h$]h&]uh1jhj#ubj)}(hhh]h)}(hRWh]hRW}(hj $hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj$ubah}(h]h ]h"]h$]h&]uh1jhj#ubj)}(hhh]h)}(hjJ h]hT}(hj"$hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj$ubah}(h]h ]h"]h$]h&]uh1jhj#ubj)}(hhh]h)}(hHASHKEYRh]hHASHKEYR}(hj8$hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMhj5$ubah}(h]h ]h"]h$]h&]uh1jhj#ubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x1051h]h0x1051}(hjX$hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM!hjU$ubah}(h]h ]h"]h$]h&]uh1jhjR$ubj)}(hhh]h)}(h0x08h]h0x08}(hjo$hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM!hjl$ubah}(h]h ]h"]h$]h&]uh1jhjR$ubj)}(hhh]h)}(hRWh]hRW}(hj$hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM!hj$ubah}(h]h ]h"]h$]h&]uh1jhjR$ubj)}(hhh]h)}(hjJ h]hT}(hj$hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM!hj$ubah}(h]h ]h"]h$]h&]uh1jhjR$ubj)}(hhh]h)}(h HASHPKEYRh]h HASHPKEYR}(hj$hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM!hj$ubah}(h]h ]h"]h$]h&]uh1jhjR$ubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x1052h]h0x1052}(hj$hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM#hj$ubah}(h]h ]h"]h$]h&]uh1jhj$ubj)}(hhh]h)}(h0x08h]h0x08}(hj$hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM#hj$ubah}(h]h ]h"]h$]h&]uh1jhj$ubj)}(hhh]h)}(hRWh]hRW}(hj%hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM#hj$ubah}(h]h ]h"]h$]h&]uh1jhj$ubj)}(hhh]h)}(hjJ h]hT}(hj%hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM#hj%ubah}(h]h ]h"]h$]h&]uh1jhj$ubj)}(hhh]h)}(hCTRLh]hCTRL}(hj.%hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM#hj+%ubah}(h]h ]h"]h$]h&]uh1jhj$ubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x1053h]h0x1053}(hjN%hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM%hjK%ubah}(h]h ]h"]h$]h&]uh1jhjH%ubj)}(hhh]h)}(h0x08h]h0x08}(hje%hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM%hjb%ubah}(h]h ]h"]h$]h&]uh1jhjH%ubj)}(hhh]h)}(hRWh]hRW}(hj|%hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM%hjy%ubah}(h]h ]h"]h$]h&]uh1jhjH%ubj)}(hhh]h)}(hjJ h]hT}(hj%hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM%hj%ubah}(h]h ]h"]h$]h&]uh1jhjH%ubj)}(hhh]h)}(hDPDESh]hDPDES}(hj%hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM%hj%ubah}(h]h ]h"]h$]h&]uh1jhjH%ubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x1054- 0x1FFFh]h0x1054- 0x1FFF}(hj%hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM'hj%ubah}(h]h ]h"]h$]h&]uh1jhj%ubj)}(hhh]h}(h]h ]h"]h$]h&]uh1jhj%ubj)}(hhh]h}(h]h ]h"]h$]h&]uh1jhj%ubj)}(hhh]h}(h]h ]h"]h$]h&]uh1jhj%ubj)}(hhh]h)}(hReservedh]hReserved}(hj%hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM'hj%ubah}(h]h ]h"]h$]h&]uh1jhj%ubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x2000h]h0x2000}(hj&hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM*hj&ubah}(h]h ]h"]h$]h&]uh1jhj&ubj)}(hhh]h)}(h0x04h]h0x04}(hj2&hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM*hj/&ubah}(h]h ]h"]h$]h&]uh1jhj&ubj)}(hhh]h)}(hRWh]hRW}(hjI&hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM*hjF&ubah}(h]h ]h"]h$]h&]uh1jhj&ubj)}(hhh]h)}(hjJ h]hT}(hj`&hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM*hj]&ubah}(h]h ]h"]h$]h&]uh1jhj&ubj)}(hhh]h)}(hCRh]hCR}(hjv&hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM*hjs&ubah}(h]h ]h"]h$]h&]uh1jhj&ubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x2001h]h0x2001}(hj&hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM,hj&ubah}(h]h ]h"]h$]h&]uh1jhj&ubj)}(hhh]h)}(h0x04h]h0x04}(hj&hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM,hj&ubah}(h]h ]h"]h$]h&]uh1jhj&ubj)}(hhh]h)}(hRWh]hRW}(hj&hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM,hj&ubah}(h]h ]h"]h$]h&]uh1jhj&ubj)}(hhh]h)}(hjJ h]hT}(hj&hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM,hj&ubah}(h]h ]h"]h$]h&]uh1jhj&ubj)}(hhh]h)}(hPIDRh]hPIDR}(hj&hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM,hj&ubah}(h]h ]h"]h$]h&]uh1jhj&ubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x2002h]h0x2002}(hj'hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM.hj'ubah}(h]h ]h"]h$]h&]uh1jhj 'ubj)}(hhh]h)}(h0x04h]h0x04}(hj('hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM.hj%'ubah}(h]h ]h"]h$]h&]uh1jhj 'ubj)}(hhh]h)}(hRWh]hRW}(hj?'hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM.hj<'ubah}(h]h ]h"]h$]h&]uh1jhj 'ubj)}(hhh]h)}(hjJ h]hT}(hjV'hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM.hjS'ubah}(h]h ]h"]h$]h&]uh1jhj 'ubj)}(hhh]h)}(hDSISRh]hDSISR}(hjl'hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM.hji'ubah}(h]h ]h"]h$]h&]uh1jhj 'ubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x2003h]h0x2003}(hj'hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM0hj'ubah}(h]h ]h"]h$]h&]uh1jhj'ubj)}(hhh]h)}(h0x04h]h0x04}(hj'hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM0hj'ubah}(h]h ]h"]h$]h&]uh1jhj'ubj)}(hhh]h)}(hRWh]hRW}(hj'hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM0hj'ubah}(h]h ]h"]h$]h&]uh1jhj'ubj)}(hhh]h)}(hjJ h]hT}(hj'hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM0hj'ubah}(h]h ]h"]h$]h&]uh1jhj'ubj)}(hhh]h)}(hVSCRh]hVSCR}(hj'hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM0hj'ubah}(h]h ]h"]h$]h&]uh1jhj'ubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x2004h]h0x2004}(hj(hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM2hj(ubah}(h]h ]h"]h$]h&]uh1jhj(ubj)}(hhh]h)}(h0x04h]h0x04}(hj(hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM2hj(ubah}(h]h ]h"]h$]h&]uh1jhj(ubj)}(hhh]h)}(hRWh]hRW}(hj5(hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM2hj2(ubah}(h]h ]h"]h$]h&]uh1jhj(ubj)}(hhh]h)}(hjJ h]hT}(hjL(hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM2hjI(ubah}(h]h ]h"]h$]h&]uh1jhj(ubj)}(hhh]h)}(hVRSAVEh]hVRSAVE}(hjb(hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM2hj_(ubah}(h]h ]h"]h$]h&]uh1jhj(ubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x2005h]h0x2005}(hj(hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM4hj(ubah}(h]h ]h"]h$]h&]uh1jhj|(ubj)}(hhh]h)}(h0x04h]h0x04}(hj(hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM4hj(ubah}(h]h ]h"]h$]h&]uh1jhj|(ubj)}(hhh]h)}(hRWh]hRW}(hj(hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM4hj(ubah}(h]h ]h"]h$]h&]uh1jhj|(ubj)}(hhh]h)}(hjJ h]hT}(hj(hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM4hj(ubah}(h]h ]h"]h$]h&]uh1jhj|(ubj)}(hhh]h)}(hDAWRX0h]hDAWRX0}(hj(hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM4hj(ubah}(h]h ]h"]h$]h&]uh1jhj|(ubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x2006h]h0x2006}(hj(hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM6hj(ubah}(h]h ]h"]h$]h&]uh1jhj(ubj)}(hhh]h)}(h0x04h]h0x04}(hj)hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM6hj)ubah}(h]h ]h"]h$]h&]uh1jhj(ubj)}(hhh]h)}(hRWh]hRW}(hj+)hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM6hj()ubah}(h]h ]h"]h$]h&]uh1jhj(ubj)}(hhh]h)}(hjJ h]hT}(hjB)hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM6hj?)ubah}(h]h ]h"]h$]h&]uh1jhj(ubj)}(hhh]h)}(hDAWRX1h]hDAWRX1}(hjX)hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM6hjU)ubah}(h]h ]h"]h$]h&]uh1jhj(ubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x2007- 0x200ch]h0x2007- 0x200c}(hjx)hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM8hju)ubah}(h]h ]h"]h$]h&]uh1jhjr)ubj)}(hhh]h)}(h0x04h]h0x04}(hj)hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM8hj)ubah}(h]h ]h"]h$]h&]uh1jhjr)ubj)}(hhh]h)}(hRWh]hRW}(hj)hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM8hj)ubah}(h]h ]h"]h$]h&]uh1jhjr)ubj)}(hhh]h)}(hjJ h]hT}(hj)hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM8hj)ubah}(h]h ]h"]h$]h&]uh1jhjr)ubj)}(hhh]h)}(hPMC 1-6h]hPMC 1-6}(hj)hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM8hj)ubah}(h]h ]h"]h$]h&]uh1jhjr)ubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x200Dh]h0x200D}(hj)hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM;hj)ubah}(h]h ]h"]h$]h&]uh1jhj)ubj)}(hhh]h)}(h0x04h]h0x04}(hj *hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM;hj*ubah}(h]h ]h"]h$]h&]uh1jhj)ubj)}(hhh]h)}(hRWh]hRW}(hj!*hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM;hj*ubah}(h]h ]h"]h$]h&]uh1jhj)ubj)}(hhh]h)}(hjJ h]hT}(hj8*hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM;hj5*ubah}(h]h ]h"]h$]h&]uh1jhj)ubj)}(hhh]h)}(hWORTh]hWORT}(hjN*hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM;hjK*ubah}(h]h ]h"]h$]h&]uh1jhj)ubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x200Eh]h0x200E}(hjn*hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM=hjk*ubah}(h]h ]h"]h$]h&]uh1jhjh*ubj)}(hhh]h)}(h0x04h]h0x04}(hj*hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM=hj*ubah}(h]h ]h"]h$]h&]uh1jhjh*ubj)}(hhh]h)}(hRWh]hRW}(hj*hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM=hj*ubah}(h]h ]h"]h$]h&]uh1jhjh*ubj)}(hhh]h)}(hjJ h]hT}(hj*hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM=hj*ubah}(h]h ]h"]h$]h&]uh1jhjh*ubj)}(hhh]h)}(hPSPBh]hPSPB}(hj*hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM=hj*ubah}(h]h ]h"]h$]h&]uh1jhjh*ubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x200F- 0x2FFFh]h0x200F- 0x2FFF}(hj*hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM?hj*ubah}(h]h ]h"]h$]h&]uh1jhj*ubj)}(hhh]h}(h]h ]h"]h$]h&]uh1jhj*ubj)}(hhh]h}(h]h ]h"]h$]h&]uh1jhj*ubj)}(hhh]h}(h]h ]h"]h$]h&]uh1jhj*ubj)}(hhh]h)}(hReservedh]hReserved}(hj+hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM?hj+ubah}(h]h ]h"]h$]h&]uh1jhj*ubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x3000- 0x303Fh]h0x3000- 0x303F}(hj;+hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMBhj8+ubah}(h]h ]h"]h$]h&]uh1jhj5+ubj)}(hhh]h)}(h0x10h]h0x10}(hjR+hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMBhjO+ubah}(h]h ]h"]h$]h&]uh1jhj5+ubj)}(hhh]h)}(hRWh]hRW}(hji+hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMBhjf+ubah}(h]h ]h"]h$]h&]uh1jhj5+ubj)}(hhh]h)}(hjJ h]hT}(hj+hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMBhj}+ubah}(h]h ]h"]h$]h&]uh1jhj5+ubj)}(hhh]h)}(hVSR 0-63h]hVSR 0-63}(hj+hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMBhj+ubah}(h]h ]h"]h$]h&]uh1jhj5+ubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0x3040- 0xEFFFh]h0x3040- 0xEFFF}(hj+hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMEhj+ubah}(h]h ]h"]h$]h&]uh1jhj+ubj)}(hhh]h}(h]h ]h"]h$]h&]uh1jhj+ubj)}(hhh]h}(h]h ]h"]h$]h&]uh1jhj+ubj)}(hhh]h}(h]h ]h"]h$]h&]uh1jhj+ubj)}(hhh]h)}(hReservedh]hReserved}(hj+hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMEhj+ubah}(h]h ]h"]h$]h&]uh1jhj+ubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0xF000h]h0xF000}(hj,hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMHhj,ubah}(h]h ]h"]h$]h&]uh1jhj,ubj)}(hhh]h)}(h0x08h]h0x08}(hj,hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMHhj,ubah}(h]h ]h"]h$]h&]uh1jhj,ubj)}(hhh]h)}(hjz h]hR}(hj6,hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMHhj3,ubah}(h]h ]h"]h$]h&]uh1jhj,ubj)}(hhh]h)}(hjJ h]hT}(hjL,hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMHhjI,ubah}(h]h ]h"]h$]h&]uh1jhj,ubj)}(hhh]h)}(hHDARh]hHDAR}(hjb,hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMHhj_,ubah}(h]h ]h"]h$]h&]uh1jhj,ubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0xF001h]h0xF001}(hj,hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMJhj,ubah}(h]h ]h"]h$]h&]uh1jhj|,ubj)}(hhh]h)}(h0x04h]h0x04}(hj,hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMJhj,ubah}(h]h ]h"]h$]h&]uh1jhj|,ubj)}(hhh]h)}(hjz h]hR}(hj,hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMJhj,ubah}(h]h ]h"]h$]h&]uh1jhj|,ubj)}(hhh]h)}(hjJ h]hT}(hj,hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMJhj,ubah}(h]h ]h"]h$]h&]uh1jhj|,ubj)}(hhh]h)}(hHDSISRh]hHDSISR}(hj,hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMJhj,ubah}(h]h ]h"]h$]h&]uh1jhj|,ubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0xF002h]h0xF002}(hj,hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMLhj,ubah}(h]h ]h"]h$]h&]uh1jhj,ubj)}(hhh]h)}(h0x04h]h0x04}(hj-hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMLhj-ubah}(h]h ]h"]h$]h&]uh1jhj,ubj)}(hhh]h)}(hjz h]hR}(hj*-hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMLhj'-ubah}(h]h ]h"]h$]h&]uh1jhj,ubj)}(hhh]h)}(hjJ h]hT}(hj@-hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMLhj=-ubah}(h]h ]h"]h$]h&]uh1jhj,ubj)}(hhh]h)}(hHEIRh]hHEIR}(hjV-hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMLhjS-ubah}(h]h ]h"]h$]h&]uh1jhj,ubeh}(h]h ]h"]h$]h&]uh1jhjubj)}(hhh](j)}(hhh]h)}(h0xF003h]h0xF003}(hjv-hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMNhjs-ubah}(h]h ]h"]h$]h&]uh1jhjp-ubj)}(hhh]h)}(h0x08h]h0x08}(hj-hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMNhj-ubah}(h]h ]h"]h$]h&]uh1jhjp-ubj)}(hhh]h)}(hjz h]hR}(hj-hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMNhj-ubah}(h]h ]h"]h$]h&]uh1jhjp-ubj)}(hhh]h)}(hjJ h]hT}(hj-hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMNhj-ubah}(h]h ]h"]h$]h&]uh1jhjp-ubj)}(hhh]h)}(hASDRh]hASDR}(hj-hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMNhj-ubah}(h]h ]h"]h$]h&]uh1jhjp-ubeh}(h]h ]h"]h$]h&]uh1jhjubeh}(h]h ]h"]h$]h&]uh1jhjubeh}(h]h ]h"]h$]h&]colsKuh1j\hjubah}(h]h ]h"]h$]h&]uh1jWhjhhhhhNubeh}(h]guest-state-bufferah ]h"]guest state bufferah$]h&]uh1hhhhhhhhMlubh)}(hhh](h)}(hMiscellaneous infoh]hMiscellaneous info}(hj.hhhNhNubah}(h]h ]h"]h$]h&]uh1hhj.hhhhhMSubh)}(hhh](h)}(hState not in ptregs/hvregsh]hState not in ptregs/hvregs}(hj.hhhNhNubah}(h]h ]h"]h$]h&]uh1hhj.hhhhhMVubh)}(hX"In the v1 API, some state is not in the ptregs/hvstate. This includes the vector register and some SPRs. For the L1 to set this state for the L2, the L1 loads up these hardware registers before the h_enter_nested() call and the L0 ensures they end up as the L2 state (by not touching them).h]hX"In the v1 API, some state is not in the ptregs/hvstate. This includes the vector register and some SPRs. For the L1 to set this state for the L2, the L1 loads up these hardware registers before the h_enter_nested() call and the L0 ensures they end up as the L2 state (by not touching them).}(hj'.hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMXhj.hhubh)}(hCThe v2 API removes this and explicitly sets this state via the GSB.h]hCThe v2 API removes this and explicitly sets this state via the GSB.}(hj5.hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM^hj.hhubeh}(h]state-not-in-ptregs-hvregsah ]h"]state not in ptregs/hvregsah$]h&]uh1hhj.hhhhhMVubh)}(hhh](h)}(h(L1 Implementation details: Caching stateh]h(L1 Implementation details: Caching state}(hjN.hhhNhNubah}(h]h ]h"]h$]h&]uh1hhjK.hhhhhMaubh)}(hX)In the v1 API, all state is sent from the L1 to the L0 and vice versa on every h_enter_nested() hcall. If the L0 is not currently running any L2s, the L0 has no state information about them. The only exception to this is the location of the partition table, registered via h_set_partition_table().h]hX)In the v1 API, all state is sent from the L1 to the L0 and vice versa on every h_enter_nested() hcall. If the L0 is not currently running any L2s, the L0 has no state information about them. The only exception to this is the location of the partition table, registered via h_set_partition_table().}(hj\.hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMchjK.hhubh)}(hX7The v2 API changes this so that the L0 retains the L2 state even when it's vCPUs are no longer running. This means that the L1 only needs to communicate with the L0 about L2 state when it needs to modify the L2 state, or when it's value is out of date. This provides an opportunity for performance optimisation.h]hX;The v2 API changes this so that the L0 retains the L2 state even when it’s vCPUs are no longer running. This means that the L1 only needs to communicate with the L0 about L2 state when it needs to modify the L2 state, or when it’s value is out of date. This provides an opportunity for performance optimisation.}(hjj.hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMihjK.hhubh)}(hX6When a vCPU exits from a H_GUEST_RUN_VCPU() call, the L1 internally marks all L2 state as invalid. This means that if the L1 wants to know the L2 state (say via a kvm_get_one_reg() call), it needs call H_GUEST_GET_STATE() to get that state. Once it's read, it's marked as valid in L1 until the L2 is run again.h]hX:When a vCPU exits from a H_GUEST_RUN_VCPU() call, the L1 internally marks all L2 state as invalid. This means that if the L1 wants to know the L2 state (say via a kvm_get_one_reg() call), it needs call H_GUEST_GET_STATE() to get that state. Once it’s read, it’s marked as valid in L1 until the L2 is run again.}(hjx.hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMohjK.hhubh)}(hX7Also, when an L1 modifies L2 vcpu state, it doesn't need to write it to the L0 until that L2 vcpu runs again. Hence when the L1 updates state (say via a kvm_set_one_reg() call), it writes to an internal L1 copy and only flushes this copy to the L0 when the L2 runs again via the H_GUEST_VCPU_RUN() input buffer.h]hX9Also, when an L1 modifies L2 vcpu state, it doesn’t need to write it to the L0 until that L2 vcpu runs again. Hence when the L1 updates state (say via a kvm_set_one_reg() call), it writes to an internal L1 copy and only flushes this copy to the L0 when the L2 runs again via the H_GUEST_VCPU_RUN() input buffer.}(hj.hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhMuhjK.hhubh)}(hWThis lazy updating of state by the L1 avoids unnecessary H_GUEST_{G|S}ET_STATE() calls.h]hWThis lazy updating of state by the L1 avoids unnecessary H_GUEST_{G|S}ET_STATE() calls.}(hj.hhhNhNubah}(h]h ]h"]h$]h&]uh1hhhhM{hjK.hhubeh}(h]'l1-implementation-details-caching-stateah ]h"](l1 implementation details: caching stateah$]h&]uh1hhj.hhhhhMaubeh}(h]miscellaneous-infoah ]h"]miscellaneous infoah$]h&]uh1hhhhhhhhMSubeh}(h]nested-kvm-on-powerah ]h"]nested kvm on powerah$]h&]uh1hhhhhhhhKubeh}(h]h ]h"]h$]h&]sourcehuh1hcurrent_sourceN current_lineNsettingsdocutils.frontendValues)}(hN generatorN datestampN source_linkN source_urlN toc_backlinksjfootnote_backlinksK sectnum_xformKstrip_commentsNstrip_elements_with_classesN strip_classesN report_levelK halt_levelKexit_status_levelKdebugNwarning_streamN tracebackinput_encoding utf-8-siginput_encoding_error_handlerstrictoutput_encodingutf-8output_encoding_error_handlerj.error_encodingutf-8error_encoding_error_handlerbackslashreplace language_codeenrecord_dependenciesNconfigN id_prefixhauto_id_prefixid dump_settingsNdump_internalsNdump_transformsNdump_pseudo_xmlNexpose_internalsNstrict_visitorN_disable_configN_sourceh _destinationN _config_files]7/var/lib/git/docbuild/linux/Documentation/docutils.confafile_insertion_enabled raw_enabledKline_length_limitM'pep_referencesN pep_base_urlhttps://peps.python.org/pep_file_url_templatepep-%04drfc_referencesN rfc_base_url&https://datatracker.ietf.org/doc/html/ tab_widthKtrim_footnote_reference_spacesyntax_highlightlong smart_quotessmartquotes_locales]character_level_inline_markupdoctitle_xform docinfo_xformKsectsubtitle_xform image_loadinglinkembed_stylesheetcloak_email_addressessection_self_linkenvNubreporterNindirect_targets]substitution_defs}substitution_names}refnames}refids}nameids}(j.j.hhjjjxjujjjjjjjRjOjjjjjEjBjjjjj.j-j.j.jH.jE.j.j.u nametypes}(j.hjjxjjjjRjjjEjjj.j.jH.j.uh}(j.hhhjhjujjj{jjjjjOj jjUjjjBjjjHjjj-jj.j.jE.j.j.jK.u footnote_refs} citation_refs} autofootnotes]autofootnote_refs]symbol_footnotes]symbol_footnote_refs] footnotes] citations]autofootnote_startKsymbol_footnote_startK id_counter collectionsCounter}Rparse_messages]transform_messages] transformerN include_log] decorationNhhub.