18c2ecf20Sopenharmony_ci/* bnx2x_dump.h: QLogic Everest network driver.
28c2ecf20Sopenharmony_ci *
38c2ecf20Sopenharmony_ci * Copyright (c) 2012-2013 Broadcom Corporation
48c2ecf20Sopenharmony_ci * Copyright (c) 2014 QLogic Corporation
58c2ecf20Sopenharmony_ci * All rights reserved
68c2ecf20Sopenharmony_ci *
78c2ecf20Sopenharmony_ci * Unless you and QLogic execute a separate written software license
88c2ecf20Sopenharmony_ci * agreement governing use of this software, this software is licensed to you
98c2ecf20Sopenharmony_ci * under the terms of the GNU General Public License version 2, available
108c2ecf20Sopenharmony_ci * at http://www.gnu.org/licenses/old-licenses/gpl-2.0.html (the "GPL").
118c2ecf20Sopenharmony_ci *
128c2ecf20Sopenharmony_ci * Notwithstanding the above, under no circumstances may you combine this
138c2ecf20Sopenharmony_ci * software in any way with any other QLogic software provided under a
148c2ecf20Sopenharmony_ci * license other than the GPL, without QLogic's express prior written
158c2ecf20Sopenharmony_ci * consent.
168c2ecf20Sopenharmony_ci */
178c2ecf20Sopenharmony_ci
188c2ecf20Sopenharmony_ci#ifndef BNX2X_DUMP_H
198c2ecf20Sopenharmony_ci#define BNX2X_DUMP_H
208c2ecf20Sopenharmony_ci
218c2ecf20Sopenharmony_ci/* WaitP Definitions */
228c2ecf20Sopenharmony_ci#define DRV_DUMP_XSTORM_WAITP_ADDRESS    0x2b8a80
238c2ecf20Sopenharmony_ci#define DRV_DUMP_TSTORM_WAITP_ADDRESS    0x1b8a80
248c2ecf20Sopenharmony_ci#define DRV_DUMP_USTORM_WAITP_ADDRESS    0x338a80
258c2ecf20Sopenharmony_ci#define DRV_DUMP_CSTORM_WAITP_ADDRESS    0x238a80
268c2ecf20Sopenharmony_ci
278c2ecf20Sopenharmony_ci/* Possible Chips */
288c2ecf20Sopenharmony_ci#define DUMP_CHIP_E1 1
298c2ecf20Sopenharmony_ci#define DUMP_CHIP_E1H 2
308c2ecf20Sopenharmony_ci#define DUMP_CHIP_E2 4
318c2ecf20Sopenharmony_ci#define DUMP_CHIP_E3A0 8
328c2ecf20Sopenharmony_ci#define DUMP_CHIP_E3B0 16
338c2ecf20Sopenharmony_ci#define DUMP_PATH_0 512
348c2ecf20Sopenharmony_ci#define DUMP_PATH_1 1024
358c2ecf20Sopenharmony_ci#define NUM_PRESETS 13
368c2ecf20Sopenharmony_ci#define NUM_CHIPS 5
378c2ecf20Sopenharmony_ci
388c2ecf20Sopenharmony_cistruct	dump_header {
398c2ecf20Sopenharmony_ci	u32 header_size; /* Size in DWORDs excluding this field */
408c2ecf20Sopenharmony_ci	u32 version;
418c2ecf20Sopenharmony_ci	u32 preset;
428c2ecf20Sopenharmony_ci	u32 dump_meta_data; /* OR of CHIP and PATH. */
438c2ecf20Sopenharmony_ci};
448c2ecf20Sopenharmony_ci
458c2ecf20Sopenharmony_ci#define  BNX2X_DUMP_VERSION 0x61111111
468c2ecf20Sopenharmony_cistruct reg_addr {
478c2ecf20Sopenharmony_ci	u32 addr;
488c2ecf20Sopenharmony_ci	u32 size;
498c2ecf20Sopenharmony_ci	u32 chips;
508c2ecf20Sopenharmony_ci	u32 presets;
518c2ecf20Sopenharmony_ci};
528c2ecf20Sopenharmony_ci
538c2ecf20Sopenharmony_cistruct wreg_addr {
548c2ecf20Sopenharmony_ci	u32 addr;
558c2ecf20Sopenharmony_ci	u32 size;
568c2ecf20Sopenharmony_ci	u32 read_regs_count;
578c2ecf20Sopenharmony_ci	const u32 *read_regs;
588c2ecf20Sopenharmony_ci	u32 chips;
598c2ecf20Sopenharmony_ci	u32 presets;
608c2ecf20Sopenharmony_ci};
618c2ecf20Sopenharmony_ci
628c2ecf20Sopenharmony_ci#define PAGE_MODE_VALUES_E2 2
638c2ecf20Sopenharmony_ci#define PAGE_READ_REGS_E2 1
648c2ecf20Sopenharmony_ci#define PAGE_WRITE_REGS_E2 1
658c2ecf20Sopenharmony_cistatic const u32 page_vals_e2[] = {0, 128};
668c2ecf20Sopenharmony_cistatic const u32 page_write_regs_e2[] = {328476};
678c2ecf20Sopenharmony_cistatic const struct reg_addr page_read_regs_e2[] = {
688c2ecf20Sopenharmony_ci	{0x58000, 4608, DUMP_CHIP_E2, 0x30}
698c2ecf20Sopenharmony_ci};
708c2ecf20Sopenharmony_ci
718c2ecf20Sopenharmony_ci#define PAGE_MODE_VALUES_E3 2
728c2ecf20Sopenharmony_ci#define PAGE_READ_REGS_E3 1
738c2ecf20Sopenharmony_ci#define PAGE_WRITE_REGS_E3 1
748c2ecf20Sopenharmony_cistatic const u32 page_vals_e3[] = {0, 128};
758c2ecf20Sopenharmony_cistatic const u32 page_write_regs_e3[] = {328476};
768c2ecf20Sopenharmony_cistatic const struct reg_addr page_read_regs_e3[] = {
778c2ecf20Sopenharmony_ci	{0x58000, 4608, DUMP_CHIP_E3A0 | DUMP_CHIP_E3B0, 0x30}
788c2ecf20Sopenharmony_ci};
798c2ecf20Sopenharmony_ci
808c2ecf20Sopenharmony_cistatic const struct reg_addr reg_addrs[] = {
818c2ecf20Sopenharmony_ci	{ 0x2000, 1, 0x1f, 0xfff},
828c2ecf20Sopenharmony_ci	{ 0x2004, 1, 0x1f, 0x1fff},
838c2ecf20Sopenharmony_ci	{ 0x2008, 25, 0x1f, 0xfff},
848c2ecf20Sopenharmony_ci	{ 0x206c, 1, 0x1f, 0x1fff},
858c2ecf20Sopenharmony_ci	{ 0x2070, 313, 0x1f, 0xfff},
868c2ecf20Sopenharmony_ci	{ 0x2800, 103, 0x1f, 0xfff},
878c2ecf20Sopenharmony_ci	{ 0x3000, 287, 0x1f, 0xfff},
888c2ecf20Sopenharmony_ci	{ 0x3800, 331, 0x1f, 0xfff},
898c2ecf20Sopenharmony_ci	{ 0x8800, 6, 0x1f, 0x924},
908c2ecf20Sopenharmony_ci	{ 0x8818, 1, 0x1e, 0x924},
918c2ecf20Sopenharmony_ci	{ 0x9000, 4, 0x1c, 0x924},
928c2ecf20Sopenharmony_ci	{ 0x9010, 7, 0x1c, 0xfff},
938c2ecf20Sopenharmony_ci	{ 0x902c, 1, 0x1c, 0x924},
948c2ecf20Sopenharmony_ci	{ 0x9030, 1, 0x1c, 0xfff},
958c2ecf20Sopenharmony_ci	{ 0x9034, 13, 0x1c, 0x924},
968c2ecf20Sopenharmony_ci	{ 0x9068, 16, 0x1c, 0xfff},
978c2ecf20Sopenharmony_ci	{ 0x90a8, 98, 0x1c, 0x924},
988c2ecf20Sopenharmony_ci	{ 0x9230, 2, 0x1c, 0xfff},
998c2ecf20Sopenharmony_ci	{ 0x9238, 3, 0x1c, 0x924},
1008c2ecf20Sopenharmony_ci	{ 0x9244, 1, 0x1c, 0xfff},
1018c2ecf20Sopenharmony_ci	{ 0x9248, 1, 0x1c, 0x924},
1028c2ecf20Sopenharmony_ci	{ 0x924c, 1, 0x4, 0x924},
1038c2ecf20Sopenharmony_ci	{ 0x9250, 16, 0x1c, 0x924},
1048c2ecf20Sopenharmony_ci	{ 0x92a8, 2, 0x1c, 0x1fff},
1058c2ecf20Sopenharmony_ci	{ 0x92b4, 1, 0x1c, 0x1fff},
1068c2ecf20Sopenharmony_ci	{ 0x9400, 33, 0x1c, 0x924},
1078c2ecf20Sopenharmony_ci	{ 0x9484, 5, 0x18, 0x924},
1088c2ecf20Sopenharmony_ci	{ 0xa000, 27, 0x1f, 0x924},
1098c2ecf20Sopenharmony_ci	{ 0xa06c, 1, 0x3, 0x924},
1108c2ecf20Sopenharmony_ci	{ 0xa070, 2, 0x1f, 0x924},
1118c2ecf20Sopenharmony_ci	{ 0xa078, 1, 0x1f, 0x1fff},
1128c2ecf20Sopenharmony_ci	{ 0xa07c, 31, 0x1f, 0x924},
1138c2ecf20Sopenharmony_ci	{ 0xa0f8, 1, 0x1f, 0x1fff},
1148c2ecf20Sopenharmony_ci	{ 0xa0fc, 3, 0x1f, 0x924},
1158c2ecf20Sopenharmony_ci	{ 0xa108, 1, 0x1f, 0x1fff},
1168c2ecf20Sopenharmony_ci	{ 0xa10c, 3, 0x1f, 0x924},
1178c2ecf20Sopenharmony_ci	{ 0xa118, 1, 0x1f, 0x1fff},
1188c2ecf20Sopenharmony_ci	{ 0xa11c, 28, 0x1f, 0x924},
1198c2ecf20Sopenharmony_ci	{ 0xa18c, 4, 0x3, 0x924},
1208c2ecf20Sopenharmony_ci	{ 0xa19c, 3, 0x1f, 0x924},
1218c2ecf20Sopenharmony_ci	{ 0xa1a8, 1, 0x1f, 0x1fff},
1228c2ecf20Sopenharmony_ci	{ 0xa1ac, 3, 0x1f, 0x924},
1238c2ecf20Sopenharmony_ci	{ 0xa1b8, 1, 0x1f, 0x1fff},
1248c2ecf20Sopenharmony_ci	{ 0xa1bc, 54, 0x1f, 0x924},
1258c2ecf20Sopenharmony_ci	{ 0xa294, 2, 0x3, 0x924},
1268c2ecf20Sopenharmony_ci	{ 0xa29c, 2, 0x1f, 0x924},
1278c2ecf20Sopenharmony_ci	{ 0xa2a4, 2, 0x7, 0x924},
1288c2ecf20Sopenharmony_ci	{ 0xa2ac, 2, 0x1f, 0x924},
1298c2ecf20Sopenharmony_ci	{ 0xa2b4, 1, 0x1f, 0x1fff},
1308c2ecf20Sopenharmony_ci	{ 0xa2b8, 49, 0x1f, 0x924},
1318c2ecf20Sopenharmony_ci	{ 0xa38c, 2, 0x1f, 0x1fff},
1328c2ecf20Sopenharmony_ci	{ 0xa398, 1, 0x1f, 0x1fff},
1338c2ecf20Sopenharmony_ci	{ 0xa39c, 7, 0x1e, 0x924},
1348c2ecf20Sopenharmony_ci	{ 0xa3b8, 2, 0x18, 0x924},
1358c2ecf20Sopenharmony_ci	{ 0xa3c0, 1, 0x1e, 0x924},
1368c2ecf20Sopenharmony_ci	{ 0xa3c4, 1, 0x1e, 0xfff},
1378c2ecf20Sopenharmony_ci	{ 0xa3c8, 1, 0x1e, 0x924},
1388c2ecf20Sopenharmony_ci	{ 0xa3d0, 1, 0x1e, 0x924},
1398c2ecf20Sopenharmony_ci	{ 0xa3d8, 1, 0x1e, 0x924},
1408c2ecf20Sopenharmony_ci	{ 0xa3e0, 1, 0x1e, 0x924},
1418c2ecf20Sopenharmony_ci	{ 0xa3e8, 1, 0x1e, 0x924},
1428c2ecf20Sopenharmony_ci	{ 0xa3f0, 1, 0x1e, 0x924},
1438c2ecf20Sopenharmony_ci	{ 0xa3f8, 1, 0x1e, 0x924},
1448c2ecf20Sopenharmony_ci	{ 0xa400, 1, 0x1f, 0x924},
1458c2ecf20Sopenharmony_ci	{ 0xa404, 1, 0x1f, 0xfff},
1468c2ecf20Sopenharmony_ci	{ 0xa408, 2, 0x1f, 0x1fff},
1478c2ecf20Sopenharmony_ci	{ 0xa410, 7, 0x1f, 0x924},
1488c2ecf20Sopenharmony_ci	{ 0xa42c, 12, 0x1f, 0xfff},
1498c2ecf20Sopenharmony_ci	{ 0xa45c, 1, 0x1f, 0x924},
1508c2ecf20Sopenharmony_ci	{ 0xa460, 1, 0x1f, 0x1924},
1518c2ecf20Sopenharmony_ci	{ 0xa464, 15, 0x1f, 0x924},
1528c2ecf20Sopenharmony_ci	{ 0xa4a0, 1, 0x7, 0x924},
1538c2ecf20Sopenharmony_ci	{ 0xa4a4, 2, 0x1f, 0x924},
1548c2ecf20Sopenharmony_ci	{ 0xa4ac, 2, 0x3, 0x924},
1558c2ecf20Sopenharmony_ci	{ 0xa4b4, 1, 0x7, 0x924},
1568c2ecf20Sopenharmony_ci	{ 0xa4b8, 2, 0x3, 0x924},
1578c2ecf20Sopenharmony_ci	{ 0xa4c0, 3, 0x1f, 0x924},
1588c2ecf20Sopenharmony_ci	{ 0xa4cc, 5, 0x3, 0x924},
1598c2ecf20Sopenharmony_ci	{ 0xa4e0, 3, 0x1f, 0x924},
1608c2ecf20Sopenharmony_ci	{ 0xa4fc, 2, 0x1f, 0x924},
1618c2ecf20Sopenharmony_ci	{ 0xa504, 1, 0x3, 0x924},
1628c2ecf20Sopenharmony_ci	{ 0xa508, 3, 0x1f, 0x924},
1638c2ecf20Sopenharmony_ci	{ 0xa518, 1, 0x1f, 0x924},
1648c2ecf20Sopenharmony_ci	{ 0xa520, 1, 0x1f, 0x924},
1658c2ecf20Sopenharmony_ci	{ 0xa528, 1, 0x1f, 0x924},
1668c2ecf20Sopenharmony_ci	{ 0xa530, 1, 0x1f, 0x924},
1678c2ecf20Sopenharmony_ci	{ 0xa538, 1, 0x1f, 0x924},
1688c2ecf20Sopenharmony_ci	{ 0xa540, 1, 0x1f, 0x924},
1698c2ecf20Sopenharmony_ci	{ 0xa548, 1, 0x3, 0x924},
1708c2ecf20Sopenharmony_ci	{ 0xa550, 1, 0x3, 0x924},
1718c2ecf20Sopenharmony_ci	{ 0xa558, 1, 0x3, 0x924},
1728c2ecf20Sopenharmony_ci	{ 0xa560, 1, 0x3, 0x924},
1738c2ecf20Sopenharmony_ci	{ 0xa568, 1, 0x3, 0x924},
1748c2ecf20Sopenharmony_ci	{ 0xa570, 1, 0x1f, 0x924},
1758c2ecf20Sopenharmony_ci	{ 0xa580, 1, 0x1f, 0x1fff},
1768c2ecf20Sopenharmony_ci	{ 0xa590, 1, 0x1f, 0x1fff},
1778c2ecf20Sopenharmony_ci	{ 0xa5a0, 1, 0x7, 0x924},
1788c2ecf20Sopenharmony_ci	{ 0xa5c0, 1, 0x1f, 0x924},
1798c2ecf20Sopenharmony_ci	{ 0xa5e0, 1, 0x1e, 0x924},
1808c2ecf20Sopenharmony_ci	{ 0xa5e8, 1, 0x1e, 0x924},
1818c2ecf20Sopenharmony_ci	{ 0xa5f0, 1, 0x1e, 0x924},
1828c2ecf20Sopenharmony_ci	{ 0xa5f8, 1, 0x6, 0x924},
1838c2ecf20Sopenharmony_ci	{ 0xa5fc, 1, 0x1e, 0x924},
1848c2ecf20Sopenharmony_ci	{ 0xa600, 5, 0x1e, 0xfff},
1858c2ecf20Sopenharmony_ci	{ 0xa614, 1, 0x1e, 0x924},
1868c2ecf20Sopenharmony_ci	{ 0xa618, 1, 0x1e, 0xfff},
1878c2ecf20Sopenharmony_ci	{ 0xa61c, 1, 0x1e, 0x924},
1888c2ecf20Sopenharmony_ci	{ 0xa620, 6, 0x1c, 0x924},
1898c2ecf20Sopenharmony_ci	{ 0xa638, 20, 0x4, 0x924},
1908c2ecf20Sopenharmony_ci	{ 0xa688, 35, 0x1c, 0x924},
1918c2ecf20Sopenharmony_ci	{ 0xa714, 1, 0x1c, 0xfff},
1928c2ecf20Sopenharmony_ci	{ 0xa718, 2, 0x1c, 0x924},
1938c2ecf20Sopenharmony_ci	{ 0xa720, 1, 0x1c, 0xfff},
1948c2ecf20Sopenharmony_ci	{ 0xa724, 3, 0x1c, 0x924},
1958c2ecf20Sopenharmony_ci	{ 0xa730, 1, 0x4, 0x924},
1968c2ecf20Sopenharmony_ci	{ 0xa734, 2, 0x1c, 0x924},
1978c2ecf20Sopenharmony_ci	{ 0xa73c, 4, 0x4, 0x924},
1988c2ecf20Sopenharmony_ci	{ 0xa74c, 1, 0x1c, 0x924},
1998c2ecf20Sopenharmony_ci	{ 0xa750, 1, 0x1c, 0xfff},
2008c2ecf20Sopenharmony_ci	{ 0xa754, 3, 0x1c, 0x924},
2018c2ecf20Sopenharmony_ci	{ 0xa760, 5, 0x4, 0x924},
2028c2ecf20Sopenharmony_ci	{ 0xa774, 7, 0x1c, 0x924},
2038c2ecf20Sopenharmony_ci	{ 0xa790, 15, 0x4, 0x924},
2048c2ecf20Sopenharmony_ci	{ 0xa7cc, 4, 0x1c, 0x924},
2058c2ecf20Sopenharmony_ci	{ 0xa7e0, 6, 0x18, 0x924},
2068c2ecf20Sopenharmony_ci	{ 0xa800, 18, 0x4, 0x924},
2078c2ecf20Sopenharmony_ci	{ 0xa848, 33, 0x1c, 0x924},
2088c2ecf20Sopenharmony_ci	{ 0xa8cc, 2, 0x18, 0x924},
2098c2ecf20Sopenharmony_ci	{ 0xa8d4, 4, 0x1c, 0x924},
2108c2ecf20Sopenharmony_ci	{ 0xa8e4, 1, 0x18, 0x924},
2118c2ecf20Sopenharmony_ci	{ 0xa8e8, 1, 0x1c, 0x924},
2128c2ecf20Sopenharmony_ci	{ 0xa8f0, 1, 0x1c, 0x924},
2138c2ecf20Sopenharmony_ci	{ 0xa8f8, 30, 0x18, 0x924},
2148c2ecf20Sopenharmony_ci	{ 0xa974, 73, 0x18, 0x924},
2158c2ecf20Sopenharmony_ci	{ 0xac30, 1, 0x18, 0x924},
2168c2ecf20Sopenharmony_ci	{ 0xac40, 1, 0x18, 0x924},
2178c2ecf20Sopenharmony_ci	{ 0xac50, 1, 0x18, 0x924},
2188c2ecf20Sopenharmony_ci	{ 0xac60, 1, 0x10, 0x924},
2198c2ecf20Sopenharmony_ci	{ 0x10000, 9, 0x1f, 0x924},
2208c2ecf20Sopenharmony_ci	{ 0x10024, 1, 0x7, 0x924},
2218c2ecf20Sopenharmony_ci	{ 0x10028, 5, 0x1f, 0x924},
2228c2ecf20Sopenharmony_ci	{ 0x1003c, 6, 0x7, 0x924},
2238c2ecf20Sopenharmony_ci	{ 0x10054, 20, 0x1f, 0x924},
2248c2ecf20Sopenharmony_ci	{ 0x100a4, 4, 0x7, 0x924},
2258c2ecf20Sopenharmony_ci	{ 0x100b4, 11, 0x1f, 0x924},
2268c2ecf20Sopenharmony_ci	{ 0x100e0, 4, 0x7, 0x924},
2278c2ecf20Sopenharmony_ci	{ 0x100f0, 8, 0x1f, 0x924},
2288c2ecf20Sopenharmony_ci	{ 0x10110, 6, 0x7, 0x924},
2298c2ecf20Sopenharmony_ci	{ 0x10128, 110, 0x1f, 0x924},
2308c2ecf20Sopenharmony_ci	{ 0x102e0, 4, 0x7, 0x924},
2318c2ecf20Sopenharmony_ci	{ 0x102f0, 18, 0x1f, 0x924},
2328c2ecf20Sopenharmony_ci	{ 0x10338, 20, 0x7, 0x924},
2338c2ecf20Sopenharmony_ci	{ 0x10388, 10, 0x1f, 0x924},
2348c2ecf20Sopenharmony_ci	{ 0x103d0, 2, 0x3, 0x1fff},
2358c2ecf20Sopenharmony_ci	{ 0x103dc, 1, 0x3, 0x1fff},
2368c2ecf20Sopenharmony_ci	{ 0x10400, 6, 0x7, 0x924},
2378c2ecf20Sopenharmony_ci	{ 0x10418, 1, 0x1f, 0xfff},
2388c2ecf20Sopenharmony_ci	{ 0x1041c, 1, 0x1f, 0x924},
2398c2ecf20Sopenharmony_ci	{ 0x10420, 1, 0x1f, 0xfff},
2408c2ecf20Sopenharmony_ci	{ 0x10424, 1, 0x1f, 0x924},
2418c2ecf20Sopenharmony_ci	{ 0x10428, 1, 0x1f, 0xfff},
2428c2ecf20Sopenharmony_ci	{ 0x1042c, 1, 0x1f, 0x924},
2438c2ecf20Sopenharmony_ci	{ 0x10430, 10, 0x7, 0x924},
2448c2ecf20Sopenharmony_ci	{ 0x10458, 2, 0x1f, 0x924},
2458c2ecf20Sopenharmony_ci	{ 0x10460, 1, 0x1f, 0xfff},
2468c2ecf20Sopenharmony_ci	{ 0x10464, 4, 0x1f, 0x924},
2478c2ecf20Sopenharmony_ci	{ 0x10474, 1, 0x1f, 0xfff},
2488c2ecf20Sopenharmony_ci	{ 0x10478, 14, 0x1f, 0x924},
2498c2ecf20Sopenharmony_ci	{ 0x104b0, 12, 0x7, 0x924},
2508c2ecf20Sopenharmony_ci	{ 0x104e0, 1, 0x1f, 0xfff},
2518c2ecf20Sopenharmony_ci	{ 0x104e8, 1, 0x1f, 0x924},
2528c2ecf20Sopenharmony_ci	{ 0x104ec, 1, 0x1f, 0xfff},
2538c2ecf20Sopenharmony_ci	{ 0x104f4, 1, 0x1f, 0x924},
2548c2ecf20Sopenharmony_ci	{ 0x104f8, 1, 0x1f, 0xfff},
2558c2ecf20Sopenharmony_ci	{ 0x10500, 2, 0x1f, 0x924},
2568c2ecf20Sopenharmony_ci	{ 0x10508, 1, 0x1f, 0xfff},
2578c2ecf20Sopenharmony_ci	{ 0x1050c, 9, 0x1f, 0x924},
2588c2ecf20Sopenharmony_ci	{ 0x10530, 1, 0x1f, 0xfff},
2598c2ecf20Sopenharmony_ci	{ 0x10534, 1, 0x1f, 0x924},
2608c2ecf20Sopenharmony_ci	{ 0x10538, 1, 0x1f, 0xfff},
2618c2ecf20Sopenharmony_ci	{ 0x1053c, 3, 0x1f, 0x924},
2628c2ecf20Sopenharmony_ci	{ 0x10548, 1, 0x1f, 0xfff},
2638c2ecf20Sopenharmony_ci	{ 0x1054c, 3, 0x1f, 0x924},
2648c2ecf20Sopenharmony_ci	{ 0x10558, 1, 0x1f, 0xfff},
2658c2ecf20Sopenharmony_ci	{ 0x1055c, 123, 0x1f, 0x924},
2668c2ecf20Sopenharmony_ci	{ 0x10750, 2, 0x7, 0x924},
2678c2ecf20Sopenharmony_ci	{ 0x10760, 2, 0x7, 0x924},
2688c2ecf20Sopenharmony_ci	{ 0x10770, 2, 0x7, 0x924},
2698c2ecf20Sopenharmony_ci	{ 0x10780, 2, 0x7, 0x924},
2708c2ecf20Sopenharmony_ci	{ 0x10790, 2, 0x1f, 0x924},
2718c2ecf20Sopenharmony_ci	{ 0x107a0, 2, 0x7, 0x924},
2728c2ecf20Sopenharmony_ci	{ 0x107b0, 2, 0x7, 0x924},
2738c2ecf20Sopenharmony_ci	{ 0x107c0, 2, 0x7, 0x924},
2748c2ecf20Sopenharmony_ci	{ 0x107d0, 2, 0x7, 0x924},
2758c2ecf20Sopenharmony_ci	{ 0x107e0, 2, 0x1f, 0x924},
2768c2ecf20Sopenharmony_ci	{ 0x10880, 2, 0x1f, 0x924},
2778c2ecf20Sopenharmony_ci	{ 0x10900, 2, 0x1f, 0x924},
2788c2ecf20Sopenharmony_ci	{ 0x16000, 1, 0x6, 0x924},
2798c2ecf20Sopenharmony_ci	{ 0x16004, 25, 0x1e, 0x924},
2808c2ecf20Sopenharmony_ci	{ 0x16070, 8, 0x1e, 0x924},
2818c2ecf20Sopenharmony_ci	{ 0x16090, 4, 0xe, 0x924},
2828c2ecf20Sopenharmony_ci	{ 0x160a0, 6, 0x1e, 0x924},
2838c2ecf20Sopenharmony_ci	{ 0x160c0, 7, 0x1e, 0x924},
2848c2ecf20Sopenharmony_ci	{ 0x160dc, 2, 0x6, 0x924},
2858c2ecf20Sopenharmony_ci	{ 0x160e4, 6, 0x1e, 0x924},
2868c2ecf20Sopenharmony_ci	{ 0x160fc, 4, 0x1e, 0x1fff},
2878c2ecf20Sopenharmony_ci	{ 0x1610c, 2, 0x6, 0x924},
2888c2ecf20Sopenharmony_ci	{ 0x16114, 6, 0x1e, 0x924},
2898c2ecf20Sopenharmony_ci	{ 0x16140, 48, 0x1e, 0x1fff},
2908c2ecf20Sopenharmony_ci	{ 0x16204, 5, 0x1e, 0x924},
2918c2ecf20Sopenharmony_ci	{ 0x18000, 1, 0x1e, 0x924},
2928c2ecf20Sopenharmony_ci	{ 0x18008, 1, 0x1e, 0x924},
2938c2ecf20Sopenharmony_ci	{ 0x18010, 35, 0x1c, 0x924},
2948c2ecf20Sopenharmony_ci	{ 0x180a4, 2, 0x1c, 0x924},
2958c2ecf20Sopenharmony_ci	{ 0x180c0, 9, 0x1c, 0x924},
2968c2ecf20Sopenharmony_ci	{ 0x180e4, 1, 0xc, 0x924},
2978c2ecf20Sopenharmony_ci	{ 0x180e8, 2, 0x1c, 0x924},
2988c2ecf20Sopenharmony_ci	{ 0x180f0, 1, 0xc, 0x924},
2998c2ecf20Sopenharmony_ci	{ 0x180f4, 79, 0x1c, 0x924},
3008c2ecf20Sopenharmony_ci	{ 0x18230, 1, 0xc, 0x924},
3018c2ecf20Sopenharmony_ci	{ 0x18234, 2, 0x1c, 0x924},
3028c2ecf20Sopenharmony_ci	{ 0x1823c, 1, 0xc, 0x924},
3038c2ecf20Sopenharmony_ci	{ 0x18240, 13, 0x1c, 0x924},
3048c2ecf20Sopenharmony_ci	{ 0x18274, 1, 0x4, 0x924},
3058c2ecf20Sopenharmony_ci	{ 0x18278, 12, 0x1c, 0x924},
3068c2ecf20Sopenharmony_ci	{ 0x182a8, 1, 0x1c, 0xfff},
3078c2ecf20Sopenharmony_ci	{ 0x182ac, 3, 0x1c, 0x924},
3088c2ecf20Sopenharmony_ci	{ 0x182b8, 1, 0x1c, 0xfff},
3098c2ecf20Sopenharmony_ci	{ 0x182bc, 19, 0x1c, 0x924},
3108c2ecf20Sopenharmony_ci	{ 0x18308, 1, 0x1c, 0xfff},
3118c2ecf20Sopenharmony_ci	{ 0x1830c, 3, 0x1c, 0x924},
3128c2ecf20Sopenharmony_ci	{ 0x18318, 1, 0x1c, 0xfff},
3138c2ecf20Sopenharmony_ci	{ 0x1831c, 7, 0x1c, 0x924},
3148c2ecf20Sopenharmony_ci	{ 0x18338, 1, 0x1c, 0xfff},
3158c2ecf20Sopenharmony_ci	{ 0x1833c, 3, 0x1c, 0x924},
3168c2ecf20Sopenharmony_ci	{ 0x18348, 1, 0x1c, 0xfff},
3178c2ecf20Sopenharmony_ci	{ 0x1834c, 28, 0x1c, 0x924},
3188c2ecf20Sopenharmony_ci	{ 0x183bc, 2, 0x1c, 0x1fff},
3198c2ecf20Sopenharmony_ci	{ 0x183c8, 3, 0x1c, 0x1fff},
3208c2ecf20Sopenharmony_ci	{ 0x183d8, 1, 0x1c, 0x1fff},
3218c2ecf20Sopenharmony_ci	{ 0x18440, 48, 0x1c, 0x1fff},
3228c2ecf20Sopenharmony_ci	{ 0x18500, 15, 0x1c, 0x924},
3238c2ecf20Sopenharmony_ci	{ 0x18570, 1, 0x18, 0xfff},
3248c2ecf20Sopenharmony_ci	{ 0x18574, 1, 0x18, 0x924},
3258c2ecf20Sopenharmony_ci	{ 0x18578, 1, 0x18, 0xfff},
3268c2ecf20Sopenharmony_ci	{ 0x1857c, 4, 0x18, 0x924},
3278c2ecf20Sopenharmony_ci	{ 0x1858c, 1, 0x18, 0xfff},
3288c2ecf20Sopenharmony_ci	{ 0x18590, 1, 0x18, 0x924},
3298c2ecf20Sopenharmony_ci	{ 0x18594, 1, 0x18, 0xfff},
3308c2ecf20Sopenharmony_ci	{ 0x18598, 32, 0x18, 0x924},
3318c2ecf20Sopenharmony_ci	{ 0x18618, 5, 0x10, 0x924},
3328c2ecf20Sopenharmony_ci	{ 0x1862c, 4, 0x10, 0xfff},
3338c2ecf20Sopenharmony_ci	{ 0x1863c, 16, 0x10, 0x924},
3348c2ecf20Sopenharmony_ci	{ 0x18680, 44, 0x10, 0x924},
3358c2ecf20Sopenharmony_ci	{ 0x18748, 12, 0x10, 0x924},
3368c2ecf20Sopenharmony_ci	{ 0x18788, 1, 0x10, 0x924},
3378c2ecf20Sopenharmony_ci	{ 0x1879c, 6, 0x10, 0x924},
3388c2ecf20Sopenharmony_ci	{ 0x187c4, 51, 0x10, 0x924},
3398c2ecf20Sopenharmony_ci	{ 0x18a00, 48, 0x10, 0x924},
3408c2ecf20Sopenharmony_ci	{ 0x20000, 24, 0x1f, 0x924},
3418c2ecf20Sopenharmony_ci	{ 0x20060, 8, 0x1f, 0x9e4},
3428c2ecf20Sopenharmony_ci	{ 0x20080, 94, 0x1f, 0x924},
3438c2ecf20Sopenharmony_ci	{ 0x201f8, 1, 0x3, 0x924},
3448c2ecf20Sopenharmony_ci	{ 0x201fc, 1, 0x1f, 0x924},
3458c2ecf20Sopenharmony_ci	{ 0x20200, 1, 0x3, 0x924},
3468c2ecf20Sopenharmony_ci	{ 0x20204, 1, 0x1f, 0x924},
3478c2ecf20Sopenharmony_ci	{ 0x20208, 1, 0x3, 0x924},
3488c2ecf20Sopenharmony_ci	{ 0x2020c, 4, 0x1f, 0x924},
3498c2ecf20Sopenharmony_ci	{ 0x2021c, 11, 0x1f, 0xfff},
3508c2ecf20Sopenharmony_ci	{ 0x20248, 24, 0x1f, 0x924},
3518c2ecf20Sopenharmony_ci	{ 0x202b8, 2, 0x1f, 0x1fff},
3528c2ecf20Sopenharmony_ci	{ 0x202c4, 1, 0x1f, 0x1fff},
3538c2ecf20Sopenharmony_ci	{ 0x202c8, 1, 0x1c, 0x924},
3548c2ecf20Sopenharmony_ci	{ 0x202d8, 4, 0x1c, 0x924},
3558c2ecf20Sopenharmony_ci	{ 0x202f0, 1, 0x10, 0x924},
3568c2ecf20Sopenharmony_ci	{ 0x20400, 1, 0x1f, 0x924},
3578c2ecf20Sopenharmony_ci	{ 0x20404, 1, 0x1f, 0xfff},
3588c2ecf20Sopenharmony_ci	{ 0x2040c, 2, 0x1f, 0xfff},
3598c2ecf20Sopenharmony_ci	{ 0x20414, 2, 0x1f, 0x924},
3608c2ecf20Sopenharmony_ci	{ 0x2041c, 2, 0x1f, 0xfff},
3618c2ecf20Sopenharmony_ci	{ 0x20424, 2, 0x1f, 0x924},
3628c2ecf20Sopenharmony_ci	{ 0x2042c, 18, 0x1e, 0x924},
3638c2ecf20Sopenharmony_ci	{ 0x20480, 1, 0x1f, 0x924},
3648c2ecf20Sopenharmony_ci	{ 0x20500, 1, 0x1f, 0x924},
3658c2ecf20Sopenharmony_ci	{ 0x20600, 1, 0x1f, 0x924},
3668c2ecf20Sopenharmony_ci	{ 0x28000, 1, 0x1f, 0x9e4},
3678c2ecf20Sopenharmony_ci	{ 0x28004, 255, 0x1f, 0x180},
3688c2ecf20Sopenharmony_ci	{ 0x28400, 1, 0x1f, 0x1c0},
3698c2ecf20Sopenharmony_ci	{ 0x28404, 255, 0x1f, 0x180},
3708c2ecf20Sopenharmony_ci	{ 0x28800, 1, 0x1f, 0x1c0},
3718c2ecf20Sopenharmony_ci	{ 0x28804, 255, 0x1f, 0x180},
3728c2ecf20Sopenharmony_ci	{ 0x28c00, 1, 0x1f, 0x1c0},
3738c2ecf20Sopenharmony_ci	{ 0x28c04, 255, 0x1f, 0x180},
3748c2ecf20Sopenharmony_ci	{ 0x29000, 1, 0x1f, 0x1c0},
3758c2ecf20Sopenharmony_ci	{ 0x29004, 255, 0x1f, 0x180},
3768c2ecf20Sopenharmony_ci	{ 0x29400, 1, 0x1f, 0x1c0},
3778c2ecf20Sopenharmony_ci	{ 0x29404, 255, 0x1f, 0x180},
3788c2ecf20Sopenharmony_ci	{ 0x29800, 1, 0x1f, 0x1c0},
3798c2ecf20Sopenharmony_ci	{ 0x29804, 255, 0x1f, 0x180},
3808c2ecf20Sopenharmony_ci	{ 0x29c00, 1, 0x1f, 0x1c0},
3818c2ecf20Sopenharmony_ci	{ 0x29c04, 255, 0x1f, 0x180},
3828c2ecf20Sopenharmony_ci	{ 0x2a000, 1, 0x1f, 0x1c0},
3838c2ecf20Sopenharmony_ci	{ 0x2a004, 255, 0x1f, 0x180},
3848c2ecf20Sopenharmony_ci	{ 0x2a400, 1, 0x1f, 0x1c0},
3858c2ecf20Sopenharmony_ci	{ 0x2a404, 255, 0x1f, 0x180},
3868c2ecf20Sopenharmony_ci	{ 0x2a800, 1, 0x1f, 0x1c0},
3878c2ecf20Sopenharmony_ci	{ 0x2a804, 255, 0x1f, 0x180},
3888c2ecf20Sopenharmony_ci	{ 0x2ac00, 1, 0x1f, 0x1c0},
3898c2ecf20Sopenharmony_ci	{ 0x2ac04, 255, 0x1f, 0x180},
3908c2ecf20Sopenharmony_ci	{ 0x2b000, 1, 0x1f, 0x1c0},
3918c2ecf20Sopenharmony_ci	{ 0x2b004, 255, 0x1f, 0x180},
3928c2ecf20Sopenharmony_ci	{ 0x2b400, 1, 0x1f, 0x1c0},
3938c2ecf20Sopenharmony_ci	{ 0x2b404, 255, 0x1f, 0x180},
3948c2ecf20Sopenharmony_ci	{ 0x2b800, 1, 0x1f, 0x1c0},
3958c2ecf20Sopenharmony_ci	{ 0x2b804, 255, 0x1f, 0x180},
3968c2ecf20Sopenharmony_ci	{ 0x2bc00, 1, 0x1f, 0x1c0},
3978c2ecf20Sopenharmony_ci	{ 0x2bc04, 255, 0x1f, 0x180},
3988c2ecf20Sopenharmony_ci	{ 0x2c000, 1, 0x1f, 0x1c0},
3998c2ecf20Sopenharmony_ci	{ 0x2c004, 255, 0x1f, 0x180},
4008c2ecf20Sopenharmony_ci	{ 0x2c400, 1, 0x1f, 0x1c0},
4018c2ecf20Sopenharmony_ci	{ 0x2c404, 255, 0x1f, 0x180},
4028c2ecf20Sopenharmony_ci	{ 0x2c800, 1, 0x1f, 0x1c0},
4038c2ecf20Sopenharmony_ci	{ 0x2c804, 255, 0x1f, 0x180},
4048c2ecf20Sopenharmony_ci	{ 0x2cc00, 1, 0x1f, 0x1c0},
4058c2ecf20Sopenharmony_ci	{ 0x2cc04, 255, 0x1f, 0x180},
4068c2ecf20Sopenharmony_ci	{ 0x2d000, 1, 0x1f, 0x1c0},
4078c2ecf20Sopenharmony_ci	{ 0x2d004, 255, 0x1f, 0x180},
4088c2ecf20Sopenharmony_ci	{ 0x2d400, 1, 0x1f, 0x1c0},
4098c2ecf20Sopenharmony_ci	{ 0x2d404, 255, 0x1f, 0x180},
4108c2ecf20Sopenharmony_ci	{ 0x2d800, 1, 0x1f, 0x1c0},
4118c2ecf20Sopenharmony_ci	{ 0x2d804, 255, 0x1f, 0x180},
4128c2ecf20Sopenharmony_ci	{ 0x2dc00, 1, 0x1f, 0x1c0},
4138c2ecf20Sopenharmony_ci	{ 0x2dc04, 255, 0x1f, 0x180},
4148c2ecf20Sopenharmony_ci	{ 0x2e000, 1, 0x1f, 0x1c0},
4158c2ecf20Sopenharmony_ci	{ 0x2e004, 255, 0x1f, 0x180},
4168c2ecf20Sopenharmony_ci	{ 0x2e400, 1, 0x1f, 0x1c0},
4178c2ecf20Sopenharmony_ci	{ 0x2e404, 255, 0x1f, 0x180},
4188c2ecf20Sopenharmony_ci	{ 0x2e800, 1, 0x1f, 0x1c0},
4198c2ecf20Sopenharmony_ci	{ 0x2e804, 255, 0x1f, 0x180},
4208c2ecf20Sopenharmony_ci	{ 0x2ec00, 1, 0x1f, 0x1c0},
4218c2ecf20Sopenharmony_ci	{ 0x2ec04, 255, 0x1f, 0x180},
4228c2ecf20Sopenharmony_ci	{ 0x2f000, 1, 0x1f, 0x1c0},
4238c2ecf20Sopenharmony_ci	{ 0x2f004, 255, 0x1f, 0x180},
4248c2ecf20Sopenharmony_ci	{ 0x2f400, 1, 0x1f, 0x1c0},
4258c2ecf20Sopenharmony_ci	{ 0x2f404, 255, 0x1f, 0x180},
4268c2ecf20Sopenharmony_ci	{ 0x2f800, 1, 0x1f, 0x1c0},
4278c2ecf20Sopenharmony_ci	{ 0x2f804, 255, 0x1f, 0x180},
4288c2ecf20Sopenharmony_ci	{ 0x2fc00, 1, 0x1f, 0x1c0},
4298c2ecf20Sopenharmony_ci	{ 0x2fc04, 255, 0x1f, 0x180},
4308c2ecf20Sopenharmony_ci	{ 0x30000, 1, 0x1f, 0x9e4},
4318c2ecf20Sopenharmony_ci	{ 0x30004, 255, 0x1f, 0x180},
4328c2ecf20Sopenharmony_ci	{ 0x30400, 1, 0x1f, 0x1c0},
4338c2ecf20Sopenharmony_ci	{ 0x30404, 255, 0x1f, 0x180},
4348c2ecf20Sopenharmony_ci	{ 0x30800, 1, 0x1f, 0x1c0},
4358c2ecf20Sopenharmony_ci	{ 0x30804, 255, 0x1f, 0x180},
4368c2ecf20Sopenharmony_ci	{ 0x30c00, 1, 0x1f, 0x1c0},
4378c2ecf20Sopenharmony_ci	{ 0x30c04, 255, 0x1f, 0x180},
4388c2ecf20Sopenharmony_ci	{ 0x31000, 1, 0x1f, 0x1c0},
4398c2ecf20Sopenharmony_ci	{ 0x31004, 255, 0x1f, 0x180},
4408c2ecf20Sopenharmony_ci	{ 0x31400, 1, 0x1f, 0x1c0},
4418c2ecf20Sopenharmony_ci	{ 0x31404, 255, 0x1f, 0x180},
4428c2ecf20Sopenharmony_ci	{ 0x31800, 1, 0x1f, 0x1c0},
4438c2ecf20Sopenharmony_ci	{ 0x31804, 255, 0x1f, 0x180},
4448c2ecf20Sopenharmony_ci	{ 0x31c00, 1, 0x1f, 0x1c0},
4458c2ecf20Sopenharmony_ci	{ 0x31c04, 255, 0x1f, 0x180},
4468c2ecf20Sopenharmony_ci	{ 0x32000, 1, 0x1f, 0x1c0},
4478c2ecf20Sopenharmony_ci	{ 0x32004, 255, 0x1f, 0x180},
4488c2ecf20Sopenharmony_ci	{ 0x32400, 1, 0x1f, 0x1c0},
4498c2ecf20Sopenharmony_ci	{ 0x32404, 255, 0x1f, 0x180},
4508c2ecf20Sopenharmony_ci	{ 0x32800, 1, 0x1f, 0x1c0},
4518c2ecf20Sopenharmony_ci	{ 0x32804, 255, 0x1f, 0x180},
4528c2ecf20Sopenharmony_ci	{ 0x32c00, 1, 0x1f, 0x1c0},
4538c2ecf20Sopenharmony_ci	{ 0x32c04, 255, 0x1f, 0x180},
4548c2ecf20Sopenharmony_ci	{ 0x33000, 1, 0x1f, 0x1c0},
4558c2ecf20Sopenharmony_ci	{ 0x33004, 255, 0x1f, 0x180},
4568c2ecf20Sopenharmony_ci	{ 0x33400, 1, 0x1f, 0x1c0},
4578c2ecf20Sopenharmony_ci	{ 0x33404, 255, 0x1f, 0x180},
4588c2ecf20Sopenharmony_ci	{ 0x33800, 1, 0x1f, 0x1c0},
4598c2ecf20Sopenharmony_ci	{ 0x33804, 255, 0x1f, 0x180},
4608c2ecf20Sopenharmony_ci	{ 0x33c00, 1, 0x1f, 0x1c0},
4618c2ecf20Sopenharmony_ci	{ 0x33c04, 255, 0x1f, 0x180},
4628c2ecf20Sopenharmony_ci	{ 0x34000, 1, 0x1f, 0x1c0},
4638c2ecf20Sopenharmony_ci	{ 0x34004, 255, 0x1f, 0x180},
4648c2ecf20Sopenharmony_ci	{ 0x34400, 1, 0x1f, 0x1c0},
4658c2ecf20Sopenharmony_ci	{ 0x34404, 255, 0x1f, 0x180},
4668c2ecf20Sopenharmony_ci	{ 0x34800, 1, 0x1f, 0x1c0},
4678c2ecf20Sopenharmony_ci	{ 0x34804, 255, 0x1f, 0x180},
4688c2ecf20Sopenharmony_ci	{ 0x34c00, 1, 0x1f, 0x1c0},
4698c2ecf20Sopenharmony_ci	{ 0x34c04, 255, 0x1f, 0x180},
4708c2ecf20Sopenharmony_ci	{ 0x35000, 1, 0x1f, 0x1c0},
4718c2ecf20Sopenharmony_ci	{ 0x35004, 255, 0x1f, 0x180},
4728c2ecf20Sopenharmony_ci	{ 0x35400, 1, 0x1f, 0x1c0},
4738c2ecf20Sopenharmony_ci	{ 0x35404, 255, 0x1f, 0x180},
4748c2ecf20Sopenharmony_ci	{ 0x35800, 1, 0x1f, 0x1c0},
4758c2ecf20Sopenharmony_ci	{ 0x35804, 255, 0x1f, 0x180},
4768c2ecf20Sopenharmony_ci	{ 0x35c00, 1, 0x1f, 0x1c0},
4778c2ecf20Sopenharmony_ci	{ 0x35c04, 255, 0x1f, 0x180},
4788c2ecf20Sopenharmony_ci	{ 0x36000, 1, 0x1f, 0x1c0},
4798c2ecf20Sopenharmony_ci	{ 0x36004, 255, 0x1f, 0x180},
4808c2ecf20Sopenharmony_ci	{ 0x36400, 1, 0x1f, 0x1c0},
4818c2ecf20Sopenharmony_ci	{ 0x36404, 255, 0x1f, 0x180},
4828c2ecf20Sopenharmony_ci	{ 0x36800, 1, 0x1f, 0x1c0},
4838c2ecf20Sopenharmony_ci	{ 0x36804, 255, 0x1f, 0x180},
4848c2ecf20Sopenharmony_ci	{ 0x36c00, 1, 0x1f, 0x1c0},
4858c2ecf20Sopenharmony_ci	{ 0x36c04, 255, 0x1f, 0x180},
4868c2ecf20Sopenharmony_ci	{ 0x37000, 1, 0x1f, 0x1c0},
4878c2ecf20Sopenharmony_ci	{ 0x37004, 255, 0x1f, 0x180},
4888c2ecf20Sopenharmony_ci	{ 0x37400, 1, 0x1f, 0x1c0},
4898c2ecf20Sopenharmony_ci	{ 0x37404, 255, 0x1f, 0x180},
4908c2ecf20Sopenharmony_ci	{ 0x37800, 1, 0x1f, 0x1c0},
4918c2ecf20Sopenharmony_ci	{ 0x37804, 255, 0x1f, 0x180},
4928c2ecf20Sopenharmony_ci	{ 0x37c00, 1, 0x1f, 0x1c0},
4938c2ecf20Sopenharmony_ci	{ 0x37c04, 255, 0x1f, 0x180},
4948c2ecf20Sopenharmony_ci	{ 0x38000, 1, 0x1f, 0x1c0},
4958c2ecf20Sopenharmony_ci	{ 0x38004, 255, 0x1f, 0x180},
4968c2ecf20Sopenharmony_ci	{ 0x38400, 1, 0x1f, 0x1c0},
4978c2ecf20Sopenharmony_ci	{ 0x38404, 255, 0x1f, 0x180},
4988c2ecf20Sopenharmony_ci	{ 0x38800, 1, 0x1f, 0x1c0},
4998c2ecf20Sopenharmony_ci	{ 0x38804, 255, 0x1f, 0x180},
5008c2ecf20Sopenharmony_ci	{ 0x38c00, 1, 0x1f, 0x1c0},
5018c2ecf20Sopenharmony_ci	{ 0x38c04, 255, 0x1f, 0x180},
5028c2ecf20Sopenharmony_ci	{ 0x39000, 1, 0x1f, 0x1c0},
5038c2ecf20Sopenharmony_ci	{ 0x39004, 255, 0x1f, 0x180},
5048c2ecf20Sopenharmony_ci	{ 0x39400, 1, 0x1f, 0x1c0},
5058c2ecf20Sopenharmony_ci	{ 0x39404, 255, 0x1f, 0x180},
5068c2ecf20Sopenharmony_ci	{ 0x39800, 1, 0x1f, 0x1c0},
5078c2ecf20Sopenharmony_ci	{ 0x39804, 255, 0x1f, 0x180},
5088c2ecf20Sopenharmony_ci	{ 0x39c00, 1, 0x1f, 0x1c0},
5098c2ecf20Sopenharmony_ci	{ 0x39c04, 255, 0x1f, 0x180},
5108c2ecf20Sopenharmony_ci	{ 0x3a000, 1, 0x1f, 0x1c0},
5118c2ecf20Sopenharmony_ci	{ 0x3a004, 255, 0x1f, 0x180},
5128c2ecf20Sopenharmony_ci	{ 0x3a400, 1, 0x1f, 0x1c0},
5138c2ecf20Sopenharmony_ci	{ 0x3a404, 255, 0x1f, 0x180},
5148c2ecf20Sopenharmony_ci	{ 0x3a800, 1, 0x1f, 0x1c0},
5158c2ecf20Sopenharmony_ci	{ 0x3a804, 255, 0x1f, 0x180},
5168c2ecf20Sopenharmony_ci	{ 0x3ac00, 1, 0x1f, 0x1c0},
5178c2ecf20Sopenharmony_ci	{ 0x3ac04, 255, 0x1f, 0x180},
5188c2ecf20Sopenharmony_ci	{ 0x3b000, 1, 0x1f, 0x1c0},
5198c2ecf20Sopenharmony_ci	{ 0x3b004, 255, 0x1f, 0x180},
5208c2ecf20Sopenharmony_ci	{ 0x3b400, 1, 0x1f, 0x1c0},
5218c2ecf20Sopenharmony_ci	{ 0x3b404, 255, 0x1f, 0x180},
5228c2ecf20Sopenharmony_ci	{ 0x3b800, 1, 0x1f, 0x1c0},
5238c2ecf20Sopenharmony_ci	{ 0x3b804, 255, 0x1f, 0x180},
5248c2ecf20Sopenharmony_ci	{ 0x3bc00, 1, 0x1f, 0x1c0},
5258c2ecf20Sopenharmony_ci	{ 0x3bc04, 255, 0x1f, 0x180},
5268c2ecf20Sopenharmony_ci	{ 0x3c000, 1, 0x1f, 0x1c0},
5278c2ecf20Sopenharmony_ci	{ 0x3c004, 255, 0x1f, 0x180},
5288c2ecf20Sopenharmony_ci	{ 0x3c400, 1, 0x1f, 0x1c0},
5298c2ecf20Sopenharmony_ci	{ 0x3c404, 255, 0x1f, 0x180},
5308c2ecf20Sopenharmony_ci	{ 0x3c800, 1, 0x1f, 0x1c0},
5318c2ecf20Sopenharmony_ci	{ 0x3c804, 255, 0x1f, 0x180},
5328c2ecf20Sopenharmony_ci	{ 0x3cc00, 1, 0x1f, 0x1c0},
5338c2ecf20Sopenharmony_ci	{ 0x3cc04, 255, 0x1f, 0x180},
5348c2ecf20Sopenharmony_ci	{ 0x3d000, 1, 0x1f, 0x1c0},
5358c2ecf20Sopenharmony_ci	{ 0x3d004, 255, 0x1f, 0x180},
5368c2ecf20Sopenharmony_ci	{ 0x3d400, 1, 0x1f, 0x1c0},
5378c2ecf20Sopenharmony_ci	{ 0x3d404, 255, 0x1f, 0x180},
5388c2ecf20Sopenharmony_ci	{ 0x3d800, 1, 0x1f, 0x1c0},
5398c2ecf20Sopenharmony_ci	{ 0x3d804, 255, 0x1f, 0x180},
5408c2ecf20Sopenharmony_ci	{ 0x3dc00, 1, 0x1f, 0x1c0},
5418c2ecf20Sopenharmony_ci	{ 0x3dc04, 255, 0x1f, 0x180},
5428c2ecf20Sopenharmony_ci	{ 0x3e000, 1, 0x1f, 0x1c0},
5438c2ecf20Sopenharmony_ci	{ 0x3e004, 255, 0x1f, 0x180},
5448c2ecf20Sopenharmony_ci	{ 0x3e400, 1, 0x1f, 0x1c0},
5458c2ecf20Sopenharmony_ci	{ 0x3e404, 255, 0x1f, 0x180},
5468c2ecf20Sopenharmony_ci	{ 0x3e800, 1, 0x1f, 0x1c0},
5478c2ecf20Sopenharmony_ci	{ 0x3e804, 255, 0x1f, 0x180},
5488c2ecf20Sopenharmony_ci	{ 0x3ec00, 1, 0x1f, 0x1c0},
5498c2ecf20Sopenharmony_ci	{ 0x3ec04, 255, 0x1f, 0x180},
5508c2ecf20Sopenharmony_ci	{ 0x3f000, 1, 0x1f, 0x1c0},
5518c2ecf20Sopenharmony_ci	{ 0x3f004, 255, 0x1f, 0x180},
5528c2ecf20Sopenharmony_ci	{ 0x3f400, 1, 0x1f, 0x1c0},
5538c2ecf20Sopenharmony_ci	{ 0x3f404, 255, 0x1f, 0x180},
5548c2ecf20Sopenharmony_ci	{ 0x3f800, 1, 0x1f, 0x1c0},
5558c2ecf20Sopenharmony_ci	{ 0x3f804, 255, 0x1f, 0x180},
5568c2ecf20Sopenharmony_ci	{ 0x3fc00, 1, 0x1f, 0x1c0},
5578c2ecf20Sopenharmony_ci	{ 0x3fc04, 255, 0x1f, 0x180},
5588c2ecf20Sopenharmony_ci	{ 0x40000, 85, 0x1f, 0x924},
5598c2ecf20Sopenharmony_ci	{ 0x40154, 13, 0x1f, 0xfff},
5608c2ecf20Sopenharmony_ci	{ 0x40198, 2, 0x1f, 0x1fff},
5618c2ecf20Sopenharmony_ci	{ 0x401a4, 1, 0x1f, 0x1fff},
5628c2ecf20Sopenharmony_ci	{ 0x401a8, 8, 0x1e, 0x924},
5638c2ecf20Sopenharmony_ci	{ 0x401c8, 1, 0x2, 0x924},
5648c2ecf20Sopenharmony_ci	{ 0x401cc, 2, 0x1e, 0x924},
5658c2ecf20Sopenharmony_ci	{ 0x401d4, 2, 0x1c, 0x924},
5668c2ecf20Sopenharmony_ci	{ 0x40200, 4, 0x1f, 0x924},
5678c2ecf20Sopenharmony_ci	{ 0x40220, 6, 0x1c, 0x924},
5688c2ecf20Sopenharmony_ci	{ 0x40238, 8, 0xc, 0x924},
5698c2ecf20Sopenharmony_ci	{ 0x40258, 4, 0x1c, 0x924},
5708c2ecf20Sopenharmony_ci	{ 0x40268, 2, 0x18, 0x924},
5718c2ecf20Sopenharmony_ci	{ 0x40270, 17, 0x10, 0x924},
5728c2ecf20Sopenharmony_ci	{ 0x40400, 43, 0x1f, 0x924},
5738c2ecf20Sopenharmony_ci	{ 0x404bc, 2, 0x1f, 0x1fff},
5748c2ecf20Sopenharmony_ci	{ 0x404c8, 1, 0x1f, 0x1fff},
5758c2ecf20Sopenharmony_ci	{ 0x404cc, 3, 0x1e, 0x924},
5768c2ecf20Sopenharmony_ci	{ 0x404e0, 1, 0x1c, 0x924},
5778c2ecf20Sopenharmony_ci	{ 0x40500, 2, 0x1f, 0x924},
5788c2ecf20Sopenharmony_ci	{ 0x40510, 2, 0x1f, 0x924},
5798c2ecf20Sopenharmony_ci	{ 0x40520, 2, 0x1f, 0x924},
5808c2ecf20Sopenharmony_ci	{ 0x40530, 2, 0x1f, 0x924},
5818c2ecf20Sopenharmony_ci	{ 0x40540, 2, 0x1f, 0x924},
5828c2ecf20Sopenharmony_ci	{ 0x40550, 10, 0x1c, 0x924},
5838c2ecf20Sopenharmony_ci	{ 0x40610, 2, 0x1c, 0x924},
5848c2ecf20Sopenharmony_ci	{ 0x42000, 164, 0x1f, 0x924},
5858c2ecf20Sopenharmony_ci	{ 0x422b0, 2, 0x1f, 0x1fff},
5868c2ecf20Sopenharmony_ci	{ 0x422bc, 1, 0x1f, 0x1fff},
5878c2ecf20Sopenharmony_ci	{ 0x422c0, 4, 0x1c, 0x924},
5888c2ecf20Sopenharmony_ci	{ 0x422d4, 5, 0x1e, 0x924},
5898c2ecf20Sopenharmony_ci	{ 0x422e8, 1, 0x1c, 0x924},
5908c2ecf20Sopenharmony_ci	{ 0x42400, 49, 0x1f, 0x924},
5918c2ecf20Sopenharmony_ci	{ 0x424c8, 32, 0x1f, 0x924},
5928c2ecf20Sopenharmony_ci	{ 0x42548, 1, 0x1f, 0xfff},
5938c2ecf20Sopenharmony_ci	{ 0x4254c, 1, 0x1f, 0x924},
5948c2ecf20Sopenharmony_ci	{ 0x42550, 1, 0x1f, 0xfff},
5958c2ecf20Sopenharmony_ci	{ 0x42554, 1, 0x1f, 0x924},
5968c2ecf20Sopenharmony_ci	{ 0x42558, 1, 0x1f, 0xfff},
5978c2ecf20Sopenharmony_ci	{ 0x4255c, 1, 0x1f, 0x924},
5988c2ecf20Sopenharmony_ci	{ 0x42568, 2, 0x1f, 0x924},
5998c2ecf20Sopenharmony_ci	{ 0x42640, 5, 0x1c, 0x924},
6008c2ecf20Sopenharmony_ci	{ 0x42800, 1, 0x1f, 0x924},
6018c2ecf20Sopenharmony_ci	{ 0x50000, 1, 0x1f, 0x1fff},
6028c2ecf20Sopenharmony_ci	{ 0x50004, 19, 0x1f, 0x924},
6038c2ecf20Sopenharmony_ci	{ 0x50050, 8, 0x1f, 0x93c},
6048c2ecf20Sopenharmony_ci	{ 0x50070, 60, 0x1f, 0x924},
6058c2ecf20Sopenharmony_ci	{ 0x50160, 8, 0x1f, 0xfff},
6068c2ecf20Sopenharmony_ci	{ 0x50180, 20, 0x1f, 0x924},
6078c2ecf20Sopenharmony_ci	{ 0x501e0, 2, 0x1f, 0x1fff},
6088c2ecf20Sopenharmony_ci	{ 0x501ec, 1, 0x1f, 0x1fff},
6098c2ecf20Sopenharmony_ci	{ 0x501f0, 4, 0x1e, 0x924},
6108c2ecf20Sopenharmony_ci	{ 0x50200, 1, 0x1f, 0x924},
6118c2ecf20Sopenharmony_ci	{ 0x50204, 1, 0x1f, 0xfff},
6128c2ecf20Sopenharmony_ci	{ 0x5020c, 2, 0x1f, 0xfff},
6138c2ecf20Sopenharmony_ci	{ 0x50214, 2, 0x1f, 0x924},
6148c2ecf20Sopenharmony_ci	{ 0x5021c, 1, 0x1f, 0xfff},
6158c2ecf20Sopenharmony_ci	{ 0x50220, 2, 0x1f, 0x924},
6168c2ecf20Sopenharmony_ci	{ 0x50228, 6, 0x1e, 0x924},
6178c2ecf20Sopenharmony_ci	{ 0x50240, 1, 0x1f, 0x924},
6188c2ecf20Sopenharmony_ci	{ 0x50280, 1, 0x1f, 0x924},
6198c2ecf20Sopenharmony_ci	{ 0x50300, 1, 0x1c, 0x924},
6208c2ecf20Sopenharmony_ci	{ 0x5030c, 1, 0x1c, 0x924},
6218c2ecf20Sopenharmony_ci	{ 0x50318, 1, 0x1c, 0x934},
6228c2ecf20Sopenharmony_ci	{ 0x5031c, 1, 0x1c, 0x924},
6238c2ecf20Sopenharmony_ci	{ 0x50320, 2, 0x1c, 0x934},
6248c2ecf20Sopenharmony_ci	{ 0x50330, 1, 0x10, 0x924},
6258c2ecf20Sopenharmony_ci	{ 0x52000, 1, 0x1f, 0x924},
6268c2ecf20Sopenharmony_ci	{ 0x54000, 1, 0x1f, 0x93c},
6278c2ecf20Sopenharmony_ci	{ 0x54004, 255, 0x1f, 0x30},
6288c2ecf20Sopenharmony_ci	{ 0x54400, 1, 0x1f, 0x38},
6298c2ecf20Sopenharmony_ci	{ 0x54404, 255, 0x1f, 0x30},
6308c2ecf20Sopenharmony_ci	{ 0x54800, 1, 0x1f, 0x38},
6318c2ecf20Sopenharmony_ci	{ 0x54804, 255, 0x1f, 0x30},
6328c2ecf20Sopenharmony_ci	{ 0x54c00, 1, 0x1f, 0x38},
6338c2ecf20Sopenharmony_ci	{ 0x54c04, 255, 0x1f, 0x30},
6348c2ecf20Sopenharmony_ci	{ 0x55000, 1, 0x1f, 0x38},
6358c2ecf20Sopenharmony_ci	{ 0x55004, 255, 0x1f, 0x30},
6368c2ecf20Sopenharmony_ci	{ 0x55400, 1, 0x1f, 0x38},
6378c2ecf20Sopenharmony_ci	{ 0x55404, 255, 0x1f, 0x30},
6388c2ecf20Sopenharmony_ci	{ 0x55800, 1, 0x1f, 0x38},
6398c2ecf20Sopenharmony_ci	{ 0x55804, 255, 0x1f, 0x30},
6408c2ecf20Sopenharmony_ci	{ 0x55c00, 1, 0x1f, 0x38},
6418c2ecf20Sopenharmony_ci	{ 0x55c04, 255, 0x1f, 0x30},
6428c2ecf20Sopenharmony_ci	{ 0x56000, 1, 0x1f, 0x38},
6438c2ecf20Sopenharmony_ci	{ 0x56004, 255, 0x1f, 0x30},
6448c2ecf20Sopenharmony_ci	{ 0x56400, 1, 0x1f, 0x38},
6458c2ecf20Sopenharmony_ci	{ 0x56404, 255, 0x1f, 0x30},
6468c2ecf20Sopenharmony_ci	{ 0x56800, 1, 0x1f, 0x38},
6478c2ecf20Sopenharmony_ci	{ 0x56804, 255, 0x1f, 0x30},
6488c2ecf20Sopenharmony_ci	{ 0x56c00, 1, 0x1f, 0x38},
6498c2ecf20Sopenharmony_ci	{ 0x56c04, 255, 0x1f, 0x30},
6508c2ecf20Sopenharmony_ci	{ 0x57000, 1, 0x1f, 0x38},
6518c2ecf20Sopenharmony_ci	{ 0x57004, 255, 0x1f, 0x30},
6528c2ecf20Sopenharmony_ci	{ 0x58000, 1, 0x1f, 0x934},
6538c2ecf20Sopenharmony_ci	{ 0x58004, 8191, 0x3, 0x30},
6548c2ecf20Sopenharmony_ci	{ 0x60000, 26, 0x1f, 0x924},
6558c2ecf20Sopenharmony_ci	{ 0x60068, 8, 0x3, 0x924},
6568c2ecf20Sopenharmony_ci	{ 0x60088, 2, 0x1f, 0x924},
6578c2ecf20Sopenharmony_ci	{ 0x60090, 1, 0x1f, 0xfff},
6588c2ecf20Sopenharmony_ci	{ 0x60094, 9, 0x1f, 0x924},
6598c2ecf20Sopenharmony_ci	{ 0x600b8, 9, 0x3, 0x924},
6608c2ecf20Sopenharmony_ci	{ 0x600dc, 1, 0x1f, 0x924},
6618c2ecf20Sopenharmony_ci	{ 0x600e0, 5, 0x3, 0x924},
6628c2ecf20Sopenharmony_ci	{ 0x600f4, 1, 0x7, 0x924},
6638c2ecf20Sopenharmony_ci	{ 0x600f8, 1, 0x3, 0x924},
6648c2ecf20Sopenharmony_ci	{ 0x600fc, 8, 0x1f, 0x924},
6658c2ecf20Sopenharmony_ci	{ 0x6012c, 2, 0x1f, 0x1fff},
6668c2ecf20Sopenharmony_ci	{ 0x60138, 1, 0x1f, 0x1fff},
6678c2ecf20Sopenharmony_ci	{ 0x6013c, 24, 0x2, 0x924},
6688c2ecf20Sopenharmony_ci	{ 0x6019c, 2, 0x1c, 0x924},
6698c2ecf20Sopenharmony_ci	{ 0x601ac, 18, 0x1c, 0x924},
6708c2ecf20Sopenharmony_ci	{ 0x60200, 1, 0x1f, 0xb6d},
6718c2ecf20Sopenharmony_ci	{ 0x60204, 2, 0x1f, 0x249},
6728c2ecf20Sopenharmony_ci	{ 0x60210, 13, 0x1c, 0x924},
6738c2ecf20Sopenharmony_ci	{ 0x60244, 16, 0x10, 0x924},
6748c2ecf20Sopenharmony_ci	{ 0x61000, 1, 0x1f, 0xb6d},
6758c2ecf20Sopenharmony_ci	{ 0x61004, 511, 0x1f, 0x249},
6768c2ecf20Sopenharmony_ci	{ 0x61800, 512, 0x18, 0x249},
6778c2ecf20Sopenharmony_ci	{ 0x70000, 8, 0x1f, 0xb6d},
6788c2ecf20Sopenharmony_ci	{ 0x70020, 8184, 0x1f, 0x249},
6798c2ecf20Sopenharmony_ci	{ 0x78000, 8192, 0x18, 0x249},
6808c2ecf20Sopenharmony_ci	{ 0x85000, 3, 0x1f, 0x1000},
6818c2ecf20Sopenharmony_ci	{ 0x8501c, 7, 0x1f, 0x1000},
6828c2ecf20Sopenharmony_ci	{ 0x85048, 1, 0x1f, 0x1000},
6838c2ecf20Sopenharmony_ci	{ 0x85200, 32, 0x1f, 0x1000},
6848c2ecf20Sopenharmony_ci	{ 0xa0000, 16384, 0x3, 0x1000},
6858c2ecf20Sopenharmony_ci	{ 0xb0000, 16384, 0x2, 0x1000},
6868c2ecf20Sopenharmony_ci	{ 0xc1000, 7, 0x1f, 0x924},
6878c2ecf20Sopenharmony_ci	{ 0xc102c, 2, 0x1f, 0x1fff},
6888c2ecf20Sopenharmony_ci	{ 0xc1038, 1, 0x1f, 0x1fff},
6898c2ecf20Sopenharmony_ci	{ 0xc103c, 2, 0x1c, 0x924},
6908c2ecf20Sopenharmony_ci	{ 0xc1800, 2, 0x1f, 0x924},
6918c2ecf20Sopenharmony_ci	{ 0xc2000, 164, 0x1f, 0x924},
6928c2ecf20Sopenharmony_ci	{ 0xc22b0, 2, 0x1f, 0x1fff},
6938c2ecf20Sopenharmony_ci	{ 0xc22bc, 1, 0x1f, 0x1fff},
6948c2ecf20Sopenharmony_ci	{ 0xc22c0, 5, 0x1c, 0x924},
6958c2ecf20Sopenharmony_ci	{ 0xc22d8, 4, 0x1c, 0x924},
6968c2ecf20Sopenharmony_ci	{ 0xc2400, 49, 0x1f, 0x924},
6978c2ecf20Sopenharmony_ci	{ 0xc24c8, 32, 0x1f, 0x924},
6988c2ecf20Sopenharmony_ci	{ 0xc2548, 1, 0x1f, 0xfff},
6998c2ecf20Sopenharmony_ci	{ 0xc254c, 1, 0x1f, 0x924},
7008c2ecf20Sopenharmony_ci	{ 0xc2550, 1, 0x1f, 0xfff},
7018c2ecf20Sopenharmony_ci	{ 0xc2554, 1, 0x1f, 0x924},
7028c2ecf20Sopenharmony_ci	{ 0xc2558, 1, 0x1f, 0xfff},
7038c2ecf20Sopenharmony_ci	{ 0xc255c, 1, 0x1f, 0x924},
7048c2ecf20Sopenharmony_ci	{ 0xc2568, 2, 0x1f, 0x924},
7058c2ecf20Sopenharmony_ci	{ 0xc2600, 1, 0x1f, 0x924},
7068c2ecf20Sopenharmony_ci	{ 0xc4000, 165, 0x1f, 0x924},
7078c2ecf20Sopenharmony_ci	{ 0xc42b4, 2, 0x1f, 0x1fff},
7088c2ecf20Sopenharmony_ci	{ 0xc42c0, 1, 0x1f, 0x1fff},
7098c2ecf20Sopenharmony_ci	{ 0xc42d8, 2, 0x1c, 0x924},
7108c2ecf20Sopenharmony_ci	{ 0xc42e0, 7, 0x1e, 0x924},
7118c2ecf20Sopenharmony_ci	{ 0xc42fc, 1, 0x1c, 0x924},
7128c2ecf20Sopenharmony_ci	{ 0xc4400, 51, 0x1f, 0x924},
7138c2ecf20Sopenharmony_ci	{ 0xc44d0, 32, 0x1f, 0x924},
7148c2ecf20Sopenharmony_ci	{ 0xc4550, 1, 0x1f, 0xfff},
7158c2ecf20Sopenharmony_ci	{ 0xc4554, 1, 0x1f, 0x924},
7168c2ecf20Sopenharmony_ci	{ 0xc4558, 1, 0x1f, 0xfff},
7178c2ecf20Sopenharmony_ci	{ 0xc455c, 1, 0x1f, 0x924},
7188c2ecf20Sopenharmony_ci	{ 0xc4560, 1, 0x1f, 0xfff},
7198c2ecf20Sopenharmony_ci	{ 0xc4564, 1, 0x1f, 0x924},
7208c2ecf20Sopenharmony_ci	{ 0xc4570, 2, 0x1f, 0x924},
7218c2ecf20Sopenharmony_ci	{ 0xc4578, 5, 0x1c, 0x924},
7228c2ecf20Sopenharmony_ci	{ 0xc4600, 1, 0x1f, 0x924},
7238c2ecf20Sopenharmony_ci	{ 0xd0000, 19, 0x1f, 0x924},
7248c2ecf20Sopenharmony_ci	{ 0xd004c, 8, 0x1f, 0x1927},
7258c2ecf20Sopenharmony_ci	{ 0xd006c, 64, 0x1f, 0x924},
7268c2ecf20Sopenharmony_ci	{ 0xd016c, 8, 0x1f, 0xfff},
7278c2ecf20Sopenharmony_ci	{ 0xd018c, 19, 0x1f, 0x924},
7288c2ecf20Sopenharmony_ci	{ 0xd01e8, 2, 0x1f, 0x1fff},
7298c2ecf20Sopenharmony_ci	{ 0xd01f4, 1, 0x1f, 0x1fff},
7308c2ecf20Sopenharmony_ci	{ 0xd01fc, 1, 0x1c, 0x924},
7318c2ecf20Sopenharmony_ci	{ 0xd0200, 1, 0x1f, 0x924},
7328c2ecf20Sopenharmony_ci	{ 0xd0204, 1, 0x1f, 0xfff},
7338c2ecf20Sopenharmony_ci	{ 0xd020c, 3, 0x1f, 0xfff},
7348c2ecf20Sopenharmony_ci	{ 0xd0218, 4, 0x1f, 0x924},
7358c2ecf20Sopenharmony_ci	{ 0xd0228, 18, 0x1e, 0x924},
7368c2ecf20Sopenharmony_ci	{ 0xd0280, 1, 0x1f, 0x924},
7378c2ecf20Sopenharmony_ci	{ 0xd0300, 1, 0x1f, 0x924},
7388c2ecf20Sopenharmony_ci	{ 0xd0400, 1, 0x1f, 0x924},
7398c2ecf20Sopenharmony_ci	{ 0xd0818, 1, 0x10, 0x924},
7408c2ecf20Sopenharmony_ci	{ 0xd4000, 1, 0x1f, 0x1927},
7418c2ecf20Sopenharmony_ci	{ 0xd4004, 255, 0x1f, 0x6},
7428c2ecf20Sopenharmony_ci	{ 0xd4400, 1, 0x1f, 0x1007},
7438c2ecf20Sopenharmony_ci	{ 0xd4404, 255, 0x1f, 0x6},
7448c2ecf20Sopenharmony_ci	{ 0xd4800, 1, 0x1f, 0x1007},
7458c2ecf20Sopenharmony_ci	{ 0xd4804, 255, 0x1f, 0x6},
7468c2ecf20Sopenharmony_ci	{ 0xd4c00, 1, 0x1f, 0x1007},
7478c2ecf20Sopenharmony_ci	{ 0xd4c04, 255, 0x1f, 0x6},
7488c2ecf20Sopenharmony_ci	{ 0xd5000, 1, 0x1f, 0x1007},
7498c2ecf20Sopenharmony_ci	{ 0xd5004, 255, 0x1f, 0x6},
7508c2ecf20Sopenharmony_ci	{ 0xd5400, 1, 0x1f, 0x1007},
7518c2ecf20Sopenharmony_ci	{ 0xd5404, 255, 0x1f, 0x6},
7528c2ecf20Sopenharmony_ci	{ 0xd5800, 1, 0x1f, 0x1007},
7538c2ecf20Sopenharmony_ci	{ 0xd5804, 255, 0x1f, 0x6},
7548c2ecf20Sopenharmony_ci	{ 0xd5c00, 1, 0x1f, 0x1007},
7558c2ecf20Sopenharmony_ci	{ 0xd5c04, 255, 0x1f, 0x6},
7568c2ecf20Sopenharmony_ci	{ 0xd6000, 1, 0x1f, 0x1007},
7578c2ecf20Sopenharmony_ci	{ 0xd6004, 255, 0x1f, 0x6},
7588c2ecf20Sopenharmony_ci	{ 0xd6400, 1, 0x1f, 0x1007},
7598c2ecf20Sopenharmony_ci	{ 0xd6404, 255, 0x1f, 0x6},
7608c2ecf20Sopenharmony_ci	{ 0xd8000, 1, 0x1f, 0x1927},
7618c2ecf20Sopenharmony_ci	{ 0xd8004, 255, 0x1f, 0x6},
7628c2ecf20Sopenharmony_ci	{ 0xd8400, 1, 0x1f, 0x1007},
7638c2ecf20Sopenharmony_ci	{ 0xd8404, 255, 0x1f, 0x6},
7648c2ecf20Sopenharmony_ci	{ 0xd8800, 1, 0x1f, 0x1007},
7658c2ecf20Sopenharmony_ci	{ 0xd8804, 255, 0x1f, 0x6},
7668c2ecf20Sopenharmony_ci	{ 0xd8c00, 1, 0x1f, 0x1007},
7678c2ecf20Sopenharmony_ci	{ 0xd8c04, 255, 0x1f, 0x6},
7688c2ecf20Sopenharmony_ci	{ 0xd9000, 1, 0x1f, 0x1007},
7698c2ecf20Sopenharmony_ci	{ 0xd9004, 255, 0x1f, 0x6},
7708c2ecf20Sopenharmony_ci	{ 0xd9400, 1, 0x1f, 0x1007},
7718c2ecf20Sopenharmony_ci	{ 0xd9404, 255, 0x1f, 0x6},
7728c2ecf20Sopenharmony_ci	{ 0xd9800, 1, 0x1f, 0x1007},
7738c2ecf20Sopenharmony_ci	{ 0xd9804, 255, 0x1f, 0x6},
7748c2ecf20Sopenharmony_ci	{ 0xd9c00, 1, 0x1f, 0x1007},
7758c2ecf20Sopenharmony_ci	{ 0xd9c04, 255, 0x1f, 0x6},
7768c2ecf20Sopenharmony_ci	{ 0xda000, 1, 0x1f, 0x1007},
7778c2ecf20Sopenharmony_ci	{ 0xda004, 255, 0x1f, 0x6},
7788c2ecf20Sopenharmony_ci	{ 0xda400, 1, 0x1f, 0x1007},
7798c2ecf20Sopenharmony_ci	{ 0xda404, 255, 0x1f, 0x6},
7808c2ecf20Sopenharmony_ci	{ 0xda800, 1, 0x1f, 0x1007},
7818c2ecf20Sopenharmony_ci	{ 0xda804, 255, 0x1f, 0x6},
7828c2ecf20Sopenharmony_ci	{ 0xdac00, 1, 0x1f, 0x1007},
7838c2ecf20Sopenharmony_ci	{ 0xdac04, 255, 0x1f, 0x6},
7848c2ecf20Sopenharmony_ci	{ 0xdb000, 1, 0x1f, 0x1007},
7858c2ecf20Sopenharmony_ci	{ 0xdb004, 255, 0x1f, 0x6},
7868c2ecf20Sopenharmony_ci	{ 0xdb400, 1, 0x1f, 0x1007},
7878c2ecf20Sopenharmony_ci	{ 0xdb404, 255, 0x1f, 0x6},
7888c2ecf20Sopenharmony_ci	{ 0xdb800, 1, 0x1f, 0x1007},
7898c2ecf20Sopenharmony_ci	{ 0xdb804, 255, 0x1f, 0x6},
7908c2ecf20Sopenharmony_ci	{ 0xdbc00, 1, 0x1f, 0x1007},
7918c2ecf20Sopenharmony_ci	{ 0xdbc04, 255, 0x1f, 0x6},
7928c2ecf20Sopenharmony_ci	{ 0xdc000, 1, 0x1f, 0x1007},
7938c2ecf20Sopenharmony_ci	{ 0xdc004, 255, 0x1f, 0x6},
7948c2ecf20Sopenharmony_ci	{ 0xdc400, 1, 0x1f, 0x1007},
7958c2ecf20Sopenharmony_ci	{ 0xdc404, 255, 0x1f, 0x6},
7968c2ecf20Sopenharmony_ci	{ 0xdc800, 1, 0x1f, 0x1007},
7978c2ecf20Sopenharmony_ci	{ 0xdc804, 255, 0x1f, 0x6},
7988c2ecf20Sopenharmony_ci	{ 0xdcc00, 1, 0x1f, 0x1007},
7998c2ecf20Sopenharmony_ci	{ 0xdcc04, 255, 0x1f, 0x6},
8008c2ecf20Sopenharmony_ci	{ 0xdd000, 1, 0x1f, 0x1007},
8018c2ecf20Sopenharmony_ci	{ 0xdd004, 255, 0x1f, 0x6},
8028c2ecf20Sopenharmony_ci	{ 0xdd400, 1, 0x1f, 0x1007},
8038c2ecf20Sopenharmony_ci	{ 0xdd404, 255, 0x1f, 0x6},
8048c2ecf20Sopenharmony_ci	{ 0xdd800, 1, 0x1f, 0x1007},
8058c2ecf20Sopenharmony_ci	{ 0xdd804, 255, 0x1f, 0x6},
8068c2ecf20Sopenharmony_ci	{ 0xddc00, 1, 0x1f, 0x1007},
8078c2ecf20Sopenharmony_ci	{ 0xddc04, 255, 0x1f, 0x6},
8088c2ecf20Sopenharmony_ci	{ 0xde000, 1, 0x1f, 0x1007},
8098c2ecf20Sopenharmony_ci	{ 0xde004, 255, 0x1f, 0x6},
8108c2ecf20Sopenharmony_ci	{ 0xde400, 1, 0x1f, 0x1007},
8118c2ecf20Sopenharmony_ci	{ 0xde404, 255, 0x1f, 0x6},
8128c2ecf20Sopenharmony_ci	{ 0xde800, 1, 0x1f, 0x1007},
8138c2ecf20Sopenharmony_ci	{ 0xde804, 255, 0x1f, 0x6},
8148c2ecf20Sopenharmony_ci	{ 0xdec00, 1, 0x1f, 0x1007},
8158c2ecf20Sopenharmony_ci	{ 0xdec04, 255, 0x1f, 0x6},
8168c2ecf20Sopenharmony_ci	{ 0xdf000, 1, 0x1f, 0x1007},
8178c2ecf20Sopenharmony_ci	{ 0xdf004, 255, 0x1f, 0x6},
8188c2ecf20Sopenharmony_ci	{ 0xdf400, 1, 0x1f, 0x1007},
8198c2ecf20Sopenharmony_ci	{ 0xdf404, 255, 0x1f, 0x6},
8208c2ecf20Sopenharmony_ci	{ 0xdf800, 1, 0x1f, 0x1007},
8218c2ecf20Sopenharmony_ci	{ 0xdf804, 255, 0x1f, 0x6},
8228c2ecf20Sopenharmony_ci	{ 0xdfc00, 1, 0x1f, 0x1007},
8238c2ecf20Sopenharmony_ci	{ 0xdfc04, 255, 0x1f, 0x6},
8248c2ecf20Sopenharmony_ci	{ 0xe0000, 21, 0x1f, 0x924},
8258c2ecf20Sopenharmony_ci	{ 0xe0054, 8, 0x1f, 0xf24},
8268c2ecf20Sopenharmony_ci	{ 0xe0074, 49, 0x1f, 0x924},
8278c2ecf20Sopenharmony_ci	{ 0xe0138, 1, 0x3, 0x924},
8288c2ecf20Sopenharmony_ci	{ 0xe013c, 6, 0x1f, 0x924},
8298c2ecf20Sopenharmony_ci	{ 0xe0154, 8, 0x1f, 0xfff},
8308c2ecf20Sopenharmony_ci	{ 0xe0174, 21, 0x1f, 0x924},
8318c2ecf20Sopenharmony_ci	{ 0xe01d8, 2, 0x1f, 0x1fff},
8328c2ecf20Sopenharmony_ci	{ 0xe01e4, 1, 0x1f, 0x1fff},
8338c2ecf20Sopenharmony_ci	{ 0xe01f4, 1, 0x4, 0x924},
8348c2ecf20Sopenharmony_ci	{ 0xe01f8, 1, 0x1c, 0x924},
8358c2ecf20Sopenharmony_ci	{ 0xe0200, 1, 0x1f, 0x924},
8368c2ecf20Sopenharmony_ci	{ 0xe0204, 1, 0x1f, 0xfff},
8378c2ecf20Sopenharmony_ci	{ 0xe020c, 2, 0x1f, 0xfff},
8388c2ecf20Sopenharmony_ci	{ 0xe0214, 2, 0x1f, 0x924},
8398c2ecf20Sopenharmony_ci	{ 0xe021c, 2, 0x1f, 0xfff},
8408c2ecf20Sopenharmony_ci	{ 0xe0224, 2, 0x1f, 0x924},
8418c2ecf20Sopenharmony_ci	{ 0xe022c, 18, 0x1e, 0x924},
8428c2ecf20Sopenharmony_ci	{ 0xe0280, 1, 0x1f, 0x924},
8438c2ecf20Sopenharmony_ci	{ 0xe0300, 1, 0x1f, 0x924},
8448c2ecf20Sopenharmony_ci	{ 0xe0400, 1, 0x10, 0x924},
8458c2ecf20Sopenharmony_ci	{ 0xe1000, 1, 0x1f, 0x924},
8468c2ecf20Sopenharmony_ci	{ 0xe2000, 1, 0x1f, 0xf24},
8478c2ecf20Sopenharmony_ci	{ 0xe2004, 255, 0x1f, 0xc00},
8488c2ecf20Sopenharmony_ci	{ 0xe2400, 1, 0x1f, 0xe00},
8498c2ecf20Sopenharmony_ci	{ 0xe2404, 255, 0x1f, 0xc00},
8508c2ecf20Sopenharmony_ci	{ 0xe2800, 1, 0x1f, 0xe00},
8518c2ecf20Sopenharmony_ci	{ 0xe2804, 255, 0x1f, 0xc00},
8528c2ecf20Sopenharmony_ci	{ 0xe2c00, 1, 0x1f, 0xe00},
8538c2ecf20Sopenharmony_ci	{ 0xe2c04, 255, 0x1f, 0xc00},
8548c2ecf20Sopenharmony_ci	{ 0xe3000, 1, 0x1f, 0xe00},
8558c2ecf20Sopenharmony_ci	{ 0xe3004, 255, 0x1f, 0xc00},
8568c2ecf20Sopenharmony_ci	{ 0xe3400, 1, 0x1f, 0xe00},
8578c2ecf20Sopenharmony_ci	{ 0xe3404, 255, 0x1f, 0xc00},
8588c2ecf20Sopenharmony_ci	{ 0xe3800, 1, 0x1f, 0xe00},
8598c2ecf20Sopenharmony_ci	{ 0xe3804, 255, 0x1f, 0xc00},
8608c2ecf20Sopenharmony_ci	{ 0xe3c00, 1, 0x1f, 0xe00},
8618c2ecf20Sopenharmony_ci	{ 0xe3c04, 255, 0x1f, 0xc00},
8628c2ecf20Sopenharmony_ci	{ 0xf0000, 1, 0x1f, 0xf24},
8638c2ecf20Sopenharmony_ci	{ 0xf0004, 255, 0x1f, 0xc00},
8648c2ecf20Sopenharmony_ci	{ 0xf0400, 1, 0x1f, 0xe00},
8658c2ecf20Sopenharmony_ci	{ 0xf0404, 255, 0x1f, 0xc00},
8668c2ecf20Sopenharmony_ci	{ 0xf0800, 1, 0x1f, 0xe00},
8678c2ecf20Sopenharmony_ci	{ 0xf0804, 255, 0x1f, 0xc00},
8688c2ecf20Sopenharmony_ci	{ 0xf0c00, 1, 0x1f, 0xe00},
8698c2ecf20Sopenharmony_ci	{ 0xf0c04, 255, 0x1f, 0xc00},
8708c2ecf20Sopenharmony_ci	{ 0xf1000, 1, 0x1f, 0xe00},
8718c2ecf20Sopenharmony_ci	{ 0xf1004, 255, 0x1f, 0xc00},
8728c2ecf20Sopenharmony_ci	{ 0xf1400, 1, 0x1f, 0xe00},
8738c2ecf20Sopenharmony_ci	{ 0xf1404, 255, 0x1f, 0xc00},
8748c2ecf20Sopenharmony_ci	{ 0xf1800, 1, 0x1f, 0xe00},
8758c2ecf20Sopenharmony_ci	{ 0xf1804, 255, 0x1f, 0xc00},
8768c2ecf20Sopenharmony_ci	{ 0xf1c00, 1, 0x1f, 0xe00},
8778c2ecf20Sopenharmony_ci	{ 0xf1c04, 255, 0x1f, 0xc00},
8788c2ecf20Sopenharmony_ci	{ 0xf2000, 1, 0x1f, 0xe00},
8798c2ecf20Sopenharmony_ci	{ 0xf2004, 255, 0x1f, 0xc00},
8808c2ecf20Sopenharmony_ci	{ 0xf2400, 1, 0x1f, 0xe00},
8818c2ecf20Sopenharmony_ci	{ 0xf2404, 255, 0x1f, 0xc00},
8828c2ecf20Sopenharmony_ci	{ 0xf2800, 1, 0x1f, 0xe00},
8838c2ecf20Sopenharmony_ci	{ 0xf2804, 255, 0x1f, 0xc00},
8848c2ecf20Sopenharmony_ci	{ 0xf2c00, 1, 0x1f, 0xe00},
8858c2ecf20Sopenharmony_ci	{ 0xf2c04, 255, 0x1f, 0xc00},
8868c2ecf20Sopenharmony_ci	{ 0xf3000, 1, 0x1f, 0xe00},
8878c2ecf20Sopenharmony_ci	{ 0xf3004, 255, 0x1f, 0xc00},
8888c2ecf20Sopenharmony_ci	{ 0xf3400, 1, 0x1f, 0xe00},
8898c2ecf20Sopenharmony_ci	{ 0xf3404, 255, 0x1f, 0xc00},
8908c2ecf20Sopenharmony_ci	{ 0xf3800, 1, 0x1f, 0xe00},
8918c2ecf20Sopenharmony_ci	{ 0xf3804, 255, 0x1f, 0xc00},
8928c2ecf20Sopenharmony_ci	{ 0xf3c00, 1, 0x1f, 0xe00},
8938c2ecf20Sopenharmony_ci	{ 0xf3c04, 255, 0x1f, 0xc00},
8948c2ecf20Sopenharmony_ci	{ 0xf4000, 1, 0x1f, 0xe00},
8958c2ecf20Sopenharmony_ci	{ 0xf4004, 255, 0x1f, 0xc00},
8968c2ecf20Sopenharmony_ci	{ 0xf4400, 1, 0x1f, 0xe00},
8978c2ecf20Sopenharmony_ci	{ 0xf4404, 255, 0x1f, 0xc00},
8988c2ecf20Sopenharmony_ci	{ 0xf4800, 1, 0x1f, 0xe00},
8998c2ecf20Sopenharmony_ci	{ 0xf4804, 255, 0x1f, 0xc00},
9008c2ecf20Sopenharmony_ci	{ 0xf4c00, 1, 0x1f, 0xe00},
9018c2ecf20Sopenharmony_ci	{ 0xf4c04, 255, 0x1f, 0xc00},
9028c2ecf20Sopenharmony_ci	{ 0xf5000, 1, 0x1f, 0xe00},
9038c2ecf20Sopenharmony_ci	{ 0xf5004, 255, 0x1f, 0xc00},
9048c2ecf20Sopenharmony_ci	{ 0xf5400, 1, 0x1f, 0xe00},
9058c2ecf20Sopenharmony_ci	{ 0xf5404, 255, 0x1f, 0xc00},
9068c2ecf20Sopenharmony_ci	{ 0xf5800, 1, 0x1f, 0xe00},
9078c2ecf20Sopenharmony_ci	{ 0xf5804, 255, 0x1f, 0xc00},
9088c2ecf20Sopenharmony_ci	{ 0xf5c00, 1, 0x1f, 0xe00},
9098c2ecf20Sopenharmony_ci	{ 0xf5c04, 255, 0x1f, 0xc00},
9108c2ecf20Sopenharmony_ci	{ 0xf6000, 1, 0x1f, 0xe00},
9118c2ecf20Sopenharmony_ci	{ 0xf6004, 255, 0x1f, 0xc00},
9128c2ecf20Sopenharmony_ci	{ 0xf6400, 1, 0x1f, 0xe00},
9138c2ecf20Sopenharmony_ci	{ 0xf6404, 255, 0x1f, 0xc00},
9148c2ecf20Sopenharmony_ci	{ 0xf6800, 1, 0x1f, 0xe00},
9158c2ecf20Sopenharmony_ci	{ 0xf6804, 255, 0x1f, 0xc00},
9168c2ecf20Sopenharmony_ci	{ 0xf6c00, 1, 0x1f, 0xe00},
9178c2ecf20Sopenharmony_ci	{ 0xf6c04, 255, 0x1f, 0xc00},
9188c2ecf20Sopenharmony_ci	{ 0xf7000, 1, 0x1f, 0xe00},
9198c2ecf20Sopenharmony_ci	{ 0xf7004, 255, 0x1f, 0xc00},
9208c2ecf20Sopenharmony_ci	{ 0xf7400, 1, 0x1f, 0xe00},
9218c2ecf20Sopenharmony_ci	{ 0xf7404, 255, 0x1f, 0xc00},
9228c2ecf20Sopenharmony_ci	{ 0xf7800, 1, 0x1f, 0xe00},
9238c2ecf20Sopenharmony_ci	{ 0xf7804, 255, 0x1f, 0xc00},
9248c2ecf20Sopenharmony_ci	{ 0xf7c00, 1, 0x1f, 0xe00},
9258c2ecf20Sopenharmony_ci	{ 0xf7c04, 255, 0x1f, 0xc00},
9268c2ecf20Sopenharmony_ci	{ 0xf8000, 1, 0x1f, 0xe00},
9278c2ecf20Sopenharmony_ci	{ 0xf8004, 255, 0x1f, 0xc00},
9288c2ecf20Sopenharmony_ci	{ 0xf8400, 1, 0x1f, 0xe00},
9298c2ecf20Sopenharmony_ci	{ 0xf8404, 255, 0x1f, 0xc00},
9308c2ecf20Sopenharmony_ci	{ 0xf8800, 1, 0x1f, 0xe00},
9318c2ecf20Sopenharmony_ci	{ 0xf8804, 255, 0x1f, 0xc00},
9328c2ecf20Sopenharmony_ci	{ 0xf8c00, 1, 0x1f, 0xe00},
9338c2ecf20Sopenharmony_ci	{ 0xf8c04, 255, 0x1f, 0xc00},
9348c2ecf20Sopenharmony_ci	{ 0xf9000, 1, 0x1f, 0xe00},
9358c2ecf20Sopenharmony_ci	{ 0xf9004, 255, 0x1f, 0xc00},
9368c2ecf20Sopenharmony_ci	{ 0xf9400, 1, 0x1f, 0xe00},
9378c2ecf20Sopenharmony_ci	{ 0xf9404, 255, 0x1f, 0xc00},
9388c2ecf20Sopenharmony_ci	{ 0xf9800, 1, 0x1f, 0xe00},
9398c2ecf20Sopenharmony_ci	{ 0xf9804, 255, 0x1f, 0xc00},
9408c2ecf20Sopenharmony_ci	{ 0xf9c00, 1, 0x1f, 0xe00},
9418c2ecf20Sopenharmony_ci	{ 0xf9c04, 255, 0x1f, 0xc00},
9428c2ecf20Sopenharmony_ci	{ 0xfa000, 1, 0x1f, 0xe00},
9438c2ecf20Sopenharmony_ci	{ 0xfa004, 255, 0x1f, 0xc00},
9448c2ecf20Sopenharmony_ci	{ 0xfa400, 1, 0x1f, 0xe00},
9458c2ecf20Sopenharmony_ci	{ 0xfa404, 255, 0x1f, 0xc00},
9468c2ecf20Sopenharmony_ci	{ 0xfa800, 1, 0x1f, 0xe00},
9478c2ecf20Sopenharmony_ci	{ 0xfa804, 255, 0x1f, 0xc00},
9488c2ecf20Sopenharmony_ci	{ 0xfac00, 1, 0x1f, 0xe00},
9498c2ecf20Sopenharmony_ci	{ 0xfac04, 255, 0x1f, 0xc00},
9508c2ecf20Sopenharmony_ci	{ 0xfb000, 1, 0x1f, 0xe00},
9518c2ecf20Sopenharmony_ci	{ 0xfb004, 255, 0x1f, 0xc00},
9528c2ecf20Sopenharmony_ci	{ 0xfb400, 1, 0x1f, 0xe00},
9538c2ecf20Sopenharmony_ci	{ 0xfb404, 255, 0x1f, 0xc00},
9548c2ecf20Sopenharmony_ci	{ 0xfb800, 1, 0x1f, 0xe00},
9558c2ecf20Sopenharmony_ci	{ 0xfb804, 255, 0x1f, 0xc00},
9568c2ecf20Sopenharmony_ci	{ 0xfbc00, 1, 0x1f, 0xe00},
9578c2ecf20Sopenharmony_ci	{ 0xfbc04, 255, 0x1f, 0xc00},
9588c2ecf20Sopenharmony_ci	{ 0xfc000, 1, 0x1f, 0xe00},
9598c2ecf20Sopenharmony_ci	{ 0xfc004, 255, 0x1f, 0xc00},
9608c2ecf20Sopenharmony_ci	{ 0xfc400, 1, 0x1f, 0xe00},
9618c2ecf20Sopenharmony_ci	{ 0xfc404, 255, 0x1f, 0xc00},
9628c2ecf20Sopenharmony_ci	{ 0xfc800, 1, 0x1f, 0xe00},
9638c2ecf20Sopenharmony_ci	{ 0xfc804, 255, 0x1f, 0xc00},
9648c2ecf20Sopenharmony_ci	{ 0xfcc00, 1, 0x1f, 0xe00},
9658c2ecf20Sopenharmony_ci	{ 0xfcc04, 255, 0x1f, 0xc00},
9668c2ecf20Sopenharmony_ci	{ 0xfd000, 1, 0x1f, 0xe00},
9678c2ecf20Sopenharmony_ci	{ 0xfd004, 255, 0x1f, 0xc00},
9688c2ecf20Sopenharmony_ci	{ 0xfd400, 1, 0x1f, 0xe00},
9698c2ecf20Sopenharmony_ci	{ 0xfd404, 255, 0x1f, 0xc00},
9708c2ecf20Sopenharmony_ci	{ 0xfd800, 1, 0x1f, 0xe00},
9718c2ecf20Sopenharmony_ci	{ 0xfd804, 255, 0x1f, 0xc00},
9728c2ecf20Sopenharmony_ci	{ 0xfdc00, 1, 0x1f, 0xe00},
9738c2ecf20Sopenharmony_ci	{ 0xfdc04, 255, 0x1f, 0xc00},
9748c2ecf20Sopenharmony_ci	{ 0xfe000, 1, 0x1f, 0xe00},
9758c2ecf20Sopenharmony_ci	{ 0xfe004, 255, 0x1f, 0xc00},
9768c2ecf20Sopenharmony_ci	{ 0xfe400, 1, 0x1f, 0xe00},
9778c2ecf20Sopenharmony_ci	{ 0xfe404, 255, 0x1f, 0xc00},
9788c2ecf20Sopenharmony_ci	{ 0xfe800, 1, 0x1f, 0xe00},
9798c2ecf20Sopenharmony_ci	{ 0xfe804, 255, 0x1f, 0xc00},
9808c2ecf20Sopenharmony_ci	{ 0xfec00, 1, 0x1f, 0xe00},
9818c2ecf20Sopenharmony_ci	{ 0xfec04, 255, 0x1f, 0xc00},
9828c2ecf20Sopenharmony_ci	{ 0xff000, 1, 0x1f, 0xe00},
9838c2ecf20Sopenharmony_ci	{ 0xff004, 255, 0x1f, 0xc00},
9848c2ecf20Sopenharmony_ci	{ 0xff400, 1, 0x1f, 0xe00},
9858c2ecf20Sopenharmony_ci	{ 0xff404, 255, 0x1f, 0xc00},
9868c2ecf20Sopenharmony_ci	{ 0xff800, 1, 0x1f, 0xe00},
9878c2ecf20Sopenharmony_ci	{ 0xff804, 255, 0x1f, 0xc00},
9888c2ecf20Sopenharmony_ci	{ 0xffc00, 1, 0x1f, 0xe00},
9898c2ecf20Sopenharmony_ci	{ 0xffc04, 255, 0x1f, 0xc00},
9908c2ecf20Sopenharmony_ci	{ 0x101000, 5, 0x1f, 0x924},
9918c2ecf20Sopenharmony_ci	{ 0x101014, 1, 0x1f, 0xfff},
9928c2ecf20Sopenharmony_ci	{ 0x101018, 6, 0x1f, 0x924},
9938c2ecf20Sopenharmony_ci	{ 0x101040, 2, 0x1f, 0x1fff},
9948c2ecf20Sopenharmony_ci	{ 0x10104c, 1, 0x1f, 0x1fff},
9958c2ecf20Sopenharmony_ci	{ 0x101050, 1, 0x1e, 0x924},
9968c2ecf20Sopenharmony_ci	{ 0x101054, 3, 0x1c, 0x924},
9978c2ecf20Sopenharmony_ci	{ 0x101100, 1, 0x1f, 0x924},
9988c2ecf20Sopenharmony_ci	{ 0x101800, 8, 0x1f, 0x924},
9998c2ecf20Sopenharmony_ci	{ 0x102000, 18, 0x1f, 0x924},
10008c2ecf20Sopenharmony_ci	{ 0x102058, 2, 0x1f, 0x1fff},
10018c2ecf20Sopenharmony_ci	{ 0x102064, 1, 0x1f, 0x1fff},
10028c2ecf20Sopenharmony_ci	{ 0x102068, 6, 0x1c, 0x924},
10038c2ecf20Sopenharmony_ci	{ 0x102080, 16, 0x1f, 0xfff},
10048c2ecf20Sopenharmony_ci	{ 0x1020c0, 1, 0x1f, 0x924},
10058c2ecf20Sopenharmony_ci	{ 0x1020c8, 8, 0x2, 0x924},
10068c2ecf20Sopenharmony_ci	{ 0x1020e8, 9, 0x1c, 0x924},
10078c2ecf20Sopenharmony_ci	{ 0x102400, 1, 0x1f, 0x924},
10088c2ecf20Sopenharmony_ci	{ 0x103000, 1, 0x1f, 0x924},
10098c2ecf20Sopenharmony_ci	{ 0x103004, 2, 0x1f, 0xfff},
10108c2ecf20Sopenharmony_ci	{ 0x10300c, 23, 0x1f, 0x924},
10118c2ecf20Sopenharmony_ci	{ 0x103088, 2, 0x1f, 0x1fff},
10128c2ecf20Sopenharmony_ci	{ 0x103094, 1, 0x1f, 0x1fff},
10138c2ecf20Sopenharmony_ci	{ 0x103098, 1, 0x1e, 0x924},
10148c2ecf20Sopenharmony_ci	{ 0x10309c, 2, 0x1e, 0xfff},
10158c2ecf20Sopenharmony_ci	{ 0x1030a4, 2, 0x1e, 0x924},
10168c2ecf20Sopenharmony_ci	{ 0x1030ac, 2, 0x1c, 0x924},
10178c2ecf20Sopenharmony_ci	{ 0x1030b4, 1, 0x4, 0x924},
10188c2ecf20Sopenharmony_ci	{ 0x1030b8, 2, 0x1c, 0xfff},
10198c2ecf20Sopenharmony_ci	{ 0x1030c0, 3, 0x1c, 0x924},
10208c2ecf20Sopenharmony_ci	{ 0x1030cc, 1, 0x1c, 0xfff},
10218c2ecf20Sopenharmony_ci	{ 0x1030d0, 1, 0x1c, 0x924},
10228c2ecf20Sopenharmony_ci	{ 0x1030d8, 2, 0x1c, 0x924},
10238c2ecf20Sopenharmony_ci	{ 0x1030e0, 1, 0x1c, 0xfff},
10248c2ecf20Sopenharmony_ci	{ 0x1030e4, 5, 0x1c, 0x924},
10258c2ecf20Sopenharmony_ci	{ 0x103400, 136, 0x1c, 0x1fff},
10268c2ecf20Sopenharmony_ci	{ 0x103800, 8, 0x1f, 0x924},
10278c2ecf20Sopenharmony_ci	{ 0x104000, 1, 0x1f, 0x924},
10288c2ecf20Sopenharmony_ci	{ 0x104004, 1, 0x1f, 0xfff},
10298c2ecf20Sopenharmony_ci	{ 0x104008, 4, 0x1f, 0x924},
10308c2ecf20Sopenharmony_ci	{ 0x104018, 1, 0x1f, 0xfff},
10318c2ecf20Sopenharmony_ci	{ 0x10401c, 1, 0x1f, 0x924},
10328c2ecf20Sopenharmony_ci	{ 0x104020, 1, 0x1f, 0xfff},
10338c2ecf20Sopenharmony_ci	{ 0x104024, 6, 0x1f, 0x924},
10348c2ecf20Sopenharmony_ci	{ 0x10403c, 1, 0x1f, 0xfff},
10358c2ecf20Sopenharmony_ci	{ 0x104040, 47, 0x1f, 0x924},
10368c2ecf20Sopenharmony_ci	{ 0x10410c, 2, 0x1f, 0x1fff},
10378c2ecf20Sopenharmony_ci	{ 0x104118, 1, 0x1f, 0x1fff},
10388c2ecf20Sopenharmony_ci	{ 0x10411c, 16, 0x1c, 0x924},
10398c2ecf20Sopenharmony_ci	{ 0x104200, 17, 0x1f, 0x924},
10408c2ecf20Sopenharmony_ci	{ 0x104400, 1, 0x1f, 0x1fff},
10418c2ecf20Sopenharmony_ci	{ 0x104404, 63, 0x1f, 0xfff},
10428c2ecf20Sopenharmony_ci	{ 0x104500, 192, 0x1f, 0xdb6},
10438c2ecf20Sopenharmony_ci	{ 0x104800, 1, 0x1f, 0x1fff},
10448c2ecf20Sopenharmony_ci	{ 0x104804, 63, 0x1f, 0xfff},
10458c2ecf20Sopenharmony_ci	{ 0x104900, 192, 0x1f, 0xdb6},
10468c2ecf20Sopenharmony_ci	{ 0x105000, 4, 0x1f, 0x1fff},
10478c2ecf20Sopenharmony_ci	{ 0x105010, 252, 0x1f, 0xfff},
10488c2ecf20Sopenharmony_ci	{ 0x105400, 768, 0x1f, 0xdb6},
10498c2ecf20Sopenharmony_ci	{ 0x107000, 7, 0x1c, 0x924},
10508c2ecf20Sopenharmony_ci	{ 0x10701c, 1, 0x18, 0x924},
10518c2ecf20Sopenharmony_ci	{ 0x108000, 33, 0x3, 0x924},
10528c2ecf20Sopenharmony_ci	{ 0x1080ac, 5, 0x2, 0x924},
10538c2ecf20Sopenharmony_ci	{ 0x108100, 5, 0x3, 0x924},
10548c2ecf20Sopenharmony_ci	{ 0x108120, 5, 0x3, 0x924},
10558c2ecf20Sopenharmony_ci	{ 0x108200, 74, 0x3, 0x924},
10568c2ecf20Sopenharmony_ci	{ 0x108400, 74, 0x3, 0x924},
10578c2ecf20Sopenharmony_ci	{ 0x108800, 152, 0x3, 0x924},
10588c2ecf20Sopenharmony_ci	{ 0x110000, 111, 0x1c, 0x924},
10598c2ecf20Sopenharmony_ci	{ 0x1101cc, 2, 0x1c, 0x1fff},
10608c2ecf20Sopenharmony_ci	{ 0x1101d8, 1, 0x1c, 0x1fff},
10618c2ecf20Sopenharmony_ci	{ 0x1101dc, 1, 0x18, 0x924},
10628c2ecf20Sopenharmony_ci	{ 0x110200, 4, 0x1c, 0x924},
10638c2ecf20Sopenharmony_ci	{ 0x120000, 92, 0x1f, 0x924},
10648c2ecf20Sopenharmony_ci	{ 0x120170, 2, 0x3, 0x924},
10658c2ecf20Sopenharmony_ci	{ 0x120178, 14, 0x1f, 0x924},
10668c2ecf20Sopenharmony_ci	{ 0x1201b0, 2, 0x1f, 0xfff},
10678c2ecf20Sopenharmony_ci	{ 0x1201b8, 93, 0x1f, 0x924},
10688c2ecf20Sopenharmony_ci	{ 0x12032c, 1, 0x1f, 0xfff},
10698c2ecf20Sopenharmony_ci	{ 0x120330, 15, 0x1f, 0x924},
10708c2ecf20Sopenharmony_ci	{ 0x12036c, 3, 0x1f, 0xfff},
10718c2ecf20Sopenharmony_ci	{ 0x120378, 36, 0x1f, 0x924},
10728c2ecf20Sopenharmony_ci	{ 0x120408, 2, 0x1f, 0xfff},
10738c2ecf20Sopenharmony_ci	{ 0x120410, 1, 0x1f, 0x924},
10748c2ecf20Sopenharmony_ci	{ 0x120414, 15, 0x1f, 0xfff},
10758c2ecf20Sopenharmony_ci	{ 0x120450, 10, 0x1f, 0x924},
10768c2ecf20Sopenharmony_ci	{ 0x120478, 2, 0x1f, 0xfff},
10778c2ecf20Sopenharmony_ci	{ 0x120480, 43, 0x1f, 0x924},
10788c2ecf20Sopenharmony_ci	{ 0x12052c, 1, 0x1f, 0xfff},
10798c2ecf20Sopenharmony_ci	{ 0x120530, 5, 0x1f, 0x924},
10808c2ecf20Sopenharmony_ci	{ 0x120544, 4, 0x3, 0x924},
10818c2ecf20Sopenharmony_ci	{ 0x120554, 4, 0x1f, 0x924},
10828c2ecf20Sopenharmony_ci	{ 0x120564, 2, 0x1f, 0xfff},
10838c2ecf20Sopenharmony_ci	{ 0x12057c, 2, 0x1f, 0x1fff},
10848c2ecf20Sopenharmony_ci	{ 0x120588, 3, 0x1f, 0x1fff},
10858c2ecf20Sopenharmony_ci	{ 0x120598, 1, 0x1f, 0x1fff},
10868c2ecf20Sopenharmony_ci	{ 0x12059c, 22, 0x1e, 0x924},
10878c2ecf20Sopenharmony_ci	{ 0x1205f4, 1, 0x6, 0x924},
10888c2ecf20Sopenharmony_ci	{ 0x1205f8, 4, 0x1c, 0x924},
10898c2ecf20Sopenharmony_ci	{ 0x120618, 1, 0x1c, 0x924},
10908c2ecf20Sopenharmony_ci	{ 0x12061c, 31, 0x1e, 0x924},
10918c2ecf20Sopenharmony_ci	{ 0x120698, 3, 0x1c, 0x924},
10928c2ecf20Sopenharmony_ci	{ 0x1206a4, 1, 0x4, 0x924},
10938c2ecf20Sopenharmony_ci	{ 0x1206a8, 1, 0x1c, 0x924},
10948c2ecf20Sopenharmony_ci	{ 0x1206b0, 38, 0x1c, 0x924},
10958c2ecf20Sopenharmony_ci	{ 0x120748, 1, 0x1c, 0xfff},
10968c2ecf20Sopenharmony_ci	{ 0x12074c, 11, 0x1c, 0x924},
10978c2ecf20Sopenharmony_ci	{ 0x120778, 2, 0x1c, 0xfff},
10988c2ecf20Sopenharmony_ci	{ 0x120780, 23, 0x1c, 0x924},
10998c2ecf20Sopenharmony_ci	{ 0x1207dc, 1, 0x4, 0x924},
11008c2ecf20Sopenharmony_ci	{ 0x1207fc, 1, 0x1c, 0x924},
11018c2ecf20Sopenharmony_ci	{ 0x12080c, 2, 0x1f, 0xfff},
11028c2ecf20Sopenharmony_ci	{ 0x120814, 1, 0x1f, 0x924},
11038c2ecf20Sopenharmony_ci	{ 0x120818, 1, 0x1f, 0xfff},
11048c2ecf20Sopenharmony_ci	{ 0x12081c, 1, 0x1f, 0x924},
11058c2ecf20Sopenharmony_ci	{ 0x120820, 1, 0x1f, 0xfff},
11068c2ecf20Sopenharmony_ci	{ 0x120824, 1, 0x1f, 0x924},
11078c2ecf20Sopenharmony_ci	{ 0x120828, 1, 0x1f, 0xfff},
11088c2ecf20Sopenharmony_ci	{ 0x12082c, 1, 0x1f, 0x924},
11098c2ecf20Sopenharmony_ci	{ 0x120830, 1, 0x1f, 0xfff},
11108c2ecf20Sopenharmony_ci	{ 0x120834, 1, 0x1f, 0x924},
11118c2ecf20Sopenharmony_ci	{ 0x120838, 1, 0x1f, 0xfff},
11128c2ecf20Sopenharmony_ci	{ 0x12083c, 1, 0x1f, 0x924},
11138c2ecf20Sopenharmony_ci	{ 0x120840, 1, 0x1f, 0xfff},
11148c2ecf20Sopenharmony_ci	{ 0x120844, 1, 0x1f, 0x924},
11158c2ecf20Sopenharmony_ci	{ 0x120848, 1, 0x1f, 0xfff},
11168c2ecf20Sopenharmony_ci	{ 0x12084c, 1, 0x1f, 0x924},
11178c2ecf20Sopenharmony_ci	{ 0x120850, 1, 0x1f, 0xfff},
11188c2ecf20Sopenharmony_ci	{ 0x120854, 1, 0x1f, 0x924},
11198c2ecf20Sopenharmony_ci	{ 0x120858, 1, 0x1f, 0xfff},
11208c2ecf20Sopenharmony_ci	{ 0x12085c, 1, 0x1f, 0x924},
11218c2ecf20Sopenharmony_ci	{ 0x120860, 1, 0x1f, 0xfff},
11228c2ecf20Sopenharmony_ci	{ 0x120864, 1, 0x1f, 0x924},
11238c2ecf20Sopenharmony_ci	{ 0x120868, 1, 0x1f, 0xfff},
11248c2ecf20Sopenharmony_ci	{ 0x12086c, 1, 0x1f, 0x924},
11258c2ecf20Sopenharmony_ci	{ 0x120870, 1, 0x1f, 0xfff},
11268c2ecf20Sopenharmony_ci	{ 0x120874, 1, 0x1f, 0x924},
11278c2ecf20Sopenharmony_ci	{ 0x120878, 1, 0x1f, 0xfff},
11288c2ecf20Sopenharmony_ci	{ 0x12087c, 1, 0x1f, 0x924},
11298c2ecf20Sopenharmony_ci	{ 0x120880, 1, 0x1f, 0xfff},
11308c2ecf20Sopenharmony_ci	{ 0x120884, 1, 0x1f, 0x924},
11318c2ecf20Sopenharmony_ci	{ 0x120888, 1, 0x1f, 0xfff},
11328c2ecf20Sopenharmony_ci	{ 0x12088c, 1, 0x1f, 0x924},
11338c2ecf20Sopenharmony_ci	{ 0x120890, 1, 0x1f, 0xfff},
11348c2ecf20Sopenharmony_ci	{ 0x120894, 1, 0x1f, 0x924},
11358c2ecf20Sopenharmony_ci	{ 0x120898, 1, 0x1f, 0xfff},
11368c2ecf20Sopenharmony_ci	{ 0x12089c, 1, 0x1f, 0x924},
11378c2ecf20Sopenharmony_ci	{ 0x1208a0, 1, 0x1f, 0xfff},
11388c2ecf20Sopenharmony_ci	{ 0x1208a4, 1, 0x1f, 0x924},
11398c2ecf20Sopenharmony_ci	{ 0x1208a8, 1, 0x1f, 0xfff},
11408c2ecf20Sopenharmony_ci	{ 0x1208ac, 1, 0x1f, 0x924},
11418c2ecf20Sopenharmony_ci	{ 0x1208b0, 1, 0x1f, 0xfff},
11428c2ecf20Sopenharmony_ci	{ 0x1208b4, 1, 0x1f, 0x924},
11438c2ecf20Sopenharmony_ci	{ 0x1208b8, 1, 0x1f, 0xfff},
11448c2ecf20Sopenharmony_ci	{ 0x1208bc, 1, 0x1f, 0x924},
11458c2ecf20Sopenharmony_ci	{ 0x1208c0, 1, 0x1f, 0xfff},
11468c2ecf20Sopenharmony_ci	{ 0x1208c4, 1, 0x1f, 0x924},
11478c2ecf20Sopenharmony_ci	{ 0x1208c8, 1, 0x1f, 0xfff},
11488c2ecf20Sopenharmony_ci	{ 0x1208cc, 1, 0x1f, 0x924},
11498c2ecf20Sopenharmony_ci	{ 0x1208d0, 1, 0x1f, 0xfff},
11508c2ecf20Sopenharmony_ci	{ 0x1208d4, 1, 0x1f, 0x924},
11518c2ecf20Sopenharmony_ci	{ 0x1208d8, 1, 0x1f, 0xfff},
11528c2ecf20Sopenharmony_ci	{ 0x1208dc, 1, 0x1f, 0x924},
11538c2ecf20Sopenharmony_ci	{ 0x1208e0, 1, 0x1f, 0xfff},
11548c2ecf20Sopenharmony_ci	{ 0x1208e4, 1, 0x1f, 0x924},
11558c2ecf20Sopenharmony_ci	{ 0x1208e8, 1, 0x1f, 0xfff},
11568c2ecf20Sopenharmony_ci	{ 0x1208ec, 1, 0x1f, 0x924},
11578c2ecf20Sopenharmony_ci	{ 0x1208f0, 1, 0x1f, 0xfff},
11588c2ecf20Sopenharmony_ci	{ 0x1208f4, 1, 0x1f, 0x924},
11598c2ecf20Sopenharmony_ci	{ 0x1208f8, 1, 0x1f, 0xfff},
11608c2ecf20Sopenharmony_ci	{ 0x1208fc, 1, 0x1f, 0x924},
11618c2ecf20Sopenharmony_ci	{ 0x120900, 1, 0x1f, 0xfff},
11628c2ecf20Sopenharmony_ci	{ 0x120904, 1, 0x1f, 0x924},
11638c2ecf20Sopenharmony_ci	{ 0x120908, 1, 0x1f, 0xfff},
11648c2ecf20Sopenharmony_ci	{ 0x12090c, 1, 0x1f, 0x924},
11658c2ecf20Sopenharmony_ci	{ 0x120910, 7, 0x1c, 0x924},
11668c2ecf20Sopenharmony_ci	{ 0x120930, 9, 0x1c, 0x924},
11678c2ecf20Sopenharmony_ci	{ 0x12095c, 37, 0x18, 0x924},
11688c2ecf20Sopenharmony_ci	{ 0x120a00, 2, 0x7, 0x924},
11698c2ecf20Sopenharmony_ci	{ 0x120b00, 1, 0x18, 0x924},
11708c2ecf20Sopenharmony_ci	{ 0x122000, 2, 0x1f, 0x924},
11718c2ecf20Sopenharmony_ci	{ 0x122008, 2046, 0x1, 0x924},
11728c2ecf20Sopenharmony_ci	{ 0x128000, 6144, 0x1e, 0x924},
11738c2ecf20Sopenharmony_ci	{ 0x130000, 1, 0x1c, 0x1fff},
11748c2ecf20Sopenharmony_ci	{ 0x130004, 11, 0x1c, 0x924},
11758c2ecf20Sopenharmony_ci	{ 0x130030, 1, 0x1c, 0xfff},
11768c2ecf20Sopenharmony_ci	{ 0x130034, 6, 0x1c, 0x924},
11778c2ecf20Sopenharmony_ci	{ 0x13004c, 3, 0x1c, 0xfff},
11788c2ecf20Sopenharmony_ci	{ 0x130058, 3, 0x1c, 0x924},
11798c2ecf20Sopenharmony_ci	{ 0x130064, 2, 0x1c, 0xfff},
11808c2ecf20Sopenharmony_ci	{ 0x13006c, 8, 0x1c, 0x924},
11818c2ecf20Sopenharmony_ci	{ 0x13009c, 2, 0x1c, 0x1fff},
11828c2ecf20Sopenharmony_ci	{ 0x1300a8, 1, 0x1c, 0x1fff},
11838c2ecf20Sopenharmony_ci	{ 0x130100, 12, 0x1c, 0x924},
11848c2ecf20Sopenharmony_ci	{ 0x130130, 1, 0x1c, 0xfff},
11858c2ecf20Sopenharmony_ci	{ 0x130134, 14, 0x1c, 0x924},
11868c2ecf20Sopenharmony_ci	{ 0x13016c, 1, 0x1c, 0xfff},
11878c2ecf20Sopenharmony_ci	{ 0x130170, 1, 0x1c, 0x924},
11888c2ecf20Sopenharmony_ci	{ 0x130180, 1, 0x1c, 0x924},
11898c2ecf20Sopenharmony_ci	{ 0x130200, 1, 0x1c, 0x924},
11908c2ecf20Sopenharmony_ci	{ 0x130280, 1, 0x1c, 0x924},
11918c2ecf20Sopenharmony_ci	{ 0x130300, 1, 0x1c, 0xfff},
11928c2ecf20Sopenharmony_ci	{ 0x130304, 4, 0x1c, 0x924},
11938c2ecf20Sopenharmony_ci	{ 0x130380, 1, 0x1c, 0x924},
11948c2ecf20Sopenharmony_ci	{ 0x130400, 1, 0x1c, 0x924},
11958c2ecf20Sopenharmony_ci	{ 0x130480, 1, 0x1c, 0xfff},
11968c2ecf20Sopenharmony_ci	{ 0x130484, 4, 0x1c, 0x924},
11978c2ecf20Sopenharmony_ci	{ 0x130800, 72, 0x1c, 0x924},
11988c2ecf20Sopenharmony_ci	{ 0x131000, 136, 0x1c, 0x924},
11998c2ecf20Sopenharmony_ci	{ 0x132000, 148, 0x1c, 0x924},
12008c2ecf20Sopenharmony_ci	{ 0x134000, 544, 0x1c, 0x924},
12018c2ecf20Sopenharmony_ci	{ 0x140000, 1, 0x1f, 0x924},
12028c2ecf20Sopenharmony_ci	{ 0x140004, 9, 0xf, 0x924},
12038c2ecf20Sopenharmony_ci	{ 0x140028, 8, 0x1f, 0x924},
12048c2ecf20Sopenharmony_ci	{ 0x140048, 5, 0xf, 0x924},
12058c2ecf20Sopenharmony_ci	{ 0x14005c, 2, 0xf, 0xfff},
12068c2ecf20Sopenharmony_ci	{ 0x140064, 3, 0xf, 0x924},
12078c2ecf20Sopenharmony_ci	{ 0x140070, 1, 0x1f, 0x924},
12088c2ecf20Sopenharmony_ci	{ 0x140074, 10, 0xf, 0x924},
12098c2ecf20Sopenharmony_ci	{ 0x14009c, 1, 0x1f, 0x924},
12108c2ecf20Sopenharmony_ci	{ 0x1400a0, 5, 0xf, 0x924},
12118c2ecf20Sopenharmony_ci	{ 0x1400b4, 7, 0x1f, 0x924},
12128c2ecf20Sopenharmony_ci	{ 0x1400d0, 2, 0xf, 0xfff},
12138c2ecf20Sopenharmony_ci	{ 0x1400d8, 2, 0xf, 0x924},
12148c2ecf20Sopenharmony_ci	{ 0x1400e0, 1, 0xf, 0xfff},
12158c2ecf20Sopenharmony_ci	{ 0x1400e4, 5, 0xf, 0x924},
12168c2ecf20Sopenharmony_ci	{ 0x1400f8, 2, 0x1f, 0x924},
12178c2ecf20Sopenharmony_ci	{ 0x140100, 5, 0x3, 0x924},
12188c2ecf20Sopenharmony_ci	{ 0x140114, 5, 0xf, 0x924},
12198c2ecf20Sopenharmony_ci	{ 0x140128, 7, 0x1f, 0x924},
12208c2ecf20Sopenharmony_ci	{ 0x140144, 9, 0xf, 0x924},
12218c2ecf20Sopenharmony_ci	{ 0x140168, 8, 0x1f, 0x924},
12228c2ecf20Sopenharmony_ci	{ 0x140188, 3, 0xf, 0x924},
12238c2ecf20Sopenharmony_ci	{ 0x140194, 13, 0x1f, 0x924},
12248c2ecf20Sopenharmony_ci	{ 0x1401d8, 2, 0x1f, 0x1fff},
12258c2ecf20Sopenharmony_ci	{ 0x1401e4, 1, 0x1f, 0x1fff},
12268c2ecf20Sopenharmony_ci	{ 0x140200, 6, 0xf, 0xfff},
12278c2ecf20Sopenharmony_ci	{ 0x1402e0, 2, 0xc, 0x924},
12288c2ecf20Sopenharmony_ci	{ 0x1402e8, 2, 0x1c, 0x924},
12298c2ecf20Sopenharmony_ci	{ 0x1402f0, 9, 0xc, 0x924},
12308c2ecf20Sopenharmony_ci	{ 0x140314, 9, 0x10, 0x924},
12318c2ecf20Sopenharmony_ci	{ 0x140338, 7, 0x10, 0xfff},
12328c2ecf20Sopenharmony_ci	{ 0x140354, 7, 0x10, 0x924},
12338c2ecf20Sopenharmony_ci	{ 0x140370, 7, 0x10, 0xfff},
12348c2ecf20Sopenharmony_ci	{ 0x14038c, 14, 0x10, 0x924},
12358c2ecf20Sopenharmony_ci	{ 0x1404b0, 14, 0x10, 0x924},
12368c2ecf20Sopenharmony_ci	{ 0x15c000, 2, 0x1e, 0x924},
12378c2ecf20Sopenharmony_ci	{ 0x15c008, 5, 0x2, 0x924},
12388c2ecf20Sopenharmony_ci	{ 0x15c020, 8, 0x1c, 0x924},
12398c2ecf20Sopenharmony_ci	{ 0x15c040, 1, 0xc, 0x924},
12408c2ecf20Sopenharmony_ci	{ 0x15c044, 2, 0x1c, 0x924},
12418c2ecf20Sopenharmony_ci	{ 0x15c04c, 8, 0xc, 0x924},
12428c2ecf20Sopenharmony_ci	{ 0x15c06c, 8, 0x1c, 0x924},
12438c2ecf20Sopenharmony_ci	{ 0x15c090, 13, 0x1c, 0x924},
12448c2ecf20Sopenharmony_ci	{ 0x15c0c8, 24, 0x1c, 0x924},
12458c2ecf20Sopenharmony_ci	{ 0x15c128, 2, 0xc, 0x924},
12468c2ecf20Sopenharmony_ci	{ 0x15c130, 1, 0x1c, 0x924},
12478c2ecf20Sopenharmony_ci	{ 0x15c138, 6, 0x1c, 0x924},
12488c2ecf20Sopenharmony_ci	{ 0x15c150, 2, 0x18, 0x924},
12498c2ecf20Sopenharmony_ci	{ 0x15c158, 2, 0x8, 0x924},
12508c2ecf20Sopenharmony_ci	{ 0x15c160, 23, 0x10, 0x924},
12518c2ecf20Sopenharmony_ci	{ 0x15c1bc, 6, 0x10, 0xfff},
12528c2ecf20Sopenharmony_ci	{ 0x15c1d4, 23, 0x10, 0x924},
12538c2ecf20Sopenharmony_ci	{ 0x15c230, 7, 0x10, 0xfff},
12548c2ecf20Sopenharmony_ci	{ 0x15c24c, 90, 0x10, 0x924},
12558c2ecf20Sopenharmony_ci	{ 0x160004, 6, 0x18, 0x924},
12568c2ecf20Sopenharmony_ci	{ 0x16003c, 1, 0x10, 0x924},
12578c2ecf20Sopenharmony_ci	{ 0x160040, 6, 0x18, 0x924},
12588c2ecf20Sopenharmony_ci	{ 0x16005c, 6, 0x18, 0x924},
12598c2ecf20Sopenharmony_ci	{ 0x160074, 1, 0x10, 0x924},
12608c2ecf20Sopenharmony_ci	{ 0x160078, 2, 0x18, 0x924},
12618c2ecf20Sopenharmony_ci	{ 0x160300, 8, 0x18, 0x924},
12628c2ecf20Sopenharmony_ci	{ 0x160330, 6, 0x18, 0x924},
12638c2ecf20Sopenharmony_ci	{ 0x160404, 6, 0x18, 0x924},
12648c2ecf20Sopenharmony_ci	{ 0x16043c, 1, 0x10, 0x924},
12658c2ecf20Sopenharmony_ci	{ 0x160440, 6, 0x18, 0x924},
12668c2ecf20Sopenharmony_ci	{ 0x16045c, 6, 0x18, 0x924},
12678c2ecf20Sopenharmony_ci	{ 0x160474, 1, 0x10, 0x924},
12688c2ecf20Sopenharmony_ci	{ 0x160478, 2, 0x18, 0x924},
12698c2ecf20Sopenharmony_ci	{ 0x160700, 8, 0x18, 0x924},
12708c2ecf20Sopenharmony_ci	{ 0x160730, 6, 0x18, 0x924},
12718c2ecf20Sopenharmony_ci	{ 0x161000, 7, 0x1f, 0x924},
12728c2ecf20Sopenharmony_ci	{ 0x16102c, 2, 0x1f, 0x1fff},
12738c2ecf20Sopenharmony_ci	{ 0x161038, 1, 0x1f, 0x1fff},
12748c2ecf20Sopenharmony_ci	{ 0x16103c, 2, 0x1c, 0x924},
12758c2ecf20Sopenharmony_ci	{ 0x161800, 2, 0x1f, 0x924},
12768c2ecf20Sopenharmony_ci	{ 0x162000, 54, 0x18, 0x924},
12778c2ecf20Sopenharmony_ci	{ 0x162200, 60, 0x18, 0x924},
12788c2ecf20Sopenharmony_ci	{ 0x162400, 54, 0x18, 0x924},
12798c2ecf20Sopenharmony_ci	{ 0x162600, 60, 0x18, 0x924},
12808c2ecf20Sopenharmony_ci	{ 0x162800, 54, 0x18, 0x924},
12818c2ecf20Sopenharmony_ci	{ 0x162a00, 60, 0x18, 0x924},
12828c2ecf20Sopenharmony_ci	{ 0x162c00, 54, 0x18, 0x924},
12838c2ecf20Sopenharmony_ci	{ 0x162e00, 60, 0x18, 0x924},
12848c2ecf20Sopenharmony_ci	{ 0x163000, 1, 0x18, 0x924},
12858c2ecf20Sopenharmony_ci	{ 0x163008, 1, 0x18, 0x924},
12868c2ecf20Sopenharmony_ci	{ 0x163010, 1, 0x18, 0x924},
12878c2ecf20Sopenharmony_ci	{ 0x163018, 1, 0x18, 0x924},
12888c2ecf20Sopenharmony_ci	{ 0x163020, 5, 0x18, 0x924},
12898c2ecf20Sopenharmony_ci	{ 0x163038, 3, 0x18, 0x924},
12908c2ecf20Sopenharmony_ci	{ 0x163048, 3, 0x18, 0x924},
12918c2ecf20Sopenharmony_ci	{ 0x163058, 1, 0x18, 0x924},
12928c2ecf20Sopenharmony_ci	{ 0x163060, 1, 0x18, 0x924},
12938c2ecf20Sopenharmony_ci	{ 0x163068, 1, 0x18, 0x924},
12948c2ecf20Sopenharmony_ci	{ 0x163070, 3, 0x18, 0x924},
12958c2ecf20Sopenharmony_ci	{ 0x163080, 1, 0x18, 0x924},
12968c2ecf20Sopenharmony_ci	{ 0x163088, 3, 0x18, 0x924},
12978c2ecf20Sopenharmony_ci	{ 0x163098, 1, 0x18, 0x924},
12988c2ecf20Sopenharmony_ci	{ 0x1630a0, 1, 0x18, 0x924},
12998c2ecf20Sopenharmony_ci	{ 0x1630a8, 1, 0x18, 0x924},
13008c2ecf20Sopenharmony_ci	{ 0x1630b0, 2, 0x10, 0x924},
13018c2ecf20Sopenharmony_ci	{ 0x1630c0, 1, 0x18, 0x924},
13028c2ecf20Sopenharmony_ci	{ 0x1630c8, 1, 0x18, 0x924},
13038c2ecf20Sopenharmony_ci	{ 0x1630d0, 1, 0x18, 0x924},
13048c2ecf20Sopenharmony_ci	{ 0x1630d8, 1, 0x18, 0x924},
13058c2ecf20Sopenharmony_ci	{ 0x1630e0, 2, 0x18, 0x924},
13068c2ecf20Sopenharmony_ci	{ 0x163110, 1, 0x18, 0x924},
13078c2ecf20Sopenharmony_ci	{ 0x163120, 2, 0x18, 0x924},
13088c2ecf20Sopenharmony_ci	{ 0x163420, 4, 0x18, 0x924},
13098c2ecf20Sopenharmony_ci	{ 0x163438, 2, 0x18, 0x924},
13108c2ecf20Sopenharmony_ci	{ 0x163488, 2, 0x18, 0x924},
13118c2ecf20Sopenharmony_ci	{ 0x163520, 2, 0x18, 0x924},
13128c2ecf20Sopenharmony_ci	{ 0x163800, 1, 0x18, 0x924},
13138c2ecf20Sopenharmony_ci	{ 0x163808, 1, 0x18, 0x924},
13148c2ecf20Sopenharmony_ci	{ 0x163810, 1, 0x18, 0x924},
13158c2ecf20Sopenharmony_ci	{ 0x163818, 1, 0x18, 0x924},
13168c2ecf20Sopenharmony_ci	{ 0x163820, 5, 0x18, 0x924},
13178c2ecf20Sopenharmony_ci	{ 0x163838, 3, 0x18, 0x924},
13188c2ecf20Sopenharmony_ci	{ 0x163848, 3, 0x18, 0x924},
13198c2ecf20Sopenharmony_ci	{ 0x163858, 1, 0x18, 0x924},
13208c2ecf20Sopenharmony_ci	{ 0x163860, 1, 0x18, 0x924},
13218c2ecf20Sopenharmony_ci	{ 0x163868, 1, 0x18, 0x924},
13228c2ecf20Sopenharmony_ci	{ 0x163870, 3, 0x18, 0x924},
13238c2ecf20Sopenharmony_ci	{ 0x163880, 1, 0x18, 0x924},
13248c2ecf20Sopenharmony_ci	{ 0x163888, 3, 0x18, 0x924},
13258c2ecf20Sopenharmony_ci	{ 0x163898, 1, 0x18, 0x924},
13268c2ecf20Sopenharmony_ci	{ 0x1638a0, 1, 0x18, 0x924},
13278c2ecf20Sopenharmony_ci	{ 0x1638a8, 1, 0x18, 0x924},
13288c2ecf20Sopenharmony_ci	{ 0x1638b0, 2, 0x10, 0x924},
13298c2ecf20Sopenharmony_ci	{ 0x1638c0, 1, 0x18, 0x924},
13308c2ecf20Sopenharmony_ci	{ 0x1638c8, 1, 0x18, 0x924},
13318c2ecf20Sopenharmony_ci	{ 0x1638d0, 1, 0x18, 0x924},
13328c2ecf20Sopenharmony_ci	{ 0x1638d8, 1, 0x18, 0x924},
13338c2ecf20Sopenharmony_ci	{ 0x1638e0, 2, 0x18, 0x924},
13348c2ecf20Sopenharmony_ci	{ 0x163910, 1, 0x18, 0x924},
13358c2ecf20Sopenharmony_ci	{ 0x163920, 2, 0x18, 0x924},
13368c2ecf20Sopenharmony_ci	{ 0x163c20, 4, 0x18, 0x924},
13378c2ecf20Sopenharmony_ci	{ 0x163c38, 2, 0x18, 0x924},
13388c2ecf20Sopenharmony_ci	{ 0x163c88, 2, 0x18, 0x924},
13398c2ecf20Sopenharmony_ci	{ 0x163d20, 2, 0x18, 0x924},
13408c2ecf20Sopenharmony_ci	{ 0x164000, 5, 0x1f, 0x924},
13418c2ecf20Sopenharmony_ci	{ 0x164014, 2, 0x1f, 0xfff},
13428c2ecf20Sopenharmony_ci	{ 0x16401c, 53, 0x1f, 0x924},
13438c2ecf20Sopenharmony_ci	{ 0x164100, 2, 0x1f, 0x1fff},
13448c2ecf20Sopenharmony_ci	{ 0x16410c, 1, 0x1f, 0x1fff},
13458c2ecf20Sopenharmony_ci	{ 0x164110, 2, 0x1e, 0x924},
13468c2ecf20Sopenharmony_ci	{ 0x164118, 15, 0x1c, 0x924},
13478c2ecf20Sopenharmony_ci	{ 0x164200, 1, 0x1f, 0x924},
13488c2ecf20Sopenharmony_ci	{ 0x164208, 1, 0x1f, 0x924},
13498c2ecf20Sopenharmony_ci	{ 0x164210, 1, 0x1f, 0x924},
13508c2ecf20Sopenharmony_ci	{ 0x164218, 1, 0x1f, 0x924},
13518c2ecf20Sopenharmony_ci	{ 0x164220, 1, 0x1f, 0x924},
13528c2ecf20Sopenharmony_ci	{ 0x164228, 1, 0x1f, 0x924},
13538c2ecf20Sopenharmony_ci	{ 0x164230, 1, 0x1f, 0x924},
13548c2ecf20Sopenharmony_ci	{ 0x164238, 1, 0x1f, 0x924},
13558c2ecf20Sopenharmony_ci	{ 0x164240, 1, 0x1f, 0x924},
13568c2ecf20Sopenharmony_ci	{ 0x164248, 1, 0x1f, 0x924},
13578c2ecf20Sopenharmony_ci	{ 0x164250, 1, 0x1f, 0x924},
13588c2ecf20Sopenharmony_ci	{ 0x164258, 1, 0x1f, 0x924},
13598c2ecf20Sopenharmony_ci	{ 0x164260, 1, 0x1f, 0x924},
13608c2ecf20Sopenharmony_ci	{ 0x164270, 2, 0x1f, 0x924},
13618c2ecf20Sopenharmony_ci	{ 0x164280, 2, 0x1f, 0x924},
13628c2ecf20Sopenharmony_ci	{ 0x164800, 2, 0x1f, 0x924},
13638c2ecf20Sopenharmony_ci	{ 0x165000, 2, 0x1f, 0x924},
13648c2ecf20Sopenharmony_ci	{ 0x166000, 164, 0x1f, 0x924},
13658c2ecf20Sopenharmony_ci	{ 0x1662b0, 2, 0x1f, 0x1fff},
13668c2ecf20Sopenharmony_ci	{ 0x1662bc, 1, 0x1f, 0x1fff},
13678c2ecf20Sopenharmony_ci	{ 0x1662cc, 7, 0x1c, 0x924},
13688c2ecf20Sopenharmony_ci	{ 0x166400, 49, 0x1f, 0x924},
13698c2ecf20Sopenharmony_ci	{ 0x1664c8, 32, 0x1f, 0x924},
13708c2ecf20Sopenharmony_ci	{ 0x166548, 1, 0x1f, 0xfff},
13718c2ecf20Sopenharmony_ci	{ 0x16654c, 1, 0x1f, 0x924},
13728c2ecf20Sopenharmony_ci	{ 0x166550, 1, 0x1f, 0xfff},
13738c2ecf20Sopenharmony_ci	{ 0x166554, 1, 0x1f, 0x924},
13748c2ecf20Sopenharmony_ci	{ 0x166558, 1, 0x1f, 0xfff},
13758c2ecf20Sopenharmony_ci	{ 0x16655c, 1, 0x1f, 0x924},
13768c2ecf20Sopenharmony_ci	{ 0x166568, 2, 0x1f, 0x924},
13778c2ecf20Sopenharmony_ci	{ 0x166570, 5, 0x1c, 0x924},
13788c2ecf20Sopenharmony_ci	{ 0x166800, 1, 0x1f, 0x924},
13798c2ecf20Sopenharmony_ci	{ 0x168000, 1, 0x1f, 0xfff},
13808c2ecf20Sopenharmony_ci	{ 0x168004, 1, 0x1f, 0x924},
13818c2ecf20Sopenharmony_ci	{ 0x168008, 1, 0x1f, 0xfff},
13828c2ecf20Sopenharmony_ci	{ 0x16800c, 1, 0x1f, 0x924},
13838c2ecf20Sopenharmony_ci	{ 0x168010, 1, 0x1f, 0xfff},
13848c2ecf20Sopenharmony_ci	{ 0x168014, 1, 0x1f, 0x924},
13858c2ecf20Sopenharmony_ci	{ 0x168018, 1, 0x1f, 0xfff},
13868c2ecf20Sopenharmony_ci	{ 0x16801c, 3, 0x1f, 0x924},
13878c2ecf20Sopenharmony_ci	{ 0x168028, 2, 0x1f, 0xfff},
13888c2ecf20Sopenharmony_ci	{ 0x168030, 10, 0x1f, 0x924},
13898c2ecf20Sopenharmony_ci	{ 0x168058, 9, 0x1f, 0xfff},
13908c2ecf20Sopenharmony_ci	{ 0x16807c, 106, 0x1f, 0x924},
13918c2ecf20Sopenharmony_ci	{ 0x168224, 2, 0x3, 0x924},
13928c2ecf20Sopenharmony_ci	{ 0x16822c, 3, 0x1f, 0x924},
13938c2ecf20Sopenharmony_ci	{ 0x168238, 1, 0x1f, 0xfff},
13948c2ecf20Sopenharmony_ci	{ 0x16823c, 25, 0x1f, 0x924},
13958c2ecf20Sopenharmony_ci	{ 0x1682a0, 12, 0x3, 0x924},
13968c2ecf20Sopenharmony_ci	{ 0x1682d0, 7, 0x1f, 0xfff},
13978c2ecf20Sopenharmony_ci	{ 0x1682ec, 5, 0x1f, 0x924},
13988c2ecf20Sopenharmony_ci	{ 0x168300, 2, 0x3, 0xfff},
13998c2ecf20Sopenharmony_ci	{ 0x168308, 65, 0x1f, 0xfff},
14008c2ecf20Sopenharmony_ci	{ 0x16840c, 1, 0x1f, 0x924},
14018c2ecf20Sopenharmony_ci	{ 0x168410, 2, 0x1f, 0xfff},
14028c2ecf20Sopenharmony_ci	{ 0x168418, 2, 0x3, 0x924},
14038c2ecf20Sopenharmony_ci	{ 0x168420, 6, 0x1f, 0x924},
14048c2ecf20Sopenharmony_ci	{ 0x168448, 2, 0x1f, 0x1fff},
14058c2ecf20Sopenharmony_ci	{ 0x168454, 1, 0x1f, 0x1fff},
14068c2ecf20Sopenharmony_ci	{ 0x168800, 19, 0x1f, 0x924},
14078c2ecf20Sopenharmony_ci	{ 0x168900, 1, 0x1f, 0x924},
14088c2ecf20Sopenharmony_ci	{ 0x168a00, 128, 0x1f, 0xfff},
14098c2ecf20Sopenharmony_ci	{ 0x16a000, 1536, 0x1f, 0x924},
14108c2ecf20Sopenharmony_ci	{ 0x16c000, 1536, 0x1f, 0x924},
14118c2ecf20Sopenharmony_ci	{ 0x16e000, 16, 0x2, 0x924},
14128c2ecf20Sopenharmony_ci	{ 0x16e040, 8, 0x1c, 0x924},
14138c2ecf20Sopenharmony_ci	{ 0x16e100, 1, 0x2, 0x924},
14148c2ecf20Sopenharmony_ci	{ 0x16e200, 2, 0x2, 0xfff},
14158c2ecf20Sopenharmony_ci	{ 0x16e400, 1, 0x2, 0x924},
14168c2ecf20Sopenharmony_ci	{ 0x16e404, 2, 0x2, 0xfff},
14178c2ecf20Sopenharmony_ci	{ 0x16e40c, 94, 0x2, 0x924},
14188c2ecf20Sopenharmony_ci	{ 0x16e584, 64, 0x2, 0xfff},
14198c2ecf20Sopenharmony_ci	{ 0x16e684, 2, 0x1e, 0xfff},
14208c2ecf20Sopenharmony_ci	{ 0x16e68c, 4, 0x2, 0xfff},
14218c2ecf20Sopenharmony_ci	{ 0x16e69c, 8, 0x2, 0x924},
14228c2ecf20Sopenharmony_ci	{ 0x16e6bc, 4, 0x1e, 0x924},
14238c2ecf20Sopenharmony_ci	{ 0x16e6cc, 4, 0x2, 0x924},
14248c2ecf20Sopenharmony_ci	{ 0x16e6e0, 2, 0x1c, 0x924},
14258c2ecf20Sopenharmony_ci	{ 0x16e6e8, 5, 0xc, 0x924},
14268c2ecf20Sopenharmony_ci	{ 0x16e6fc, 4, 0x1c, 0xfff},
14278c2ecf20Sopenharmony_ci	{ 0x16e70c, 1, 0x1c, 0x924},
14288c2ecf20Sopenharmony_ci	{ 0x16e768, 17, 0x1c, 0x924},
14298c2ecf20Sopenharmony_ci	{ 0x16e7ac, 12, 0x10, 0xfff},
14308c2ecf20Sopenharmony_ci	{ 0x170000, 24, 0x1f, 0x924},
14318c2ecf20Sopenharmony_ci	{ 0x170060, 4, 0x3, 0x924},
14328c2ecf20Sopenharmony_ci	{ 0x170070, 13, 0x1f, 0x924},
14338c2ecf20Sopenharmony_ci	{ 0x1700a4, 1, 0x1f, 0xfff},
14348c2ecf20Sopenharmony_ci	{ 0x1700a8, 1, 0x1f, 0x924},
14358c2ecf20Sopenharmony_ci	{ 0x1700ac, 2, 0x1f, 0xfff},
14368c2ecf20Sopenharmony_ci	{ 0x1700b4, 3, 0x1f, 0x924},
14378c2ecf20Sopenharmony_ci	{ 0x1700c0, 1, 0x1f, 0xfff},
14388c2ecf20Sopenharmony_ci	{ 0x1700c4, 44, 0x1f, 0x924},
14398c2ecf20Sopenharmony_ci	{ 0x170184, 2, 0x1f, 0x1fff},
14408c2ecf20Sopenharmony_ci	{ 0x170190, 1, 0x1f, 0x1fff},
14418c2ecf20Sopenharmony_ci	{ 0x170194, 11, 0x1c, 0x924},
14428c2ecf20Sopenharmony_ci	{ 0x1701c4, 1, 0x1c, 0x924},
14438c2ecf20Sopenharmony_ci	{ 0x1701cc, 7, 0x1c, 0x924},
14448c2ecf20Sopenharmony_ci	{ 0x1701e8, 1, 0x18, 0x924},
14458c2ecf20Sopenharmony_ci	{ 0x1701ec, 1, 0x1c, 0x924},
14468c2ecf20Sopenharmony_ci	{ 0x1701f4, 1, 0x1c, 0x924},
14478c2ecf20Sopenharmony_ci	{ 0x170200, 4, 0x1f, 0x924},
14488c2ecf20Sopenharmony_ci	{ 0x170214, 1, 0x1f, 0x924},
14498c2ecf20Sopenharmony_ci	{ 0x170218, 77, 0x1c, 0x924},
14508c2ecf20Sopenharmony_ci	{ 0x170400, 64, 0x1c, 0x924},
14518c2ecf20Sopenharmony_ci	{ 0x178000, 1, 0x1f, 0x924},
14528c2ecf20Sopenharmony_ci	{ 0x180000, 61, 0x1f, 0x924},
14538c2ecf20Sopenharmony_ci	{ 0x180114, 2, 0x1f, 0x1fff},
14548c2ecf20Sopenharmony_ci	{ 0x180120, 3, 0x1f, 0x1fff},
14558c2ecf20Sopenharmony_ci	{ 0x180130, 1, 0x1f, 0x1fff},
14568c2ecf20Sopenharmony_ci	{ 0x18013c, 2, 0x1e, 0x924},
14578c2ecf20Sopenharmony_ci	{ 0x180200, 27, 0x1f, 0x924},
14588c2ecf20Sopenharmony_ci	{ 0x18026c, 1, 0x1f, 0xfff},
14598c2ecf20Sopenharmony_ci	{ 0x180270, 12, 0x1f, 0x924},
14608c2ecf20Sopenharmony_ci	{ 0x1802a0, 1, 0x1f, 0xfff},
14618c2ecf20Sopenharmony_ci	{ 0x1802a4, 17, 0x1f, 0x924},
14628c2ecf20Sopenharmony_ci	{ 0x180340, 4, 0x1f, 0x924},
14638c2ecf20Sopenharmony_ci	{ 0x180380, 1, 0x1c, 0x924},
14648c2ecf20Sopenharmony_ci	{ 0x180388, 1, 0x1c, 0x924},
14658c2ecf20Sopenharmony_ci	{ 0x180390, 1, 0x1c, 0x924},
14668c2ecf20Sopenharmony_ci	{ 0x180398, 1, 0x1c, 0x924},
14678c2ecf20Sopenharmony_ci	{ 0x1803a0, 5, 0x1c, 0x924},
14688c2ecf20Sopenharmony_ci	{ 0x1803b4, 2, 0x18, 0x924},
14698c2ecf20Sopenharmony_ci	{ 0x181000, 4, 0x1f, 0x93c},
14708c2ecf20Sopenharmony_ci	{ 0x181010, 1020, 0x1f, 0x38},
14718c2ecf20Sopenharmony_ci	{ 0x182000, 4, 0x18, 0x924},
14728c2ecf20Sopenharmony_ci	{ 0x1a0000, 1, 0x1f, 0x92c},
14738c2ecf20Sopenharmony_ci	{ 0x1a0004, 5631, 0x1f, 0x8},
14748c2ecf20Sopenharmony_ci	{ 0x1a5800, 2560, 0x1e, 0x8},
14758c2ecf20Sopenharmony_ci	{ 0x1a8000, 1, 0x1f, 0x92c},
14768c2ecf20Sopenharmony_ci	{ 0x1a8004, 8191, 0x1e, 0x8},
14778c2ecf20Sopenharmony_ci	{ 0x1b0000, 1, 0x1f, 0x92c},
14788c2ecf20Sopenharmony_ci	{ 0x1b0004, 15, 0x2, 0x8},
14798c2ecf20Sopenharmony_ci	{ 0x1b0040, 1, 0x1e, 0x92c},
14808c2ecf20Sopenharmony_ci	{ 0x1b0044, 239, 0x2, 0x8},
14818c2ecf20Sopenharmony_ci	{ 0x1b0400, 1, 0x1f, 0x92c},
14828c2ecf20Sopenharmony_ci	{ 0x1b0404, 255, 0x2, 0x8},
14838c2ecf20Sopenharmony_ci	{ 0x1b0800, 1, 0x1f, 0x924},
14848c2ecf20Sopenharmony_ci	{ 0x1b0840, 1, 0x1e, 0x924},
14858c2ecf20Sopenharmony_ci	{ 0x1b0c00, 1, 0x1f, 0x1fff},
14868c2ecf20Sopenharmony_ci	{ 0x1b1000, 1, 0x1f, 0x1fff},
14878c2ecf20Sopenharmony_ci	{ 0x1b1040, 1, 0x1e, 0x1fff},
14888c2ecf20Sopenharmony_ci	{ 0x1b1400, 1, 0x1f, 0x924},
14898c2ecf20Sopenharmony_ci	{ 0x1b1440, 1, 0x1e, 0x924},
14908c2ecf20Sopenharmony_ci	{ 0x1b1480, 1, 0x1e, 0x924},
14918c2ecf20Sopenharmony_ci	{ 0x1b14c0, 1, 0x1e, 0x924},
14928c2ecf20Sopenharmony_ci	{ 0x1b1800, 128, 0x1f, 0x10},
14938c2ecf20Sopenharmony_ci	{ 0x1b1c00, 128, 0x1f, 0x10},
14948c2ecf20Sopenharmony_ci	{ 0x1b2000, 1, 0x1f, 0xdb6},
14958c2ecf20Sopenharmony_ci	{ 0x1b2400, 1, 0x1e, 0x92c},
14968c2ecf20Sopenharmony_ci	{ 0x1b2404, 5631, 0x1c, 0x8},
14978c2ecf20Sopenharmony_ci	{ 0x1b8000, 1, 0x1f, 0xfff},
14988c2ecf20Sopenharmony_ci	{ 0x1b8040, 1, 0x1f, 0xfff},
14998c2ecf20Sopenharmony_ci	{ 0x1b8080, 1, 0x1f, 0xfff},
15008c2ecf20Sopenharmony_ci	{ 0x1b80c0, 1, 0x1f, 0xfff},
15018c2ecf20Sopenharmony_ci	{ 0x1b8100, 1, 0x1f, 0x924},
15028c2ecf20Sopenharmony_ci	{ 0x1b8140, 1, 0x1f, 0x924},
15038c2ecf20Sopenharmony_ci	{ 0x1b8180, 1, 0x1f, 0x924},
15048c2ecf20Sopenharmony_ci	{ 0x1b81c0, 1, 0x1f, 0x924},
15058c2ecf20Sopenharmony_ci	{ 0x1b8200, 1, 0x1f, 0x924},
15068c2ecf20Sopenharmony_ci	{ 0x1b8240, 1, 0x1f, 0x924},
15078c2ecf20Sopenharmony_ci	{ 0x1b8280, 1, 0x1f, 0x924},
15088c2ecf20Sopenharmony_ci	{ 0x1b82c0, 1, 0x1f, 0x924},
15098c2ecf20Sopenharmony_ci	{ 0x1b8300, 1, 0x1f, 0x924},
15108c2ecf20Sopenharmony_ci	{ 0x1b8340, 1, 0x1f, 0x924},
15118c2ecf20Sopenharmony_ci	{ 0x1b8380, 1, 0x1f, 0x924},
15128c2ecf20Sopenharmony_ci	{ 0x1b83c0, 1, 0x1f, 0x924},
15138c2ecf20Sopenharmony_ci	{ 0x1b8400, 1, 0x1f, 0x924},
15148c2ecf20Sopenharmony_ci	{ 0x1b8440, 1, 0x1f, 0x924},
15158c2ecf20Sopenharmony_ci	{ 0x1b8480, 1, 0x1f, 0x924},
15168c2ecf20Sopenharmony_ci	{ 0x1b84c0, 1, 0x1f, 0x924},
15178c2ecf20Sopenharmony_ci	{ 0x1b8500, 1, 0x1f, 0x924},
15188c2ecf20Sopenharmony_ci	{ 0x1b8540, 1, 0x1f, 0x924},
15198c2ecf20Sopenharmony_ci	{ 0x1b8580, 1, 0x1f, 0x924},
15208c2ecf20Sopenharmony_ci	{ 0x1b85c0, 19, 0x1c, 0x924},
15218c2ecf20Sopenharmony_ci	{ 0x1b8800, 1, 0x1f, 0x924},
15228c2ecf20Sopenharmony_ci	{ 0x1b8840, 1, 0x1f, 0x924},
15238c2ecf20Sopenharmony_ci	{ 0x1b8880, 1, 0x1f, 0x924},
15248c2ecf20Sopenharmony_ci	{ 0x1b88c0, 1, 0x1f, 0x924},
15258c2ecf20Sopenharmony_ci	{ 0x1b8900, 1, 0x1f, 0x924},
15268c2ecf20Sopenharmony_ci	{ 0x1b8940, 1, 0x1f, 0x924},
15278c2ecf20Sopenharmony_ci	{ 0x1b8980, 1, 0x1f, 0x924},
15288c2ecf20Sopenharmony_ci	{ 0x1b89c0, 1, 0x1f, 0x924},
15298c2ecf20Sopenharmony_ci	{ 0x1b8a00, 1, 0x1f, 0x934},
15308c2ecf20Sopenharmony_ci	{ 0x1b8a40, 1, 0x1f, 0x924},
15318c2ecf20Sopenharmony_ci	{ 0x1b8a80, 1, 0x1f, 0x492},
15328c2ecf20Sopenharmony_ci	{ 0x1b8ac0, 1, 0x1f, 0x924},
15338c2ecf20Sopenharmony_ci	{ 0x1b8b00, 1, 0x1f, 0x924},
15348c2ecf20Sopenharmony_ci	{ 0x1b8b40, 1, 0x1f, 0x924},
15358c2ecf20Sopenharmony_ci	{ 0x1b8b80, 1, 0x1f, 0x924},
15368c2ecf20Sopenharmony_ci	{ 0x1b8bc0, 1, 0x1f, 0x924},
15378c2ecf20Sopenharmony_ci	{ 0x1b8c00, 1, 0x1f, 0x924},
15388c2ecf20Sopenharmony_ci	{ 0x1b8c40, 1, 0x1f, 0x924},
15398c2ecf20Sopenharmony_ci	{ 0x1b8c80, 1, 0x1f, 0x924},
15408c2ecf20Sopenharmony_ci	{ 0x1b8cc0, 1, 0x1f, 0x924},
15418c2ecf20Sopenharmony_ci	{ 0x1b8cc4, 1, 0x1c, 0x924},
15428c2ecf20Sopenharmony_ci	{ 0x1b8d00, 1, 0x1f, 0x924},
15438c2ecf20Sopenharmony_ci	{ 0x1b8d40, 1, 0x1f, 0x924},
15448c2ecf20Sopenharmony_ci	{ 0x1b8d80, 1, 0x1f, 0x924},
15458c2ecf20Sopenharmony_ci	{ 0x1b8dc0, 1, 0x1f, 0x924},
15468c2ecf20Sopenharmony_ci	{ 0x1b8e00, 1, 0x1f, 0x924},
15478c2ecf20Sopenharmony_ci	{ 0x1b8e40, 1, 0x1f, 0x924},
15488c2ecf20Sopenharmony_ci	{ 0x1b8e80, 1, 0x1f, 0x924},
15498c2ecf20Sopenharmony_ci	{ 0x1b8e84, 1, 0x1c, 0x924},
15508c2ecf20Sopenharmony_ci	{ 0x1b8ec0, 1, 0x1e, 0x924},
15518c2ecf20Sopenharmony_ci	{ 0x1b8f00, 1, 0x1e, 0x924},
15528c2ecf20Sopenharmony_ci	{ 0x1b8f40, 1, 0x1e, 0x924},
15538c2ecf20Sopenharmony_ci	{ 0x1b8f80, 1, 0x1e, 0x924},
15548c2ecf20Sopenharmony_ci	{ 0x1b8fc0, 1, 0x1e, 0x924},
15558c2ecf20Sopenharmony_ci	{ 0x1b8fd4, 5, 0x1c, 0x924},
15568c2ecf20Sopenharmony_ci	{ 0x1b8fe8, 2, 0x18, 0x924},
15578c2ecf20Sopenharmony_ci	{ 0x1b9000, 1, 0x1c, 0x924},
15588c2ecf20Sopenharmony_ci	{ 0x1b9040, 3, 0x1c, 0x924},
15598c2ecf20Sopenharmony_ci	{ 0x1b905c, 1, 0x18, 0x924},
15608c2ecf20Sopenharmony_ci	{ 0x1b9064, 1, 0x10, 0x924},
15618c2ecf20Sopenharmony_ci	{ 0x1b9080, 10, 0x10, 0x924},
15628c2ecf20Sopenharmony_ci	{ 0x1c0000, 2, 0x1f, 0x924},
15638c2ecf20Sopenharmony_ci	{ 0x200000, 65, 0x1f, 0x924},
15648c2ecf20Sopenharmony_ci	{ 0x200124, 2, 0x1f, 0x1fff},
15658c2ecf20Sopenharmony_ci	{ 0x200130, 3, 0x1f, 0x1fff},
15668c2ecf20Sopenharmony_ci	{ 0x200140, 1, 0x1f, 0x1fff},
15678c2ecf20Sopenharmony_ci	{ 0x20014c, 2, 0x1e, 0x924},
15688c2ecf20Sopenharmony_ci	{ 0x200200, 27, 0x1f, 0x924},
15698c2ecf20Sopenharmony_ci	{ 0x20026c, 1, 0x1f, 0xfff},
15708c2ecf20Sopenharmony_ci	{ 0x200270, 12, 0x1f, 0x924},
15718c2ecf20Sopenharmony_ci	{ 0x2002a0, 1, 0x1f, 0xfff},
15728c2ecf20Sopenharmony_ci	{ 0x2002a4, 17, 0x1f, 0x924},
15738c2ecf20Sopenharmony_ci	{ 0x200340, 4, 0x1f, 0x924},
15748c2ecf20Sopenharmony_ci	{ 0x200380, 1, 0x1c, 0x924},
15758c2ecf20Sopenharmony_ci	{ 0x200388, 1, 0x1c, 0x924},
15768c2ecf20Sopenharmony_ci	{ 0x200390, 1, 0x1c, 0x924},
15778c2ecf20Sopenharmony_ci	{ 0x200398, 1, 0x1c, 0x924},
15788c2ecf20Sopenharmony_ci	{ 0x2003a0, 1, 0x1c, 0x924},
15798c2ecf20Sopenharmony_ci	{ 0x2003a8, 2, 0x1c, 0x924},
15808c2ecf20Sopenharmony_ci	{ 0x202000, 4, 0x1f, 0x1927},
15818c2ecf20Sopenharmony_ci	{ 0x202010, 2044, 0x1f, 0x1007},
15828c2ecf20Sopenharmony_ci	{ 0x204000, 4, 0x18, 0x924},
15838c2ecf20Sopenharmony_ci	{ 0x220000, 1, 0x1f, 0x925},
15848c2ecf20Sopenharmony_ci	{ 0x220004, 5631, 0x1f, 0x1},
15858c2ecf20Sopenharmony_ci	{ 0x225800, 2560, 0x1e, 0x1},
15868c2ecf20Sopenharmony_ci	{ 0x228000, 1, 0x1f, 0x925},
15878c2ecf20Sopenharmony_ci	{ 0x228004, 8191, 0x1e, 0x1},
15888c2ecf20Sopenharmony_ci	{ 0x230000, 1, 0x1f, 0x925},
15898c2ecf20Sopenharmony_ci	{ 0x230004, 15, 0x2, 0x1},
15908c2ecf20Sopenharmony_ci	{ 0x230040, 1, 0x1e, 0x925},
15918c2ecf20Sopenharmony_ci	{ 0x230044, 239, 0x2, 0x1},
15928c2ecf20Sopenharmony_ci	{ 0x230400, 1, 0x1f, 0x925},
15938c2ecf20Sopenharmony_ci	{ 0x230404, 255, 0x2, 0x1},
15948c2ecf20Sopenharmony_ci	{ 0x230800, 1, 0x1f, 0x924},
15958c2ecf20Sopenharmony_ci	{ 0x230840, 1, 0x1e, 0x924},
15968c2ecf20Sopenharmony_ci	{ 0x230c00, 1, 0x1f, 0x924},
15978c2ecf20Sopenharmony_ci	{ 0x231000, 1, 0x1f, 0x924},
15988c2ecf20Sopenharmony_ci	{ 0x231040, 1, 0x1e, 0x924},
15998c2ecf20Sopenharmony_ci	{ 0x231400, 1, 0x1f, 0x924},
16008c2ecf20Sopenharmony_ci	{ 0x231440, 1, 0x1e, 0x924},
16018c2ecf20Sopenharmony_ci	{ 0x231480, 1, 0x1e, 0x924},
16028c2ecf20Sopenharmony_ci	{ 0x2314c0, 1, 0x1e, 0x924},
16038c2ecf20Sopenharmony_ci	{ 0x231800, 128, 0x1f, 0x2},
16048c2ecf20Sopenharmony_ci	{ 0x231c00, 128, 0x1f, 0x2},
16058c2ecf20Sopenharmony_ci	{ 0x232000, 1, 0x1f, 0xdb6},
16068c2ecf20Sopenharmony_ci	{ 0x232400, 1, 0x1e, 0x925},
16078c2ecf20Sopenharmony_ci	{ 0x232404, 5631, 0x1c, 0x1},
16088c2ecf20Sopenharmony_ci	{ 0x238000, 1, 0x1f, 0xfff},
16098c2ecf20Sopenharmony_ci	{ 0x238040, 1, 0x1f, 0xfff},
16108c2ecf20Sopenharmony_ci	{ 0x238080, 1, 0x1f, 0xfff},
16118c2ecf20Sopenharmony_ci	{ 0x2380c0, 1, 0x1f, 0xfff},
16128c2ecf20Sopenharmony_ci	{ 0x238100, 1, 0x1f, 0x924},
16138c2ecf20Sopenharmony_ci	{ 0x238140, 1, 0x1f, 0x924},
16148c2ecf20Sopenharmony_ci	{ 0x238180, 1, 0x1f, 0x924},
16158c2ecf20Sopenharmony_ci	{ 0x2381c0, 1, 0x1f, 0x924},
16168c2ecf20Sopenharmony_ci	{ 0x238200, 1, 0x1f, 0x924},
16178c2ecf20Sopenharmony_ci	{ 0x238240, 1, 0x1f, 0x924},
16188c2ecf20Sopenharmony_ci	{ 0x238280, 1, 0x1f, 0x924},
16198c2ecf20Sopenharmony_ci	{ 0x2382c0, 1, 0x1f, 0x924},
16208c2ecf20Sopenharmony_ci	{ 0x238300, 1, 0x1f, 0x924},
16218c2ecf20Sopenharmony_ci	{ 0x238340, 1, 0x1f, 0x924},
16228c2ecf20Sopenharmony_ci	{ 0x238380, 1, 0x1f, 0x924},
16238c2ecf20Sopenharmony_ci	{ 0x2383c0, 1, 0x1f, 0x924},
16248c2ecf20Sopenharmony_ci	{ 0x238400, 1, 0x1f, 0x924},
16258c2ecf20Sopenharmony_ci	{ 0x238440, 1, 0x1f, 0x924},
16268c2ecf20Sopenharmony_ci	{ 0x238480, 1, 0x1f, 0x924},
16278c2ecf20Sopenharmony_ci	{ 0x2384c0, 1, 0x1f, 0x924},
16288c2ecf20Sopenharmony_ci	{ 0x238500, 1, 0x1f, 0x924},
16298c2ecf20Sopenharmony_ci	{ 0x238540, 1, 0x1f, 0x924},
16308c2ecf20Sopenharmony_ci	{ 0x238580, 1, 0x1f, 0x924},
16318c2ecf20Sopenharmony_ci	{ 0x2385c0, 19, 0x1c, 0x924},
16328c2ecf20Sopenharmony_ci	{ 0x238800, 1, 0x1f, 0x924},
16338c2ecf20Sopenharmony_ci	{ 0x238840, 1, 0x1f, 0x924},
16348c2ecf20Sopenharmony_ci	{ 0x238880, 1, 0x1f, 0x924},
16358c2ecf20Sopenharmony_ci	{ 0x2388c0, 1, 0x1f, 0x924},
16368c2ecf20Sopenharmony_ci	{ 0x238900, 1, 0x1f, 0x924},
16378c2ecf20Sopenharmony_ci	{ 0x238940, 1, 0x1f, 0x924},
16388c2ecf20Sopenharmony_ci	{ 0x238980, 1, 0x1f, 0x924},
16398c2ecf20Sopenharmony_ci	{ 0x2389c0, 1, 0x1f, 0x924},
16408c2ecf20Sopenharmony_ci	{ 0x238a00, 1, 0x1f, 0x926},
16418c2ecf20Sopenharmony_ci	{ 0x238a40, 1, 0x1f, 0x924},
16428c2ecf20Sopenharmony_ci	{ 0x238a80, 1, 0x1f, 0x492},
16438c2ecf20Sopenharmony_ci	{ 0x238ac0, 1, 0x1f, 0x924},
16448c2ecf20Sopenharmony_ci	{ 0x238b00, 1, 0x1f, 0x924},
16458c2ecf20Sopenharmony_ci	{ 0x238b40, 1, 0x1f, 0x924},
16468c2ecf20Sopenharmony_ci	{ 0x238b80, 1, 0x1f, 0x924},
16478c2ecf20Sopenharmony_ci	{ 0x238bc0, 1, 0x1f, 0x924},
16488c2ecf20Sopenharmony_ci	{ 0x238c00, 1, 0x1f, 0x924},
16498c2ecf20Sopenharmony_ci	{ 0x238c40, 1, 0x1f, 0x924},
16508c2ecf20Sopenharmony_ci	{ 0x238c80, 1, 0x1f, 0x924},
16518c2ecf20Sopenharmony_ci	{ 0x238cc0, 1, 0x1f, 0x924},
16528c2ecf20Sopenharmony_ci	{ 0x238cc4, 1, 0x1c, 0x924},
16538c2ecf20Sopenharmony_ci	{ 0x238d00, 1, 0x1f, 0x924},
16548c2ecf20Sopenharmony_ci	{ 0x238d40, 1, 0x1f, 0x924},
16558c2ecf20Sopenharmony_ci	{ 0x238d80, 1, 0x1f, 0x924},
16568c2ecf20Sopenharmony_ci	{ 0x238dc0, 1, 0x1f, 0x924},
16578c2ecf20Sopenharmony_ci	{ 0x238e00, 1, 0x1f, 0x924},
16588c2ecf20Sopenharmony_ci	{ 0x238e40, 1, 0x1f, 0x924},
16598c2ecf20Sopenharmony_ci	{ 0x238e80, 1, 0x1f, 0x924},
16608c2ecf20Sopenharmony_ci	{ 0x238e84, 1, 0x1c, 0x924},
16618c2ecf20Sopenharmony_ci	{ 0x238ec0, 1, 0x1e, 0x924},
16628c2ecf20Sopenharmony_ci	{ 0x238f00, 1, 0x1e, 0x924},
16638c2ecf20Sopenharmony_ci	{ 0x238f40, 1, 0x1e, 0x924},
16648c2ecf20Sopenharmony_ci	{ 0x238f80, 1, 0x1e, 0x924},
16658c2ecf20Sopenharmony_ci	{ 0x238fc0, 1, 0x1e, 0x924},
16668c2ecf20Sopenharmony_ci	{ 0x238fd4, 5, 0x1c, 0x924},
16678c2ecf20Sopenharmony_ci	{ 0x238fe8, 2, 0x18, 0x924},
16688c2ecf20Sopenharmony_ci	{ 0x239000, 1, 0x1c, 0x924},
16698c2ecf20Sopenharmony_ci	{ 0x239040, 3, 0x1c, 0x924},
16708c2ecf20Sopenharmony_ci	{ 0x23905c, 1, 0x18, 0x924},
16718c2ecf20Sopenharmony_ci	{ 0x239064, 1, 0x10, 0x924},
16728c2ecf20Sopenharmony_ci	{ 0x239080, 10, 0x10, 0x924},
16738c2ecf20Sopenharmony_ci	{ 0x240000, 2, 0x1f, 0x924},
16748c2ecf20Sopenharmony_ci	{ 0x280000, 65, 0x1f, 0x924},
16758c2ecf20Sopenharmony_ci	{ 0x280124, 2, 0x1f, 0x1fff},
16768c2ecf20Sopenharmony_ci	{ 0x280130, 3, 0x1f, 0x1fff},
16778c2ecf20Sopenharmony_ci	{ 0x280140, 1, 0x1f, 0x1fff},
16788c2ecf20Sopenharmony_ci	{ 0x28014c, 2, 0x1e, 0x924},
16798c2ecf20Sopenharmony_ci	{ 0x280200, 27, 0x1f, 0x924},
16808c2ecf20Sopenharmony_ci	{ 0x28026c, 1, 0x1f, 0xfff},
16818c2ecf20Sopenharmony_ci	{ 0x280270, 12, 0x1f, 0x924},
16828c2ecf20Sopenharmony_ci	{ 0x2802a0, 1, 0x1f, 0xfff},
16838c2ecf20Sopenharmony_ci	{ 0x2802a4, 17, 0x1f, 0x924},
16848c2ecf20Sopenharmony_ci	{ 0x280340, 4, 0x1f, 0x924},
16858c2ecf20Sopenharmony_ci	{ 0x280380, 1, 0x1c, 0x924},
16868c2ecf20Sopenharmony_ci	{ 0x280388, 1, 0x1c, 0x924},
16878c2ecf20Sopenharmony_ci	{ 0x280390, 1, 0x1c, 0x924},
16888c2ecf20Sopenharmony_ci	{ 0x280398, 1, 0x1c, 0x924},
16898c2ecf20Sopenharmony_ci	{ 0x2803a0, 1, 0x1c, 0x924},
16908c2ecf20Sopenharmony_ci	{ 0x2803a8, 2, 0x1c, 0x924},
16918c2ecf20Sopenharmony_ci	{ 0x282000, 4, 0x1f, 0x9e4},
16928c2ecf20Sopenharmony_ci	{ 0x282010, 2044, 0x1f, 0x1c0},
16938c2ecf20Sopenharmony_ci	{ 0x284000, 4, 0x18, 0x924},
16948c2ecf20Sopenharmony_ci	{ 0x2a0000, 1, 0x1f, 0x964},
16958c2ecf20Sopenharmony_ci	{ 0x2a0004, 5631, 0x1f, 0x40},
16968c2ecf20Sopenharmony_ci	{ 0x2a5800, 2560, 0x1e, 0x40},
16978c2ecf20Sopenharmony_ci	{ 0x2a8000, 1, 0x1f, 0x964},
16988c2ecf20Sopenharmony_ci	{ 0x2a8004, 8191, 0x1e, 0x40},
16998c2ecf20Sopenharmony_ci	{ 0x2b0000, 1, 0x1f, 0x964},
17008c2ecf20Sopenharmony_ci	{ 0x2b0004, 15, 0x2, 0x40},
17018c2ecf20Sopenharmony_ci	{ 0x2b0040, 1, 0x1e, 0x964},
17028c2ecf20Sopenharmony_ci	{ 0x2b0044, 239, 0x2, 0x40},
17038c2ecf20Sopenharmony_ci	{ 0x2b0400, 1, 0x1f, 0x964},
17048c2ecf20Sopenharmony_ci	{ 0x2b0404, 255, 0x2, 0x40},
17058c2ecf20Sopenharmony_ci	{ 0x2b0800, 1, 0x1f, 0x924},
17068c2ecf20Sopenharmony_ci	{ 0x2b0840, 1, 0x1e, 0x924},
17078c2ecf20Sopenharmony_ci	{ 0x2b0c00, 1, 0x1f, 0x924},
17088c2ecf20Sopenharmony_ci	{ 0x2b1000, 1, 0x1f, 0x924},
17098c2ecf20Sopenharmony_ci	{ 0x2b1040, 1, 0x1e, 0x924},
17108c2ecf20Sopenharmony_ci	{ 0x2b1400, 1, 0x1f, 0x924},
17118c2ecf20Sopenharmony_ci	{ 0x2b1440, 1, 0x1e, 0x924},
17128c2ecf20Sopenharmony_ci	{ 0x2b1480, 1, 0x1e, 0x924},
17138c2ecf20Sopenharmony_ci	{ 0x2b14c0, 1, 0x1e, 0x924},
17148c2ecf20Sopenharmony_ci	{ 0x2b1800, 128, 0x1f, 0x80},
17158c2ecf20Sopenharmony_ci	{ 0x2b1c00, 128, 0x1f, 0x80},
17168c2ecf20Sopenharmony_ci	{ 0x2b2000, 1, 0x1f, 0xdb6},
17178c2ecf20Sopenharmony_ci	{ 0x2b2400, 1, 0x1e, 0x964},
17188c2ecf20Sopenharmony_ci	{ 0x2b2404, 5631, 0x1c, 0x40},
17198c2ecf20Sopenharmony_ci	{ 0x2b8000, 1, 0x1f, 0xfff},
17208c2ecf20Sopenharmony_ci	{ 0x2b8040, 1, 0x1f, 0xfff},
17218c2ecf20Sopenharmony_ci	{ 0x2b8080, 1, 0x1f, 0xfff},
17228c2ecf20Sopenharmony_ci	{ 0x2b80c0, 1, 0x1f, 0x924},
17238c2ecf20Sopenharmony_ci	{ 0x2b8100, 1, 0x1f, 0x924},
17248c2ecf20Sopenharmony_ci	{ 0x2b8140, 1, 0x1f, 0x924},
17258c2ecf20Sopenharmony_ci	{ 0x2b8180, 1, 0x1f, 0x924},
17268c2ecf20Sopenharmony_ci	{ 0x2b81c0, 1, 0x1f, 0x924},
17278c2ecf20Sopenharmony_ci	{ 0x2b8200, 1, 0x1f, 0x924},
17288c2ecf20Sopenharmony_ci	{ 0x2b8240, 1, 0x1f, 0x924},
17298c2ecf20Sopenharmony_ci	{ 0x2b8280, 1, 0x1f, 0x924},
17308c2ecf20Sopenharmony_ci	{ 0x2b82c0, 1, 0x1f, 0x924},
17318c2ecf20Sopenharmony_ci	{ 0x2b8300, 1, 0x1f, 0x924},
17328c2ecf20Sopenharmony_ci	{ 0x2b8340, 1, 0x1f, 0x924},
17338c2ecf20Sopenharmony_ci	{ 0x2b8380, 1, 0x1f, 0x924},
17348c2ecf20Sopenharmony_ci	{ 0x2b83c0, 1, 0x1f, 0x924},
17358c2ecf20Sopenharmony_ci	{ 0x2b8400, 1, 0x1f, 0x924},
17368c2ecf20Sopenharmony_ci	{ 0x2b8440, 1, 0x1f, 0x924},
17378c2ecf20Sopenharmony_ci	{ 0x2b8480, 1, 0x1f, 0x924},
17388c2ecf20Sopenharmony_ci	{ 0x2b84c0, 1, 0x1f, 0x924},
17398c2ecf20Sopenharmony_ci	{ 0x2b8500, 1, 0x1f, 0x924},
17408c2ecf20Sopenharmony_ci	{ 0x2b8540, 1, 0x1f, 0x924},
17418c2ecf20Sopenharmony_ci	{ 0x2b8580, 1, 0x1f, 0x924},
17428c2ecf20Sopenharmony_ci	{ 0x2b85c0, 19, 0x1c, 0x924},
17438c2ecf20Sopenharmony_ci	{ 0x2b8800, 1, 0x1f, 0x924},
17448c2ecf20Sopenharmony_ci	{ 0x2b8840, 1, 0x1f, 0x924},
17458c2ecf20Sopenharmony_ci	{ 0x2b8880, 1, 0x1f, 0x924},
17468c2ecf20Sopenharmony_ci	{ 0x2b88c0, 1, 0x1f, 0x924},
17478c2ecf20Sopenharmony_ci	{ 0x2b8900, 1, 0x1f, 0x924},
17488c2ecf20Sopenharmony_ci	{ 0x2b8940, 1, 0x1f, 0x924},
17498c2ecf20Sopenharmony_ci	{ 0x2b8980, 1, 0x1f, 0x924},
17508c2ecf20Sopenharmony_ci	{ 0x2b89c0, 1, 0x1f, 0x924},
17518c2ecf20Sopenharmony_ci	{ 0x2b8a00, 1, 0x1f, 0x9a4},
17528c2ecf20Sopenharmony_ci	{ 0x2b8a40, 1, 0x1f, 0x924},
17538c2ecf20Sopenharmony_ci	{ 0x2b8a80, 1, 0x1f, 0x492},
17548c2ecf20Sopenharmony_ci	{ 0x2b8ac0, 1, 0x1f, 0x924},
17558c2ecf20Sopenharmony_ci	{ 0x2b8b00, 1, 0x1f, 0x924},
17568c2ecf20Sopenharmony_ci	{ 0x2b8b40, 1, 0x1f, 0x924},
17578c2ecf20Sopenharmony_ci	{ 0x2b8b80, 1, 0x1f, 0x924},
17588c2ecf20Sopenharmony_ci	{ 0x2b8bc0, 1, 0x1f, 0x924},
17598c2ecf20Sopenharmony_ci	{ 0x2b8c00, 1, 0x1f, 0x924},
17608c2ecf20Sopenharmony_ci	{ 0x2b8c40, 1, 0x1f, 0x924},
17618c2ecf20Sopenharmony_ci	{ 0x2b8c80, 1, 0x1f, 0x924},
17628c2ecf20Sopenharmony_ci	{ 0x2b8cc0, 1, 0x1f, 0x924},
17638c2ecf20Sopenharmony_ci	{ 0x2b8cc4, 1, 0x1c, 0x924},
17648c2ecf20Sopenharmony_ci	{ 0x2b8d00, 1, 0x1f, 0x924},
17658c2ecf20Sopenharmony_ci	{ 0x2b8d40, 1, 0x1f, 0x924},
17668c2ecf20Sopenharmony_ci	{ 0x2b8d80, 1, 0x1f, 0x924},
17678c2ecf20Sopenharmony_ci	{ 0x2b8dc0, 1, 0x1f, 0x924},
17688c2ecf20Sopenharmony_ci	{ 0x2b8e00, 1, 0x1f, 0x924},
17698c2ecf20Sopenharmony_ci	{ 0x2b8e40, 1, 0x1f, 0x924},
17708c2ecf20Sopenharmony_ci	{ 0x2b8e80, 1, 0x1f, 0x924},
17718c2ecf20Sopenharmony_ci	{ 0x2b8e84, 1, 0x1c, 0x924},
17728c2ecf20Sopenharmony_ci	{ 0x2b8ec0, 1, 0x1e, 0x924},
17738c2ecf20Sopenharmony_ci	{ 0x2b8f00, 1, 0x1e, 0x924},
17748c2ecf20Sopenharmony_ci	{ 0x2b8f40, 1, 0x1e, 0x924},
17758c2ecf20Sopenharmony_ci	{ 0x2b8f80, 1, 0x1e, 0x924},
17768c2ecf20Sopenharmony_ci	{ 0x2b8fc0, 1, 0x1e, 0x924},
17778c2ecf20Sopenharmony_ci	{ 0x2b8fd4, 5, 0x1c, 0x924},
17788c2ecf20Sopenharmony_ci	{ 0x2b8fe8, 2, 0x18, 0x924},
17798c2ecf20Sopenharmony_ci	{ 0x2b9000, 1, 0x1c, 0x924},
17808c2ecf20Sopenharmony_ci	{ 0x2b9040, 3, 0x1c, 0x924},
17818c2ecf20Sopenharmony_ci	{ 0x2b905c, 1, 0x18, 0x924},
17828c2ecf20Sopenharmony_ci	{ 0x2b9064, 1, 0x10, 0x924},
17838c2ecf20Sopenharmony_ci	{ 0x2b9080, 10, 0x10, 0x924},
17848c2ecf20Sopenharmony_ci	{ 0x2c0000, 2, 0x1f, 0x1fff},
17858c2ecf20Sopenharmony_ci	{ 0x300000, 65, 0x1f, 0x924},
17868c2ecf20Sopenharmony_ci	{ 0x300124, 2, 0x1f, 0x1fff},
17878c2ecf20Sopenharmony_ci	{ 0x300130, 3, 0x1f, 0x1fff},
17888c2ecf20Sopenharmony_ci	{ 0x300140, 1, 0x1f, 0x1fff},
17898c2ecf20Sopenharmony_ci	{ 0x30014c, 2, 0x1e, 0x924},
17908c2ecf20Sopenharmony_ci	{ 0x300200, 27, 0x1f, 0x924},
17918c2ecf20Sopenharmony_ci	{ 0x30026c, 1, 0x1f, 0xfff},
17928c2ecf20Sopenharmony_ci	{ 0x300270, 12, 0x1f, 0x924},
17938c2ecf20Sopenharmony_ci	{ 0x3002a0, 1, 0x1f, 0xfff},
17948c2ecf20Sopenharmony_ci	{ 0x3002a4, 17, 0x1f, 0x924},
17958c2ecf20Sopenharmony_ci	{ 0x300340, 4, 0x1f, 0x924},
17968c2ecf20Sopenharmony_ci	{ 0x300380, 1, 0x1c, 0x924},
17978c2ecf20Sopenharmony_ci	{ 0x300388, 1, 0x1c, 0x924},
17988c2ecf20Sopenharmony_ci	{ 0x300390, 1, 0x1c, 0x924},
17998c2ecf20Sopenharmony_ci	{ 0x300398, 1, 0x1c, 0x924},
18008c2ecf20Sopenharmony_ci	{ 0x3003a0, 1, 0x1c, 0x924},
18018c2ecf20Sopenharmony_ci	{ 0x3003a8, 2, 0x1c, 0x924},
18028c2ecf20Sopenharmony_ci	{ 0x302000, 4, 0x1f, 0xf24},
18038c2ecf20Sopenharmony_ci	{ 0x302010, 2044, 0x1f, 0xe00},
18048c2ecf20Sopenharmony_ci	{ 0x304000, 4, 0x18, 0x924},
18058c2ecf20Sopenharmony_ci	{ 0x320000, 1, 0x1f, 0xb24},
18068c2ecf20Sopenharmony_ci	{ 0x320004, 5631, 0x1f, 0x200},
18078c2ecf20Sopenharmony_ci	{ 0x325800, 2560, 0x1e, 0x200},
18088c2ecf20Sopenharmony_ci	{ 0x328000, 1, 0x1f, 0xb24},
18098c2ecf20Sopenharmony_ci	{ 0x328004, 8191, 0x1e, 0x200},
18108c2ecf20Sopenharmony_ci	{ 0x330000, 1, 0x1f, 0xb24},
18118c2ecf20Sopenharmony_ci	{ 0x330004, 15, 0x2, 0x200},
18128c2ecf20Sopenharmony_ci	{ 0x330040, 1, 0x1e, 0xb24},
18138c2ecf20Sopenharmony_ci	{ 0x330044, 239, 0x2, 0x200},
18148c2ecf20Sopenharmony_ci	{ 0x330400, 1, 0x1f, 0xb24},
18158c2ecf20Sopenharmony_ci	{ 0x330404, 255, 0x2, 0x200},
18168c2ecf20Sopenharmony_ci	{ 0x330800, 1, 0x1f, 0x924},
18178c2ecf20Sopenharmony_ci	{ 0x330840, 1, 0x1e, 0x924},
18188c2ecf20Sopenharmony_ci	{ 0x330c00, 1, 0x1f, 0x924},
18198c2ecf20Sopenharmony_ci	{ 0x331000, 1, 0x1f, 0x924},
18208c2ecf20Sopenharmony_ci	{ 0x331040, 1, 0x1e, 0x924},
18218c2ecf20Sopenharmony_ci	{ 0x331400, 1, 0x1f, 0x924},
18228c2ecf20Sopenharmony_ci	{ 0x331440, 1, 0x1e, 0x924},
18238c2ecf20Sopenharmony_ci	{ 0x331480, 1, 0x1e, 0x924},
18248c2ecf20Sopenharmony_ci	{ 0x3314c0, 1, 0x1e, 0x924},
18258c2ecf20Sopenharmony_ci	{ 0x331800, 128, 0x1f, 0x400},
18268c2ecf20Sopenharmony_ci	{ 0x331c00, 128, 0x1f, 0x400},
18278c2ecf20Sopenharmony_ci	{ 0x332000, 1, 0x1f, 0xdb6},
18288c2ecf20Sopenharmony_ci	{ 0x332400, 1, 0x1e, 0xb24},
18298c2ecf20Sopenharmony_ci	{ 0x332404, 5631, 0x1c, 0x200},
18308c2ecf20Sopenharmony_ci	{ 0x338000, 1, 0x1f, 0xfff},
18318c2ecf20Sopenharmony_ci	{ 0x338040, 1, 0x1f, 0xfff},
18328c2ecf20Sopenharmony_ci	{ 0x338080, 1, 0x1f, 0xfff},
18338c2ecf20Sopenharmony_ci	{ 0x3380c0, 1, 0x1f, 0xfff},
18348c2ecf20Sopenharmony_ci	{ 0x338100, 1, 0x1f, 0x924},
18358c2ecf20Sopenharmony_ci	{ 0x338140, 1, 0x1f, 0x924},
18368c2ecf20Sopenharmony_ci	{ 0x338180, 1, 0x1f, 0x924},
18378c2ecf20Sopenharmony_ci	{ 0x3381c0, 1, 0x1f, 0x924},
18388c2ecf20Sopenharmony_ci	{ 0x338200, 1, 0x1f, 0x924},
18398c2ecf20Sopenharmony_ci	{ 0x338240, 1, 0x1f, 0x924},
18408c2ecf20Sopenharmony_ci	{ 0x338280, 1, 0x1f, 0x924},
18418c2ecf20Sopenharmony_ci	{ 0x3382c0, 1, 0x1f, 0x924},
18428c2ecf20Sopenharmony_ci	{ 0x338300, 1, 0x1f, 0x924},
18438c2ecf20Sopenharmony_ci	{ 0x338340, 1, 0x1f, 0x924},
18448c2ecf20Sopenharmony_ci	{ 0x338380, 1, 0x1f, 0x924},
18458c2ecf20Sopenharmony_ci	{ 0x3383c0, 1, 0x1f, 0x924},
18468c2ecf20Sopenharmony_ci	{ 0x338400, 1, 0x1f, 0x924},
18478c2ecf20Sopenharmony_ci	{ 0x338440, 1, 0x1f, 0x924},
18488c2ecf20Sopenharmony_ci	{ 0x338480, 1, 0x1f, 0x924},
18498c2ecf20Sopenharmony_ci	{ 0x3384c0, 1, 0x1f, 0x924},
18508c2ecf20Sopenharmony_ci	{ 0x338500, 1, 0x1f, 0x924},
18518c2ecf20Sopenharmony_ci	{ 0x338540, 1, 0x1f, 0x924},
18528c2ecf20Sopenharmony_ci	{ 0x338580, 1, 0x1f, 0x924},
18538c2ecf20Sopenharmony_ci	{ 0x3385c0, 19, 0x1c, 0x924},
18548c2ecf20Sopenharmony_ci	{ 0x338800, 1, 0x1f, 0x924},
18558c2ecf20Sopenharmony_ci	{ 0x338840, 1, 0x1f, 0x924},
18568c2ecf20Sopenharmony_ci	{ 0x338880, 1, 0x1f, 0x924},
18578c2ecf20Sopenharmony_ci	{ 0x3388c0, 1, 0x1f, 0x924},
18588c2ecf20Sopenharmony_ci	{ 0x338900, 1, 0x1f, 0x924},
18598c2ecf20Sopenharmony_ci	{ 0x338940, 1, 0x1f, 0x924},
18608c2ecf20Sopenharmony_ci	{ 0x338980, 1, 0x1f, 0x924},
18618c2ecf20Sopenharmony_ci	{ 0x3389c0, 1, 0x1f, 0x924},
18628c2ecf20Sopenharmony_ci	{ 0x338a00, 1, 0x1f, 0xd24},
18638c2ecf20Sopenharmony_ci	{ 0x338a40, 1, 0x1f, 0x924},
18648c2ecf20Sopenharmony_ci	{ 0x338a80, 1, 0x1f, 0x492},
18658c2ecf20Sopenharmony_ci	{ 0x338ac0, 1, 0x1f, 0x924},
18668c2ecf20Sopenharmony_ci	{ 0x338b00, 1, 0x1f, 0x924},
18678c2ecf20Sopenharmony_ci	{ 0x338b40, 1, 0x1f, 0x924},
18688c2ecf20Sopenharmony_ci	{ 0x338b80, 1, 0x1f, 0x924},
18698c2ecf20Sopenharmony_ci	{ 0x338bc0, 1, 0x1f, 0x924},
18708c2ecf20Sopenharmony_ci	{ 0x338c00, 1, 0x1f, 0x924},
18718c2ecf20Sopenharmony_ci	{ 0x338c40, 1, 0x1f, 0x924},
18728c2ecf20Sopenharmony_ci	{ 0x338c80, 1, 0x1f, 0x924},
18738c2ecf20Sopenharmony_ci	{ 0x338cc0, 1, 0x1f, 0x924},
18748c2ecf20Sopenharmony_ci	{ 0x338cc4, 1, 0x1c, 0x924},
18758c2ecf20Sopenharmony_ci	{ 0x338d00, 1, 0x1f, 0x924},
18768c2ecf20Sopenharmony_ci	{ 0x338d40, 1, 0x1f, 0x924},
18778c2ecf20Sopenharmony_ci	{ 0x338d80, 1, 0x1f, 0x924},
18788c2ecf20Sopenharmony_ci	{ 0x338dc0, 1, 0x1f, 0x924},
18798c2ecf20Sopenharmony_ci	{ 0x338e00, 1, 0x1f, 0x924},
18808c2ecf20Sopenharmony_ci	{ 0x338e40, 1, 0x1f, 0x924},
18818c2ecf20Sopenharmony_ci	{ 0x338e80, 1, 0x1f, 0x924},
18828c2ecf20Sopenharmony_ci	{ 0x338e84, 1, 0x1c, 0x924},
18838c2ecf20Sopenharmony_ci	{ 0x338ec0, 1, 0x1e, 0x924},
18848c2ecf20Sopenharmony_ci	{ 0x338f00, 1, 0x1e, 0x924},
18858c2ecf20Sopenharmony_ci	{ 0x338f40, 1, 0x1e, 0x924},
18868c2ecf20Sopenharmony_ci	{ 0x338f80, 1, 0x1e, 0x924},
18878c2ecf20Sopenharmony_ci	{ 0x338fc0, 1, 0x1e, 0x924},
18888c2ecf20Sopenharmony_ci	{ 0x338fd4, 5, 0x1c, 0x924},
18898c2ecf20Sopenharmony_ci	{ 0x338fe8, 2, 0x18, 0x924},
18908c2ecf20Sopenharmony_ci	{ 0x339000, 1, 0x1c, 0x924},
18918c2ecf20Sopenharmony_ci	{ 0x339040, 3, 0x1c, 0x924},
18928c2ecf20Sopenharmony_ci	{ 0x33905c, 1, 0x18, 0x924},
18938c2ecf20Sopenharmony_ci	{ 0x339064, 1, 0x10, 0x924},
18948c2ecf20Sopenharmony_ci	{ 0x339080, 10, 0x10, 0x924},
18958c2ecf20Sopenharmony_ci	{ 0x340000, 2, 0x1f, 0x924},
18968c2ecf20Sopenharmony_ci	{ 0x3a0000, 40960, 0x1c, 0x1000}
18978c2ecf20Sopenharmony_ci};
18988c2ecf20Sopenharmony_ci
18998c2ecf20Sopenharmony_ci#define REGS_COUNT ARRAY_SIZE(reg_addrs)
19008c2ecf20Sopenharmony_ci
19018c2ecf20Sopenharmony_cistatic const struct reg_addr idle_reg_addrs[] = {
19028c2ecf20Sopenharmony_ci	{ 0x2104, 1, 0x1f, 0xfff},
19038c2ecf20Sopenharmony_ci	{ 0x2110, 2, 0x1f, 0xfff},
19048c2ecf20Sopenharmony_ci	{ 0x211c, 8, 0x1f, 0xfff},
19058c2ecf20Sopenharmony_ci	{ 0x2814, 1, 0x1f, 0xfff},
19068c2ecf20Sopenharmony_ci	{ 0x281c, 2, 0x1f, 0xfff},
19078c2ecf20Sopenharmony_ci	{ 0x2854, 1, 0x1f, 0xfff},
19088c2ecf20Sopenharmony_ci	{ 0x285c, 1, 0x1f, 0xfff},
19098c2ecf20Sopenharmony_ci	{ 0x3040, 1, 0x1f, 0xfff},
19108c2ecf20Sopenharmony_ci	{ 0x9010, 7, 0x1c, 0xfff},
19118c2ecf20Sopenharmony_ci	{ 0x9030, 1, 0x1c, 0xfff},
19128c2ecf20Sopenharmony_ci	{ 0x9068, 16, 0x1c, 0xfff},
19138c2ecf20Sopenharmony_ci	{ 0x9230, 2, 0x1c, 0xfff},
19148c2ecf20Sopenharmony_ci	{ 0x9244, 1, 0x1c, 0xfff},
19158c2ecf20Sopenharmony_ci	{ 0x9298, 1, 0x1c, 0xfff},
19168c2ecf20Sopenharmony_ci	{ 0x92a8, 1, 0x1c, 0x1fff},
19178c2ecf20Sopenharmony_ci	{ 0xa38c, 1, 0x1f, 0x1fff},
19188c2ecf20Sopenharmony_ci	{ 0xa3c4, 1, 0x1e, 0xfff},
19198c2ecf20Sopenharmony_ci	{ 0xa404, 1, 0x1f, 0xfff},
19208c2ecf20Sopenharmony_ci	{ 0xa408, 2, 0x1f, 0x1fff},
19218c2ecf20Sopenharmony_ci	{ 0xa42c, 12, 0x1f, 0xfff},
19228c2ecf20Sopenharmony_ci	{ 0xa580, 1, 0x1f, 0x1fff},
19238c2ecf20Sopenharmony_ci	{ 0xa590, 1, 0x1f, 0x1fff},
19248c2ecf20Sopenharmony_ci	{ 0xa600, 5, 0x1e, 0xfff},
19258c2ecf20Sopenharmony_ci	{ 0xa618, 1, 0x1e, 0xfff},
19268c2ecf20Sopenharmony_ci	{ 0xa714, 1, 0x1c, 0xfff},
19278c2ecf20Sopenharmony_ci	{ 0xa720, 1, 0x1c, 0xfff},
19288c2ecf20Sopenharmony_ci	{ 0xa750, 1, 0x1c, 0xfff},
19298c2ecf20Sopenharmony_ci	{ 0xc09c, 1, 0x3, 0xfff},
19308c2ecf20Sopenharmony_ci	{ 0x103b0, 1, 0x1f, 0xfff},
19318c2ecf20Sopenharmony_ci	{ 0x103c0, 1, 0x1f, 0xfff},
19328c2ecf20Sopenharmony_ci	{ 0x103d0, 1, 0x3, 0x1fff},
19338c2ecf20Sopenharmony_ci	{ 0x10418, 1, 0x1f, 0xfff},
19348c2ecf20Sopenharmony_ci	{ 0x10420, 1, 0x1f, 0xfff},
19358c2ecf20Sopenharmony_ci	{ 0x10428, 1, 0x1f, 0xfff},
19368c2ecf20Sopenharmony_ci	{ 0x10460, 1, 0x1f, 0xfff},
19378c2ecf20Sopenharmony_ci	{ 0x10474, 1, 0x1f, 0xfff},
19388c2ecf20Sopenharmony_ci	{ 0x104e0, 1, 0x1f, 0xfff},
19398c2ecf20Sopenharmony_ci	{ 0x104ec, 1, 0x1f, 0xfff},
19408c2ecf20Sopenharmony_ci	{ 0x104f8, 1, 0x1f, 0xfff},
19418c2ecf20Sopenharmony_ci	{ 0x10508, 1, 0x1f, 0xfff},
19428c2ecf20Sopenharmony_ci	{ 0x10530, 1, 0x1f, 0xfff},
19438c2ecf20Sopenharmony_ci	{ 0x10538, 1, 0x1f, 0xfff},
19448c2ecf20Sopenharmony_ci	{ 0x10548, 1, 0x1f, 0xfff},
19458c2ecf20Sopenharmony_ci	{ 0x10558, 1, 0x1f, 0xfff},
19468c2ecf20Sopenharmony_ci	{ 0x182a8, 1, 0x1c, 0xfff},
19478c2ecf20Sopenharmony_ci	{ 0x182b8, 1, 0x1c, 0xfff},
19488c2ecf20Sopenharmony_ci	{ 0x18308, 1, 0x1c, 0xfff},
19498c2ecf20Sopenharmony_ci	{ 0x18318, 1, 0x1c, 0xfff},
19508c2ecf20Sopenharmony_ci	{ 0x18338, 1, 0x1c, 0xfff},
19518c2ecf20Sopenharmony_ci	{ 0x18348, 1, 0x1c, 0xfff},
19528c2ecf20Sopenharmony_ci	{ 0x183bc, 1, 0x1c, 0x1fff},
19538c2ecf20Sopenharmony_ci	{ 0x183cc, 1, 0x1c, 0x1fff},
19548c2ecf20Sopenharmony_ci	{ 0x18570, 1, 0x18, 0xfff},
19558c2ecf20Sopenharmony_ci	{ 0x18578, 1, 0x18, 0xfff},
19568c2ecf20Sopenharmony_ci	{ 0x1858c, 1, 0x18, 0xfff},
19578c2ecf20Sopenharmony_ci	{ 0x18594, 1, 0x18, 0xfff},
19588c2ecf20Sopenharmony_ci	{ 0x1862c, 4, 0x10, 0xfff},
19598c2ecf20Sopenharmony_ci	{ 0x2021c, 11, 0x1f, 0xfff},
19608c2ecf20Sopenharmony_ci	{ 0x202a8, 1, 0x1f, 0xfff},
19618c2ecf20Sopenharmony_ci	{ 0x202b8, 1, 0x1f, 0x1fff},
19628c2ecf20Sopenharmony_ci	{ 0x20404, 1, 0x1f, 0xfff},
19638c2ecf20Sopenharmony_ci	{ 0x2040c, 2, 0x1f, 0xfff},
19648c2ecf20Sopenharmony_ci	{ 0x2041c, 2, 0x1f, 0xfff},
19658c2ecf20Sopenharmony_ci	{ 0x40154, 14, 0x1f, 0xfff},
19668c2ecf20Sopenharmony_ci	{ 0x40198, 1, 0x1f, 0x1fff},
19678c2ecf20Sopenharmony_ci	{ 0x404ac, 1, 0x1f, 0xfff},
19688c2ecf20Sopenharmony_ci	{ 0x404bc, 1, 0x1f, 0x1fff},
19698c2ecf20Sopenharmony_ci	{ 0x42290, 1, 0x1f, 0xfff},
19708c2ecf20Sopenharmony_ci	{ 0x422a0, 1, 0x1f, 0xfff},
19718c2ecf20Sopenharmony_ci	{ 0x422b0, 1, 0x1f, 0x1fff},
19728c2ecf20Sopenharmony_ci	{ 0x42548, 1, 0x1f, 0xfff},
19738c2ecf20Sopenharmony_ci	{ 0x42550, 1, 0x1f, 0xfff},
19748c2ecf20Sopenharmony_ci	{ 0x42558, 1, 0x1f, 0xfff},
19758c2ecf20Sopenharmony_ci	{ 0x50160, 8, 0x1f, 0xfff},
19768c2ecf20Sopenharmony_ci	{ 0x501d0, 1, 0x1f, 0xfff},
19778c2ecf20Sopenharmony_ci	{ 0x501e0, 1, 0x1f, 0x1fff},
19788c2ecf20Sopenharmony_ci	{ 0x50204, 1, 0x1f, 0xfff},
19798c2ecf20Sopenharmony_ci	{ 0x5020c, 2, 0x1f, 0xfff},
19808c2ecf20Sopenharmony_ci	{ 0x5021c, 1, 0x1f, 0xfff},
19818c2ecf20Sopenharmony_ci	{ 0x60090, 1, 0x1f, 0xfff},
19828c2ecf20Sopenharmony_ci	{ 0x6011c, 1, 0x1f, 0xfff},
19838c2ecf20Sopenharmony_ci	{ 0x6012c, 1, 0x1f, 0x1fff},
19848c2ecf20Sopenharmony_ci	{ 0xc101c, 1, 0x1f, 0xfff},
19858c2ecf20Sopenharmony_ci	{ 0xc102c, 1, 0x1f, 0x1fff},
19868c2ecf20Sopenharmony_ci	{ 0xc2290, 1, 0x1f, 0xfff},
19878c2ecf20Sopenharmony_ci	{ 0xc22a0, 1, 0x1f, 0xfff},
19888c2ecf20Sopenharmony_ci	{ 0xc22b0, 1, 0x1f, 0x1fff},
19898c2ecf20Sopenharmony_ci	{ 0xc2548, 1, 0x1f, 0xfff},
19908c2ecf20Sopenharmony_ci	{ 0xc2550, 1, 0x1f, 0xfff},
19918c2ecf20Sopenharmony_ci	{ 0xc2558, 1, 0x1f, 0xfff},
19928c2ecf20Sopenharmony_ci	{ 0xc4294, 1, 0x1f, 0xfff},
19938c2ecf20Sopenharmony_ci	{ 0xc42a4, 1, 0x1f, 0xfff},
19948c2ecf20Sopenharmony_ci	{ 0xc42b4, 1, 0x1f, 0x1fff},
19958c2ecf20Sopenharmony_ci	{ 0xc4550, 1, 0x1f, 0xfff},
19968c2ecf20Sopenharmony_ci	{ 0xc4558, 1, 0x1f, 0xfff},
19978c2ecf20Sopenharmony_ci	{ 0xc4560, 1, 0x1f, 0xfff},
19988c2ecf20Sopenharmony_ci	{ 0xd016c, 8, 0x1f, 0xfff},
19998c2ecf20Sopenharmony_ci	{ 0xd01d8, 1, 0x1f, 0xfff},
20008c2ecf20Sopenharmony_ci	{ 0xd01e8, 1, 0x1f, 0x1fff},
20018c2ecf20Sopenharmony_ci	{ 0xd0204, 1, 0x1f, 0xfff},
20028c2ecf20Sopenharmony_ci	{ 0xd020c, 3, 0x1f, 0xfff},
20038c2ecf20Sopenharmony_ci	{ 0xe0154, 8, 0x1f, 0xfff},
20048c2ecf20Sopenharmony_ci	{ 0xe01c8, 1, 0x1f, 0xfff},
20058c2ecf20Sopenharmony_ci	{ 0xe01d8, 1, 0x1f, 0x1fff},
20068c2ecf20Sopenharmony_ci	{ 0xe0204, 1, 0x1f, 0xfff},
20078c2ecf20Sopenharmony_ci	{ 0xe020c, 2, 0x1f, 0xfff},
20088c2ecf20Sopenharmony_ci	{ 0xe021c, 2, 0x1f, 0xfff},
20098c2ecf20Sopenharmony_ci	{ 0x101014, 1, 0x1f, 0xfff},
20108c2ecf20Sopenharmony_ci	{ 0x101030, 1, 0x1f, 0xfff},
20118c2ecf20Sopenharmony_ci	{ 0x101040, 1, 0x1f, 0x1fff},
20128c2ecf20Sopenharmony_ci	{ 0x102058, 1, 0x1f, 0x1fff},
20138c2ecf20Sopenharmony_ci	{ 0x102080, 16, 0x1f, 0xfff},
20148c2ecf20Sopenharmony_ci	{ 0x103004, 2, 0x1f, 0xfff},
20158c2ecf20Sopenharmony_ci	{ 0x103068, 1, 0x1f, 0xfff},
20168c2ecf20Sopenharmony_ci	{ 0x103078, 1, 0x1f, 0xfff},
20178c2ecf20Sopenharmony_ci	{ 0x103088, 1, 0x1f, 0x1fff},
20188c2ecf20Sopenharmony_ci	{ 0x10309c, 2, 0x1e, 0xfff},
20198c2ecf20Sopenharmony_ci	{ 0x1030b8, 2, 0x1c, 0xfff},
20208c2ecf20Sopenharmony_ci	{ 0x1030cc, 1, 0x1c, 0xfff},
20218c2ecf20Sopenharmony_ci	{ 0x1030e0, 1, 0x1c, 0xfff},
20228c2ecf20Sopenharmony_ci	{ 0x104004, 1, 0x1f, 0xfff},
20238c2ecf20Sopenharmony_ci	{ 0x104018, 1, 0x1f, 0xfff},
20248c2ecf20Sopenharmony_ci	{ 0x104020, 1, 0x1f, 0xfff},
20258c2ecf20Sopenharmony_ci	{ 0x10403c, 1, 0x1f, 0xfff},
20268c2ecf20Sopenharmony_ci	{ 0x1040fc, 1, 0x1f, 0xfff},
20278c2ecf20Sopenharmony_ci	{ 0x10410c, 1, 0x1f, 0x1fff},
20288c2ecf20Sopenharmony_ci	{ 0x104400, 1, 0x1f, 0x1fff},
20298c2ecf20Sopenharmony_ci	{ 0x104404, 63, 0x1f, 0xfff},
20308c2ecf20Sopenharmony_ci	{ 0x104800, 1, 0x1f, 0x1fff},
20318c2ecf20Sopenharmony_ci	{ 0x104804, 63, 0x1f, 0xfff},
20328c2ecf20Sopenharmony_ci	{ 0x105000, 4, 0x1f, 0x1fff},
20338c2ecf20Sopenharmony_ci	{ 0x105010, 252, 0x1f, 0xfff},
20348c2ecf20Sopenharmony_ci	{ 0x108094, 1, 0x3, 0xfff},
20358c2ecf20Sopenharmony_ci	{ 0x1201b0, 2, 0x1f, 0xfff},
20368c2ecf20Sopenharmony_ci	{ 0x12032c, 1, 0x1f, 0xfff},
20378c2ecf20Sopenharmony_ci	{ 0x12036c, 3, 0x1f, 0xfff},
20388c2ecf20Sopenharmony_ci	{ 0x120408, 2, 0x1f, 0xfff},
20398c2ecf20Sopenharmony_ci	{ 0x120414, 15, 0x1f, 0xfff},
20408c2ecf20Sopenharmony_ci	{ 0x120478, 2, 0x1f, 0xfff},
20418c2ecf20Sopenharmony_ci	{ 0x12052c, 1, 0x1f, 0xfff},
20428c2ecf20Sopenharmony_ci	{ 0x120564, 3, 0x1f, 0xfff},
20438c2ecf20Sopenharmony_ci	{ 0x12057c, 1, 0x1f, 0x1fff},
20448c2ecf20Sopenharmony_ci	{ 0x12058c, 1, 0x1f, 0x1fff},
20458c2ecf20Sopenharmony_ci	{ 0x120608, 1, 0x1e, 0xfff},
20468c2ecf20Sopenharmony_ci	{ 0x120748, 1, 0x1c, 0xfff},
20478c2ecf20Sopenharmony_ci	{ 0x120778, 2, 0x1c, 0xfff},
20488c2ecf20Sopenharmony_ci	{ 0x120808, 3, 0x1f, 0xfff},
20498c2ecf20Sopenharmony_ci	{ 0x120818, 1, 0x1f, 0xfff},
20508c2ecf20Sopenharmony_ci	{ 0x120820, 1, 0x1f, 0xfff},
20518c2ecf20Sopenharmony_ci	{ 0x120828, 1, 0x1f, 0xfff},
20528c2ecf20Sopenharmony_ci	{ 0x120830, 1, 0x1f, 0xfff},
20538c2ecf20Sopenharmony_ci	{ 0x120838, 1, 0x1f, 0xfff},
20548c2ecf20Sopenharmony_ci	{ 0x120840, 1, 0x1f, 0xfff},
20558c2ecf20Sopenharmony_ci	{ 0x120848, 1, 0x1f, 0xfff},
20568c2ecf20Sopenharmony_ci	{ 0x120850, 1, 0x1f, 0xfff},
20578c2ecf20Sopenharmony_ci	{ 0x120858, 1, 0x1f, 0xfff},
20588c2ecf20Sopenharmony_ci	{ 0x120860, 1, 0x1f, 0xfff},
20598c2ecf20Sopenharmony_ci	{ 0x120868, 1, 0x1f, 0xfff},
20608c2ecf20Sopenharmony_ci	{ 0x120870, 1, 0x1f, 0xfff},
20618c2ecf20Sopenharmony_ci	{ 0x120878, 1, 0x1f, 0xfff},
20628c2ecf20Sopenharmony_ci	{ 0x120880, 1, 0x1f, 0xfff},
20638c2ecf20Sopenharmony_ci	{ 0x120888, 1, 0x1f, 0xfff},
20648c2ecf20Sopenharmony_ci	{ 0x120890, 1, 0x1f, 0xfff},
20658c2ecf20Sopenharmony_ci	{ 0x120898, 1, 0x1f, 0xfff},
20668c2ecf20Sopenharmony_ci	{ 0x1208a0, 1, 0x1f, 0xfff},
20678c2ecf20Sopenharmony_ci	{ 0x1208a8, 1, 0x1f, 0xfff},
20688c2ecf20Sopenharmony_ci	{ 0x1208b0, 1, 0x1f, 0xfff},
20698c2ecf20Sopenharmony_ci	{ 0x1208b8, 1, 0x1f, 0xfff},
20708c2ecf20Sopenharmony_ci	{ 0x1208c0, 1, 0x1f, 0xfff},
20718c2ecf20Sopenharmony_ci	{ 0x1208c8, 1, 0x1f, 0xfff},
20728c2ecf20Sopenharmony_ci	{ 0x1208d0, 1, 0x1f, 0xfff},
20738c2ecf20Sopenharmony_ci	{ 0x1208d8, 1, 0x1f, 0xfff},
20748c2ecf20Sopenharmony_ci	{ 0x1208e0, 1, 0x1f, 0xfff},
20758c2ecf20Sopenharmony_ci	{ 0x1208e8, 1, 0x1f, 0xfff},
20768c2ecf20Sopenharmony_ci	{ 0x1208f0, 1, 0x1f, 0xfff},
20778c2ecf20Sopenharmony_ci	{ 0x1208f8, 1, 0x1f, 0xfff},
20788c2ecf20Sopenharmony_ci	{ 0x120900, 1, 0x1f, 0xfff},
20798c2ecf20Sopenharmony_ci	{ 0x120908, 1, 0x1f, 0xfff},
20808c2ecf20Sopenharmony_ci	{ 0x130030, 1, 0x1c, 0xfff},
20818c2ecf20Sopenharmony_ci	{ 0x13004c, 3, 0x1c, 0xfff},
20828c2ecf20Sopenharmony_ci	{ 0x130064, 2, 0x1c, 0xfff},
20838c2ecf20Sopenharmony_ci	{ 0x13009c, 1, 0x1c, 0x1fff},
20848c2ecf20Sopenharmony_ci	{ 0x130130, 1, 0x1c, 0xfff},
20858c2ecf20Sopenharmony_ci	{ 0x13016c, 1, 0x1c, 0xfff},
20868c2ecf20Sopenharmony_ci	{ 0x130300, 1, 0x1c, 0xfff},
20878c2ecf20Sopenharmony_ci	{ 0x130480, 1, 0x1c, 0xfff},
20888c2ecf20Sopenharmony_ci	{ 0x14005c, 2, 0xf, 0xfff},
20898c2ecf20Sopenharmony_ci	{ 0x1400d0, 2, 0xf, 0xfff},
20908c2ecf20Sopenharmony_ci	{ 0x1400e0, 1, 0xf, 0xfff},
20918c2ecf20Sopenharmony_ci	{ 0x1401c8, 1, 0xf, 0xfff},
20928c2ecf20Sopenharmony_ci	{ 0x140200, 6, 0xf, 0xfff},
20938c2ecf20Sopenharmony_ci	{ 0x140338, 7, 0x10, 0xfff},
20948c2ecf20Sopenharmony_ci	{ 0x140370, 7, 0x10, 0xfff},
20958c2ecf20Sopenharmony_ci	{ 0x15c1bc, 6, 0x10, 0xfff},
20968c2ecf20Sopenharmony_ci	{ 0x15c230, 7, 0x10, 0xfff},
20978c2ecf20Sopenharmony_ci	{ 0x16101c, 1, 0x1f, 0xfff},
20988c2ecf20Sopenharmony_ci	{ 0x16102c, 1, 0x1f, 0x1fff},
20998c2ecf20Sopenharmony_ci	{ 0x164014, 2, 0x1f, 0xfff},
21008c2ecf20Sopenharmony_ci	{ 0x1640f0, 1, 0x1f, 0xfff},
21018c2ecf20Sopenharmony_ci	{ 0x166290, 1, 0x1f, 0xfff},
21028c2ecf20Sopenharmony_ci	{ 0x1662a0, 1, 0x1f, 0xfff},
21038c2ecf20Sopenharmony_ci	{ 0x1662b0, 1, 0x1f, 0x1fff},
21048c2ecf20Sopenharmony_ci	{ 0x166548, 1, 0x1f, 0xfff},
21058c2ecf20Sopenharmony_ci	{ 0x166550, 1, 0x1f, 0xfff},
21068c2ecf20Sopenharmony_ci	{ 0x166558, 1, 0x1f, 0xfff},
21078c2ecf20Sopenharmony_ci	{ 0x168000, 1, 0x1f, 0xfff},
21088c2ecf20Sopenharmony_ci	{ 0x168008, 1, 0x1f, 0xfff},
21098c2ecf20Sopenharmony_ci	{ 0x168010, 1, 0x1f, 0xfff},
21108c2ecf20Sopenharmony_ci	{ 0x168018, 1, 0x1f, 0xfff},
21118c2ecf20Sopenharmony_ci	{ 0x168028, 2, 0x1f, 0xfff},
21128c2ecf20Sopenharmony_ci	{ 0x168058, 9, 0x1f, 0xfff},
21138c2ecf20Sopenharmony_ci	{ 0x168238, 1, 0x1f, 0xfff},
21148c2ecf20Sopenharmony_ci	{ 0x1682d0, 7, 0x1f, 0xfff},
21158c2ecf20Sopenharmony_ci	{ 0x168300, 2, 0x3, 0xfff},
21168c2ecf20Sopenharmony_ci	{ 0x168308, 65, 0x1f, 0xfff},
21178c2ecf20Sopenharmony_ci	{ 0x168410, 2, 0x1f, 0xfff},
21188c2ecf20Sopenharmony_ci	{ 0x168438, 1, 0x1f, 0xfff},
21198c2ecf20Sopenharmony_ci	{ 0x168448, 1, 0x1f, 0x1fff},
21208c2ecf20Sopenharmony_ci	{ 0x168a00, 128, 0x1f, 0xfff},
21218c2ecf20Sopenharmony_ci	{ 0x16e200, 128, 0x2, 0xfff},
21228c2ecf20Sopenharmony_ci	{ 0x16e404, 2, 0x2, 0xfff},
21238c2ecf20Sopenharmony_ci	{ 0x16e584, 64, 0x2, 0xfff},
21248c2ecf20Sopenharmony_ci	{ 0x16e684, 2, 0x1e, 0xfff},
21258c2ecf20Sopenharmony_ci	{ 0x16e68c, 4, 0x2, 0xfff},
21268c2ecf20Sopenharmony_ci	{ 0x16e6fc, 4, 0x1c, 0xfff},
21278c2ecf20Sopenharmony_ci	{ 0x16e7ac, 12, 0x10, 0xfff},
21288c2ecf20Sopenharmony_ci	{ 0x1700a4, 1, 0x1f, 0xfff},
21298c2ecf20Sopenharmony_ci	{ 0x1700ac, 2, 0x1f, 0xfff},
21308c2ecf20Sopenharmony_ci	{ 0x1700c0, 1, 0x1f, 0xfff},
21318c2ecf20Sopenharmony_ci	{ 0x170174, 1, 0x1f, 0xfff},
21328c2ecf20Sopenharmony_ci	{ 0x170184, 1, 0x1f, 0x1fff},
21338c2ecf20Sopenharmony_ci	{ 0x1800f4, 1, 0x1f, 0xfff},
21348c2ecf20Sopenharmony_ci	{ 0x180104, 1, 0x1f, 0xfff},
21358c2ecf20Sopenharmony_ci	{ 0x180114, 1, 0x1f, 0x1fff},
21368c2ecf20Sopenharmony_ci	{ 0x180124, 1, 0x1f, 0x1fff},
21378c2ecf20Sopenharmony_ci	{ 0x18026c, 1, 0x1f, 0xfff},
21388c2ecf20Sopenharmony_ci	{ 0x1802a0, 1, 0x1f, 0xfff},
21398c2ecf20Sopenharmony_ci	{ 0x1b8000, 1, 0x1f, 0xfff},
21408c2ecf20Sopenharmony_ci	{ 0x1b8040, 1, 0x1f, 0xfff},
21418c2ecf20Sopenharmony_ci	{ 0x1b8080, 1, 0x1f, 0xfff},
21428c2ecf20Sopenharmony_ci	{ 0x1b80c0, 1, 0x1f, 0xfff},
21438c2ecf20Sopenharmony_ci	{ 0x200104, 1, 0x1f, 0xfff},
21448c2ecf20Sopenharmony_ci	{ 0x200114, 1, 0x1f, 0xfff},
21458c2ecf20Sopenharmony_ci	{ 0x200124, 1, 0x1f, 0x1fff},
21468c2ecf20Sopenharmony_ci	{ 0x200134, 1, 0x1f, 0x1fff},
21478c2ecf20Sopenharmony_ci	{ 0x20026c, 1, 0x1f, 0xfff},
21488c2ecf20Sopenharmony_ci	{ 0x2002a0, 1, 0x1f, 0xfff},
21498c2ecf20Sopenharmony_ci	{ 0x238000, 1, 0x1f, 0xfff},
21508c2ecf20Sopenharmony_ci	{ 0x238040, 1, 0x1f, 0xfff},
21518c2ecf20Sopenharmony_ci	{ 0x238080, 1, 0x1f, 0xfff},
21528c2ecf20Sopenharmony_ci	{ 0x2380c0, 1, 0x1f, 0xfff},
21538c2ecf20Sopenharmony_ci	{ 0x280104, 1, 0x1f, 0xfff},
21548c2ecf20Sopenharmony_ci	{ 0x280114, 1, 0x1f, 0xfff},
21558c2ecf20Sopenharmony_ci	{ 0x280124, 1, 0x1f, 0x1fff},
21568c2ecf20Sopenharmony_ci	{ 0x280134, 1, 0x1f, 0x1fff},
21578c2ecf20Sopenharmony_ci	{ 0x28026c, 1, 0x1f, 0xfff},
21588c2ecf20Sopenharmony_ci	{ 0x2802a0, 1, 0x1f, 0xfff},
21598c2ecf20Sopenharmony_ci	{ 0x2b8000, 1, 0x1f, 0xfff},
21608c2ecf20Sopenharmony_ci	{ 0x2b8040, 1, 0x1f, 0xfff},
21618c2ecf20Sopenharmony_ci	{ 0x2b8080, 1, 0x1f, 0xfff},
21628c2ecf20Sopenharmony_ci	{ 0x300104, 1, 0x1f, 0xfff},
21638c2ecf20Sopenharmony_ci	{ 0x300114, 1, 0x1f, 0xfff},
21648c2ecf20Sopenharmony_ci	{ 0x300124, 1, 0x1f, 0x1fff},
21658c2ecf20Sopenharmony_ci	{ 0x300134, 1, 0x1f, 0x1fff},
21668c2ecf20Sopenharmony_ci	{ 0x30026c, 1, 0x1f, 0xfff},
21678c2ecf20Sopenharmony_ci	{ 0x3002a0, 1, 0x1f, 0xfff},
21688c2ecf20Sopenharmony_ci	{ 0x338000, 1, 0x1f, 0xfff},
21698c2ecf20Sopenharmony_ci	{ 0x338040, 1, 0x1f, 0xfff},
21708c2ecf20Sopenharmony_ci	{ 0x338080, 1, 0x1f, 0xfff},
21718c2ecf20Sopenharmony_ci	{ 0x3380c0, 1, 0x1f, 0xfff}
21728c2ecf20Sopenharmony_ci};
21738c2ecf20Sopenharmony_ci
21748c2ecf20Sopenharmony_ci#define IDLE_REGS_COUNT ARRAY_SIZE(idle_reg_addrs)
21758c2ecf20Sopenharmony_ci
21768c2ecf20Sopenharmony_cistatic const u32 read_reg_e1[] = {
21778c2ecf20Sopenharmony_ci	0x1b1000};
21788c2ecf20Sopenharmony_ci
21798c2ecf20Sopenharmony_cistatic const struct wreg_addr wreg_addr_e1 = {
21808c2ecf20Sopenharmony_ci	0x1b0c00, 192, 1, read_reg_e1, 0x1f, 0x1fff};
21818c2ecf20Sopenharmony_ci
21828c2ecf20Sopenharmony_cistatic const u32 read_reg_e1h[] = {
21838c2ecf20Sopenharmony_ci	0x1b1040, 0x1b1000};
21848c2ecf20Sopenharmony_ci
21858c2ecf20Sopenharmony_cistatic const struct wreg_addr wreg_addr_e1h = {
21868c2ecf20Sopenharmony_ci	0x1b0c00, 256, 2, read_reg_e1h, 0x1f, 0x1fff};
21878c2ecf20Sopenharmony_ci
21888c2ecf20Sopenharmony_cistatic const u32 read_reg_e2[] = {
21898c2ecf20Sopenharmony_ci	0x1b1040, 0x1b1000};
21908c2ecf20Sopenharmony_ci
21918c2ecf20Sopenharmony_cistatic const struct wreg_addr wreg_addr_e2 = {
21928c2ecf20Sopenharmony_ci	0x1b0c00, 128, 2, read_reg_e2, 0x1f, 0x1fff};
21938c2ecf20Sopenharmony_ci
21948c2ecf20Sopenharmony_cistatic const u32 read_reg_e3[] = {
21958c2ecf20Sopenharmony_ci	0x1b1040, 0x1b1000};
21968c2ecf20Sopenharmony_ci
21978c2ecf20Sopenharmony_cistatic const struct wreg_addr wreg_addr_e3 = {
21988c2ecf20Sopenharmony_ci	0x1b0c00, 128, 2, read_reg_e3, 0x1f, 0x1fff};
21998c2ecf20Sopenharmony_ci
22008c2ecf20Sopenharmony_cistatic const u32 read_reg_e3b0[] = {
22018c2ecf20Sopenharmony_ci	0x1b1040, 0x1b1000};
22028c2ecf20Sopenharmony_ci
22038c2ecf20Sopenharmony_cistatic const struct wreg_addr wreg_addr_e3b0 = {
22048c2ecf20Sopenharmony_ci	0x1b0c00, 128, 2, read_reg_e3b0, 0x1f, 0x1fff};
22058c2ecf20Sopenharmony_ci
22068c2ecf20Sopenharmony_cistatic const unsigned int dump_num_registers[NUM_CHIPS][NUM_PRESETS] = {
22078c2ecf20Sopenharmony_ci	{19758, 17543, 26951, 18705, 17287, 26695, 19812, 31367, 40775, 19788,
22088c2ecf20Sopenharmony_ci	 25223, 34631, 19074},
22098c2ecf20Sopenharmony_ci	{31750, 18273, 32253, 30697, 18017, 31997, 31804, 32097, 46077, 31780,
22108c2ecf20Sopenharmony_ci	 25953, 39933, 35895},
22118c2ecf20Sopenharmony_ci	{36527, 17928, 33697, 35474, 18700, 34466, 36581, 31752, 47521, 36557,
22128c2ecf20Sopenharmony_ci	 25608, 41377, 43903},
22138c2ecf20Sopenharmony_ci	{45239, 17936, 34387, 44186, 18708, 35156, 45293, 31760, 48211, 45269,
22148c2ecf20Sopenharmony_ci	 25616, 42067, 43903},
22158c2ecf20Sopenharmony_ci	{45302, 17999, 34802, 44249, 18771, 35571, 45356, 31823, 48626, 45332,
22168c2ecf20Sopenharmony_ci	 25679, 42482, 43903}
22178c2ecf20Sopenharmony_ci};
22188c2ecf20Sopenharmony_ci#endif
2219