Select all VMs that will use this shared memory region
+
+
+ Virtual BDF:
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/misc/config_tools/configurator/src/pages/Config/ConfigForm/TabBox.vue b/misc/config_tools/configurator/packages/configurator/src/pages/Config/ConfigForm/TabBox.vue
similarity index 100%
rename from misc/config_tools/configurator/src/pages/Config/ConfigForm/TabBox.vue
rename to misc/config_tools/configurator/packages/configurator/src/pages/Config/ConfigForm/TabBox.vue
diff --git a/misc/config_tools/configurator/src/pages/Config/NewBoard.vue b/misc/config_tools/configurator/packages/configurator/src/pages/Config/NewBoard.vue
similarity index 100%
rename from misc/config_tools/configurator/src/pages/Config/NewBoard.vue
rename to misc/config_tools/configurator/packages/configurator/src/pages/Config/NewBoard.vue
diff --git a/misc/config_tools/configurator/src/pages/Config/Scenario.vue b/misc/config_tools/configurator/packages/configurator/src/pages/Config/Scenario.vue
similarity index 88%
rename from misc/config_tools/configurator/src/pages/Config/Scenario.vue
rename to misc/config_tools/configurator/packages/configurator/src/pages/Config/Scenario.vue
index 43a105adf..cf8294781 100644
--- a/misc/config_tools/configurator/src/pages/Config/Scenario.vue
+++ b/misc/config_tools/configurator/packages/configurator/src/pages/Config/Scenario.vue
@@ -27,7 +27,7 @@
-
@@ -62,20 +62,27 @@ export default {
}
},
mounted() {
- this.getScenarioHistory()
+ this.getScenarioHistory().then(() => {
+ // delay 2s for board loading
+ setTimeout(() => {
+ this.loadScenario(true)
+ }, 2000);
+ })
// Todo: auto load scenario
},
methods: {
newScenario(data) {
this.$emit('scenarioUpdate', data)
},
- loadScenario() {
+ loadScenario(auto = false) {
if (this.currentSelectedScenario.length > 0) {
configurator.loadScenario(this.currentSelectedScenario)
.then((scenarioConfig) => {
console.log(scenarioConfig)
this.$emit('scenarioUpdate', scenarioConfig['acrn-config'])
- alert(`Scenario ${this.currentSelectedScenario} loaded success!`)
+ if (!auto) {
+ alert(`Scenario ${this.currentSelectedScenario} loaded success!`)
+ }
}).catch((err) => {
console.log(err)
alert(`Failed to open ${this.currentSelectedScenario}, file may not exist`)
@@ -96,7 +103,7 @@ export default {
})
},
getScenarioHistory() {
- configurator.getHistory("Scenario")
+ return configurator.getHistory("Scenario")
.then((scenarioHistory) => {
this.scenarioHistory = scenarioHistory
if (this.scenarioHistory.length > 0) {
diff --git a/misc/config_tools/configurator/src/pages/Config/Scenario/NewScenario.vue b/misc/config_tools/configurator/packages/configurator/src/pages/Config/Scenario/NewScenario.vue
similarity index 100%
rename from misc/config_tools/configurator/src/pages/Config/Scenario/NewScenario.vue
rename to misc/config_tools/configurator/packages/configurator/src/pages/Config/Scenario/NewScenario.vue
diff --git a/misc/config_tools/configurator/src/pages/Welcome.vue b/misc/config_tools/configurator/packages/configurator/src/pages/Welcome.vue
similarity index 100%
rename from misc/config_tools/configurator/src/pages/Welcome.vue
rename to misc/config_tools/configurator/packages/configurator/src/pages/Welcome.vue
diff --git a/misc/config_tools/configurator/src/pages/Welcome/NewConfiguration.vue b/misc/config_tools/configurator/packages/configurator/src/pages/Welcome/NewConfiguration.vue
similarity index 100%
rename from misc/config_tools/configurator/src/pages/Welcome/NewConfiguration.vue
rename to misc/config_tools/configurator/packages/configurator/src/pages/Welcome/NewConfiguration.vue
diff --git a/misc/config_tools/configurator/src/pages/Welcome/UseExisting.vue b/misc/config_tools/configurator/packages/configurator/src/pages/Welcome/UseExisting.vue
similarity index 100%
rename from misc/config_tools/configurator/src/pages/Welcome/UseExisting.vue
rename to misc/config_tools/configurator/packages/configurator/src/pages/Welcome/UseExisting.vue
diff --git a/misc/config_tools/configurator/packages/configurator/src/pyodide.js b/misc/config_tools/configurator/packages/configurator/src/pyodide.js
new file mode 100644
index 000000000..b35ff1e94
--- /dev/null
+++ b/misc/config_tools/configurator/packages/configurator/src/pyodide.js
@@ -0,0 +1,37 @@
+import {loadPyodide} from "/thirdLib/pyodide/pyodide";
+import scenarioJSONSchema from './assets/schema/scenario.json';
+
+window.__dynamic__load__scenario__from__pyodide__ = () => {
+ return JSON.stringify(scenarioJSONSchema)
+}
+
+
+export default async function () {
+ let pyodide = await loadPyodide({
+ indexURL: '/thirdLib/pyodide/'
+ });
+ await pyodide.loadPackage(['micropip', 'lxml', 'beautifulsoup4'])
+ await pyodide.runPythonAsync(`
+ import micropip
+ await micropip.install([
+ './thirdLib/xmltodict-0.12.0-py2.py3-none-any.whl',
+ './thirdLib/elementpath-2.4.0-py3-none-any.whl',
+ './thirdLib/defusedxml-0.7.1-py2.py3-none-any.whl',
+ './thirdLib/xmlschema-1.9.2-py3-none-any.whl',
+ './thirdLib/acrn_config_tools-3.0-py3-none-any.whl'
+ ])
+ `)
+
+ function test() {
+ let result = pyodide.runPython(`
+ import sys
+ sys.version
+ `)
+ console.log(result);
+ }
+
+ test()
+
+ // pyodide load success
+ window.pyodide = pyodide;
+}
\ No newline at end of file
diff --git a/misc/config_tools/configurator/src/router.js b/misc/config_tools/configurator/packages/configurator/src/router.js
similarity index 100%
rename from misc/config_tools/configurator/src/router.js
rename to misc/config_tools/configurator/packages/configurator/src/router.js
diff --git a/misc/config_tools/configurator/packages/configurator/tests/data/data.json b/misc/config_tools/configurator/packages/configurator/tests/data/data.json
new file mode 100644
index 000000000..0c11dc6d5
--- /dev/null
+++ b/misc/config_tools/configurator/packages/configurator/tests/data/data.json
@@ -0,0 +1,15 @@
+{
+ "history": {
+ "WorkingFolder": [],
+ "Board": [
+ "C:\\Users\\Axel\\acrn-work\\MyConfiguration\\nuc11tnbi5.board.xml"
+ ],
+ "Scenario": [
+ "C:\\Users\\Axel\\acrn-work\\MyConfiguration\\scenario.xml"
+ ]
+ },
+ "files": {
+ "C:\\Users\\Axel\\acrn-work\\MyConfiguration\\nuc11tnbi5.board.xml": "\n \n\tBIOS Information\n\tVendor: Intel Corp.\n\tVersion: TNTGL357.0042.2020.1221.1743\n\tRelease Date: 12/21/2020\n\tBIOS Revision: 5.19\n\t\n \n\tBase Board Information\n\tManufacturer: Intel Corporation\n\tProduct Name: NUC11TNBi5\n\tVersion: M11904-403\n\t\n \n\t00:00.0 Host bridge: Intel Corporation 11th Gen Core Processor Host Bridge/DRAM Registers (rev 01)\n\t00:02.0 VGA compatible controller: Intel Corporation TigerLake-LP GT2 [Iris Xe Graphics] (rev 01)\n\tRegion 0: Memory at 603c000000 (64-bit, non-prefetchable) [size=16M]\n\tRegion 2: Memory at 4000000000 (64-bit, prefetchable) [size=256M]\n\tRegion 0: Memory at 0000004010000000 (64-bit, non-prefetchable)\n\tRegion 2: Memory at 0000004020000000 (64-bit, prefetchable)\n\t00:06.0 PCI bridge: Intel Corporation 11th Gen Core Processor PCIe Controller (rev 01)\n\t00:07.0 PCI bridge: Intel Corporation Tiger Lake-LP Thunderbolt 4 PCI Express Root Port #1 (rev 01)\n\t00:07.2 PCI bridge: Intel Corporation Tiger Lake-LP Thunderbolt 4 PCI Express Root Port #2 (rev 01)\n\t00:08.0 System peripheral: Intel Corporation GNA Scoring Accelerator module (rev 01)\n\tRegion 0: Memory at 603d1b3000 (64-bit, non-prefetchable) [disabled] [size=4K]\n\t00:0d.0 USB controller: Intel Corporation Tiger Lake-LP Thunderbolt 4 USB Controller (rev 01)\n\tRegion 0: Memory at 603d190000 (64-bit, non-prefetchable) [size=64K]\n\t00:0d.2 USB controller: Intel Corporation Tiger Lake-LP Thunderbolt 4 NHI #0 (rev 01)\n\tRegion 0: Memory at 603d140000 (64-bit, non-prefetchable) [size=256K]\n\tRegion 2: Memory at 603d1b2000 (64-bit, non-prefetchable) [size=4K]\n\t00:0d.3 USB controller: Intel Corporation Tiger Lake-LP Thunderbolt 4 NHI #1 (rev 01)\n\tRegion 0: Memory at 603d100000 (64-bit, non-prefetchable) [size=256K]\n\tRegion 2: Memory at 603d1b1000 (64-bit, non-prefetchable) [size=4K]\n\t00:14.0 USB controller: Intel Corporation Tiger Lake-LP USB 3.2 Gen 2x1 xHCI Host Controller (rev 20)\n\tRegion 0: Memory at 603d180000 (64-bit, non-prefetchable) [size=64K]\n\t00:14.2 RAM memory: Intel Corporation Tiger Lake-LP Shared SRAM (rev 20)\n\tRegion 0: Memory at 603d1a8000 (64-bit, non-prefetchable) [disabled] [size=16K]\n\tRegion 2: Memory at 603d1b0000 (64-bit, non-prefetchable) [disabled] [size=4K]\n\t00:14.3 Network controller: Intel Corporation Wi-Fi 6 AX201 (rev 20)\n\tRegion 0: Memory at 603d1a4000 (64-bit, non-prefetchable) [size=16K]\n\t00:15.0 Serial bus controller: Intel Corporation Tiger Lake-LP Serial IO I2C Controller #0 (rev 20)\n\tRegion 0: Memory at 4017000000 (64-bit, non-prefetchable) [virtual] [size=4K]\n\t00:15.1 Serial bus controller: Intel Corporation Tiger Lake-LP Serial IO I2C Controller #1 (rev 20)\n\tRegion 0: Memory at 4017001000 (64-bit, non-prefetchable) [virtual] [size=4K]\n\t00:16.0 Communication controller: Intel Corporation Tiger Lake-LP Management Engine Interface (rev 20)\n\tRegion 0: Memory at 603d1ad000 (64-bit, non-prefetchable) [size=4K]\n\t00:17.0 SATA controller: Intel Corporation Device a0d3 (rev 20)\n\tRegion 0: Memory at 6a500000 (32-bit, non-prefetchable) [size=8K]\n\tRegion 1: Memory at 6a503000 (32-bit, non-prefetchable) [size=256]\n\tRegion 5: Memory at 6a502000 (32-bit, non-prefetchable) [size=2K]\n\t00:1d.0 PCI bridge: Intel Corporation Device a0b1 (rev 20)\n\t00:1f.0 ISA bridge: Intel Corporation Tiger Lake-LP LPC Controller (rev 20)\n\t00:1f.3 Audio device: Intel Corporation Tiger Lake-LP Smart Sound Technology Audio Controller (rev 20)\n\tRegion 0: Memory at 603d1a0000 (64-bit, non-prefetchable) [size=16K]\n\tRegion 4: Memory at 603d000000 (64-bit, non-prefetchable) [size=1M]\n\t00:1f.4 SMBus: Intel Corporation Tiger Lake-LP SMBus Controller (rev 20)\n\tRegion 0: Memory at 603d1ac000 (64-bit, non-prefetchable) [size=256]\n\t00:1f.5 Serial bus controller: Intel Corporation Tiger Lake-LP SPI Controller (rev 20)\n\tRegion 0: Memory at 4f800000 (32-bit, non-prefetchable) [size=4K]\n\t01:00.0 Non-Volatile memory controller: Silicon Motion, Inc. SM2263EN/SM2263XT SSD Controller (rev 03)\n\tRegion 0: Memory at 6a400000 (64-bit, non-prefetchable) [size=16K]\n\t58:00.0 Ethernet controller: Intel Corporation Ethernet Controller I225-LM (rev 03)\n\tRegion 0: Memory at 6a200000 (32-bit, non-prefetchable) [size=1M]\n\tRegion 3: Memory at 6a300000 (32-bit, non-prefetchable) [size=16K]\n\t\n \n\t00:00.0 0600: 8086:9a14 (rev 01)\n\t00:02.0 0300: 8086:9a49 (rev 01)\n\t00:06.0 0604: 8086:9a09 (rev 01)\n\t00:07.0 0604: 8086:9a25 (rev 01)\n\t00:07.2 0604: 8086:9a27 (rev 01)\n\t00:08.0 0880: 8086:9a11 (rev 01)\n\t00:0d.0 0c03: 8086:9a13 (rev 01)\n\t00:0d.2 0c03: 8086:9a1b (rev 01)\n\t00:0d.3 0c03: 8086:9a1d (rev 01)\n\t00:14.0 0c03: 8086:a0ed (rev 20)\n\t00:14.2 0500: 8086:a0ef (rev 20)\n\t00:14.3 0280: 8086:a0f0 (rev 20)\n\t00:15.0 0c80: 8086:a0e8 (rev 20)\n\t00:15.1 0c80: 8086:a0e9 (rev 20)\n\t00:16.0 0780: 8086:a0e0 (rev 20)\n\t00:17.0 0106: 8086:a0d3 (rev 20)\n\t00:1d.0 0604: 8086:a0b1 (rev 20)\n\t00:1f.0 0601: 8086:a082 (rev 20)\n\t00:1f.3 0403: 8086:a0c8 (rev 20)\n\t00:1f.4 0c05: 8086:a0a3 (rev 20)\n\t00:1f.5 0c80: 8086:a0a4 (rev 20)\n\t01:00.0 0108: 126f:2263 (rev 03)\n\t58:00.0 0200: 8086:15f2 (rev 03)\n\t\n \n\t#define WAKE_VECTOR_32 0x40CD000CUL\n\t#define WAKE_VECTOR_64 0x40CD0018UL\n\t\n \n\t#define RESET_REGISTER_ADDRESS 0xCF9UL\n\t#define RESET_REGISTER_SPACE_ID SPACE_SYSTEM_IO\n\t#define RESET_REGISTER_VALUE 0x6U\n\t\n \n\t#define PM1A_EVT_SPACE_ID SPACE_SYSTEM_IO\n\t#define PM1A_EVT_BIT_WIDTH 0x20U\n\t#define PM1A_EVT_BIT_OFFSET 0x0U\n\t#define PM1A_EVT_ADDRESS 0x1800UL\n\t#define PM1A_EVT_ACCESS_SIZE 0x2U\n\t#define PM1B_EVT_SPACE_ID SPACE_SYSTEM_IO\n\t#define PM1B_EVT_BIT_WIDTH 0x0U\n\t#define PM1B_EVT_BIT_OFFSET 0x0U\n\t#define PM1B_EVT_ADDRESS 0x0UL\n\t#define PM1B_EVT_ACCESS_SIZE 0x2U\n\t#define PM1A_CNT_SPACE_ID SPACE_SYSTEM_IO\n\t#define PM1A_CNT_BIT_WIDTH 0x10U\n\t#define PM1A_CNT_BIT_OFFSET 0x0U\n\t#define PM1A_CNT_ADDRESS 0x1804UL\n\t#define PM1A_CNT_ACCESS_SIZE 0x2U\n\t#define PM1B_CNT_SPACE_ID SPACE_SYSTEM_IO\n\t#define PM1B_CNT_BIT_WIDTH 0x0U\n\t#define PM1B_CNT_BIT_OFFSET 0x0U\n\t#define PM1B_CNT_ADDRESS 0x0UL\n\t#define PM1B_CNT_ACCESS_SIZE 0x2U\n\t\n \n\t#define S3_PKG_VAL_PM1A 0x5U\n\t#define S3_PKG_VAL_PM1B 0U\n\t#define S3_PKG_RESERVED 0x0U\n\t\n \n\t#define S5_PKG_VAL_PM1A 0x7U\n\t#define S5_PKG_VAL_PM1B 0U\n\t#define S5_PKG_RESERVED 0x0U\n\t\n \n\t#define DRHD_COUNT 4U\n\n\t#define DRHD0_DEV_CNT 0x1U\n\t#define DRHD0_SEGMENT 0x0U\n\t#define DRHD0_FLAGS 0x0U\n\t#define DRHD0_REG_BASE 0xFED90000UL\n\t#define DRHD0_IGNORE true\n\t#define DRHD0_DEVSCOPE0_TYPE 0x1U\n\t#define DRHD0_DEVSCOPE0_ID 0x0U\n\t#define DRHD0_DEVSCOPE0_BUS 0x0U\n\t#define DRHD0_DEVSCOPE0_PATH 0x10U\n\n\t#define DRHD1_DEV_CNT 0x1U\n\t#define DRHD1_SEGMENT 0x0U\n\t#define DRHD1_FLAGS 0x0U\n\t#define DRHD1_REG_BASE 0xFED85000UL\n\t#define DRHD1_IGNORE false\n\t#define DRHD1_DEVSCOPE0_TYPE 0x2U\n\t#define DRHD1_DEVSCOPE0_ID 0x0U\n\t#define DRHD1_DEVSCOPE0_BUS 0x0U\n\t#define DRHD1_DEVSCOPE0_PATH 0x38U\n\n\t#define DRHD2_DEV_CNT 0x1U\n\t#define DRHD2_SEGMENT 0x0U\n\t#define DRHD2_FLAGS 0x0U\n\t#define DRHD2_REG_BASE 0xFED86000UL\n\t#define DRHD2_IGNORE false\n\t#define DRHD2_DEVSCOPE0_TYPE 0x2U\n\t#define DRHD2_DEVSCOPE0_ID 0x0U\n\t#define DRHD2_DEVSCOPE0_BUS 0x0U\n\t#define DRHD2_DEVSCOPE0_PATH 0x3aU\n\n\t#define DRHD3_DEV_CNT 0x2U\n\t#define DRHD3_SEGMENT 0x0U\n\t#define DRHD3_FLAGS 0x1U\n\t#define DRHD3_REG_BASE 0xFED91000UL\n\t#define DRHD3_IGNORE false\n\t#define DRHD3_DEVSCOPE0_TYPE 0x3U\n\t#define DRHD3_DEVSCOPE0_ID 0x2U\n\t#define DRHD3_DEVSCOPE0_BUS 0x0U\n\t#define DRHD3_DEVSCOPE0_PATH 0xf7U\n\t#define DRHD3_DEVSCOPE1_TYPE 0x4U\n\t#define DRHD3_DEVSCOPE1_ID 0x0U\n\t#define DRHD3_DEVSCOPE1_BUS 0x0U\n\t#define DRHD3_DEVSCOPE1_PATH 0xf6U\n\n\t\n \n\t\"11th Gen Intel(R) Core(TM) i5-1135G7 @ 2.40GHz\"\n\t\n \n\t{{SPACE_FFixedHW, 0x00U, 0x00U, 0x00U, 0x00UL}, 0x01U, 0x01U, 0x00U},\t/* C1 */\n\t{{SPACE_SYSTEM_IO, 0x08U, 0x00U, 0x00U, 0x1816UL}, 0x02U, 0xFDU, 0x00U},\t/* C2 */\n\t{{SPACE_SYSTEM_IO, 0x08U, 0x00U, 0x00U, 0x1819UL}, 0x03U, 0x418U, 0x00U},\t/* C3 */\n\t\n \n\t{0x961UL, 0x00UL, 0x0AUL, 0x0AUL, 0x002A00UL, 0x002A00UL},\t/* P0 */\n\t{0x960UL, 0x00UL, 0x0AUL, 0x0AUL, 0x001800UL, 0x001800UL},\t/* P1 */\n\t{0x8FCUL, 0x00UL, 0x0AUL, 0x0AUL, 0x001700UL, 0x001700UL},\t/* P2 */\n\t{0x834UL, 0x00UL, 0x0AUL, 0x0AUL, 0x001500UL, 0x001500UL},\t/* P3 */\n\t{0x7D0UL, 0x00UL, 0x0AUL, 0x0AUL, 0x001400UL, 0x001400UL},\t/* P4 */\n\t{0x708UL, 0x00UL, 0x0AUL, 0x0AUL, 0x001200UL, 0x001200UL},\t/* P5 */\n\t{0x6A4UL, 0x00UL, 0x0AUL, 0x0AUL, 0x001100UL, 0x001100UL},\t/* P6 */\n\t{0x5DCUL, 0x00UL, 0x0AUL, 0x0AUL, 0x000F00UL, 0x000F00UL},\t/* P7 */\n\t{0x578UL, 0x00UL, 0x0AUL, 0x0AUL, 0x000E00UL, 0x000E00UL},\t/* P8 */\n\t{0x514UL, 0x00UL, 0x0AUL, 0x0AUL, 0x000D00UL, 0x000D00UL},\t/* P9 */\n\t{0x44CUL, 0x00UL, 0x0AUL, 0x0AUL, 0x000B00UL, 0x000B00UL},\t/* P10 */\n\t{0x384UL, 0x00UL, 0x0AUL, 0x0AUL, 0x000900UL, 0x000900UL},\t/* P11 */\n\t{0x320UL, 0x00UL, 0x0AUL, 0x0AUL, 0x000800UL, 0x000800UL},\t/* P12 */\n\t{0x2BCUL, 0x00UL, 0x0AUL, 0x0AUL, 0x000700UL, 0x000700UL},\t/* P13 */\n\t{0x1F4UL, 0x00UL, 0x0AUL, 0x0AUL, 0x000500UL, 0x000500UL},\t/* P14 */\n\t{0x190UL, 0x00UL, 0x0AUL, 0x0AUL, 0x000400UL, 0x000400UL},\t/* P15 */\n\t\n \n\t/* PCI mmcfg base of MCFG */\n\t#define DEFAULT_PCI_MMCFG_BASE 0xc0000000UL\n\t\n \n\tTPM2\n\t\n \n\trdt resources supported: L2\n\trdt resource clos max: 8\n\trdt resource mask max: '0xfffff'\n\t\n \n\t00000000-00000fff : Reserved\n\t00001000-0009efff : System RAM\n\t0009f000-000fffff : Reserved\n\t 000a0000-000bffff : PCI Bus 0000:00\n\t 00000000-00000000 : PCI Bus 0000:00\n\t 00000000-00000000 : PCI Bus 0000:00\n\t 00000000-00000000 : PCI Bus 0000:00\n\t 00000000-00000000 : PCI Bus 0000:00\n\t 000e0000-000fffff : PCI Bus 0000:00\n\t 000f0000-000fffff : System ROM\n\t00100000-2ed24fff : System RAM\n\t2ed25000-2ed25fff : Reserved\n\t2ed26000-33a96fff : System RAM\n\t33a97000-33a97fff : Reserved\n\t33a98000-3812cfff : System RAM\n\t3812d000-40b47fff : Reserved\n\t40b48000-40c13fff : ACPI Tables\n\t40c14000-40cd3fff : ACPI Non-volatile Storage\n\t40cd4000-417fefff : Reserved\n\t417ff000-417fffff : System RAM\n\t41800000-47ffffff : Reserved\n\t48e00000-4f7fffff : Reserved\n\t 4b800000-4f7fffff : Graphics Stolen Memory\n\t4f800000-bfffffff : PCI Bus 0000:00\n\t 4f800000-4f800fff : 0000:00:1f.5\n\t 50000000-5c1fffff : PCI Bus 0000:2d\n\t 5e000000-6a1fffff : PCI Bus 0000:02\n\t 6a200000-6a3fffff : PCI Bus 0000:58\n\t 6a200000-6a2fffff : 0000:58:00.0\n\t 6a200000-6a2fffff : igc\n\t 6a300000-6a303fff : 0000:58:00.0\n\t 6a300000-6a303fff : igc\n\t 6a400000-6a4fffff : PCI Bus 0000:01\n\t 6a400000-6a403fff : 0000:01:00.0\n\t 6a400000-6a403fff : nvme\n\t 6a500000-6a501fff : 0000:00:17.0\n\t 6a500000-6a501fff : ahci\n\t 6a502000-6a5027ff : 0000:00:17.0\n\t 6a502000-6a5027ff : ahci\n\t 6a503000-6a5030ff : 0000:00:17.0\n\t 6a503000-6a5030ff : ahci\n\tc0000000-cfffffff : PCI MMCONFIG 0000 [bus 00-ff]\n\t c0000000-cfffffff : Reserved\n\tfd000000-fd68ffff : pnp 00:05\n\tfd690000-fd69ffff : INT34C5:00\n\t fd690000-fd69ffff : INT34C5:00 INT34C5:00\n\tfd6a0000-fd6affff : INT34C5:00\n\t fd6a0000-fd6affff : INT34C5:00 INT34C5:00\n\tfd6b0000-fd6cffff : pnp 00:05\n\tfd6d0000-fd6dffff : INT34C5:00\n\t fd6d0000-fd6dffff : INT34C5:00 INT34C5:00\n\tfd6e0000-fd6effff : INT34C5:00\n\t fd6e0000-fd6effff : INT34C5:00 INT34C5:00\n\tfd6f0000-fdffffff : pnp 00:05\n\tfe000000-fe010fff : Reserved\n\tfe04c000-fe04ffff : pnp 00:05\n\tfe050000-fe0affff : pnp 00:05\n\tfe0d0000-fe0fffff : pnp 00:05\n\tfe200000-fe7fffff : pnp 00:05\n\tfec00000-fec00fff : Reserved\n\t fec00000-fec003ff : IOAPIC 0\n\tfed00000-fed00fff : Reserved\n\t fed00000-fed003ff : HPET 0\n\t fed00000-fed003ff : PNP0103:00\n\tfed20000-fed7ffff : Reserved\n\t fed40000-fed44fff : MSFT0101:00\n\t fed40000-fed44fff : MSFT0101:00\n\tfed85000-fed85fff : dmar1\n\tfed86000-fed86fff : dmar2\n\tfed90000-fed90fff : dmar0\n\tfed91000-fed91fff : dmar3\n\tfeda0000-feda0fff : pnp 00:04\n\tfeda1000-feda1fff : pnp 00:04\n\tfedc0000-fedc7fff : pnp 00:04\n\tfee00000-fee00fff : Local APIC\n\t fee00000-fee00fff : Reserved\n\tff000000-ffffffff : Reserved\n\t ff000000-ffffffff : pnp 00:05\n\t100000000-4b07fffff : System RAM\n\t 426e00000-427e02666 : Kernel code\n\t 428000000-428a40fff : Kernel rodata\n\t 428c00000-428f6e27f : Kernel data\n\t 429268000-4297fffff : Kernel bss\n\t4b0800000-4b3ffffff : RAM buffer\n\t4000000000-7fffffffff : PCI Bus 0000:00\n\t 4000000000-400fffffff : 0000:00:02.0\n\t 4010000000-4016ffffff : 0000:00:02.0\n\t 4017000000-4017000fff : 0000:00:15.0\n\t 4017000000-40170001ff : lpss_dev\n\t 4017000000-40170001ff : i2c_designware.0 lpss_dev\n\t 4017000200-40170002ff : lpss_priv\n\t 4017000800-4017000fff : idma64.0\n\t 4017000800-4017000fff : idma64.0 idma64.0\n\t 4017001000-4017001fff : 0000:00:15.1\n\t 4017001000-40170011ff : lpss_dev\n\t 4017001000-40170011ff : i2c_designware.1 lpss_dev\n\t 4017001200-40170012ff : lpss_priv\n\t 4017001800-4017001fff : idma64.1\n\t 4017001800-4017001fff : idma64.1 idma64.1\n\t 4020000000-40ffffffff : 0000:00:02.0\n\t 6000000000-601bffffff : PCI Bus 0000:2d\n\t 6020000000-603bffffff : PCI Bus 0000:02\n\t 603c000000-603cffffff : 0000:00:02.0\n\t 603d000000-603d0fffff : 0000:00:1f.3\n\t 603d000000-603d0fffff : ICH HD audio\n\t 603d100000-603d13ffff : 0000:00:0d.3\n\t 603d100000-603d13ffff : thunderbolt\n\t 603d140000-603d17ffff : 0000:00:0d.2\n\t 603d140000-603d17ffff : thunderbolt\n\t 603d180000-603d18ffff : 0000:00:14.0\n\t 603d180000-603d18ffff : xhci-hcd\n\t 603d190000-603d19ffff : 0000:00:0d.0\n\t 603d190000-603d19ffff : xhci-hcd\n\t 603d1a0000-603d1a3fff : 0000:00:1f.3\n\t 603d1a0000-603d1a3fff : ICH HD audio\n\t 603d1a4000-603d1a7fff : 0000:00:14.3\n\t 603d1a4000-603d1a7fff : iwlwifi\n\t 603d1a8000-603d1abfff : 0000:00:14.2\n\t 603d1ac000-603d1ac0ff : 0000:00:1f.4\n\t 603d1ad000-603d1adfff : 0000:00:16.0\n\t 603d1ad000-603d1adfff : mei_me\n\t 603d1b0000-603d1b0fff : 0000:00:14.2\n\t 603d1b1000-603d1b1fff : 0000:00:0d.3\n\t 603d1b2000-603d1b2fff : 0000:00:0d.2\n\t 603d1b3000-603d1b3fff : 0000:00:08.0\n\t\n \n\t/dev/nvme0n1p2: TYPE=\"ext4\"\n\t/dev/sda3: TYPE=\"ext4\"\n\t\n \n\tseri:/dev/ttyS0 type:portio base:0x3F8 irq:4\n\t\n \n\t3, 5, 6, 7, 10, 11, 12, 13, 15\n\t\n \n\t16003752 kB\n\t\n \n\t0, 1, 2, 3\n\t\n \n\t16\n\t\n \n \n 0x6\n 0x8c\n Reserved\n 0x0\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n 0x1b\n 39\n 48\n \n \n \n \n 0\n 0x0\n 0x0\n 0x6\n 0x8c\n 0x1\n Reserved\n 0x0\n \n \n \n \n 1\n 0x2\n 0x2\n 0x6\n 0x8c\n 0x1\n Reserved\n 0x0\n \n \n \n \n 2\n 0x4\n 0x4\n 0x6\n 0x8c\n 0x1\n Reserved\n 0x0\n \n \n \n \n 3\n 0x6\n 0x6\n 0x6\n 0x8c\n 0x1\n Reserved\n 0x0\n \n \n \n \n \n \n 49152\n 64\n 12\n 64\n 1\n 1\n 0\n 0\n 0\n 0\n \n 0x0\n \n \n \n 32768\n 64\n 8\n 64\n 1\n 1\n 0\n 0\n 0\n 0\n \n 0x0\n \n \n \n 49152\n 64\n 12\n 64\n 1\n 1\n 0\n 0\n 0\n 0\n \n 0x2\n \n \n \n 32768\n 64\n 8\n 64\n 1\n 1\n 0\n 0\n 0\n 0\n \n 0x2\n \n \n \n 49152\n 64\n 12\n 64\n 1\n 1\n 0\n 0\n 0\n 0\n \n 0x4\n \n \n \n 32768\n 64\n 8\n 64\n 1\n 1\n 0\n 0\n 0\n 0\n \n 0x4\n \n \n \n 49152\n 64\n 12\n 64\n 1\n 1\n 0\n 0\n 0\n 0\n \n 0x6\n \n \n \n 32768\n 64\n 8\n 64\n 1\n 1\n 0\n 0\n 0\n 0\n \n 0x6\n \n \n \n 1310720\n 64\n 20\n 1024\n 1\n 1\n 0\n 0\n 0\n 0\n \n 0x0\n \n \n 20\n 8\n \n \n \n \n 1310720\n 64\n 20\n 1024\n 1\n 1\n 0\n 0\n 0\n 0\n \n 0x2\n \n \n 20\n 8\n \n \n \n \n 1310720\n 64\n 20\n 1024\n 1\n 1\n 0\n 0\n 0\n 0\n \n 0x4\n \n \n 20\n 8\n \n \n \n \n 1310720\n 64\n 20\n 1024\n 1\n 1\n 0\n 0\n 0\n 0\n \n 0x6\n \n \n 20\n 8\n \n \n \n \n 8388608\n 64\n 8\n 16384\n 1\n 1\n 0\n 0\n 0\n 1\n \n 0x0\n 0x2\n 0x4\n 0x6\n \n \n \n \n \n \n \n \n \n \n \n 0xfec00000\n 0x0\n 120\n \n \n \n \n \\AMW0\n 0\n 5b821a5c414d5730085f4849440d504e503043313400085f55494400\n \n \n \\CHUB\n 5b82165c43485542085f53544100085f4849440c25d4339b\n \n n\n n\n n\n \n \n \n \\PSM_\n 0\n 5b8242055c50534d5f085f53544100085f4849440c25d43420085f55494400085f535452112f0a2c50006f007700650072002000530068006100720069006e00670020004d0061006e0061006700650072000000\n \n n\n n\n n\n \n \n \n \\_SB_\n \n 0x8086\n 0x9a14\n 0x8086\n 0x3002\n 0x060000\n \\_SB_.PC00\n PNP0A03\n 0\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \\_SB_.PC00.CLP0\n INT3472\n 0\n 5b824b065c2f035f53425f50433030434c5030085f53544100085f4849440d494e543334373200085f4349440d494e543334373200085f55494400085f41445200085f43525311260a238e1e00010001020000010600801a06004d005c5f53422e504330302e49324333007900\n \n n\n n\n n\n \n \n \\_SB_.PC00.I2C3\n \n \n \\_SB_.PC00.PEG1\n 5b82205c2f035f53425f5043303050454731085f53544100085f4144520c00000100\n \n n\n n\n n\n \n \n \n \n \n \n \n \n \n \n \\_SB_.PC00.PEG1.PEGP\n 5b821a5c2f045f53425f504330305045473150454750085f41445200\n \n \n \n \\_SB_.PC00.PEG2\n 5b82205c2f035f53425f5043303050454732085f53544100085f4144520c01000100\n \n n\n n\n n\n \n \n \n \n \n \n \n \n \n \n \\_SB_.PC00.PEG2.PEGP\n 5b821a5c2f045f53425f504330305045473250454750085f41445200\n \n \n \n \\_SB_.PC00.PEG3\n 5b82205c2f035f53425f5043303050454733085f53544100085f4144520c02000100\n \n n\n n\n n\n \n \n \n \n \n \n \n \n \n \n \\_SB_.PC00.PEG3.PEGP\n 5b821a5c2f045f53425f504330305045473350454750085f41445200\n \n \n \n 0x8086\n 0x9a49\n 0x8086\n 0x3002\n 0x030000\n \\_SB_.PC00.GFX0\n 5b821a5c2f035f53425f5043303047465830085f4144520c00000200\n \n \n \n \n \n \n \n 1\n \n \n \n \n \n \n \n 7\n 7\n 0\n \n 0x0\n 0x2\n 0x1\n \n 1\n 0x9a49\n 0x553\n \n \n \\_SB_.PC00.GFX0.DD06\n 5b821b5c2f045f53425f504330304746583044443036085f4144520a06\n \n \n \\_SB_.PC00.GFX0.DD07\n 5b821b5c2f045f53425f504330304746583044443037085f4144520a07\n \n \n \\_SB_.PC00.GFX0.DD08\n 5b821b5c2f045f53425f504330304746583044443038085f4144520a08\n \n \n \\_SB_.PC00.GFX0.DD09\n 5b821b5c2f045f53425f504330304746583044443039085f4144520a09\n \n \n \\_SB_.PC00.GFX0.DD0A\n 5b821b5c2f045f53425f504330304746583044443041085f4144520a0a\n \n \n \\_SB_.PC00.GFX0.DD0B\n 5b821b5c2f045f53425f504330304746583044443042085f4144520a0b\n \n \n \\_SB_.PC00.GFX0.DD0C\n 5b821b5c2f045f53425f504330304746583044443043085f4144520a0c\n \n \n \\_SB_.PC00.GFX0.DD0D\n 5b821b5c2f045f53425f504330304746583044443044085f4144520a0d\n \n \n \\_SB_.PC00.GFX0.DD0E\n 5b821b5c2f045f53425f504330304746583044443045085f4144520a0e\n \n \n \\_SB_.PC00.GFX0.DD0F\n 5b821b5c2f045f53425f504330304746583044443046085f4144520a0f\n \n \n \\_SB_.PC00.GFX0.DD1F\n 5b821b5c2f045f53425f504330304746583044443146085f4144520a1f\n \n \n \\_SB_.PC00.GFX0.DD01\n 5b821c5c2f045f53425f504330304746583044443031085f4144520b0003\n \n \n \\_SB_.PC00.GFX0.DD02\n 5b821c5c2f045f53425f504330304746583044443032085f4144520b0103\n \n \n \\_SB_.PC00.GFX0.DD03\n 5b821c5c2f045f53425f504330304746583044443033085f4144520b0203\n \n \n \\_SB_.PC00.GFX0.DD04\n 5b821c5c2f045f53425f504330304746583044443034085f4144520b0303\n \n \n \\_SB_.PC00.GFX0.DD05\n 5b821c5c2f045f53425f504330304746583044443035085f4144520b0403\n \n \n \\_SB_.PC00.GFX0.DD2F\n 5b821b5c2f045f53425f504330304746583044443246085f4144520a1f\n \n \n \n \\_SB_.PC00.TCPU\n 5b821a5c2f035f53425f5043303054435055085f4144520c00000400\n \n \n \\_SB_.PC00.IPU0\n 5b821a5c2f035f53425f5043303049505530085f4144520c00000500\n \n \n 0x8086\n 0x9a09\n 0x060400\n \\_SB_.PC00.PEG0\n 5b82215c2f035f53425f5043303050454730085f5354410a0f085f4144520c00000600\n \n y\n y\n y\n \n \n \n \n \n 1\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n 0x126f\n 0x2263\n 0x126f\n 0x2263\n 0x010802\n \n \n \n \n 8\n \n \n \n \n \n \n 16\n 1\n 0x1000000\n 1\n 0x0\n \n \n \n \n \n \n \n \n \\_SB_.PC00.PEG0.PEGP\n 5b8241065c2f045f53425f504330305045473050454750085f414452005b8050434358020a090a045b8115504343580150495858085343435808424343580814235041484308a01a934243435801a01293534343580a06a009935049585801a401a400\n \\_SB_.PC00.PEG0.PEGP.MINI\n \n \\_SB_.PC00.PEG0.PEGP.MINI\n 5b824f045c2f055f53425f5043303050454730504547504d494e49155c2f055f53425f50433030504547305045475050414843080014135f53544108a00850414843a40a0fa103a400085f4144520bffff\n \n n\n n\n n\n \n \\_SB_.PC00.PEG0.PEGP\n \n \n \n \n 0x8086\n 0x9a25\n 0x060400\n \\_SB_.PC00.TRP1\n 5b82215c2f035f53425f5043303054525031085f5354410a0f085f4144520c00000700\n \n y\n y\n y\n \n \n \n \n \n \n 1\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \\_SB_.PC00.TRP1.PXSX\n 5b821a5c2f045f53425f504330305452503150585358085f41445200\n \n \n \n \\_SB_.PC00.TRP0\n 5b82205c2f035f53425f5043303054525030085f53544100085f4144520c01000700\n \n n\n n\n n\n \n \n \n \n \n \n \n \n \n \n \\_SB_.PC00.TRP0.PXSX\n 5b821a5c2f045f53425f504330305452503050585358085f41445200\n \n \n \n 0x8086\n 0x9a27\n 0x060400\n \\_SB_.PC00.TRP2\n 5b82215c2f035f53425f5043303054525032085f5354410a0f085f4144520c02000700\n \n y\n y\n y\n \n \n \n \n \n \n 1\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \\_SB_.PC00.TRP2.PXSX\n 5b821a5c2f045f53425f504330305452503250585358085f41445200\n \n \n \n \\_SB_.PC00.TRP3\n 5b82205c2f035f53425f5043303054525033085f53544100085f4144520c03000700\n \n n\n n\n n\n \n \n \n \n \n \n \n \n \n \n \\_SB_.PC00.TRP3.PXSX\n 5b821a5c2f045f53425f504330305452503350585358085f41445200\n \n \n \n 0x8086\n 0x9a11\n 0x8086\n 0x3002\n 0x088000\n \\_SB_.PC00.GNA0\n 5b821a5c2f035f53425f50433030474e4130085f4144520c00000800\n \n \n \n 1\n \n \n \n \n \n \n 0x8086\n 0x9a13\n 0x0000\n 0x0000\n 0x0c0330\n \\_SB_.PC00.TXHC\n 5b824f055c2f035f53425f5043303054584843085f5354410a0f085f53545211370a34490043004c0020004e006f0072007400680020005800480043004900200063006f006e00740072006f006c006c00650072000000085f4144520c00000d00\n \n y\n y\n y\n \n \n \n \n 8\n \n \n \n \n \n \n \\_SB_.PC00.TXHC.RHUB\n 5b821a5c2f045f53425f504330305458484352485542085f41445200\n \n \\_SB_.PC00.TXHC.RHUB.HS01\n 5b821e5c2f055f53425f50433030545848435248554248533031085f41445201\n \n \n \\_SB_.PC00.TXHC.RHUB.SS01\n 5b821f5c2f055f53425f50433030545848435248554253533031085f4144520a02\n \n \n \\_SB_.PC00.TXHC.RHUB.SS02\n 5b821f5c2f055f53425f50433030545848435248554253533032085f4144520a03\n \n \n \\_SB_.PC00.TXHC.RHUB.SS03\n 5b821f5c2f055f53425f50433030545848435248554253533033085f4144520a04\n \n \n \\_SB_.PC00.TXHC.RHUB.SS04\n 5b821f5c2f055f53425f50433030545848435248554253533034085f4144520a05\n \n \n \n \n 0x8086\n 0x9a1b\n 0x2222\n 0x1111\n 0x0c0340\n \\_SB_.PC00.TDM0\n 5b824b055c2f035f53425f5043303054444d30085f5354410a0f085f53545211330a30490043004c002000540042005400200044004d0041003000200063006f006e00740072006f006c006c00650072000000085f4144520c02000d00\n \n y\n y\n y\n \n \n \n \n \n \n 1\n \n \n \n 16\n 5\n 0xfa20000\n 0\n 0x2000000\n \n \n \n 0x8086\n 0x9a1d\n 0x2222\n 0x1111\n 0x0c0340\n \\_SB_.PC00.TDM1\n 5b824b055c2f035f53425f5043303054444d31085f5354410a0f085f53545211330a30490043004c002000540042005400200044004d0041003100200063006f006e00740072006f006c006c00650072000000085f4144520c03000d00\n \n y\n y\n y\n \n \n \n \n \n \n 1\n \n \n \n 16\n 5\n 0xfa20000\n 0\n 0x2000000\n \n \n \n \\_SB_.PC00.I2C6\n 5b821a5c2f035f53425f5043303049324336085f4144520c00001000\n \n \n \\_SB_.PC00.I2C7\n 5b821a5c2f035f53425f5043303049324337085f4144520c01001000\n \n \n \\_SB_.PC00.THC0\n 5b821a5c2f035f53425f5043303054484330085f4144520c06001000\n \n \\_SB_.PC00.THC0.TLC1\n 5b82215c2f045f53425f5043303054484330544c4331085f5354410a0f085f41445201\n \n y\n y\n y\n \n \n \n \\_SB_.PC00.THC0.TLC2\n 5b82225c2f045f53425f5043303054484330544c4332085f5354410a0f085f4144520a02\n \n y\n y\n y\n \n \n \n \\_SB_.PC00.THC0.TLC3\n 5b82225c2f045f53425f5043303054484330544c4333085f5354410a0f085f4144520a03\n \n y\n y\n y\n \n \n \n \n \\_SB_.PC00.THC1\n 5b821a5c2f035f53425f5043303054484331085f4144520c07001000\n \n \\_SB_.PC00.THC1.TLC1\n 5b82215c2f045f53425f5043303054484331544c4331085f5354410a0f085f41445201\n \n y\n y\n y\n \n \n \n \\_SB_.PC00.THC1.TLC2\n 5b82225c2f045f53425f5043303054484331544c4332085f5354410a0f085f4144520a02\n \n y\n y\n y\n \n \n \n \\_SB_.PC00.THC1.TLC3\n 5b82225c2f045f53425f5043303054484331544c4333085f5354410a0f085f4144520a03\n \n y\n y\n y\n \n \n \n \n \\_SB_.PC00.UA03\n 5b821a5c2f035f53425f5043303055413033085f4144520c00001100\n \n \n \\_SB_.PC00.UA04\n 5b821a5c2f035f53425f5043303055413034085f4144520c01001100\n \n \n \\_SB_.PC00.UA05\n 5b821a5c2f035f53425f5043303055413035085f4144520c02001100\n \n \n \\_SB_.PC00.UA06\n 5b821a5c2f035f53425f5043303055413036085f4144520c03001100\n \n \n \\_SB_.PC00.ISHD\n 5b821a5c2f035f53425f5043303049534844085f4144520c00001200\n \n \n \\_SB_.PC00.SPI2\n 5b821a5c2f035f53425f5043303053504932085f4144520c06001200\n \n \\_SB_.PC00.SPI2.FPNT\n 5b82295c2f045f53425f504330305350493246504e54085f53544100085f4849440d44554d593030303000\n \n n\n n\n n\n \n \n \n \n \\_SB_.PC00.SPI3\n 5b821a5c2f035f53425f5043303053504933085f4144520c00001300\n \n \n \\_SB_.PC00.SPI4\n 5b821a5c2f035f53425f5043303053504934085f4144520c01001300\n \n \n \\_SB_.PC00.SPI5\n 5b821a5c2f035f53425f5043303053504935085f4144520c02001300\n \n \n \\_SB_.PC00.SPI6\n 5b821a5c2f035f53425f5043303053504936085f4144520c03001300\n \n \n 0x8086\n 0xa0ed\n 0x8086\n 0x3002\n 0x0c0330\n \\_SB_.PC00.XHCI\n 5b821a5c2f035f53425f5043303058484349085f4144520c00001400\n \n \n \n \n 8\n \n \n \n \n \n \n \\_SB_.PC00.XHCI.RHUB\n 5b821a5c2f045f53425f504330305848434952485542085f41445200\n \n \\_SB_.PC00.XHCI.RHUB.HS01\n 5b821e5c2f055f53425f50433030584843495248554248533031085f41445201\n \n \n \\_SB_.PC00.XHCI.RHUB.HS02\n 5b821f5c2f055f53425f50433030584843495248554248533032085f4144520a02\n \n \n \\_SB_.PC00.XHCI.RHUB.HS03\n 5b821f5c2f055f53425f50433030584843495248554248533033085f4144520a03\n \n \n \\_SB_.PC00.XHCI.RHUB.HS04\n 5b821f5c2f055f53425f50433030584843495248554248533034085f4144520a04\n \n \\_SB_.PC00.XHCI.RHUB.HS04.PRT1\n 5b82225c2f065f53425f5043303058484349524855424853303450525431085f41445201\n \n \n \\_SB_.PC00.XHCI.RHUB.HS04.PRT2\n 5b82235c2f065f53425f5043303058484349524855424853303450525432085f4144520a02\n \n \n \n \\_SB_.PC00.XHCI.RHUB.HS05\n 5b821f5c2f055f53425f50433030584843495248554248533035085f4144520a05\n \n \n \\_SB_.PC00.XHCI.RHUB.HS06\n 5b821f5c2f055f53425f50433030584843495248554248533036085f4144520a06\n \n \n \\_SB_.PC00.XHCI.RHUB.HS07\n 5b821f5c2f055f53425f50433030584843495248554248533037085f4144520a07\n \n \n \\_SB_.PC00.XHCI.RHUB.HS08\n 5b821f5c2f055f53425f50433030584843495248554248533038085f4144520a08\n \n \n \\_SB_.PC00.XHCI.RHUB.HS09\n 5b821f5c2f055f53425f50433030584843495248554248533039085f4144520a09\n \n \n \\_SB_.PC00.XHCI.RHUB.HS10\n 5b821f5c2f055f53425f50433030584843495248554248533130085f4144520a0a\n \n \n \\_SB_.PC00.XHCI.RHUB.HS11\n 5b821f5c2f055f53425f50433030584843495248554248533131085f4144520a0b\n \n \n \\_SB_.PC00.XHCI.RHUB.HS12\n 5b821f5c2f055f53425f50433030584843495248554248533132085f4144520a0c\n \n \n \\_SB_.PC00.XHCI.RHUB.SS01\n 5b821f5c2f055f53425f50433030584843495248554253533031085f4144520a0d\n \n \n \\_SB_.PC00.XHCI.RHUB.SS02\n 5b821f5c2f055f53425f50433030584843495248554253533032085f4144520a0e\n \n \n \\_SB_.PC00.XHCI.RHUB.SS03\n 5b821f5c2f055f53425f50433030584843495248554253533033085f4144520a0f\n \n \n \\_SB_.PC00.XHCI.RHUB.SS04\n 5b821f5c2f055f53425f50433030584843495248554253533034085f4144520a10\n \n \n \\_SB_.PC00.XHCI.RHUB.SS05\n 5b821f5c2f055f53425f50433030584843495248554253533035085f4144520a11\n \n \n \\_SB_.PC00.XHCI.RHUB.SS06\n 5b821f5c2f055f53425f50433030584843495248554253533036085f4144520a12\n \n \n \\_SB_.PC00.XHCI.RHUB.USR1\n 5b821f5c2f055f53425f50433030584843495248554255535231085f4144520a0b\n \n \n \\_SB_.PC00.XHCI.RHUB.USR2\n 5b821f5c2f055f53425f50433030584843495248554255535232085f4144520a0c\n \n \n \n \n \\_SB_.PC00.XDCI\n 5b8244055c2f035f53425f5043303058444349085f53545211330a30490043004c00200050004300480020005800440043004900200063006f006e00740072006f006c006c00650072000000085f4144520c01001400\n \n \n 0x8086\n 0xa0ef\n 0x0000\n 0x0000\n 0x050000\n \n \n \n \n \n 0x8086\n 0xa0f0\n 0x8086\n 0x0074\n 0x028000\n \\_SB_.PC00.CNVW\n 5b821a5c2f035f53425f50433030434e5657085f4144520c03001400\n \n \n \n \n 1\n \n \n \n \n 16\n 1\n 0x10000000\n 1\n 0x0\n \n \n \n \n \n 0x8086\n 0xa0e8\n 0x8086\n 0x3002\n 0x0c8000\n \\_SB_.PC00.I2C0\n 5b821a5c2f035f53425f5043303049324330085f4144520c00001500\n \n \n \n \n \\_SB_.PC00.I2C2.TPL1\n \\_SB_.PC00.I2C0.TPL1\n \\_SB_.PC00.I2C3.TPD0\n \\_SB_.PC00.I2C1.TPD0\n \\_SB_.PC00.I2C2.TPD0\n \\_SB_.PC00.I2C1.TPL1\n \\_SB_.PC00.I2C0.TPD0\n \\_SB_.PC00.I2C1.UCM1\n \\_SB_.PC00.I2C3.TPL1\n \n \\_SB_.PC00.I2C0.TPD0\n PNP0C50\n 5b824c065c2f045f53425f504330304932433054504430085f53544100085f4849440d504e503043353000085f4349440d504e503043353000085f435253112f0a2c8e1e00010001020000010600801a060000005c5f53422e504330302e49324330008906001501760000007900\n \n n\n n\n n\n \n \n \n \\_SB_.PC00.I2C0\n \n \n \\_SB_.PC00.I2C0.TPL1\n PNP0C50\n 5b824d065c2f045f53425f504330304932433054504c31085f53544100085f4849440d585858583030303000085f4349440d504e503043353000085f435253112f0a2c8e1e00010001020000010600801a060000005c5f53422e504330302e49324330008906000101760000007900\n \n n\n n\n n\n \n \n \n \\_SB_.PC00.I2C0\n \n \n \n 0x8086\n 0xa0e9\n 0x8086\n 0x3002\n 0x0c8000\n \\_SB_.PC00.I2C1\n 5b821a5c2f035f53425f5043303049324331085f4144520c01001500\n \n \n \n \n \\_SB_.PC00.FLM0\n \n \\_SB_.PC00.I2C1.TPD0\n PNP0C50\n 5b824c065c2f045f53425f504330304932433154504430085f53544100085f4849440d504e503043353000085f4349440d504e503043353000085f435253112f0a2c8e1e00010001020000010600801a060000005c5f53422e504330302e49324330008906001501760000007900\n \n n\n n\n n\n \n \n \n \\_SB_.PC00.I2C0\n \n \n \\_SB_.PC00.I2C1.TPL1\n PNP0C50\n 5b824d065c2f045f53425f504330304932433154504c31085f53544100085f4849440d585858583030303000085f4349440d504e503043353000085f435253112f0a2c8e1e00010001020000010600801a060000005c5f53422e504330302e49324330008906000101760000007900\n \n n\n n\n n\n \n \n \n \\_SB_.PC00.I2C0\n \n \n \\_SB_.PC00.I2C1.UCM1\n 0\n 5b8247085c2f045f53425f504330304932433155434d31085f5354410a0f085f4849440d494e543335313500085f55494400085f4352531141050a4d8e1e00010001020000010600801a060021005c5f53422e504330302e49324330008e1e00010001020000010600801a060025005c5f53422e504330302e49324330008906000701760000007900\n \n y\n y\n y\n \n \n \n \n \\_SB_.PC00.I2C0\n \n \n \n \\_SB_.PC00.I2C2\n 5b821a5c2f035f53425f5043303049324332085f4144520c02001500\n \\_SB_.PC00.I2C2.CAM0\n \\_SB_.PC00.LNK2\n \\_SB_.PC00.FLM1\n \\_SB_.PC00.I2C2.PMIC\n \\_SB_.PC00.FLM2\n \n \\_SB_.PC00.I2C2.CAM0\n INT3471\n 0\n 5b8247115c2f045f53425f504330304932433243414d30085f53544100085f4849440d494e543334373100085f4349440d494e543334373100085f5549440d3000085f41445200085f435253114c0c0ac88e1e00010001020000010600801a060010005c5f53422e504330302e49324332008e1e00010001020000010600801a06000e005c5f53422e504330302e49324332008e1e00010001020000010600801a060050005c5f53422e504330302e49324332008e1e00010001020000010600801a060051005c5f53422e504330302e49324332008e1e00010001020000010600801a060052005c5f53422e504330302e49324332008e1e00010001020000010600801a060053005c5f53422e504330302e49324332007900\n \n n\n n\n n\n \n \n \n \n \n \n \n \\_SB_.PC00.I2C2\n \n \n \\_SB_.PC00.I2C2.PMIC\n INT3472\n 0\n 5b8241075c2f045f53425f5043303049324332504d4943085f53544100085f4849440d494e543334373200085f4349440d494e543334373200085f5549440d3000085f41445200085f43525311260a238e1e00010001020000010600801a06004c005c5f53422e504330302e49324332007900\n \n n\n n\n n\n \n \n \\_SB_.PC00.I2C2\n \n \n \\_SB_.PC00.I2C2.TPD0\n PNP0C50\n 5b824c065c2f045f53425f504330304932433254504430085f53544100085f4849440d504e503043353000085f4349440d504e503043353000085f435253112f0a2c8e1e00010001020000010600801a060000005c5f53422e504330302e49324330008906001501760000007900\n \n n\n n\n n\n \n \n \n \\_SB_.PC00.I2C0\n \n \n \\_SB_.PC00.I2C2.TPL1\n PNP0C50\n 5b824d065c2f045f53425f504330304932433254504c31085f53544100085f4849440d585858583030303000085f4349440d504e503043353000085f435253112f0a2c8e1e00010001020000010600801a060000005c5f53422e504330302e49324330008906000101760000007900\n \n n\n n\n n\n \n \n \n \\_SB_.PC00.I2C0\n \n \n \n \\_SB_.PC00.I2C3\n 5b821a5c2f035f53425f5043303049324333085f4144520c03001500\n \\_SB_.PC00.LNK5\n \\_SB_.PC00.CLP0\n \\_SB_.PC00.FLM4\n \\_SB_.PC00.CLP4\n \\_SB_.PC00.LNK1\n \\_SB_.PC00.CLP1\n \\_SB_.PC00.LNK4\n \\_SB_.PC00.CLP2\n \\_SB_.PC00.CLP5\n \\_SB_.PC00.LNK3\n \\_SB_.PC00.FLM5\n \\_SB_.PC00.FLM3\n \\_SB_.PC00.CLP3\n \\_SB_.PC00.LNK0\n \n \\_SB_.PC00.I2C3.TPD0\n PNP0C50\n 5b824c065c2f045f53425f504330304932433354504430085f53544100085f4849440d504e503043353000085f4349440d504e503043353000085f435253112f0a2c8e1e00010001020000010600801a060000005c5f53422e504330302e49324330008906001501760000007900\n \n n\n n\n n\n \n \n \n \\_SB_.PC00.I2C0\n \n \n \\_SB_.PC00.I2C3.TPL1\n PNP0C50\n 5b824d065c2f045f53425f504330304932433354504c31085f53544100085f4849440d585858583030303000085f4349440d504e503043353000085f435253112f0a2c8e1e00010001020000010600801a060000005c5f53422e504330302e49324330008906000101760000007900\n \n n\n n\n n\n \n \n \n \\_SB_.PC00.I2C0\n \n \n \n 0x8086\n 0xa0e0\n 0x8086\n 0x3002\n 0x078000\n \\_SB_.PC00.HECI\n 5b821a5c2f035f53425f5043303048454349085f4144520c00001600\n \n \n \n \n 1\n \n \n \n \n \n \\_SB_.PC00.HEC3\n 5b821a5c2f035f53425f5043303048454333085f4144520c04001600\n \n \n 0x8086\n 0xa0d3\n 0x8086\n 0x3002\n 0x010601\n \\_SB_.PC00.SAT0\n 5b821a5c2f035f53425f5043303053415430085f4144520c00001700\n \n \n \n \n \n \n \n \n 1\n \n \n \n \n \\_SB_.PC00.SAT0.PRT0\n 5b821c5c2f045f53425f504330305341543050525430085f4144520bffff\n \n \n \\_SB_.PC00.SAT0.PRT1\n 5b821e5c2f045f53425f504330305341543050525431085f4144520cffff0100\n \n \n \\_SB_.PC00.SAT0.PRT2\n 5b821e5c2f045f53425f504330305341543050525432085f4144520cffff0200\n \n \n \\_SB_.PC00.SAT0.PRT3\n 5b821e5c2f045f53425f504330305341543050525433085f4144520cffff0300\n \n \n \\_SB_.PC00.SAT0.PRT4\n 5b821e5c2f045f53425f504330305341543050525434085f4144520cffff0400\n \n \n \\_SB_.PC00.SAT0.PRT5\n 5b821e5c2f045f53425f504330305341543050525435085f4144520cffff0500\n \n \n \\_SB_.PC00.SAT0.VOL0\n 5b821e5c2f045f53425f5043303053415430564f4c30085f4144520cffff8000\n \n \n \\_SB_.PC00.SAT0.VOL1\n 5b821e5c2f045f53425f5043303053415430564f4c31085f4144520cffff8100\n \n \n \\_SB_.PC00.SAT0.VOL2\n 5b821e5c2f045f53425f5043303053415430564f4c32085f4144520cffff8200\n \n \n \\_SB_.PC00.SAT0.NVM1\n 5b821e5c2f045f53425f50433030534154304e564d31085f4144520cffffc100\n \n \n \\_SB_.PC00.SAT0.NVM2\n 5b821e5c2f045f53425f50433030534154304e564d32085f4144520cffffc200\n \n \n \\_SB_.PC00.SAT0.NVM3\n 5b821e5c2f045f53425f50433030534154304e564d33085f4144520cffffc300\n \n \n \n \\_SB_.PC00.I2C4\n 5b821a5c2f035f53425f5043303049324334085f4144520c00001900\n \\_SB_.PC00.I2C4.CAM1\n \n \\_SB_.PC00.I2C4.CAM1\n INT3474\n 0\n 5b8241075c2f045f53425f504330304932433443414d31085f53544100085f4849440d494e543334373400085f4349440d494e543334373400085f5549440d3000085f41445200085f43525311260a238e1e00010001020000010600801a060036005c5f53422e504330302e49324334007900\n \n n\n n\n n\n \n \n \\_SB_.PC00.I2C4\n \n \n \n \\_SB_.PC00.I2C5\n 5b821a5c2f035f53425f5043303049324335085f4144520c01001900\n \\_SB_.PC00.I2C5.PA01\n \\_SB_.PC00.I2C5.PA04\n \\_SB_.PC00.I2C5.PA03\n \\_SB_.PC00.I2C5.PA02\n \n \\_SB_.PC00.I2C5.PA01\n 1\n 5b824c055c2f045f53425f504330304932433550413031085f53544100085f4849440d4d4348503139333000085f55494401085f43525311260a238e1e00010001020000010600801a060018005c5f53422e504330302e49324335007900\n \n n\n n\n n\n \n \n \\_SB_.PC00.I2C5\n \n \n \\_SB_.PC00.I2C5.PA02\n 2\n 5b824d055c2f045f53425f504330304932433550413032085f53544100085f4849440d4d4348503139333000085f5549440a02085f43525311260a238e1e00010001020000010600801a060011005c5f53422e504330302e49324335007900\n \n n\n n\n n\n \n \n \\_SB_.PC00.I2C5\n \n \n \\_SB_.PC00.I2C5.PA03\n 3\n 5b824d055c2f045f53425f504330304932433550413033085f53544100085f4849440d4d4348503139333000085f5549440a03085f43525311260a238e1e00010001020000010600801a06001e005c5f53422e504330302e49324335007900\n \n n\n n\n n\n \n \n \\_SB_.PC00.I2C5\n \n \n \\_SB_.PC00.I2C5.PA04\n 4\n 5b824d055c2f045f53425f504330304932433550413034085f53544100085f4849440d4d4348503139333000085f5549440a04085f43525311260a238e1e00010001020000010600801a060000005c5f53422e504330302e49324335007900\n \n n\n n\n n\n \n \n \\_SB_.PC00.I2C5\n \n \n \n \\_SB_.PC00.UA02\n 5b821a5c2f035f53425f5043303055413032085f4144520c02001900\n \n \n \\_SB_.PC00.RP17\n 5b821a5c2f035f53425f5043303052503137085f4144520c00001b00\n \n \n \n \n \n \n \n \n \n \\_SB_.PC00.RP17.PXSX\n 5b821a5c2f045f53425f504330305250313750585358085f41445200\n \n \n \n \\_SB_.PC00.RP18\n 5b821a5c2f035f53425f5043303052503138085f4144520c01001b00\n \n \n \n \n \n \n \n \n \n \\_SB_.PC00.RP18.PXSX\n 5b821a5c2f045f53425f504330305250313850585358085f41445200\n \n \n \n \\_SB_.PC00.RP19\n 5b821a5c2f035f53425f5043303052503139085f4144520c02001b00\n \n \n \n \n \n \n \n \n \n \\_SB_.PC00.RP19.PXSX\n 5b821a5c2f045f53425f504330305250313950585358085f41445200\n \n \n \n \\_SB_.PC00.RP20\n 5b821a5c2f035f53425f5043303052503230085f4144520c03001b00\n \n \n \n \n \n \n \n \n \n \\_SB_.PC00.RP20.PXSX\n 5b821a5c2f045f53425f504330305250323050585358085f41445200\n \n \n \n \\_SB_.PC00.RP21\n 5b821a5c2f035f53425f5043303052503231085f4144520c04001b00\n \n \n \n \n \n \n \n \n \n \\_SB_.PC00.RP21.PXSX\n 5b821a5c2f045f53425f504330305250323150585358085f41445200\n \n \n \n \\_SB_.PC00.RP22\n 5b821a5c2f035f53425f5043303052503232085f4144520c05001b00\n \n \n \n \n \n \n \n \n \n \\_SB_.PC00.RP22.PXSX\n 5b821a5c2f045f53425f504330305250323250585358085f41445200\n \n \n \n \\_SB_.PC00.RP23\n 5b821a5c2f035f53425f5043303052503233085f4144520c06001b00\n \n \n \n \n \n \n \n \n \n \\_SB_.PC00.RP23.PXSX\n 5b821a5c2f045f53425f504330305250323350585358085f41445200\n \n \n \n \\_SB_.PC00.RP24\n 5b821a5c2f035f53425f5043303052503234085f4144520c07001b00\n \n \n \n \n \n \n \n \n \n \\_SB_.PC00.RP24.PXSX\n 5b821a5c2f045f53425f504330305250323450585358085f41445200\n \n \n \n \\_SB_.PC00.RP01\n 5b821a5c2f035f53425f5043303052503031085f4144520c00001c00\n \n \n \n \n \n \n \n \n \n \\_SB_.PC00.RP01.PXSX\n 5b821a5c2f045f53425f504330305250303150585358085f41445200\n \n \n \n \\_SB_.PC00.RP02\n 5b821a5c2f035f53425f5043303052503032085f4144520c01001c00\n \n \n \n \n \n \n \n \n \n \\_SB_.PC00.RP02.PXSX\n 5b821a5c2f045f53425f504330305250303250585358085f41445200\n \n \n \n \\_SB_.PC00.RP03\n 5b821a5c2f035f53425f5043303052503033085f4144520c02001c00\n \n \n \n \n \n \n \n \n \n \\_SB_.PC00.RP03.PXSX\n 5b821a5c2f045f53425f504330305250303350585358085f41445200\n \n \n \n \\_SB_.PC00.RP04\n 5b821a5c2f035f53425f5043303052503034085f4144520c03001c00\n \n \n \n \n \n \n \n \n \n \\_SB_.PC00.RP04.PXSX\n 5b821a5c2f045f53425f504330305250303450585358085f41445200\n \n \n \n \\_SB_.PC00.RP05\n 5b821a5c2f035f53425f5043303052503035085f4144520c04001c00\n \n \n \n \n \n \n \n \n \n \\_SB_.PC00.RP05.PXSX\n 5b821a5c2f045f53425f504330305250303550585358085f41445200\n \n \n \n \\_SB_.PC00.RP06\n 5b821a5c2f035f53425f5043303052503036085f4144520c05001c00\n \n \n \n \n \n \n \n \n \n \\_SB_.PC00.RP06.PXSX\n 5b821a5c2f045f53425f504330305250303650585358085f41445200\n \n \n \n \\_SB_.PC00.RP07\n 5b821a5c2f035f53425f5043303052503037085f4144520c06001c00\n \n \n \n \n \n \n \n \n \n \\_SB_.PC00.RP07.PXSX\n 5b821a5c2f045f53425f504330305250303750585358085f41445200\n \n \n \n \\_SB_.PC00.RP08\n 5b821a5c2f035f53425f5043303052503038085f4144520c07001c00\n \n \n \n \n \n \n \n \n \n \\_SB_.PC00.RP08.PXSX\n 5b821a5c2f045f53425f504330305250303850585358085f41445200\n \n \n \n 0x8086\n 0xa0b1\n 0x060400\n \\_SB_.PC00.RP10\n 5b821a5c2f035f53425f5043303052503130085f4144520c00001d00\n \n \n \n \n 1\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n 0x8086\n 0x15f2\n 0x8086\n 0x3002\n 0x020000\n \n \n \n \n \n 1\n \n \n \n \n 5\n 7\n 0x30000\n 1\n 0x0\n \n \n \n \n \n \n \n \n \n \n \\_SB_.PC00.RP10.PXSX\n 5b821a5c2f045f53425f504330305250313050585358085f41445200\n \n \n \n \\_SB_.PC00.RP09\n 5b821a5c2f035f53425f5043303052503039085f4144520c01001d00\n \n \n \n \n \n \n \n \n \n \\_SB_.PC00.RP09.PXSX\n 5b821a5c2f045f53425f504330305250303950585358085f41445200\n \n \n \n \\_SB_.PC00.RP11\n 5b821a5c2f035f53425f5043303052503131085f4144520c02001d00\n \n \n \n \n \n \n \n \n \n \\_SB_.PC00.RP11.PXSX\n 5b821a5c2f045f53425f504330305250313150585358085f41445200\n \n \n \n \\_SB_.PC00.RP12\n 5b821a5c2f035f53425f5043303052503132085f4144520c03001d00\n \n \n \n \n \n \n \n \n \n \\_SB_.PC00.RP12.PXSX\n 5b821a5c2f045f53425f504330305250313250585358085f41445200\n \n \n \n \\_SB_.PC00.RP13\n 5b821a5c2f035f53425f5043303052503133085f4144520c04001d00\n \n \n \n \n \n \n \n \n \n \\_SB_.PC00.RP13.PXSX\n 5b821a5c2f045f53425f504330305250313350585358085f41445200\n \n \n \n \\_SB_.PC00.RP14\n 5b821a5c2f035f53425f5043303052503134085f4144520c05001d00\n \n \n \n \n \n \n \n \n \n \\_SB_.PC00.RP14.PXSX\n 5b821a5c2f045f53425f504330305250313450585358085f41445200\n \n \n \n \\_SB_.PC00.RP15\n 5b821a5c2f035f53425f5043303052503135085f4144520c06001d00\n \n \n \n \n \n \n \n \n \n \\_SB_.PC00.RP15.PXSX\n 5b821a5c2f045f53425f504330305250313550585358085f41445200\n \n \n \n \\_SB_.PC00.RP16\n 5b821a5c2f035f53425f5043303052503136085f4144520c07001d00\n \n \n \n \n \n \n \n \n \n \\_SB_.PC00.RP16.PXSX\n 5b821a5c2f045f53425f504330305250313650585358085f41445200\n \n \n \n \\_SB_.PC00.UA00\n 5b821a5c2f035f53425f5043303055413030085f4144520c00001e00\n \\_SB_.PC00.UA00.BTH0\n \n \\_SB_.PC00.UA00.BTH0\n 5b82400a5c2f045f53425f504330305541303042544830085f53544100085f4849440d494e543333453100085f4352531141070a6d8e2200010003023500010a0000c201002000200000c05c5f53422e504330302e55413030008c200001010100020000000000001700001900230000004d005c5f53422e47504930008c2000010001001300000000000017000019002300000000005c5f53422e47504930007900\n \n n\n n\n n\n \n \n \n \n \\_SB_.PC00.UA00\n \\_SB_.GPI0\n \n \n \n \\_SB_.PC00.UA01\n 5b821a5c2f035f53425f5043303055413031085f4144520c01001e00\n \n \n \\_SB_.PC00.SPI0\n 5b821a5c2f035f53425f5043303053504930085f4144520c02001e00\n \n \n \\_SB_.PC00.SPI1\n 5b821a5c2f035f53425f5043303053504931085f4144520c03001e00\n \n \\_SB_.PC00.SPI1.FPNT\n 5b82295c2f045f53425f504330305350493146504e54085f53544100085f4849440d44554d593030303000\n \n n\n n\n n\n \n \n \n \n 0x8086\n 0xa082\n 0x8086\n 0x3002\n 0x060100\n \\_SB_.PC00.LPCB\n 5b821a5c2f035f53425f504330304c504342085f4144520c00001f00\n \n \\_SB_.PC00.LPCB.CWDT\n PNP0C02\n 5b8248045c2f045f53425f504330304c50434243574454085f5354410a0f085f4849440d494e54433130323800085f4349440c41d00c02085f435253110d0a0a47015418541804047900\n \n y\n y\n y\n \n \n \n \n \\_SB_.PC00.LPCB.HPET\n 0\n 5b8243045c2f045f53425f504330304c50434248504554085f5354410a0f085f4849440c41d00103085f55494400085f43525311110a0e860900010000d0fe000400007900\n \n y\n y\n y\n \n \n \n \n \\_SB_.PC00.LPCB.H_EC\n 1\n 5b8247045c2f045f53425f504330304c504342485f4543085f5354410a0b085f4849440c41d00c09085f55494401085f43525311150a12470162006200000147016600660000017900\n \n y\n y\n y\n \n \n \n \n \\_SB_.PC00.LPCB.H_EC.BAT0\n 0\n 5b822e5c2f055f53425f504330304c504342485f454342415430085f53544100085f4849440c41d00c0a085f55494400\n \n n\n n\n n\n \n \n \n \\_SB_.PC00.LPCB.H_EC.BAT1\n 1\n 5b822e5c2f055f53425f504330304c504342485f454342415431085f53544100085f4849440c41d00c0a085f55494401\n \n n\n n\n n\n \n \n \n \\_SB_.PC00.LPCB.H_EC.BAT2\n 2\n 5b822f5c2f055f53425f504330304c504342485f454342415432085f53544100085f4849440c41d00c0a085f5549440a02\n \n n\n n\n n\n \n \n \n \n \\_SB_.PC00.LPCB.IPIC\n 5b82440b5c2f045f53425f504330304c50434249504943085f4849440b41d0085f4352531141090a8d47012000200001024701240024000102470128002800010247012c002c00010247013000300001024701340034000102470138003800010247013c003c0001024701a000a00001024701a400a40001024701a800a80001024701ac00ac0001024701b000b00001024701b400b40001024701b800b80001024701bc00bc0001024701d004d00401022204007900\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \\_SB_.PC00.LPCB.LDRC\n 2\n 5b8242095c2f045f53425f504330304c5043424c445243085f4849440c41d00c02085f5549440a02085f4352531146060a6247012e002e00010247014e004e00010247016100610001014701630063000101470165006500010147016700670001014701700070000101470180008000010147019200920001014701b200b2000102470180068006012047014e164e1601027900\n \n \n \n \n \n \n \n \n \n \n \n \n \n \n \\_SB_.PC00.LPCB.MATH\n 5b823a5c2f045f53425f504330304c5043424d415448085f53544100085f4849440c41d00c04085f43525311100a0d4701f000f00001012200207900\n \n n\n n\n n\n \n \n \n \n \n \\_SB_.PC00.LPCB.RTC_\n 5b823a5c2f045f53425f504330304c5043425254435f085f53544100085f4849440c41d00b00085f43525311100a0d47017000700001082200017900\n \n n\n n\n n\n \n \n \n \n \n \\_SB_.PC00.LPCB.SIO1\n 0\n 5b8248065c2f045f53425f504330304c50434253494f31085f4849440c41d00c02085f55494400085f435253113d0a3a47010000000000004701000a000a00104701100a100a00204701300a300a00204701500a500a00204701700a700a00104701800a800a00107900\n \n \n \n \n \n \n \n \n \n \\_SB_.PC00.LPCB.SSMF\n 1\n 5b822a5c2f045f53425f504330304c50434253534d46085f53544100085f4849440c41d00c08085f55494401\n \n n\n n\n n\n \n \n \n \\_SB_.PC00.LPCB.TIMR\n 5b823c5c2f045f53425f504330304c50434254494d52085f4849440c41d00100085f43525311180a15470140004000010447015000500010042201007900\n \n \n \n \n \n \\_SB_.PC00.LPCB.UAR1\n 0\n 5b8245045c2f045f53425f504330304c50434255415231085f5354410a0f085f4849440c41d00501085f55494400085f43525311130a104701f803f80301082210002a00007900\n \n y\n y\n y\n \n \n \n \n \n \n \n 0x8086\n 0xa0c8\n 0x8086\n 0x3002\n 0x040300\n \\_SB_.PC00.HDAS\n 5b821a5c2f035f53425f5043303048444153085f4144520c03001f00\n \n \n \n \n \n \n 1\n \n \n \n \\_SB_.PC00.HDAS.IDA_\n 5b821a5c2f045f53425f50433030484441534944415f085f41445200\n \n \n \\_SB_.PC00.HDAS.SNDW\n PRP00001\n PNP0A05\n 5b8241045c2f045f53425f5043303048444153534e4457085f5354410a0b085f4349441215020d5052503030303031000d504e503041303500085f4144520c00000040\n \n y\n y\n y\n \n \n \\_SB_.PC00.HDAS.SNDW.SWD4\n 5b82265c2f055f53425f5043303048444153534e445753574434085f4144520e0000075d02100000\n \n \n \\_SB_.PC00.HDAS.SNDW.SWD0\n 5b82265c2f055f53425f5043303048444153534e445753574430085f4144520e0001075d02100000\n \n \n \\_SB_.PC00.HDAS.SNDW.SWD5\n 5b82265c2f055f53425f5043303048444153534e445753574435085f4144520e0000075d02100100\n \n \n \\_SB_.PC00.HDAS.SNDW.SWD1\n 5b82265c2f055f53425f5043303048444153534e445753574431085f4144520e0001075d02100100\n \n \n \\_SB_.PC00.HDAS.SNDW.SWD6\n 5b82265c2f055f53425f5043303048444153534e445753574436085f4144520e0000075d02100200\n \n \n \\_SB_.PC00.HDAS.SNDW.SWD2\n 5b82265c2f055f53425f5043303048444153534e445753574432085f4144520e0001075d02100200\n \n \n \\_SB_.PC00.HDAS.SNDW.SWD7\n 5b82265c2f055f53425f5043303048444153534e445753574437085f4144520e0000075d02100300\n \n \n \\_SB_.PC00.HDAS.SNDW.SWD3\n 5b82265c2f055f53425f5043303048444153534e445753574433085f4144520e0001075d02100300\n \n \n \n \\_SB_.PC00.HDAS.UAOL\n PRP00001\n PNP0A05\n 5b8241045c2f045f53425f504330304844415355414f4c085f5354410a0b085f4349441215020d5052503030303031000d504e503041303500085f4144520c00000050\n \n y\n y\n y\n \n \n \n \n 0x8086\n 0xa0a3\n 0x8086\n 0x3002\n 0x0c0500\n \\_SB_.PC00.SBUS\n 5b821a5c2f035f53425f5043303053425553085f4144520c04001f00\n \n \n \n \n \n 0x8086\n 0xa0a4\n 0x8086\n 0x3002\n 0x0c8000\n \n \n \n \\_SB_.PC00.PTHT\n 5b82205c2f035f53425f5043303050544854085f53544100085f4144520c07001f00\n \n n\n n\n n\n \n \n \n \\_SB_.PC00.CLP1\n INT3472\n 1\n 5b824b065c2f035f53425f50433030434c5031085f53544100085f4849440d494e543334373200085f4349440d494e543334373200085f55494401085f41445200085f43525311260a238e1e00010001020000010600801a060049005c5f53422e504330302e49324333007900\n \n n\n n\n n\n \n \n \\_SB_.PC00.I2C3\n \n \n \\_SB_.PC00.CLP2\n INT3472\n 2\n 5b824c065c2f035f53425f50433030434c5032085f53544100085f4849440d494e543334373200085f4349440d494e543334373200085f5549440a02085f41445200085f43525311260a238e1e00010001020000010600801a060049005c5f53422e504330302e49324333007900\n \n n\n n\n n\n \n \n \\_SB_.PC00.I2C3\n \n \n \\_SB_.PC00.CLP3\n INT3472\n 3\n 5b824c065c2f035f53425f50433030434c5033085f53544100085f4849440d494e543334373200085f4349440d494e543334373200085f5549440a03085f41445200085f43525311260a238e1e00010001020000010600801a060049005c5f53422e504330302e49324333007900\n \n n\n n\n n\n \n \n \\_SB_.PC00.I2C3\n \n \n \\_SB_.PC00.CLP4\n INT3472\n 4\n 5b824c065c2f035f53425f50433030434c5034085f53544100085f4849440d494e543334373200085f4349440d494e543334373200085f5549440a04085f41445200085f43525311260a238e1e00010001020000010600801a060049005c5f53422e504330302e49324333007900\n \n n\n n\n n\n \n \n \\_SB_.PC00.I2C3\n \n \n \\_SB_.PC00.CLP5\n INT3472\n 5\n 5b824c065c2f035f53425f50433030434c5035085f53544100085f4849440d494e543334373200085f4349440d494e543334373200085f5549440a05085f41445200085f43525311260a238e1e00010001020000010600801a060049005c5f53422e504330302e49324333007900\n \n n\n n\n n\n \n \n \\_SB_.PC00.I2C3\n \n \n \\_SB_.PC00.DOCK\n PNP0C15\n 2\n 5b82365c2f035f53425f50433030444f434b085f53544100085f4849440d414243443030303000085f4349440c41d00c15085f5549440a02\n \n n\n n\n n\n \n \n \n \\_SB_.PC00.DSC0\n INT3472\n 0\n 5b824a045c2f035f53425f5043303044534330085f53544100085f4849440d494e543334373200085f4349440d494e543334373200085f55494400085f41445200085f43525311050a027900\n \n n\n n\n n\n \n \n \n \\_SB_.PC00.DSC1\n INT3472\n 1\n 5b8241095c2f035f53425f5043303044534331085f53544100085f4849440d494e543334373200085f4349440d494e543334373200085f55494401085f41445200085f435253114c040a488c200001010100020000000000001700001900230000008d005c5f53422e47504930008c200001010100020000000000001700001900230000008f005c5f53422e47504930007900\n \n n\n n\n n\n \n \n \n \\_SB_.GPI0\n \n \n \\_SB_.PC00.DSC2\n INT3472\n 2\n 5b8242095c2f035f53425f5043303044534332085f53544100085f4849440d494e543334373200085f4349440d494e543334373200085f5549440a02085f41445200085f435253114c040a488c20000101010002000000000000170000190023000000b6005c5f53422e47504930008c20000101010002000000000000170000190023000000ab005c5f53422e47504930007900\n \n n\n n\n n\n \n \n \n \\_SB_.GPI0\n \n \n \\_SB_.PC00.DSC3\n INT3472\n 3\n 5b8242095c2f035f53425f5043303044534333085f53544100085f4849440d494e543334373200085f4349440d494e543334373200085f5549440a03085f41445200085f435253114c040a488c20000101010002000000000000170000190023000000b6005c5f53422e47504930008c20000101010002000000000000170000190023000000ab005c5f53422e47504930007900\n \n n\n n\n n\n \n \n \n \\_SB_.GPI0\n \n \n \\_SB_.PC00.DSC4\n INT3472\n 4\n 5b8242095c2f035f53425f5043303044534334085f53544100085f4849440d494e543334373200085f4349440d494e543334373200085f5549440a04085f41445200085f435253114c040a488c20000101010002000000000000170000190023000000b6005c5f53422e47504930008c20000101010002000000000000170000190023000000ab005c5f53422e47504930007900\n \n n\n n\n n\n \n \n \n \\_SB_.GPI0\n \n \n \\_SB_.PC00.DSC5\n INT3472\n 5\n 5b8242095c2f035f53425f5043303044534335085f53544100085f4849440d494e543334373200085f4349440d494e543334373200085f5549440a05085f41445200085f435253114c040a488c20000101010002000000000000170000190023000000b6005c5f53422e47504930008c20000101010002000000000000170000190023000000ab005c5f53422e47504930007900\n \n n\n n\n n\n \n \n \n \\_SB_.GPI0\n \n \n \\_SB_.PC00.FLM0\n PWRC0000\n 0\n 5b8241095c2f035f53425f50433030464c4d30085f53544100085f4849440d505752433030303000085f4349440d505752433030303000085f55494400085f41445200085f435253114a040a468c20000101010002000000000000170000190023000000a5005c5f53422e47504930008e1e00010001020000010600801a060067005c5f53422e504330302e49324331007900\n \n n\n n\n n\n \n \n \n \\_SB_.GPI0\n \\_SB_.PC00.I2C1\n \n \n \\_SB_.PC00.FLM1\n PWRC0000\n 0\n 5b8241095c2f035f53425f50433030464c4d31085f53544100085f4849440d505752433030303000085f4349440d505752433030303000085f55494400085f41445200085f435253114a040a468c20000101010002000000000000170000190023000000a3005c5f53422e47504930008e1e00010001020000010600801a060067005c5f53422e504330302e49324332007900\n \n n\n n\n n\n \n \n \n \\_SB_.PC00.I2C2\n \\_SB_.GPI0\n \n \n \\_SB_.PC00.FLM2\n TXNW3643\n 0\n 5b8241095c2f035f53425f50433030464c4d32085f53544100085f4849440d54584e573336343300085f4349440d54584e573336343300085f55494400085f41445200085f435253114a040a468c20000101010002000000000000170000190023000000b2005c5f53422e47504930008e1e00010001020000010600801a060063005c5f53422e504330302e49324332007900\n \n n\n n\n n\n \n \n \n \\_SB_.PC00.I2C2\n \\_SB_.GPI0\n \n \n \\_SB_.PC00.FLM3\n PWRC0000\n 0\n 5b8241095c2f035f53425f50433030464c4d33085f53544100085f4849440d505752433030303000085f4349440d505752433030303000085f55494400085f41445200085f435253114a040a468c20000101010002000000000000170000190023000000a3005c5f53422e47504930008e1e00010001020000010600801a060067005c5f53422e504330302e49324333007900\n \n n\n n\n n\n \n \n \n \\_SB_.PC00.I2C3\n \\_SB_.GPI0\n \n \n \\_SB_.PC00.FLM4\n PWRC0000\n 0\n 5b8241095c2f035f53425f50433030464c4d34085f53544100085f4849440d505752433030303000085f4349440d505752433030303000085f55494400085f41445200085f435253114a040a468c20000101010002000000000000170000190023000000a3005c5f53422e47504930008e1e00010001020000010600801a060067005c5f53422e504330302e49324333007900\n \n n\n n\n n\n \n \n \n \\_SB_.PC00.I2C3\n \\_SB_.GPI0\n \n \n \\_SB_.PC00.FLM5\n PWRC0000\n 0\n 5b8241095c2f035f53425f50433030464c4d35085f53544100085f4849440d505752433030303000085f4349440d505752433030303000085f55494400085f41445200085f435253114a040a468c20000101010002000000000000170000190023000000a3005c5f53422e47504930008e1e00010001020000010600801a060067005c5f53422e504330302e49324333007900\n \n n\n n\n n\n \n \n \n \\_SB_.PC00.I2C3\n \\_SB_.GPI0\n \n \n \\_SB_.PC00.LNK0\n SONY362A\n 0\n 5b824f085c2f035f53425f504330304c4e4b30085f53544100085f4849440d534f4e593336324100085f4349440d534f4e593336324100085f55494400085f41445200085f4352531148040a448e1e00010001020000010600801a06001a005c5f53422e504330302e49324333008e1e00010001020000010600801a06000c005c5f53422e504330302e49324333007900\n \n n\n n\n n\n \n \n \n \\_SB_.PC00.I2C3\n \n \n \\_SB_.PC00.LNK1\n SONY488A\n 1\n 5b824d065c2f035f53425f504330304c4e4b31085f53544100085f4849440d534f4e593438384100085f4349440d534f4e593438384100085f55494401085f41445200085f43525311260a238e1e00010001020000010600801a060037005c5f53422e504330302e49324333007900\n \n n\n n\n n\n \n \n \\_SB_.PC00.I2C3\n \n \n \\_SB_.PC00.LNK2\n SONY362A\n 2\n 5b824e065c2f035f53425f504330304c4e4b32085f53544100085f4849440d534f4e593336324100085f4349440d534f4e593336324100085f5549440a02085f41445200085f43525311260a238e1e00010001020000010600801a06001a005c5f53422e504330302e49324332007900\n \n n\n n\n n\n \n \n \\_SB_.PC00.I2C2\n \n \n \\_SB_.PC00.LNK3\n INT33BE\n 3\n 5b8242115c2f035f53425f504330304c4e4b33085f53544100085f4849440d494e543333424500085f4349440d494e543333424500085f5549440a03085f41445200085f435253114c0c0ac88e1e00010001020000010600801a060010005c5f53422e504330302e49324333008e1e00010001020000010600801a06000c005c5f53422e504330302e49324333008e1e00010001020000010600801a060050005c5f53422e504330302e49324333008e1e00010001020000010600801a060051005c5f53422e504330302e49324333008e1e00010001020000010600801a060052005c5f53422e504330302e49324333008e1e00010001020000010600801a060053005c5f53422e504330302e49324333007900\n \n n\n n\n n\n \n \n \n \n \n \n \n \\_SB_.PC00.I2C3\n \n \n \\_SB_.PC00.LNK4\n INT33BE\n 4\n 5b8242115c2f035f53425f504330304c4e4b34085f53544100085f4849440d494e543333424500085f4349440d494e543333424500085f5549440a04085f41445200085f435253114c0c0ac88e1e00010001020000010600801a060010005c5f53422e504330302e49324333008e1e00010001020000010600801a06000c005c5f53422e504330302e49324333008e1e00010001020000010600801a060050005c5f53422e504330302e49324333008e1e00010001020000010600801a060051005c5f53422e504330302e49324333008e1e00010001020000010600801a060052005c5f53422e504330302e49324333008e1e00010001020000010600801a060053005c5f53422e504330302e49324333007900\n \n n\n n\n n\n \n \n \n \n \n \n \n \\_SB_.PC00.I2C3\n \n \n \\_SB_.PC00.LNK5\n INT33BE\n 5\n 5b8242115c2f035f53425f504330304c4e4b35085f53544100085f4849440d494e543333424500085f4349440d494e543333424500085f5549440a05085f41445200085f435253114c0c0ac88e1e00010001020000010600801a060010005c5f53422e504330302e49324333008e1e00010001020000010600801a06000c005c5f53422e504330302e49324333008e1e00010001020000010600801a060050005c5f53422e504330302e49324333008e1e00010001020000010600801a060051005c5f53422e504330302e49324333008e1e00010001020000010600801a060052005c5f53422e504330302e49324333008e1e00010001020000010600801a060053005c5f53422e504330302e49324333007900\n \n n\n n\n n\n \n \n \n \n \n \n \n \\_SB_.PC00.I2C3\n \n \n \\_SB_.PC00.PDRC\n 1\n 5b82205c2f035f53425f5043303050445243085f4849440c41d00c02085f55494401\n \n \n \n \n \n \n \n \n \n \n \n \n \n \\_SB_.AWAC\n 5b82215c2e5f53425f41574143085f5354410a0f085f4849440d414350493030304500\n \n y\n y\n y\n \n \n \n \\_SB_.COEX\n 5b824d045c2e5f53425f434f4558085f53544100085f4849440c25d43519085f535452112b0a2843006f004500780069007300740065006e006300650020004d0061006e0061006700650072000000\n \n n\n n\n n\n \n \n \n \\_SB_.EPC_\n 5b824c085c2e5f53425f4550435f085f53544100085f4849440c25d40e0c085f53545211310a2e45006e0063006c0061007600650020005000610067006500200043006100630068006500200031002e0030000000085f43525311330a308a2b0000010100000000000000000000000000000000ffffffffffffffff000000000000000000000000000000007900\n \n n\n n\n n\n \n \n \n \n \\_SB_.GPI0\n 5b8245065c2e5f53425f47504930085f5354410a0f085f4849440d494e543334433500085f435253113e0a3b8906000d010e0000008609000100006efd000001008609000100006dfd000001008609000100006afd0000010086090001000069fd000001007900\n \n y\n y\n y\n \n \n \n \n \n \n \\_SB_.PC00.DSC3\n \\_SB_.PC00.FLM4\n \\_SB_.PC00.UA00.BTH0\n \\_SB_.PC00.FLM5\n \\_SB_.PC00.DSC1\n \\_SB_.PC00.DSC2\n \\_SB_.PC00.FLM1\n \\_SB_.PC00.FLM2\n \\_SB_.PC00.DSC5\n \\_SB_.PC00.FLM0\n \\_SB_.PC00.FLM3\n \\_SB_.PC00.DSC4\n \n \n \\_SB_.HIDD\n 5b82205c2e5f53425f48494444085f53544100085f4849440d494e54433130353100\n \n n\n n\n n\n \n \n \n \\_SB_.IOTR\n IoTraps\n 5b82365c2e5f53425f494f5452085f4849440c41d00c02085f5549440d496f547261707300085f435253110d0a0a47010020002001ff7900\n \n \n \n \\_SB_.LID0\n 5b821b5c2e5f53425f4c494430085f53544100085f4849440c41d00c0d\n \n n\n n\n n\n \n \n \n \\_SB_.LNKA\n 1\n 5b82315c2e5f53425f4c4e4b41085f5354410a09085f4849440c41d00c0f085f55494401085f43525311090a06238b00187900\n \n y\n n\n y\n \n \n \n \n \\_SB_.LNKB\n 2\n 5b82325c2e5f53425f4c4e4b42085f5354410a09085f4849440c41d00c0f085f5549440a02085f43525311090a06238a00187900\n \n y\n n\n y\n \n \n \n \n \\_SB_.LNKC\n 3\n 5b82325c2e5f53425f4c4e4b43085f5354410a09085f4849440c41d00c0f085f5549440a03085f43525311090a06238b00187900\n \n y\n n\n y\n \n \n \n \n \\_SB_.LNKD\n 4\n 5b82325c2e5f53425f4c4e4b44085f5354410a09085f4849440c41d00c0f085f5549440a04085f43525311090a06238b00187900\n \n y\n n\n y\n \n \n \n \n \\_SB_.LNKE\n 5\n 5b82325c2e5f53425f4c4e4b45085f5354410a09085f4849440c41d00c0f085f5549440a05085f43525311090a06238b00187900\n \n y\n n\n y\n \n \n \n \n \\_SB_.LNKF\n 6\n 5b82325c2e5f53425f4c4e4b46085f5354410a09085f4849440c41d00c0f085f5549440a06085f43525311090a06238b00187900\n \n y\n n\n y\n \n \n \n \n \\_SB_.LNKG\n 7\n 5b82325c2e5f53425f4c4e4b47085f5354410a09085f4849440c41d00c0f085f5549440a07085f43525311090a06238b00187900\n \n y\n n\n y\n \n \n \n \n \\_SB_.LNKH\n 8\n 5b82325c2e5f53425f4c4e4b48085f5354410a09085f4849440c41d00c0f085f5549440a08085f43525311090a06238b00187900\n \n y\n n\n y\n \n \n \n \n \\_SB_.PAGD\n 5b82215c2e5f53425f50414744085f5354410a0f085f4849440d414350493030304300\n \n y\n y\n y\n \n \n \n \\_SB_.PEPD\n PNP0D80\n 1\n 5b82305c2e5f53425f50455044085f5354410a0f085f4849440d494e543333413100085f4349440c41d00d80085f55494401\n \n y\n y\n y\n \n \n \n \\_SB_.PRRE\n PCHRESV\n 5b824b0a5c2e5f53425f50525245085f5354410a0b085f4849440c41d00c02085f5549440d5043485245535600085f435253114a070a7686090001000000fe000002008609000100c004fe0040000086090001000005fe000006008609000100000dfe0000030086090001000020fe0000600086090000000000ff0000000147010018001801ff86090001000000fd000069008609000100006bfd000002008609000100006ffd000091007900\n \n y\n y\n y\n \n \n \n \n \n \n \n \n \n \n \n \n \n \\_SB_.PTHH\n 5b8244045c2e5f53425f50544848085f53544100085f4849440d494e54433130303100085f435253111d0a1a86090001000010fe0000100086090001000080fc000080007900\n \n n\n n\n n\n \n \n \n \n \n \\_SB_.PTID\n PNP0C02\n 5b82265c2e5f53425f50544944085f5354410a0f085f4849440c25d4340e085f4349440c41d00c02\n \n y\n y\n y\n \n \n \n \\_SB_.PWRB\n 5b821c5c2e5f53425f50575242085f5354410a0f085f4849440c41d00c0c\n \n y\n y\n y\n \n \n \n \\_SB_.SLPB\n 5b821c5c2e5f53425f534c5042085f5354410a0b085f4849440c41d00c0e\n \n y\n y\n y\n \n \n \n \\_SB_.TPM_\n 1\n 5b8246065c2e5f53425f54504d5f085f5354410a0f085f4849440d4d5346543031303100085f55494401085f53545211210a1e540050004d00200032002e00300020004400650076006900630065000000085f43525311110a0e860900010000d4fe005000007900\n \n y\n y\n y\n \n \n \n 0xfed40040\n \n \n 0x7\n 0x0\n 0x0\n 0x0\n 0x0\n 0x0\n 0x0\n 0x0\n 0x0\n 0x0\n 0x0\n 0x0\n 0x0\n \n \n 0x10000\n 0x40c9f000\n \n \n \n \\_SB_.URSC\n 5\n 5b822e5c2e5f53425f55525343085f5354410a0b085f4849440c41d00c02085f5549440a05085f43525311050a027900\n \n y\n y\n y\n \n \n \n \\_SB_.WFDE\n SampleDev\n 5b82295c2e5f53425f57464445085f4849440d504e503043313400085f5549440d53616d706c6544657600\n \n \n \\_SB_.WFTE\n TestDev\n 5b82275c2e5f53425f57465445085f4849440d504e503043313400085f5549440d5465737444657600\n \n \n \n \\_TZ_\n \n \\_TZ_.FAN0\n 0\n 5b821b5c2e5f545a5f46414e30085f4849440c41d00c0b085f55494400\n \n \n \\_TZ_.FAN1\n 1\n 5b821b5c2e5f545a5f46414e31085f4849440c41d00c0b085f55494401\n \n \n \\_TZ_.FAN2\n 2\n 5b821c5c2e5f545a5f46414e32085f4849440c41d00c0b085f5549440a02\n \n \n \\_TZ_.FAN3\n 3\n 5b821c5c2e5f545a5f46414e33085f4849440c41d00c0b085f5549440a03\n \n \n \\_TZ_.FAN4\n 4\n 5b821c5c2e5f545a5f46414e34085f4849440c41d00c0b085f5549440a04\n \n \n \n \n \n \n Sleep Button\n PNP0C0E/button/input0\n \n \n Power Button\n PNP0C0C/button/input0\n \n \n Power Button\n LNXPWRBN/button/input0\n \n \n Video Bus\n LNXVIDEO/video/input0\n \n \n HDA Intel PCH HDMI/DP,pcm=3\n ALSA\n \n \n HDA Intel PCH HDMI/DP,pcm=7\n ALSA\n \n \n HDA Intel PCH HDMI/DP,pcm=8\n ALSA\n \n \n HDA Intel PCH HDMI/DP,pcm=9\n ALSA\n \n \n HDA Intel PCH HDMI/DP,pcm=10\n ALSA\n \n \n HDA Intel PCH HDMI/DP,pcm=11\n ALSA\n \n \n HDA Intel PCH HDMI/DP,pcm=12\n ALSA\n \n \n HDA Intel PCH HDMI/DP,pcm=13\n ALSA\n \n \n HDA Intel PCH HDMI/DP,pcm=14\n ALSA\n \n \n HDA Intel PCH HDMI/DP,pcm=15\n ALSA\n \n \n HDA Intel PCH HDMI/DP,pcm=16\n ALSA\n \n \n HDA Intel PCH HDMI/DP,pcm=17\n ALSA\n \n \n \n \n /dev/ttyS0\n 4\n \n \n /dev/ttyS1\n 0\n \n \n /dev/ttyS2\n 0\n \n \n /dev/ttyS3\n 0\n \n \n /dev/ttyS4\n 0\n \n \n /dev/ttyS5\n 0\n \n \n /dev/ttyS6\n 0\n \n \n /dev/ttyS7\n 0\n \n \n /dev/ttyS8\n 0\n \n \n /dev/ttyS9\n 0\n \n \n /dev/ttyS10\n 0\n \n \n /dev/ttyS11\n 0\n \n \n /dev/ttyS12\n 0\n \n \n /dev/ttyS13\n 0\n \n \n /dev/ttyS14\n 0\n \n \n /dev/ttyS15\n 0\n \n \n /dev/ttyS16\n 0\n \n \n /dev/ttyS17\n 0\n \n \n /dev/ttyS18\n 0\n \n \n /dev/ttyS19\n 0\n \n \n /dev/ttyS20\n 0\n \n \n /dev/ttyS21\n 0\n \n \n /dev/ttyS22\n 0\n \n \n /dev/ttyS23\n 0\n \n \n /dev/ttyS24\n 0\n \n \n /dev/ttyS25\n 0\n \n \n /dev/ttyS26\n 0\n \n \n /dev/ttyS27\n 0\n \n \n /dev/ttyS28\n 0\n \n \n /dev/ttyS29\n 0\n \n \n /dev/ttyS30\n 0\n \n \n /dev/ttyS31\n 0\n \n \n \n\n",
+ "C:\\Users\\Axel\\acrn-work\\MyConfiguration\\scenario.xml": "\n \n \n debug\n /dev/ttyS0\n 5\n 5\n 3\n \n \n y\n SCHED_BVT\n y\n y\n n\n n\n \n n\n y\n n\n \n y\n n\n y\n n\n n\n \n \n \n 0x2000\n \n \n 16\n 1\n 96\n 120\n 256\n \n 16\n \n \n 0x00000010\n \n \n \n Connection_1\n legacy\n \n ACRN_Service_VM\n 0x3F\n \n \n POST_STD_VM1\n 0x3F\n \n \n \n Connection_2\n pci\n \n ACRN_Service_VM\n 00:10.0\n \n \n POST_RT_VM1\n 00:10.0\n \n \n \n \n \n SERVICE_VM\n ACRN_Service_VM\n \n 0\n \n \n KERNEL_BZIMAGE\n Linux_bzImage\n \n rw rootwait root=/dev/nvme0n1p2 console=tty0 console=ttyS0 consoleblank=0 no_timer_check quiet loglevel=3\n i915.nuclear_pageflip=1 swiotlb=131072\n \n COM Port 1\n \n \n POST_LAUNCHED_VM\n STANDARD_VM\n POST_STD_VM1\n \n \n 0\n \n \n 1\n \n \n \n 0\n 0\n \n \n 4096\n \n COM Port 1\n \n 00:02.0 VGA compatible controller: Intel Corporation TigerLake-LP GT2 [Iris Xe Graphics] (rev 01)\n \n n\n Windows OS\n y\n n\n \n \n \n \n WaaG\n \n \n ./win10-ltsc.img\n \n \n \n POST_LAUNCHED_VM\n RTVM\n POST_RT_VM1\n y\n \n \n 2\n y\n \n \n 3\n y\n \n \n \n 0\n 0\n \n \n 1024\n \n COM Port 1\n n\n Non-Windows OS\n y\n n\n \n \n \n Virtio console\n stdio\n \n \n RT\n \n \n ./core-image-weston-intel-corei7-64.wic\n \n \n \n POST_LAUNCHED_VM\n STANDARD_VM\n POST_STD_VM2\n \n \n 0\n \n \n 1\n \n \n \n 0\n 0\n \n \n 512\n \n COM Port 1\n n\n Non-Windows OS\n y\n n\n \n \n \n Virtio console\n stdio\n \n \n YaaG3\n \n \n ./YaaG.img\n \n \n \n POST_LAUNCHED_VM\n STANDARD_VM\n POST_STD_VM3\n \n \n 0\n \n \n 1\n \n \n \n 0\n 0\n \n \n 512\n \n COM Port 1\n n\n Non-Windows OS\n y\n n\n \n \n \n Virtio console\n stdio\n \n \n YaaG4\n \n \n ./YaaG.img\n \n \n \n POST_LAUNCHED_VM\n STANDARD_VM\n POST_STD_VM4\n \n \n 0\n \n \n 1\n \n \n \n 0\n 0\n \n \n 512\n \n COM Port 1\n n\n Non-Windows OS\n y\n n\n \n \n \n Virtio console\n stdio\n \n \n YaaG5\n \n \n ./YaaG.img\n \n \n \n POST_LAUNCHED_VM\n STANDARD_VM\n POST_STD_VM5\n \n \n 0\n \n \n 1\n \n \n \n 0\n 0\n \n \n 512\n \n COM Port 1\n n\n Non-Windows OS\n y\n n\n \n \n \n Virtio console\n stdio\n \n \n YaaG6\n \n \n ./YaaG.img\n \n \n\n"
+ }
+}
\ No newline at end of file
diff --git a/misc/config_tools/configurator/packages/configurator/tests/mock.js b/misc/config_tools/configurator/packages/configurator/tests/mock.js
new file mode 100644
index 000000000..fb361b351
--- /dev/null
+++ b/misc/config_tools/configurator/packages/configurator/tests/mock.js
@@ -0,0 +1,33 @@
+import {mockIPC} from "@tauri-apps/api/mocks";
+import mockData from './data/data.json';
+
+export default function mock() {
+
+ const origin_confirm = window.confirm;
+ window.confirm = async (message) => origin_confirm(message);
+
+ // mock custom tauri command
+ mockIPC(async (cmd, args) => {
+ const packageInfo = await import('../package.json');
+
+ function handle() {
+ switch (cmd) {
+ case 'get_home':
+ return 'C:\\Users\\Axel'
+ case 'get_history':
+ return JSON.stringify(mockData.history[args.historyType])
+ case 'acrn_read':
+ return mockData.files[args.filePath]
+ default:
+ if (args?.message?.cmd === "getAppVersion") {
+ return packageInfo.version;
+ }
+
+ console.log(cmd, args)
+ return {}
+ }
+ }
+
+ return handle()
+ })
+}
\ No newline at end of file
diff --git a/misc/config_tools/configurator/thirdLib/.gitignore b/misc/config_tools/configurator/packages/configurator/thirdLib/.gitignore
similarity index 100%
rename from misc/config_tools/configurator/thirdLib/.gitignore
rename to misc/config_tools/configurator/packages/configurator/thirdLib/.gitignore
diff --git a/misc/config_tools/configurator/thirdLib/library.json b/misc/config_tools/configurator/packages/configurator/thirdLib/library.json
similarity index 97%
rename from misc/config_tools/configurator/thirdLib/library.json
rename to misc/config_tools/configurator/packages/configurator/thirdLib/library.json
index c6a9806fa..96f068731 100644
--- a/misc/config_tools/configurator/thirdLib/library.json
+++ b/misc/config_tools/configurator/packages/configurator/thirdLib/library.json
@@ -13,7 +13,7 @@
"install": [
{
"type": "copy",
- "from": "../../dist/acrn_config_tools-3.0-py3-none-any.whl",
+ "from": "../../../../dist/acrn_config_tools-3.0-py3-none-any.whl",
"to": "acrn_config_tools-3.0-py3-none-any.whl"
}
]
diff --git a/misc/config_tools/configurator/thirdLib/manager.py b/misc/config_tools/configurator/packages/configurator/thirdLib/manager.py
similarity index 96%
rename from misc/config_tools/configurator/thirdLib/manager.py
rename to misc/config_tools/configurator/packages/configurator/thirdLib/manager.py
index 12bfe1f8b..830e15d2e 100644
--- a/misc/config_tools/configurator/thirdLib/manager.py
+++ b/misc/config_tools/configurator/packages/configurator/thirdLib/manager.py
@@ -1,7 +1,7 @@
#!/usr/bin/env python3
"""
-misc/config_tools/configurator/thirdLib/manager.py
-depend on misc/config_tools/configurator/thirdLib/library.json
+misc/config_tools/configurator/packages/configurator/thirdLib/manager.py
+depend on misc/config_tools/configurator/packages/configurator/thirdLib/library.json
"""
import argparse
import os
diff --git a/misc/config_tools/configurator/thirdLib/tauri-plugin.ts b/misc/config_tools/configurator/packages/configurator/thirdLib/tauri-plugin.ts
similarity index 75%
rename from misc/config_tools/configurator/thirdLib/tauri-plugin.ts
rename to misc/config_tools/configurator/packages/configurator/thirdLib/tauri-plugin.ts
index 3ceb6d6a8..77177f755 100644
--- a/misc/config_tools/configurator/thirdLib/tauri-plugin.ts
+++ b/misc/config_tools/configurator/packages/configurator/thirdLib/tauri-plugin.ts
@@ -1,21 +1,12 @@
const fs = require('fs')
const path = require('path')
-import type {ConfigEnv, Plugin, ResolvedConfig} from "vite";
-// @ts-ignore
+import type {Plugin, ResolvedConfig} from "vite";
import replace from "@rollup/plugin-replace";
// @ts-ignore
import cli from "@tauri-apps/cli"
-import Config from "../src-tauri/types/config"
-// @ts-ignore
-import tauriConf from "../src-tauri/tauri.json";
-
-
-interface Options {
- config?: (c: Config, e: ConfigEnv) => Config;
-}
function copyFolder(copiedPath, resultPath, direct) {
if (!direct) {
@@ -68,17 +59,11 @@ function copyFolder(copiedPath, resultPath, direct) {
}
-export default (options?: Options): Plugin => {
- let tauriConfig: Config = {...tauriConf};
+export default (): Plugin => {
let viteConfig: ResolvedConfig;
const tauri = (mode: "dev" | "build"): Promise => {
- // Generate `tauri.conf.json` by `tauri.json`.
- console.log("Generate `tauri.conf.json` by `tauri.json`.")
- let filePath = path.resolve(__dirname, '..', 'src-tauri', 'tauri.conf.json')
- let config = JSON.stringify(tauriConfig)
try {
- fs.writeFileSync(filePath, config)
return cli.run([mode], 'tauri')
} catch (err) {
console.error(err)
@@ -96,7 +81,6 @@ export default (options?: Options): Plugin => {
server?.httpServer?.on("listening", () => {
if (!process.env.TAURI_SERVE) {
process.env.TAURI_SERVE = "true";
- delete tauriConfig["$schema"]
tauri('dev').finally()
}
});
@@ -104,19 +88,12 @@ export default (options?: Options): Plugin => {
closeBundle() {
if (!process.env.TAURI_BUILD) {
process.env.TAURI_BUILD = "true";
- delete tauriConfig["$schema"]
copyFolder('../thirdLib', '../build/thirdLib', false)
tauri('build').finally()
}
},
config(viteConfig, env) {
process.env.IS_TAURI = "true";
- if (options && options.config) {
- options.config(tauriConfig, env);
- }
- if (env.command === "build") {
- viteConfig.base = "/";
- }
},
configResolved(resolvedConfig) {
viteConfig = resolvedConfig;
diff --git a/misc/config_tools/configurator/vite.config.js b/misc/config_tools/configurator/packages/configurator/vite.config.js
similarity index 76%
rename from misc/config_tools/configurator/vite.config.js
rename to misc/config_tools/configurator/packages/configurator/vite.config.js
index e137d79b9..58e828a18 100644
--- a/misc/config_tools/configurator/vite.config.js
+++ b/misc/config_tools/configurator/packages/configurator/vite.config.js
@@ -8,6 +8,9 @@ import tauri from "./thirdLib/tauri-plugin";
export default defineConfig({
base: './',
plugins: [vue(), tauri()],
+ resolve: {
+ extensions: ['.mjs', '.js', '.ts', '.jsx', '.tsx', '.json', '.vue']
+ },
build: {
outDir: path.resolve(__dirname, 'build')
}
diff --git a/misc/config_tools/configurator/packages/vue-json-schema-form/LICENSE.vue-json-schema-form b/misc/config_tools/configurator/packages/vue-json-schema-form/LICENSE.vue-json-schema-form
new file mode 100644
index 000000000..261eeb9e9
--- /dev/null
+++ b/misc/config_tools/configurator/packages/vue-json-schema-form/LICENSE.vue-json-schema-form
@@ -0,0 +1,201 @@
+ Apache License
+ Version 2.0, January 2004
+ http://www.apache.org/licenses/
+
+ TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION
+
+ 1. Definitions.
+
+ "License" shall mean the terms and conditions for use, reproduction,
+ and distribution as defined by Sections 1 through 9 of this document.
+
+ "Licensor" shall mean the copyright owner or entity authorized by
+ the copyright owner that is granting the License.
+
+ "Legal Entity" shall mean the union of the acting entity and all
+ other entities that control, are controlled by, or are under common
+ control with that entity. For the purposes of this definition,
+ "control" means (i) the power, direct or indirect, to cause the
+ direction or management of such entity, whether by contract or
+ otherwise, or (ii) ownership of fifty percent (50%) or more of the
+ outstanding shares, or (iii) beneficial ownership of such entity.
+
+ "You" (or "Your") shall mean an individual or Legal Entity
+ exercising permissions granted by this License.
+
+ "Source" form shall mean the preferred form for making modifications,
+ including but not limited to software source code, documentation
+ source, and configuration files.
+
+ "Object" form shall mean any form resulting from mechanical
+ transformation or translation of a Source form, including but
+ not limited to compiled object code, generated documentation,
+ and conversions to other media types.
+
+ "Work" shall mean the work of authorship, whether in Source or
+ Object form, made available under the License, as indicated by a
+ copyright notice that is included in or attached to the work
+ (an example is provided in the Appendix below).
+
+ "Derivative Works" shall mean any work, whether in Source or Object
+ form, that is based on (or derived from) the Work and for which the
+ editorial revisions, annotations, elaborations, or other modifications
+ represent, as a whole, an original work of authorship. For the purposes
+ of this License, Derivative Works shall not include works that remain
+ separable from, or merely link (or bind by name) to the interfaces of,
+ the Work and Derivative Works thereof.
+
+ "Contribution" shall mean any work of authorship, including
+ the original version of the Work and any modifications or additions
+ to that Work or Derivative Works thereof, that is intentionally
+ submitted to Licensor for inclusion in the Work by the copyright owner
+ or by an individual or Legal Entity authorized to submit on behalf of
+ the copyright owner. For the purposes of this definition, "submitted"
+ means any form of electronic, verbal, or written communication sent
+ to the Licensor or its representatives, including but not limited to
+ communication on electronic mailing lists, source code control systems,
+ and issue tracking systems that are managed by, or on behalf of, the
+ Licensor for the purpose of discussing and improving the Work, but
+ excluding communication that is conspicuously marked or otherwise
+ designated in writing by the copyright owner as "Not a Contribution."
+
+ "Contributor" shall mean Licensor and any individual or Legal Entity
+ on behalf of whom a Contribution has been received by Licensor and
+ subsequently incorporated within the Work.
+
+ 2. Grant of Copyright License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ copyright license to reproduce, prepare Derivative Works of,
+ publicly display, publicly perform, sublicense, and distribute the
+ Work and such Derivative Works in Source or Object form.
+
+ 3. Grant of Patent License. Subject to the terms and conditions of
+ this License, each Contributor hereby grants to You a perpetual,
+ worldwide, non-exclusive, no-charge, royalty-free, irrevocable
+ (except as stated in this section) patent license to make, have made,
+ use, offer to sell, sell, import, and otherwise transfer the Work,
+ where such license applies only to those patent claims licensable
+ by such Contributor that are necessarily infringed by their
+ Contribution(s) alone or by combination of their Contribution(s)
+ with the Work to which such Contribution(s) was submitted. If You
+ institute patent litigation against any entity (including a
+ cross-claim or counterclaim in a lawsuit) alleging that the Work
+ or a Contribution incorporated within the Work constitutes direct
+ or contributory patent infringement, then any patent licenses
+ granted to You under this License for that Work shall terminate
+ as of the date such litigation is filed.
+
+ 4. Redistribution. You may reproduce and distribute copies of the
+ Work or Derivative Works thereof in any medium, with or without
+ modifications, and in Source or Object form, provided that You
+ meet the following conditions:
+
+ (a) You must give any other recipients of the Work or
+ Derivative Works a copy of this License; and
+
+ (b) You must cause any modified files to carry prominent notices
+ stating that You changed the files; and
+
+ (c) You must retain, in the Source form of any Derivative Works
+ that You distribute, all copyright, patent, trademark, and
+ attribution notices from the Source form of the Work,
+ excluding those notices that do not pertain to any part of
+ the Derivative Works; and
+
+ (d) If the Work includes a "NOTICE" text file as part of its
+ distribution, then any Derivative Works that You distribute must
+ include a readable copy of the attribution notices contained
+ within such NOTICE file, excluding those notices that do not
+ pertain to any part of the Derivative Works, in at least one
+ of the following places: within a NOTICE text file distributed
+ as part of the Derivative Works; within the Source form or
+ documentation, if provided along with the Derivative Works; or,
+ within a display generated by the Derivative Works, if and
+ wherever such third-party notices normally appear. The contents
+ of the NOTICE file are for informational purposes only and
+ do not modify the License. You may add Your own attribution
+ notices within Derivative Works that You distribute, alongside
+ or as an addendum to the NOTICE text from the Work, provided
+ that such additional attribution notices cannot be construed
+ as modifying the License.
+
+ You may add Your own copyright statement to Your modifications and
+ may provide additional or different license terms and conditions
+ for use, reproduction, or distribution of Your modifications, or
+ for any such Derivative Works as a whole, provided Your use,
+ reproduction, and distribution of the Work otherwise complies with
+ the conditions stated in this License.
+
+ 5. Submission of Contributions. Unless You explicitly state otherwise,
+ any Contribution intentionally submitted for inclusion in the Work
+ by You to the Licensor shall be under the terms and conditions of
+ this License, without any additional terms or conditions.
+ Notwithstanding the above, nothing herein shall supersede or modify
+ the terms of any separate license agreement you may have executed
+ with Licensor regarding such Contributions.
+
+ 6. Trademarks. This License does not grant permission to use the trade
+ names, trademarks, service marks, or product names of the Licensor,
+ except as required for reasonable and customary use in describing the
+ origin of the Work and reproducing the content of the NOTICE file.
+
+ 7. Disclaimer of Warranty. Unless required by applicable law or
+ agreed to in writing, Licensor provides the Work (and each
+ Contributor provides its Contributions) on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or
+ implied, including, without limitation, any warranties or conditions
+ of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A
+ PARTICULAR PURPOSE. You are solely responsible for determining the
+ appropriateness of using or redistributing the Work and assume any
+ risks associated with Your exercise of permissions under this License.
+
+ 8. Limitation of Liability. In no event and under no legal theory,
+ whether in tort (including negligence), contract, or otherwise,
+ unless required by applicable law (such as deliberate and grossly
+ negligent acts) or agreed to in writing, shall any Contributor be
+ liable to You for damages, including any direct, indirect, special,
+ incidental, or consequential damages of any character arising as a
+ result of this License or out of the use or inability to use the
+ Work (including but not limited to damages for loss of goodwill,
+ work stoppage, computer failure or malfunction, or any and all
+ other commercial damages or losses), even if such Contributor
+ has been advised of the possibility of such damages.
+
+ 9. Accepting Warranty or Additional Liability. While redistributing
+ the Work or Derivative Works thereof, You may choose to offer,
+ and charge a fee for, acceptance of support, warranty, indemnity,
+ or other liability obligations and/or rights consistent with this
+ License. However, in accepting such obligations, You may act only
+ on Your own behalf and on Your sole responsibility, not on behalf
+ of any other Contributor, and only if You agree to indemnify,
+ defend, and hold each Contributor harmless for any liability
+ incurred by, or claims asserted against, such Contributor by reason
+ of your accepting any such warranty or additional liability.
+
+ END OF TERMS AND CONDITIONS
+
+ APPENDIX: How to apply the Apache License to your work.
+
+ To apply the Apache License to your work, attach the following
+ boilerplate notice, with the fields enclosed by brackets "[]"
+ replaced with your own identifying information. (Don't include
+ the brackets!) The text should be enclosed in the appropriate
+ comment syntax for the file format. We also recommend that a
+ file or class name and description of purpose be included on the
+ same "printed page" as the copyright notice for easier
+ identification within third-party archives.
+
+ Copyright [yyyy] [name of copyright owner]
+
+ Licensed under the Apache License, Version 2.0 (the "License");
+ you may not use this file except in compliance with the License.
+ You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+ Unless required by applicable law or agreed to in writing, software
+ distributed under the License is distributed on an "AS IS" BASIS,
+ WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ See the License for the specific language governing permissions and
+ limitations under the License.
diff --git a/misc/config_tools/configurator/packages/vue-json-schema-form/utils/CHANGELOG.md b/misc/config_tools/configurator/packages/vue-json-schema-form/utils/CHANGELOG.md
new file mode 100644
index 000000000..2ab9fb9e2
--- /dev/null
+++ b/misc/config_tools/configurator/packages/vue-json-schema-form/utils/CHANGELOG.md
@@ -0,0 +1,223 @@
+# Change Log
+
+All notable changes to this project will be documented in this file.
+See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
+
+## [1.12.2](https://github.com/lljj-x/vue-json-schema-form/compare/v1.12.1...v1.12.2) (2022-04-11)
+
+
+### Bug Fixes
+
+* **lib:** ui:hidden 透传到widget组件 ([f63094e](https://github.com/lljj-x/vue-json-schema-form/commit/f63094ee85659d1fea45bd789321817c08664ffa)), closes [#170](https://github.com/lljj-x/vue-json-schema-form/issues/170)
+
+
+
+
+
+# [1.12.0](https://github.com/lljj-x/vue-json-schema-form/compare/v1.11.0...v1.12.0) (2022-03-08)
+
+
+### Bug Fixes
+
+* **lib:** 添加严格模式配置,更精准计算anyOf 默认值 ([10cdc08](https://github.com/lljj-x/vue-json-schema-form/commit/10cdc089087d83d8fe08e1fd379b7a1aaad0cd5d)), closes [#152](https://github.com/lljj-x/vue-json-schema-form/issues/152)
+
+
+### Features
+
+* **lib:** 优化样式 ([e53291b](https://github.com/lljj-x/vue-json-schema-form/commit/e53291b8395fdceb971f15f72c9e809cdee8ec7e))
+
+
+
+
+
+# [1.11.0](https://github.com/lljj-x/vue-json-schema-form/compare/v1.10.0...v1.11.0) (2022-02-19)
+
+
+### Bug Fixes
+
+* **lib:** 添加严格模式配置,更精准计算anyOf 默认值 ([2cd65bb](https://github.com/lljj-x/vue-json-schema-form/commit/2cd65bb5f275a021f1cc368e4c63387163c94d57)), closes [#157](https://github.com/lljj-x/vue-json-schema-form/issues/157)
+
+
+
+
+
+## [1.9.5](https://github.com/lljj-x/vue-json-schema-form/compare/v1.9.4...v1.9.5) (2021-11-21)
+
+
+### Bug Fixes
+
+* **lib:** 修复inline 布局样式问题 ([65a7143](https://github.com/lljj-x/vue-json-schema-form/commit/65a7143fc19105f9096afc24a25107c0ef27ac5f)), closes [#122](https://github.com/lljj-x/vue-json-schema-form/issues/122)
+
+
+
+
+
+## [1.9.3](https://github.com/lljj-x/vue-json-schema-form/compare/v1.9.2...v1.9.3) (2021-10-10)
+
+
+### Bug Fixes
+
+* **lib:** allOf merge 相同类型直接使用左边 ([c0bd0cd](https://github.com/lljj-x/vue-json-schema-form/commit/c0bd0cde9f15b4ca928fec84b4831a5cb459aa43)), closes [#116](https://github.com/lljj-x/vue-json-schema-form/issues/116)
+
+
+
+
+
+## [1.9.2](https://github.com/lljj-x/vue-json-schema-form/compare/v1.9.1...v1.9.2) (2021-09-25)
+
+
+### Bug Fixes
+
+* **lib:** 修复anyof 默认值计算可能丢失属性 ([44bcb44](https://github.com/lljj-x/vue-json-schema-form/commit/44bcb44af63a37847cd3df5614fad2f26bdf307d)), closes [#108](https://github.com/lljj-x/vue-json-schema-form/issues/108)
+* **lib:** 修复anyOf嵌套object 可能丢失部分校验规则的问题 ([5c06294](https://github.com/lljj-x/vue-json-schema-form/commit/5c06294d9a9c978bda1c3724710cfd4ba478af5b))
+
+
+
+
+
+## [1.9.1](https://github.com/lljj-x/vue-json-schema-form/compare/v1.9.0...v1.9.1) (2021-09-22)
+
+**Note:** Version bump only for package @lljj/vjsf-utils
+
+
+
+
+
+# [1.9.0](https://github.com/lljj-x/vue-json-schema-form/compare/v1.7.0...v1.9.0) (2021-09-06)
+
+
+### Features
+
+* **vue2:** vue2 添加 widgetListeners 配置 ([50348c2](https://github.com/lljj-x/vue-json-schema-form/commit/50348c27e72813ea16fdcfcea46e6450ccf06018)), closes [#45](https://github.com/lljj-x/vue-json-schema-form/issues/45)
+
+
+
+
+
+# [1.8.0](https://github.com/lljj-x/vue-json-schema-form/compare/v1.7.0...v1.8.0) (2021-09-06)
+
+
+### Features
+
+* **vue2:** vue2 添加 widgetListeners 配置 ([50348c2](https://github.com/lljj-x/vue-json-schema-form/commit/50348c27e72813ea16fdcfcea46e6450ccf06018)), closes [#45](https://github.com/lljj-x/vue-json-schema-form/issues/45)
+
+
+
+
+
+# [1.7.0](https://github.com/lljj-x/vue-json-schema-form/compare/v1.6.4...v1.7.0) (2021-08-29)
+
+
+### Features
+
+* **lib:** 支持配置 slots ([27f1501](https://github.com/lljj-x/vue-json-schema-form/commit/27f1501eda01eabd4a723656be56904e9cb0f069)), closes [#45](https://github.com/lljj-x/vue-json-schema-form/issues/45)
+
+
+
+
+
+## [1.6.3](https://github.com/lljj-x/vue-json-schema-form/compare/v1.6.2...v1.6.3) (2021-07-12)
+
+**Note:** Version bump only for package @lljj/vjsf-utils
+
+
+
+
+
+## [1.6.2](https://github.com/lljj-x/vue-json-schema-form/compare/v1.6.1...v1.6.2) (2021-05-31)
+
+**Note:** Version bump only for package @lljj/vjsf-utils
+
+
+
+
+
+# [1.3.0](https://github.com/lljj-x/vue-json-schema-form/compare/v1.2.1...v1.3.0) (2021-04-15)
+
+
+### Bug Fixes
+
+* **core:** 修复 anyof 后代存在 $ref可能无法回填的问题 ([4dd046b](https://github.com/lljj-x/vue-json-schema-form/commit/4dd046bee0e5c3589f2bfa64ba0d90ed7869067a)), closes [#59](https://github.com/lljj-x/vue-json-schema-form/issues/59)
+
+
+### Features
+
+* **core:** widget 节点直接配置onChange ([2d2264b](https://github.com/lljj-x/vue-json-schema-form/commit/2d2264b004c3b6586e225c563bf03ca52fc5e53a))
+
+
+
+
+
+## [1.2.1](https://github.com/lljj-x/vue-json-schema-form/compare/v1.2.0...v1.2.1) (2021-04-11)
+
+
+### Bug Fixes
+
+* **lib:** 修复anyOf下多级对象初始值计算错误问题 ([6dd9780](https://github.com/lljj-x/vue-json-schema-form/commit/6dd97804573aa55001c2715da4a6ffcc5ee897b9)), closes [#57](https://github.com/lljj-x/vue-json-schema-form/issues/57)
+
+
+
+
+
+# [1.2.0](https://github.com/lljj-x/vue-json-schema-form/compare/v1.1.3...v1.2.0) (2021-03-30)
+
+
+### Features
+
+* **lib:** 添加 fallback-label 参数 ([cd2d8c3](https://github.com/lljj-x/vue-json-schema-form/commit/cd2d8c3ed72b9bc03e44eb5b86eb1b18fe67c34c)), closes [#45](https://github.com/lljj-x/vue-json-schema-form/issues/45)
+
+
+
+
+
+## [1.1.3](https://github.com/lljj-x/vue-json-schema-form/compare/v1.1.2...v1.1.3) (2021-03-18)
+
+**Note:** Version bump only for package @lljj/vjsf-utils
+
+
+
+
+
+# [1.1.0](https://github.com/lljj-x/vue-json-schema-form/compare/v1.0.2...v1.1.0) (2021-03-06)
+
+
+### Features
+
+* **vue3-ant:** 更新初始化 ([71a2810](https://github.com/lljj-x/vue-json-schema-form/commit/71a281045af11f215333050396aa546dd5e78b88)), closes [#27](https://github.com/lljj-x/vue-json-schema-form/issues/27) [#27](https://github.com/lljj-x/vue-json-schema-form/issues/27) [#27](https://github.com/lljj-x/vue-json-schema-form/issues/27) [#40](https://github.com/lljj-x/vue-json-schema-form/issues/40)
+
+
+
+
+
+## [1.0.2](https://github.com/lljj-x/vue-json-schema-form/compare/v1.0.1...v1.0.2) (2021-01-31)
+
+
+### Bug Fixes
+
+* **style:** 修复p标签等自带边距导致的样式问题 ([7b7e43e](https://github.com/lljj-x/vue-json-schema-form/commit/7b7e43eaa06c14a436b34c38d6d69aad27d67512))
+
+
+
+
+
+## [0.6.1](https://github.com/lljj-x/vue-json-schema-form/compare/v0.6.0...v0.6.1) (2021-01-19)
+
+**Note:** Version bump only for package @lljj/vjsf-utils
+
+
+
+
+
+# [0.6.0](https://github.com/lljj-x/vue-json-schema-form/compare/v0.5.0...v0.6.0) (2021-01-19)
+
+
+### Bug Fixes
+
+* **lib:** 修复 anyOf 类型,编辑时不能匹配正确选项 ([d747722](https://github.com/lljj-x/vue-json-schema-form/commit/d7477227d004e47c2b186c3eb956e4c83d7077ad)), closes [#31](https://github.com/lljj-x/vue-json-schema-form/issues/31)
+* **lib:** 解决打包后包含es6代码问题 ([f03352e](https://github.com/lljj-x/vue-json-schema-form/commit/f03352eb129c45963ad41e3e91eebe102c303913)), closes [#29](https://github.com/lljj-x/vue-json-schema-form/issues/29)
+
+
+### Features
+
+* **iview:** 添加iview i-switch 组件转换 ([8fae70c](https://github.com/lljj-x/vue-json-schema-form/commit/8fae70cb28f7fd02073d6d4318861b7f08f6199b))
+* **vue3:** 完成 vue3 form组件 ([1c5deba](https://github.com/lljj-x/vue-json-schema-form/commit/1c5debae4cb92f3f54de64d8f38c98396022a344))
diff --git a/misc/config_tools/configurator/packages/vue-json-schema-form/utils/README.md b/misc/config_tools/configurator/packages/vue-json-schema-form/utils/README.md
new file mode 100644
index 000000000..fc900ab85
--- /dev/null
+++ b/misc/config_tools/configurator/packages/vue-json-schema-form/utils/README.md
@@ -0,0 +1,40 @@
+# @lljj/vjsf-utils
+表单基础通用工具类,具体的参数可参见源码
+
+## @lljj/vjsf-utils/i18n
+ 管理当前多语言
+
+
+## @lljj/vjsf-utils/schema/getDefaultFormState
+根据 jsonSchema 和 formData,计算当前schema value
+
+## @lljj/vjsf-utils/schema/validate
+
+```js
+import {
+ ajvValidateFormData,
+ validateFormDataAndTransformMsg,
+ isValid
+} from '@lljj/vjsf-utils/schema/validate';
+
+// 直接调用 ajv 验证schema,返回格式化后的结果
+ajvValidateFormData(...args);
+
+// 校验数据并处理多语言(只处理当前节点)
+validateFormDataAndTransformMsg(...args);
+
+// 返回数据是否校验成功
+isValid(...args);
+
+// 返回数据是否校验成功
+isValid(...args);
+```
+
+## @lljj/vjsf-utils/arrayUtils
+数组相关的工具类
+
+## @lljj/vjsf-utils/formUtils
+表单相关的工具类
+
+## @lljj/vjsf-utils/vueUtils
+Vue相关的工具类
diff --git a/misc/config_tools/configurator/packages/vue-json-schema-form/utils/arrayUtils.js b/misc/config_tools/configurator/packages/vue-json-schema-form/utils/arrayUtils.js
new file mode 100644
index 000000000..a303eb543
--- /dev/null
+++ b/misc/config_tools/configurator/packages/vue-json-schema-form/utils/arrayUtils.js
@@ -0,0 +1,53 @@
+/**
+ * Created by Liu.Jun on 2020/4/25 10:53.
+ */
+
+// 通过 index 上移
+export function moveUpAt(target, index) {
+ if (index === 0) return false;
+ const item = target[index];
+ const newItems = [item, target[index - 1]];
+ return target.splice(index - 1, 2, ...newItems);
+}
+
+// 通过 index 下移动
+export function moveDownAt(target, index) {
+ if (index === target.length - 1) return false;
+ const item = target[index];
+ const newItems = [target[index + 1], item];
+ return target.splice(index, 2, ...newItems);
+}
+
+// 移除
+export function removeAt(target, index) {
+ // 移除数组中指定位置的元素,返回布尔表示成功与否
+ return !!target.splice(index, 1).length;
+}
+
+// 数组填充对象
+export function fillObj(target, data) {
+ // 简单复制 异常直接抛错
+ try {
+ if (typeof data === 'object') {
+ return target.fill(null).map(() => JSON.parse(JSON.stringify(data)));
+ }
+ } catch (e) {
+ // nothing ...
+ }
+
+ // 默认返回一个 undefined
+ return undefined;
+}
+
+// 切割分为多个数组
+export function cutOff(target, cutOffPointIndex) {
+ return target.reduce((preVal, curVal, curIndex) => {
+ preVal[curIndex > cutOffPointIndex ? 1 : 0].push(curVal);
+ return preVal;
+ }, [[], []]);
+}
+
+// 数组交集
+export function intersection(arr1, arr2) {
+ return arr1.filter(item => arr2.includes(item));
+}
diff --git a/misc/config_tools/configurator/packages/vue-json-schema-form/utils/components/FieldGroupWrap.vue b/misc/config_tools/configurator/packages/vue-json-schema-form/utils/components/FieldGroupWrap.vue
new file mode 100644
index 000000000..a1ae1c442
--- /dev/null
+++ b/misc/config_tools/configurator/packages/vue-json-schema-form/utils/components/FieldGroupWrap.vue
@@ -0,0 +1,64 @@
+
+