18c2ecf20Sopenharmony_ci// SPDX-License-Identifier: GPL-2.0-only
28c2ecf20Sopenharmony_ci/*
38c2ecf20Sopenharmony_ci * Copyright (c) 2014-2015, The Linux Foundation. All rights reserved.
48c2ecf20Sopenharmony_ci */
58c2ecf20Sopenharmony_ci
68c2ecf20Sopenharmony_ci#include <linux/module.h>
78c2ecf20Sopenharmony_ci#include <linux/of.h>
88c2ecf20Sopenharmony_ci#include <linux/platform_device.h>
98c2ecf20Sopenharmony_ci#include <linux/pinctrl/pinctrl.h>
108c2ecf20Sopenharmony_ci
118c2ecf20Sopenharmony_ci#include "pinctrl-msm.h"
128c2ecf20Sopenharmony_ci
138c2ecf20Sopenharmony_ci#define FUNCTION(fname)			                \
148c2ecf20Sopenharmony_ci	[msm_mux_##fname] = {		                \
158c2ecf20Sopenharmony_ci		.name = #fname,				\
168c2ecf20Sopenharmony_ci		.groups = fname##_groups,               \
178c2ecf20Sopenharmony_ci		.ngroups = ARRAY_SIZE(fname##_groups),	\
188c2ecf20Sopenharmony_ci	}
198c2ecf20Sopenharmony_ci
208c2ecf20Sopenharmony_ci#define REG_BASE 0x0
218c2ecf20Sopenharmony_ci#define REG_SIZE 0x1000
228c2ecf20Sopenharmony_ci#define PINGROUP(id, f1, f2, f3, f4, f5, f6, f7, f8, f9)	\
238c2ecf20Sopenharmony_ci	{					        \
248c2ecf20Sopenharmony_ci		.name = "gpio" #id,			\
258c2ecf20Sopenharmony_ci		.pins = gpio##id##_pins,		\
268c2ecf20Sopenharmony_ci		.npins = (unsigned)ARRAY_SIZE(gpio##id##_pins),	\
278c2ecf20Sopenharmony_ci		.funcs = (int[]){			\
288c2ecf20Sopenharmony_ci			msm_mux_gpio, /* gpio mode */	\
298c2ecf20Sopenharmony_ci			msm_mux_##f1,			\
308c2ecf20Sopenharmony_ci			msm_mux_##f2,			\
318c2ecf20Sopenharmony_ci			msm_mux_##f3,			\
328c2ecf20Sopenharmony_ci			msm_mux_##f4,			\
338c2ecf20Sopenharmony_ci			msm_mux_##f5,			\
348c2ecf20Sopenharmony_ci			msm_mux_##f6,			\
358c2ecf20Sopenharmony_ci			msm_mux_##f7,			\
368c2ecf20Sopenharmony_ci			msm_mux_##f8,			\
378c2ecf20Sopenharmony_ci			msm_mux_##f9			\
388c2ecf20Sopenharmony_ci		},				        \
398c2ecf20Sopenharmony_ci		.nfuncs = 10,				\
408c2ecf20Sopenharmony_ci		.ctl_reg = REG_BASE + REG_SIZE * id,	\
418c2ecf20Sopenharmony_ci		.io_reg = REG_BASE + 0x4 + REG_SIZE * id,		\
428c2ecf20Sopenharmony_ci		.intr_cfg_reg = REG_BASE + 0x8 + REG_SIZE * id,		\
438c2ecf20Sopenharmony_ci		.intr_status_reg = REG_BASE + 0xc + REG_SIZE * id,	\
448c2ecf20Sopenharmony_ci		.intr_target_reg = REG_BASE + 0x8 + REG_SIZE * id,	\
458c2ecf20Sopenharmony_ci		.mux_bit = 2,			\
468c2ecf20Sopenharmony_ci		.pull_bit = 0,			\
478c2ecf20Sopenharmony_ci		.drv_bit = 6,			\
488c2ecf20Sopenharmony_ci		.oe_bit = 9,			\
498c2ecf20Sopenharmony_ci		.in_bit = 0,			\
508c2ecf20Sopenharmony_ci		.out_bit = 1,			\
518c2ecf20Sopenharmony_ci		.intr_enable_bit = 0,		\
528c2ecf20Sopenharmony_ci		.intr_status_bit = 0,		\
538c2ecf20Sopenharmony_ci		.intr_target_bit = 5,		\
548c2ecf20Sopenharmony_ci		.intr_target_kpss_val = 3,	\
558c2ecf20Sopenharmony_ci		.intr_raw_status_bit = 4,	\
568c2ecf20Sopenharmony_ci		.intr_polarity_bit = 1,		\
578c2ecf20Sopenharmony_ci		.intr_detection_bit = 2,	\
588c2ecf20Sopenharmony_ci		.intr_detection_width = 2,	\
598c2ecf20Sopenharmony_ci	}
608c2ecf20Sopenharmony_ci
618c2ecf20Sopenharmony_ci#define SDC_QDSD_PINGROUP(pg_name, ctl, pull, drv)	\
628c2ecf20Sopenharmony_ci	{					        \
638c2ecf20Sopenharmony_ci		.name = #pg_name,			\
648c2ecf20Sopenharmony_ci		.pins = pg_name##_pins,			\
658c2ecf20Sopenharmony_ci		.npins = (unsigned)ARRAY_SIZE(pg_name##_pins),	\
668c2ecf20Sopenharmony_ci		.ctl_reg = ctl,				\
678c2ecf20Sopenharmony_ci		.io_reg = 0,				\
688c2ecf20Sopenharmony_ci		.intr_cfg_reg = 0,			\
698c2ecf20Sopenharmony_ci		.intr_status_reg = 0,			\
708c2ecf20Sopenharmony_ci		.intr_target_reg = 0,			\
718c2ecf20Sopenharmony_ci		.mux_bit = -1,				\
728c2ecf20Sopenharmony_ci		.pull_bit = pull,			\
738c2ecf20Sopenharmony_ci		.drv_bit = drv,				\
748c2ecf20Sopenharmony_ci		.oe_bit = -1,				\
758c2ecf20Sopenharmony_ci		.in_bit = -1,				\
768c2ecf20Sopenharmony_ci		.out_bit = -1,				\
778c2ecf20Sopenharmony_ci		.intr_enable_bit = -1,			\
788c2ecf20Sopenharmony_ci		.intr_status_bit = -1,			\
798c2ecf20Sopenharmony_ci		.intr_target_bit = -1,			\
808c2ecf20Sopenharmony_ci		.intr_raw_status_bit = -1,		\
818c2ecf20Sopenharmony_ci		.intr_polarity_bit = -1,		\
828c2ecf20Sopenharmony_ci		.intr_detection_bit = -1,		\
838c2ecf20Sopenharmony_ci		.intr_detection_width = -1,		\
848c2ecf20Sopenharmony_ci	}
858c2ecf20Sopenharmony_cistatic const struct pinctrl_pin_desc msm8996_pins[] = {
868c2ecf20Sopenharmony_ci	PINCTRL_PIN(0, "GPIO_0"),
878c2ecf20Sopenharmony_ci	PINCTRL_PIN(1, "GPIO_1"),
888c2ecf20Sopenharmony_ci	PINCTRL_PIN(2, "GPIO_2"),
898c2ecf20Sopenharmony_ci	PINCTRL_PIN(3, "GPIO_3"),
908c2ecf20Sopenharmony_ci	PINCTRL_PIN(4, "GPIO_4"),
918c2ecf20Sopenharmony_ci	PINCTRL_PIN(5, "GPIO_5"),
928c2ecf20Sopenharmony_ci	PINCTRL_PIN(6, "GPIO_6"),
938c2ecf20Sopenharmony_ci	PINCTRL_PIN(7, "GPIO_7"),
948c2ecf20Sopenharmony_ci	PINCTRL_PIN(8, "GPIO_8"),
958c2ecf20Sopenharmony_ci	PINCTRL_PIN(9, "GPIO_9"),
968c2ecf20Sopenharmony_ci	PINCTRL_PIN(10, "GPIO_10"),
978c2ecf20Sopenharmony_ci	PINCTRL_PIN(11, "GPIO_11"),
988c2ecf20Sopenharmony_ci	PINCTRL_PIN(12, "GPIO_12"),
998c2ecf20Sopenharmony_ci	PINCTRL_PIN(13, "GPIO_13"),
1008c2ecf20Sopenharmony_ci	PINCTRL_PIN(14, "GPIO_14"),
1018c2ecf20Sopenharmony_ci	PINCTRL_PIN(15, "GPIO_15"),
1028c2ecf20Sopenharmony_ci	PINCTRL_PIN(16, "GPIO_16"),
1038c2ecf20Sopenharmony_ci	PINCTRL_PIN(17, "GPIO_17"),
1048c2ecf20Sopenharmony_ci	PINCTRL_PIN(18, "GPIO_18"),
1058c2ecf20Sopenharmony_ci	PINCTRL_PIN(19, "GPIO_19"),
1068c2ecf20Sopenharmony_ci	PINCTRL_PIN(20, "GPIO_20"),
1078c2ecf20Sopenharmony_ci	PINCTRL_PIN(21, "GPIO_21"),
1088c2ecf20Sopenharmony_ci	PINCTRL_PIN(22, "GPIO_22"),
1098c2ecf20Sopenharmony_ci	PINCTRL_PIN(23, "GPIO_23"),
1108c2ecf20Sopenharmony_ci	PINCTRL_PIN(24, "GPIO_24"),
1118c2ecf20Sopenharmony_ci	PINCTRL_PIN(25, "GPIO_25"),
1128c2ecf20Sopenharmony_ci	PINCTRL_PIN(26, "GPIO_26"),
1138c2ecf20Sopenharmony_ci	PINCTRL_PIN(27, "GPIO_27"),
1148c2ecf20Sopenharmony_ci	PINCTRL_PIN(28, "GPIO_28"),
1158c2ecf20Sopenharmony_ci	PINCTRL_PIN(29, "GPIO_29"),
1168c2ecf20Sopenharmony_ci	PINCTRL_PIN(30, "GPIO_30"),
1178c2ecf20Sopenharmony_ci	PINCTRL_PIN(31, "GPIO_31"),
1188c2ecf20Sopenharmony_ci	PINCTRL_PIN(32, "GPIO_32"),
1198c2ecf20Sopenharmony_ci	PINCTRL_PIN(33, "GPIO_33"),
1208c2ecf20Sopenharmony_ci	PINCTRL_PIN(34, "GPIO_34"),
1218c2ecf20Sopenharmony_ci	PINCTRL_PIN(35, "GPIO_35"),
1228c2ecf20Sopenharmony_ci	PINCTRL_PIN(36, "GPIO_36"),
1238c2ecf20Sopenharmony_ci	PINCTRL_PIN(37, "GPIO_37"),
1248c2ecf20Sopenharmony_ci	PINCTRL_PIN(38, "GPIO_38"),
1258c2ecf20Sopenharmony_ci	PINCTRL_PIN(39, "GPIO_39"),
1268c2ecf20Sopenharmony_ci	PINCTRL_PIN(40, "GPIO_40"),
1278c2ecf20Sopenharmony_ci	PINCTRL_PIN(41, "GPIO_41"),
1288c2ecf20Sopenharmony_ci	PINCTRL_PIN(42, "GPIO_42"),
1298c2ecf20Sopenharmony_ci	PINCTRL_PIN(43, "GPIO_43"),
1308c2ecf20Sopenharmony_ci	PINCTRL_PIN(44, "GPIO_44"),
1318c2ecf20Sopenharmony_ci	PINCTRL_PIN(45, "GPIO_45"),
1328c2ecf20Sopenharmony_ci	PINCTRL_PIN(46, "GPIO_46"),
1338c2ecf20Sopenharmony_ci	PINCTRL_PIN(47, "GPIO_47"),
1348c2ecf20Sopenharmony_ci	PINCTRL_PIN(48, "GPIO_48"),
1358c2ecf20Sopenharmony_ci	PINCTRL_PIN(49, "GPIO_49"),
1368c2ecf20Sopenharmony_ci	PINCTRL_PIN(50, "GPIO_50"),
1378c2ecf20Sopenharmony_ci	PINCTRL_PIN(51, "GPIO_51"),
1388c2ecf20Sopenharmony_ci	PINCTRL_PIN(52, "GPIO_52"),
1398c2ecf20Sopenharmony_ci	PINCTRL_PIN(53, "GPIO_53"),
1408c2ecf20Sopenharmony_ci	PINCTRL_PIN(54, "GPIO_54"),
1418c2ecf20Sopenharmony_ci	PINCTRL_PIN(55, "GPIO_55"),
1428c2ecf20Sopenharmony_ci	PINCTRL_PIN(56, "GPIO_56"),
1438c2ecf20Sopenharmony_ci	PINCTRL_PIN(57, "GPIO_57"),
1448c2ecf20Sopenharmony_ci	PINCTRL_PIN(58, "GPIO_58"),
1458c2ecf20Sopenharmony_ci	PINCTRL_PIN(59, "GPIO_59"),
1468c2ecf20Sopenharmony_ci	PINCTRL_PIN(60, "GPIO_60"),
1478c2ecf20Sopenharmony_ci	PINCTRL_PIN(61, "GPIO_61"),
1488c2ecf20Sopenharmony_ci	PINCTRL_PIN(62, "GPIO_62"),
1498c2ecf20Sopenharmony_ci	PINCTRL_PIN(63, "GPIO_63"),
1508c2ecf20Sopenharmony_ci	PINCTRL_PIN(64, "GPIO_64"),
1518c2ecf20Sopenharmony_ci	PINCTRL_PIN(65, "GPIO_65"),
1528c2ecf20Sopenharmony_ci	PINCTRL_PIN(66, "GPIO_66"),
1538c2ecf20Sopenharmony_ci	PINCTRL_PIN(67, "GPIO_67"),
1548c2ecf20Sopenharmony_ci	PINCTRL_PIN(68, "GPIO_68"),
1558c2ecf20Sopenharmony_ci	PINCTRL_PIN(69, "GPIO_69"),
1568c2ecf20Sopenharmony_ci	PINCTRL_PIN(70, "GPIO_70"),
1578c2ecf20Sopenharmony_ci	PINCTRL_PIN(71, "GPIO_71"),
1588c2ecf20Sopenharmony_ci	PINCTRL_PIN(72, "GPIO_72"),
1598c2ecf20Sopenharmony_ci	PINCTRL_PIN(73, "GPIO_73"),
1608c2ecf20Sopenharmony_ci	PINCTRL_PIN(74, "GPIO_74"),
1618c2ecf20Sopenharmony_ci	PINCTRL_PIN(75, "GPIO_75"),
1628c2ecf20Sopenharmony_ci	PINCTRL_PIN(76, "GPIO_76"),
1638c2ecf20Sopenharmony_ci	PINCTRL_PIN(77, "GPIO_77"),
1648c2ecf20Sopenharmony_ci	PINCTRL_PIN(78, "GPIO_78"),
1658c2ecf20Sopenharmony_ci	PINCTRL_PIN(79, "GPIO_79"),
1668c2ecf20Sopenharmony_ci	PINCTRL_PIN(80, "GPIO_80"),
1678c2ecf20Sopenharmony_ci	PINCTRL_PIN(81, "GPIO_81"),
1688c2ecf20Sopenharmony_ci	PINCTRL_PIN(82, "GPIO_82"),
1698c2ecf20Sopenharmony_ci	PINCTRL_PIN(83, "GPIO_83"),
1708c2ecf20Sopenharmony_ci	PINCTRL_PIN(84, "GPIO_84"),
1718c2ecf20Sopenharmony_ci	PINCTRL_PIN(85, "GPIO_85"),
1728c2ecf20Sopenharmony_ci	PINCTRL_PIN(86, "GPIO_86"),
1738c2ecf20Sopenharmony_ci	PINCTRL_PIN(87, "GPIO_87"),
1748c2ecf20Sopenharmony_ci	PINCTRL_PIN(88, "GPIO_88"),
1758c2ecf20Sopenharmony_ci	PINCTRL_PIN(89, "GPIO_89"),
1768c2ecf20Sopenharmony_ci	PINCTRL_PIN(90, "GPIO_90"),
1778c2ecf20Sopenharmony_ci	PINCTRL_PIN(91, "GPIO_91"),
1788c2ecf20Sopenharmony_ci	PINCTRL_PIN(92, "GPIO_92"),
1798c2ecf20Sopenharmony_ci	PINCTRL_PIN(93, "GPIO_93"),
1808c2ecf20Sopenharmony_ci	PINCTRL_PIN(94, "GPIO_94"),
1818c2ecf20Sopenharmony_ci	PINCTRL_PIN(95, "GPIO_95"),
1828c2ecf20Sopenharmony_ci	PINCTRL_PIN(96, "GPIO_96"),
1838c2ecf20Sopenharmony_ci	PINCTRL_PIN(97, "GPIO_97"),
1848c2ecf20Sopenharmony_ci	PINCTRL_PIN(98, "GPIO_98"),
1858c2ecf20Sopenharmony_ci	PINCTRL_PIN(99, "GPIO_99"),
1868c2ecf20Sopenharmony_ci	PINCTRL_PIN(100, "GPIO_100"),
1878c2ecf20Sopenharmony_ci	PINCTRL_PIN(101, "GPIO_101"),
1888c2ecf20Sopenharmony_ci	PINCTRL_PIN(102, "GPIO_102"),
1898c2ecf20Sopenharmony_ci	PINCTRL_PIN(103, "GPIO_103"),
1908c2ecf20Sopenharmony_ci	PINCTRL_PIN(104, "GPIO_104"),
1918c2ecf20Sopenharmony_ci	PINCTRL_PIN(105, "GPIO_105"),
1928c2ecf20Sopenharmony_ci	PINCTRL_PIN(106, "GPIO_106"),
1938c2ecf20Sopenharmony_ci	PINCTRL_PIN(107, "GPIO_107"),
1948c2ecf20Sopenharmony_ci	PINCTRL_PIN(108, "GPIO_108"),
1958c2ecf20Sopenharmony_ci	PINCTRL_PIN(109, "GPIO_109"),
1968c2ecf20Sopenharmony_ci	PINCTRL_PIN(110, "GPIO_110"),
1978c2ecf20Sopenharmony_ci	PINCTRL_PIN(111, "GPIO_111"),
1988c2ecf20Sopenharmony_ci	PINCTRL_PIN(112, "GPIO_112"),
1998c2ecf20Sopenharmony_ci	PINCTRL_PIN(113, "GPIO_113"),
2008c2ecf20Sopenharmony_ci	PINCTRL_PIN(114, "GPIO_114"),
2018c2ecf20Sopenharmony_ci	PINCTRL_PIN(115, "GPIO_115"),
2028c2ecf20Sopenharmony_ci	PINCTRL_PIN(116, "GPIO_116"),
2038c2ecf20Sopenharmony_ci	PINCTRL_PIN(117, "GPIO_117"),
2048c2ecf20Sopenharmony_ci	PINCTRL_PIN(118, "GPIO_118"),
2058c2ecf20Sopenharmony_ci	PINCTRL_PIN(119, "GPIO_119"),
2068c2ecf20Sopenharmony_ci	PINCTRL_PIN(120, "GPIO_120"),
2078c2ecf20Sopenharmony_ci	PINCTRL_PIN(121, "GPIO_121"),
2088c2ecf20Sopenharmony_ci	PINCTRL_PIN(122, "GPIO_122"),
2098c2ecf20Sopenharmony_ci	PINCTRL_PIN(123, "GPIO_123"),
2108c2ecf20Sopenharmony_ci	PINCTRL_PIN(124, "GPIO_124"),
2118c2ecf20Sopenharmony_ci	PINCTRL_PIN(125, "GPIO_125"),
2128c2ecf20Sopenharmony_ci	PINCTRL_PIN(126, "GPIO_126"),
2138c2ecf20Sopenharmony_ci	PINCTRL_PIN(127, "GPIO_127"),
2148c2ecf20Sopenharmony_ci	PINCTRL_PIN(128, "GPIO_128"),
2158c2ecf20Sopenharmony_ci	PINCTRL_PIN(129, "GPIO_129"),
2168c2ecf20Sopenharmony_ci	PINCTRL_PIN(130, "GPIO_130"),
2178c2ecf20Sopenharmony_ci	PINCTRL_PIN(131, "GPIO_131"),
2188c2ecf20Sopenharmony_ci	PINCTRL_PIN(132, "GPIO_132"),
2198c2ecf20Sopenharmony_ci	PINCTRL_PIN(133, "GPIO_133"),
2208c2ecf20Sopenharmony_ci	PINCTRL_PIN(134, "GPIO_134"),
2218c2ecf20Sopenharmony_ci	PINCTRL_PIN(135, "GPIO_135"),
2228c2ecf20Sopenharmony_ci	PINCTRL_PIN(136, "GPIO_136"),
2238c2ecf20Sopenharmony_ci	PINCTRL_PIN(137, "GPIO_137"),
2248c2ecf20Sopenharmony_ci	PINCTRL_PIN(138, "GPIO_138"),
2258c2ecf20Sopenharmony_ci	PINCTRL_PIN(139, "GPIO_139"),
2268c2ecf20Sopenharmony_ci	PINCTRL_PIN(140, "GPIO_140"),
2278c2ecf20Sopenharmony_ci	PINCTRL_PIN(141, "GPIO_141"),
2288c2ecf20Sopenharmony_ci	PINCTRL_PIN(142, "GPIO_142"),
2298c2ecf20Sopenharmony_ci	PINCTRL_PIN(143, "GPIO_143"),
2308c2ecf20Sopenharmony_ci	PINCTRL_PIN(144, "GPIO_144"),
2318c2ecf20Sopenharmony_ci	PINCTRL_PIN(145, "GPIO_145"),
2328c2ecf20Sopenharmony_ci	PINCTRL_PIN(146, "GPIO_146"),
2338c2ecf20Sopenharmony_ci	PINCTRL_PIN(147, "GPIO_147"),
2348c2ecf20Sopenharmony_ci	PINCTRL_PIN(148, "GPIO_148"),
2358c2ecf20Sopenharmony_ci	PINCTRL_PIN(149, "GPIO_149"),
2368c2ecf20Sopenharmony_ci	PINCTRL_PIN(150, "SDC1_CLK"),
2378c2ecf20Sopenharmony_ci	PINCTRL_PIN(151, "SDC1_CMD"),
2388c2ecf20Sopenharmony_ci	PINCTRL_PIN(152, "SDC1_DATA"),
2398c2ecf20Sopenharmony_ci	PINCTRL_PIN(153, "SDC2_CLK"),
2408c2ecf20Sopenharmony_ci	PINCTRL_PIN(154, "SDC2_CMD"),
2418c2ecf20Sopenharmony_ci	PINCTRL_PIN(155, "SDC2_DATA"),
2428c2ecf20Sopenharmony_ci	PINCTRL_PIN(156, "SDC1_RCLK"),
2438c2ecf20Sopenharmony_ci};
2448c2ecf20Sopenharmony_ci
2458c2ecf20Sopenharmony_ci#define DECLARE_MSM_GPIO_PINS(pin) \
2468c2ecf20Sopenharmony_ci	static const unsigned int gpio##pin##_pins[] = { pin }
2478c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(0);
2488c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(1);
2498c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(2);
2508c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(3);
2518c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(4);
2528c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(5);
2538c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(6);
2548c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(7);
2558c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(8);
2568c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(9);
2578c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(10);
2588c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(11);
2598c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(12);
2608c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(13);
2618c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(14);
2628c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(15);
2638c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(16);
2648c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(17);
2658c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(18);
2668c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(19);
2678c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(20);
2688c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(21);
2698c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(22);
2708c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(23);
2718c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(24);
2728c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(25);
2738c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(26);
2748c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(27);
2758c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(28);
2768c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(29);
2778c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(30);
2788c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(31);
2798c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(32);
2808c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(33);
2818c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(34);
2828c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(35);
2838c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(36);
2848c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(37);
2858c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(38);
2868c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(39);
2878c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(40);
2888c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(41);
2898c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(42);
2908c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(43);
2918c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(44);
2928c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(45);
2938c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(46);
2948c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(47);
2958c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(48);
2968c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(49);
2978c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(50);
2988c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(51);
2998c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(52);
3008c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(53);
3018c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(54);
3028c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(55);
3038c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(56);
3048c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(57);
3058c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(58);
3068c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(59);
3078c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(60);
3088c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(61);
3098c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(62);
3108c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(63);
3118c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(64);
3128c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(65);
3138c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(66);
3148c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(67);
3158c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(68);
3168c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(69);
3178c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(70);
3188c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(71);
3198c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(72);
3208c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(73);
3218c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(74);
3228c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(75);
3238c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(76);
3248c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(77);
3258c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(78);
3268c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(79);
3278c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(80);
3288c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(81);
3298c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(82);
3308c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(83);
3318c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(84);
3328c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(85);
3338c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(86);
3348c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(87);
3358c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(88);
3368c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(89);
3378c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(90);
3388c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(91);
3398c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(92);
3408c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(93);
3418c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(94);
3428c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(95);
3438c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(96);
3448c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(97);
3458c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(98);
3468c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(99);
3478c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(100);
3488c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(101);
3498c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(102);
3508c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(103);
3518c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(104);
3528c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(105);
3538c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(106);
3548c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(107);
3558c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(108);
3568c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(109);
3578c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(110);
3588c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(111);
3598c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(112);
3608c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(113);
3618c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(114);
3628c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(115);
3638c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(116);
3648c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(117);
3658c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(118);
3668c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(119);
3678c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(120);
3688c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(121);
3698c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(122);
3708c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(123);
3718c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(124);
3728c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(125);
3738c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(126);
3748c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(127);
3758c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(128);
3768c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(129);
3778c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(130);
3788c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(131);
3798c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(132);
3808c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(133);
3818c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(134);
3828c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(135);
3838c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(136);
3848c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(137);
3858c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(138);
3868c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(139);
3878c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(140);
3888c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(141);
3898c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(142);
3908c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(143);
3918c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(144);
3928c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(145);
3938c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(146);
3948c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(147);
3958c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(148);
3968c2ecf20Sopenharmony_ciDECLARE_MSM_GPIO_PINS(149);
3978c2ecf20Sopenharmony_ci
3988c2ecf20Sopenharmony_cistatic const unsigned int sdc1_clk_pins[] = { 150 };
3998c2ecf20Sopenharmony_cistatic const unsigned int sdc1_cmd_pins[] = { 151 };
4008c2ecf20Sopenharmony_cistatic const unsigned int sdc1_data_pins[] = { 152 };
4018c2ecf20Sopenharmony_cistatic const unsigned int sdc2_clk_pins[] = { 153 };
4028c2ecf20Sopenharmony_cistatic const unsigned int sdc2_cmd_pins[] = { 154 };
4038c2ecf20Sopenharmony_cistatic const unsigned int sdc2_data_pins[] = { 155 };
4048c2ecf20Sopenharmony_cistatic const unsigned int sdc1_rclk_pins[] = { 156 };
4058c2ecf20Sopenharmony_ci
4068c2ecf20Sopenharmony_cienum msm8996_functions {
4078c2ecf20Sopenharmony_ci	msm_mux_adsp_ext,
4088c2ecf20Sopenharmony_ci	msm_mux_atest_bbrx0,
4098c2ecf20Sopenharmony_ci	msm_mux_atest_bbrx1,
4108c2ecf20Sopenharmony_ci	msm_mux_atest_char,
4118c2ecf20Sopenharmony_ci	msm_mux_atest_char0,
4128c2ecf20Sopenharmony_ci	msm_mux_atest_char1,
4138c2ecf20Sopenharmony_ci	msm_mux_atest_char2,
4148c2ecf20Sopenharmony_ci	msm_mux_atest_char3,
4158c2ecf20Sopenharmony_ci	msm_mux_atest_gpsadc0,
4168c2ecf20Sopenharmony_ci	msm_mux_atest_gpsadc1,
4178c2ecf20Sopenharmony_ci	msm_mux_atest_tsens,
4188c2ecf20Sopenharmony_ci	msm_mux_atest_tsens2,
4198c2ecf20Sopenharmony_ci	msm_mux_atest_usb1,
4208c2ecf20Sopenharmony_ci	msm_mux_atest_usb10,
4218c2ecf20Sopenharmony_ci	msm_mux_atest_usb11,
4228c2ecf20Sopenharmony_ci	msm_mux_atest_usb12,
4238c2ecf20Sopenharmony_ci	msm_mux_atest_usb13,
4248c2ecf20Sopenharmony_ci	msm_mux_atest_usb2,
4258c2ecf20Sopenharmony_ci	msm_mux_atest_usb20,
4268c2ecf20Sopenharmony_ci	msm_mux_atest_usb21,
4278c2ecf20Sopenharmony_ci	msm_mux_atest_usb22,
4288c2ecf20Sopenharmony_ci	msm_mux_atest_usb23,
4298c2ecf20Sopenharmony_ci	msm_mux_audio_ref,
4308c2ecf20Sopenharmony_ci	msm_mux_bimc_dte0,
4318c2ecf20Sopenharmony_ci	msm_mux_bimc_dte1,
4328c2ecf20Sopenharmony_ci	msm_mux_blsp10_spi,
4338c2ecf20Sopenharmony_ci	msm_mux_blsp11_i2c_scl_b,
4348c2ecf20Sopenharmony_ci	msm_mux_blsp11_i2c_sda_b,
4358c2ecf20Sopenharmony_ci	msm_mux_blsp11_uart_rx_b,
4368c2ecf20Sopenharmony_ci	msm_mux_blsp11_uart_tx_b,
4378c2ecf20Sopenharmony_ci	msm_mux_blsp1_spi,
4388c2ecf20Sopenharmony_ci	msm_mux_blsp2_spi,
4398c2ecf20Sopenharmony_ci	msm_mux_blsp_i2c1,
4408c2ecf20Sopenharmony_ci	msm_mux_blsp_i2c10,
4418c2ecf20Sopenharmony_ci	msm_mux_blsp_i2c11,
4428c2ecf20Sopenharmony_ci	msm_mux_blsp_i2c12,
4438c2ecf20Sopenharmony_ci	msm_mux_blsp_i2c2,
4448c2ecf20Sopenharmony_ci	msm_mux_blsp_i2c3,
4458c2ecf20Sopenharmony_ci	msm_mux_blsp_i2c4,
4468c2ecf20Sopenharmony_ci	msm_mux_blsp_i2c5,
4478c2ecf20Sopenharmony_ci	msm_mux_blsp_i2c6,
4488c2ecf20Sopenharmony_ci	msm_mux_blsp_i2c7,
4498c2ecf20Sopenharmony_ci	msm_mux_blsp_i2c8,
4508c2ecf20Sopenharmony_ci	msm_mux_blsp_i2c9,
4518c2ecf20Sopenharmony_ci	msm_mux_blsp_spi1,
4528c2ecf20Sopenharmony_ci	msm_mux_blsp_spi10,
4538c2ecf20Sopenharmony_ci	msm_mux_blsp_spi11,
4548c2ecf20Sopenharmony_ci	msm_mux_blsp_spi12,
4558c2ecf20Sopenharmony_ci	msm_mux_blsp_spi2,
4568c2ecf20Sopenharmony_ci	msm_mux_blsp_spi3,
4578c2ecf20Sopenharmony_ci	msm_mux_blsp_spi4,
4588c2ecf20Sopenharmony_ci	msm_mux_blsp_spi5,
4598c2ecf20Sopenharmony_ci	msm_mux_blsp_spi6,
4608c2ecf20Sopenharmony_ci	msm_mux_blsp_spi7,
4618c2ecf20Sopenharmony_ci	msm_mux_blsp_spi8,
4628c2ecf20Sopenharmony_ci	msm_mux_blsp_spi9,
4638c2ecf20Sopenharmony_ci	msm_mux_blsp_uart1,
4648c2ecf20Sopenharmony_ci	msm_mux_blsp_uart10,
4658c2ecf20Sopenharmony_ci	msm_mux_blsp_uart11,
4668c2ecf20Sopenharmony_ci	msm_mux_blsp_uart12,
4678c2ecf20Sopenharmony_ci	msm_mux_blsp_uart2,
4688c2ecf20Sopenharmony_ci	msm_mux_blsp_uart3,
4698c2ecf20Sopenharmony_ci	msm_mux_blsp_uart4,
4708c2ecf20Sopenharmony_ci	msm_mux_blsp_uart5,
4718c2ecf20Sopenharmony_ci	msm_mux_blsp_uart6,
4728c2ecf20Sopenharmony_ci	msm_mux_blsp_uart7,
4738c2ecf20Sopenharmony_ci	msm_mux_blsp_uart8,
4748c2ecf20Sopenharmony_ci	msm_mux_blsp_uart9,
4758c2ecf20Sopenharmony_ci	msm_mux_blsp_uim1,
4768c2ecf20Sopenharmony_ci	msm_mux_blsp_uim10,
4778c2ecf20Sopenharmony_ci	msm_mux_blsp_uim11,
4788c2ecf20Sopenharmony_ci	msm_mux_blsp_uim12,
4798c2ecf20Sopenharmony_ci	msm_mux_blsp_uim2,
4808c2ecf20Sopenharmony_ci	msm_mux_blsp_uim3,
4818c2ecf20Sopenharmony_ci	msm_mux_blsp_uim4,
4828c2ecf20Sopenharmony_ci	msm_mux_blsp_uim5,
4838c2ecf20Sopenharmony_ci	msm_mux_blsp_uim6,
4848c2ecf20Sopenharmony_ci	msm_mux_blsp_uim7,
4858c2ecf20Sopenharmony_ci	msm_mux_blsp_uim8,
4868c2ecf20Sopenharmony_ci	msm_mux_blsp_uim9,
4878c2ecf20Sopenharmony_ci	msm_mux_btfm_slimbus,
4888c2ecf20Sopenharmony_ci	msm_mux_cam_mclk,
4898c2ecf20Sopenharmony_ci	msm_mux_cci_async,
4908c2ecf20Sopenharmony_ci	msm_mux_cci_i2c,
4918c2ecf20Sopenharmony_ci	msm_mux_cci_timer0,
4928c2ecf20Sopenharmony_ci	msm_mux_cci_timer1,
4938c2ecf20Sopenharmony_ci	msm_mux_cci_timer2,
4948c2ecf20Sopenharmony_ci	msm_mux_cci_timer3,
4958c2ecf20Sopenharmony_ci	msm_mux_cci_timer4,
4968c2ecf20Sopenharmony_ci	msm_mux_cri_trng,
4978c2ecf20Sopenharmony_ci	msm_mux_cri_trng0,
4988c2ecf20Sopenharmony_ci	msm_mux_cri_trng1,
4998c2ecf20Sopenharmony_ci	msm_mux_dac_calib0,
5008c2ecf20Sopenharmony_ci	msm_mux_dac_calib1,
5018c2ecf20Sopenharmony_ci	msm_mux_dac_calib10,
5028c2ecf20Sopenharmony_ci	msm_mux_dac_calib11,
5038c2ecf20Sopenharmony_ci	msm_mux_dac_calib12,
5048c2ecf20Sopenharmony_ci	msm_mux_dac_calib13,
5058c2ecf20Sopenharmony_ci	msm_mux_dac_calib14,
5068c2ecf20Sopenharmony_ci	msm_mux_dac_calib15,
5078c2ecf20Sopenharmony_ci	msm_mux_dac_calib16,
5088c2ecf20Sopenharmony_ci	msm_mux_dac_calib17,
5098c2ecf20Sopenharmony_ci	msm_mux_dac_calib18,
5108c2ecf20Sopenharmony_ci	msm_mux_dac_calib19,
5118c2ecf20Sopenharmony_ci	msm_mux_dac_calib2,
5128c2ecf20Sopenharmony_ci	msm_mux_dac_calib20,
5138c2ecf20Sopenharmony_ci	msm_mux_dac_calib21,
5148c2ecf20Sopenharmony_ci	msm_mux_dac_calib22,
5158c2ecf20Sopenharmony_ci	msm_mux_dac_calib23,
5168c2ecf20Sopenharmony_ci	msm_mux_dac_calib24,
5178c2ecf20Sopenharmony_ci	msm_mux_dac_calib25,
5188c2ecf20Sopenharmony_ci	msm_mux_dac_calib26,
5198c2ecf20Sopenharmony_ci	msm_mux_dac_calib3,
5208c2ecf20Sopenharmony_ci	msm_mux_dac_calib4,
5218c2ecf20Sopenharmony_ci	msm_mux_dac_calib5,
5228c2ecf20Sopenharmony_ci	msm_mux_dac_calib6,
5238c2ecf20Sopenharmony_ci	msm_mux_dac_calib7,
5248c2ecf20Sopenharmony_ci	msm_mux_dac_calib8,
5258c2ecf20Sopenharmony_ci	msm_mux_dac_calib9,
5268c2ecf20Sopenharmony_ci	msm_mux_dac_gpio,
5278c2ecf20Sopenharmony_ci	msm_mux_dbg_out,
5288c2ecf20Sopenharmony_ci	msm_mux_ddr_bist,
5298c2ecf20Sopenharmony_ci	msm_mux_edp_hot,
5308c2ecf20Sopenharmony_ci	msm_mux_edp_lcd,
5318c2ecf20Sopenharmony_ci	msm_mux_gcc_gp1_clk_a,
5328c2ecf20Sopenharmony_ci	msm_mux_gcc_gp1_clk_b,
5338c2ecf20Sopenharmony_ci	msm_mux_gcc_gp2_clk_a,
5348c2ecf20Sopenharmony_ci	msm_mux_gcc_gp2_clk_b,
5358c2ecf20Sopenharmony_ci	msm_mux_gcc_gp3_clk_a,
5368c2ecf20Sopenharmony_ci	msm_mux_gcc_gp3_clk_b,
5378c2ecf20Sopenharmony_ci	msm_mux_gsm_tx,
5388c2ecf20Sopenharmony_ci	msm_mux_hdmi_cec,
5398c2ecf20Sopenharmony_ci	msm_mux_hdmi_ddc,
5408c2ecf20Sopenharmony_ci	msm_mux_hdmi_hot,
5418c2ecf20Sopenharmony_ci	msm_mux_hdmi_rcv,
5428c2ecf20Sopenharmony_ci	msm_mux_isense_dbg,
5438c2ecf20Sopenharmony_ci	msm_mux_ldo_en,
5448c2ecf20Sopenharmony_ci	msm_mux_ldo_update,
5458c2ecf20Sopenharmony_ci	msm_mux_lpass_slimbus,
5468c2ecf20Sopenharmony_ci	msm_mux_m_voc,
5478c2ecf20Sopenharmony_ci	msm_mux_mdp_vsync,
5488c2ecf20Sopenharmony_ci	msm_mux_mdp_vsync_p_b,
5498c2ecf20Sopenharmony_ci	msm_mux_mdp_vsync_s_b,
5508c2ecf20Sopenharmony_ci	msm_mux_modem_tsync,
5518c2ecf20Sopenharmony_ci	msm_mux_mss_lte,
5528c2ecf20Sopenharmony_ci	msm_mux_nav_dr,
5538c2ecf20Sopenharmony_ci	msm_mux_nav_pps,
5548c2ecf20Sopenharmony_ci	msm_mux_pa_indicator,
5558c2ecf20Sopenharmony_ci	msm_mux_pci_e0,
5568c2ecf20Sopenharmony_ci	msm_mux_pci_e1,
5578c2ecf20Sopenharmony_ci	msm_mux_pci_e2,
5588c2ecf20Sopenharmony_ci	msm_mux_pll_bypassnl,
5598c2ecf20Sopenharmony_ci	msm_mux_pll_reset,
5608c2ecf20Sopenharmony_ci	msm_mux_pri_mi2s,
5618c2ecf20Sopenharmony_ci	msm_mux_prng_rosc,
5628c2ecf20Sopenharmony_ci	msm_mux_pwr_crypto,
5638c2ecf20Sopenharmony_ci	msm_mux_pwr_modem,
5648c2ecf20Sopenharmony_ci	msm_mux_pwr_nav,
5658c2ecf20Sopenharmony_ci	msm_mux_qdss_cti,
5668c2ecf20Sopenharmony_ci	msm_mux_qdss_cti_trig_in_a,
5678c2ecf20Sopenharmony_ci	msm_mux_qdss_cti_trig_in_b,
5688c2ecf20Sopenharmony_ci	msm_mux_qdss_cti_trig_out_a,
5698c2ecf20Sopenharmony_ci	msm_mux_qdss_cti_trig_out_b,
5708c2ecf20Sopenharmony_ci	msm_mux_qdss_stm0,
5718c2ecf20Sopenharmony_ci	msm_mux_qdss_stm1,
5728c2ecf20Sopenharmony_ci	msm_mux_qdss_stm10,
5738c2ecf20Sopenharmony_ci	msm_mux_qdss_stm11,
5748c2ecf20Sopenharmony_ci	msm_mux_qdss_stm12,
5758c2ecf20Sopenharmony_ci	msm_mux_qdss_stm13,
5768c2ecf20Sopenharmony_ci	msm_mux_qdss_stm14,
5778c2ecf20Sopenharmony_ci	msm_mux_qdss_stm15,
5788c2ecf20Sopenharmony_ci	msm_mux_qdss_stm16,
5798c2ecf20Sopenharmony_ci	msm_mux_qdss_stm17,
5808c2ecf20Sopenharmony_ci	msm_mux_qdss_stm18,
5818c2ecf20Sopenharmony_ci	msm_mux_qdss_stm19,
5828c2ecf20Sopenharmony_ci	msm_mux_qdss_stm2,
5838c2ecf20Sopenharmony_ci	msm_mux_qdss_stm20,
5848c2ecf20Sopenharmony_ci	msm_mux_qdss_stm21,
5858c2ecf20Sopenharmony_ci	msm_mux_qdss_stm22,
5868c2ecf20Sopenharmony_ci	msm_mux_qdss_stm23,
5878c2ecf20Sopenharmony_ci	msm_mux_qdss_stm24,
5888c2ecf20Sopenharmony_ci	msm_mux_qdss_stm25,
5898c2ecf20Sopenharmony_ci	msm_mux_qdss_stm26,
5908c2ecf20Sopenharmony_ci	msm_mux_qdss_stm27,
5918c2ecf20Sopenharmony_ci	msm_mux_qdss_stm28,
5928c2ecf20Sopenharmony_ci	msm_mux_qdss_stm29,
5938c2ecf20Sopenharmony_ci	msm_mux_qdss_stm3,
5948c2ecf20Sopenharmony_ci	msm_mux_qdss_stm30,
5958c2ecf20Sopenharmony_ci	msm_mux_qdss_stm31,
5968c2ecf20Sopenharmony_ci	msm_mux_qdss_stm4,
5978c2ecf20Sopenharmony_ci	msm_mux_qdss_stm5,
5988c2ecf20Sopenharmony_ci	msm_mux_qdss_stm6,
5998c2ecf20Sopenharmony_ci	msm_mux_qdss_stm7,
6008c2ecf20Sopenharmony_ci	msm_mux_qdss_stm8,
6018c2ecf20Sopenharmony_ci	msm_mux_qdss_stm9,
6028c2ecf20Sopenharmony_ci	msm_mux_qdss_traceclk_a,
6038c2ecf20Sopenharmony_ci	msm_mux_qdss_traceclk_b,
6048c2ecf20Sopenharmony_ci	msm_mux_qdss_tracectl_a,
6058c2ecf20Sopenharmony_ci	msm_mux_qdss_tracectl_b,
6068c2ecf20Sopenharmony_ci	msm_mux_qdss_tracedata_11,
6078c2ecf20Sopenharmony_ci	msm_mux_qdss_tracedata_12,
6088c2ecf20Sopenharmony_ci	msm_mux_qdss_tracedata_a,
6098c2ecf20Sopenharmony_ci	msm_mux_qdss_tracedata_b,
6108c2ecf20Sopenharmony_ci	msm_mux_qspi0,
6118c2ecf20Sopenharmony_ci	msm_mux_qspi1,
6128c2ecf20Sopenharmony_ci	msm_mux_qspi2,
6138c2ecf20Sopenharmony_ci	msm_mux_qspi3,
6148c2ecf20Sopenharmony_ci	msm_mux_qspi_clk,
6158c2ecf20Sopenharmony_ci	msm_mux_qspi_cs,
6168c2ecf20Sopenharmony_ci	msm_mux_qua_mi2s,
6178c2ecf20Sopenharmony_ci	msm_mux_sd_card,
6188c2ecf20Sopenharmony_ci	msm_mux_sd_write,
6198c2ecf20Sopenharmony_ci	msm_mux_sdc40,
6208c2ecf20Sopenharmony_ci	msm_mux_sdc41,
6218c2ecf20Sopenharmony_ci	msm_mux_sdc42,
6228c2ecf20Sopenharmony_ci	msm_mux_sdc43,
6238c2ecf20Sopenharmony_ci	msm_mux_sdc4_clk,
6248c2ecf20Sopenharmony_ci	msm_mux_sdc4_cmd,
6258c2ecf20Sopenharmony_ci	msm_mux_sec_mi2s,
6268c2ecf20Sopenharmony_ci	msm_mux_spkr_i2s,
6278c2ecf20Sopenharmony_ci	msm_mux_ssbi1,
6288c2ecf20Sopenharmony_ci	msm_mux_ssbi2,
6298c2ecf20Sopenharmony_ci	msm_mux_ssc_irq,
6308c2ecf20Sopenharmony_ci	msm_mux_ter_mi2s,
6318c2ecf20Sopenharmony_ci	msm_mux_tsense_pwm1,
6328c2ecf20Sopenharmony_ci	msm_mux_tsense_pwm2,
6338c2ecf20Sopenharmony_ci	msm_mux_tsif1_clk,
6348c2ecf20Sopenharmony_ci	msm_mux_tsif1_data,
6358c2ecf20Sopenharmony_ci	msm_mux_tsif1_en,
6368c2ecf20Sopenharmony_ci	msm_mux_tsif1_error,
6378c2ecf20Sopenharmony_ci	msm_mux_tsif1_sync,
6388c2ecf20Sopenharmony_ci	msm_mux_tsif2_clk,
6398c2ecf20Sopenharmony_ci	msm_mux_tsif2_data,
6408c2ecf20Sopenharmony_ci	msm_mux_tsif2_en,
6418c2ecf20Sopenharmony_ci	msm_mux_tsif2_error,
6428c2ecf20Sopenharmony_ci	msm_mux_tsif2_sync,
6438c2ecf20Sopenharmony_ci	msm_mux_uim1,
6448c2ecf20Sopenharmony_ci	msm_mux_uim2,
6458c2ecf20Sopenharmony_ci	msm_mux_uim3,
6468c2ecf20Sopenharmony_ci	msm_mux_uim4,
6478c2ecf20Sopenharmony_ci	msm_mux_uim_batt,
6488c2ecf20Sopenharmony_ci	msm_mux_vfr_1,
6498c2ecf20Sopenharmony_ci	msm_mux_gpio,
6508c2ecf20Sopenharmony_ci	msm_mux_NA,
6518c2ecf20Sopenharmony_ci};
6528c2ecf20Sopenharmony_ci
6538c2ecf20Sopenharmony_cistatic const char * const gpio_groups[] = {
6548c2ecf20Sopenharmony_ci	"gpio0", "gpio1", "gpio2", "gpio3", "gpio4", "gpio5", "gpio6", "gpio7",
6558c2ecf20Sopenharmony_ci	"gpio8", "gpio9", "gpio10", "gpio11", "gpio12", "gpio13", "gpio14",
6568c2ecf20Sopenharmony_ci	"gpio15", "gpio16", "gpio17", "gpio18", "gpio19", "gpio20", "gpio21",
6578c2ecf20Sopenharmony_ci	"gpio22", "gpio23", "gpio24", "gpio25", "gpio26", "gpio27", "gpio28",
6588c2ecf20Sopenharmony_ci	"gpio29", "gpio30", "gpio31", "gpio32", "gpio33", "gpio34", "gpio35",
6598c2ecf20Sopenharmony_ci	"gpio36", "gpio37", "gpio38", "gpio39", "gpio40", "gpio41", "gpio42",
6608c2ecf20Sopenharmony_ci	"gpio43", "gpio44", "gpio45", "gpio46", "gpio47", "gpio48", "gpio49",
6618c2ecf20Sopenharmony_ci	"gpio50", "gpio51", "gpio52", "gpio53", "gpio54", "gpio55", "gpio56",
6628c2ecf20Sopenharmony_ci	"gpio57", "gpio58", "gpio59", "gpio60", "gpio61", "gpio62", "gpio63",
6638c2ecf20Sopenharmony_ci	"gpio64", "gpio65", "gpio66", "gpio67", "gpio68", "gpio69", "gpio70",
6648c2ecf20Sopenharmony_ci	"gpio71", "gpio72", "gpio73", "gpio74", "gpio75", "gpio76", "gpio77",
6658c2ecf20Sopenharmony_ci	"gpio78", "gpio79", "gpio80", "gpio81", "gpio82", "gpio83", "gpio84",
6668c2ecf20Sopenharmony_ci	"gpio85", "gpio86", "gpio87", "gpio88", "gpio89", "gpio90", "gpio91",
6678c2ecf20Sopenharmony_ci	"gpio92", "gpio93", "gpio94", "gpio95", "gpio96", "gpio97", "gpio98",
6688c2ecf20Sopenharmony_ci	"gpio99", "gpio100", "gpio101", "gpio102", "gpio103", "gpio104",
6698c2ecf20Sopenharmony_ci	"gpio105", "gpio106", "gpio107", "gpio108", "gpio109", "gpio110",
6708c2ecf20Sopenharmony_ci	"gpio111", "gpio112", "gpio113", "gpio114", "gpio115", "gpio116",
6718c2ecf20Sopenharmony_ci	"gpio117", "gpio118", "gpio119", "gpio120", "gpio121", "gpio122",
6728c2ecf20Sopenharmony_ci	"gpio123", "gpio124", "gpio125", "gpio126", "gpio127", "gpio128",
6738c2ecf20Sopenharmony_ci	"gpio129", "gpio130", "gpio131", "gpio132", "gpio133", "gpio134",
6748c2ecf20Sopenharmony_ci	"gpio135", "gpio136", "gpio137", "gpio138", "gpio139", "gpio140",
6758c2ecf20Sopenharmony_ci	"gpio141", "gpio142", "gpio143", "gpio144", "gpio145", "gpio146",
6768c2ecf20Sopenharmony_ci	"gpio147", "gpio148", "gpio149"
6778c2ecf20Sopenharmony_ci};
6788c2ecf20Sopenharmony_ci
6798c2ecf20Sopenharmony_ci
6808c2ecf20Sopenharmony_cistatic const char * const blsp_uart1_groups[] = {
6818c2ecf20Sopenharmony_ci	"gpio0", "gpio1", "gpio2", "gpio3",
6828c2ecf20Sopenharmony_ci};
6838c2ecf20Sopenharmony_cistatic const char * const blsp_spi1_groups[] = {
6848c2ecf20Sopenharmony_ci	"gpio0", "gpio1", "gpio2", "gpio3",
6858c2ecf20Sopenharmony_ci};
6868c2ecf20Sopenharmony_cistatic const char * const blsp_i2c1_groups[] = {
6878c2ecf20Sopenharmony_ci	"gpio2", "gpio3",
6888c2ecf20Sopenharmony_ci};
6898c2ecf20Sopenharmony_cistatic const char * const blsp_uim1_groups[] = {
6908c2ecf20Sopenharmony_ci	"gpio0", "gpio1",
6918c2ecf20Sopenharmony_ci};
6928c2ecf20Sopenharmony_cistatic const char * const atest_tsens_groups[] = {
6938c2ecf20Sopenharmony_ci	"gpio3",
6948c2ecf20Sopenharmony_ci};
6958c2ecf20Sopenharmony_cistatic const char * const bimc_dte1_groups[] = {
6968c2ecf20Sopenharmony_ci	"gpio3", "gpio5",
6978c2ecf20Sopenharmony_ci};
6988c2ecf20Sopenharmony_cistatic const char * const blsp_spi8_groups[] = {
6998c2ecf20Sopenharmony_ci	"gpio4", "gpio5", "gpio6", "gpio7",
7008c2ecf20Sopenharmony_ci};
7018c2ecf20Sopenharmony_cistatic const char * const blsp_uart8_groups[] = {
7028c2ecf20Sopenharmony_ci	"gpio4", "gpio5", "gpio6", "gpio7",
7038c2ecf20Sopenharmony_ci};
7048c2ecf20Sopenharmony_cistatic const char * const blsp_uim8_groups[] = {
7058c2ecf20Sopenharmony_ci	"gpio4", "gpio5",
7068c2ecf20Sopenharmony_ci};
7078c2ecf20Sopenharmony_cistatic const char * const qdss_cti_trig_out_b_groups[] = {
7088c2ecf20Sopenharmony_ci	"gpio4",
7098c2ecf20Sopenharmony_ci};
7108c2ecf20Sopenharmony_cistatic const char * const dac_calib0_groups[] = {
7118c2ecf20Sopenharmony_ci	"gpio4", "gpio41",
7128c2ecf20Sopenharmony_ci};
7138c2ecf20Sopenharmony_cistatic const char * const bimc_dte0_groups[] = {
7148c2ecf20Sopenharmony_ci	"gpio4", "gpio6",
7158c2ecf20Sopenharmony_ci};
7168c2ecf20Sopenharmony_cistatic const char * const qdss_cti_trig_in_b_groups[] = {
7178c2ecf20Sopenharmony_ci	"gpio5",
7188c2ecf20Sopenharmony_ci};
7198c2ecf20Sopenharmony_cistatic const char * const dac_calib1_groups[] = {
7208c2ecf20Sopenharmony_ci	"gpio5", "gpio42",
7218c2ecf20Sopenharmony_ci};
7228c2ecf20Sopenharmony_cistatic const char * const dac_calib2_groups[] = {
7238c2ecf20Sopenharmony_ci	"gpio6", "gpio43",
7248c2ecf20Sopenharmony_ci};
7258c2ecf20Sopenharmony_cistatic const char * const atest_tsens2_groups[] = {
7268c2ecf20Sopenharmony_ci	"gpio7",
7278c2ecf20Sopenharmony_ci};
7288c2ecf20Sopenharmony_cistatic const char * const blsp_spi10_groups[] = {
7298c2ecf20Sopenharmony_ci	"gpio8", "gpio9", "gpio10", "gpio11",
7308c2ecf20Sopenharmony_ci};
7318c2ecf20Sopenharmony_cistatic const char * const blsp_uart10_groups[] = {
7328c2ecf20Sopenharmony_ci	"gpio8", "gpio9", "gpio10", "gpio11",
7338c2ecf20Sopenharmony_ci};
7348c2ecf20Sopenharmony_cistatic const char * const blsp_uim10_groups[] = {
7358c2ecf20Sopenharmony_ci	"gpio8", "gpio9",
7368c2ecf20Sopenharmony_ci};
7378c2ecf20Sopenharmony_cistatic const char * const atest_bbrx1_groups[] = {
7388c2ecf20Sopenharmony_ci	"gpio8",
7398c2ecf20Sopenharmony_ci};
7408c2ecf20Sopenharmony_cistatic const char * const atest_usb12_groups[] = {
7418c2ecf20Sopenharmony_ci	"gpio9",
7428c2ecf20Sopenharmony_ci};
7438c2ecf20Sopenharmony_cistatic const char * const mdp_vsync_groups[] = {
7448c2ecf20Sopenharmony_ci	"gpio10", "gpio11", "gpio12",
7458c2ecf20Sopenharmony_ci};
7468c2ecf20Sopenharmony_cistatic const char * const edp_lcd_groups[] = {
7478c2ecf20Sopenharmony_ci	"gpio10",
7488c2ecf20Sopenharmony_ci};
7498c2ecf20Sopenharmony_cistatic const char * const blsp_i2c10_groups[] = {
7508c2ecf20Sopenharmony_ci	"gpio10", "gpio11",
7518c2ecf20Sopenharmony_ci};
7528c2ecf20Sopenharmony_cistatic const char * const atest_usb11_groups[] = {
7538c2ecf20Sopenharmony_ci	"gpio10",
7548c2ecf20Sopenharmony_ci};
7558c2ecf20Sopenharmony_cistatic const char * const atest_gpsadc0_groups[] = {
7568c2ecf20Sopenharmony_ci	"gpio11",
7578c2ecf20Sopenharmony_ci};
7588c2ecf20Sopenharmony_cistatic const char * const edp_hot_groups[] = {
7598c2ecf20Sopenharmony_ci	"gpio11",
7608c2ecf20Sopenharmony_ci};
7618c2ecf20Sopenharmony_cistatic const char * const atest_usb10_groups[] = {
7628c2ecf20Sopenharmony_ci	"gpio11",
7638c2ecf20Sopenharmony_ci};
7648c2ecf20Sopenharmony_cistatic const char * const m_voc_groups[] = {
7658c2ecf20Sopenharmony_ci	"gpio12",
7668c2ecf20Sopenharmony_ci};
7678c2ecf20Sopenharmony_cistatic const char * const dac_gpio_groups[] = {
7688c2ecf20Sopenharmony_ci	"gpio12",
7698c2ecf20Sopenharmony_ci};
7708c2ecf20Sopenharmony_cistatic const char * const atest_char_groups[] = {
7718c2ecf20Sopenharmony_ci	"gpio12",
7728c2ecf20Sopenharmony_ci};
7738c2ecf20Sopenharmony_cistatic const char * const cam_mclk_groups[] = {
7748c2ecf20Sopenharmony_ci	"gpio13", "gpio14", "gpio15", "gpio16",
7758c2ecf20Sopenharmony_ci};
7768c2ecf20Sopenharmony_cistatic const char * const pll_bypassnl_groups[] = {
7778c2ecf20Sopenharmony_ci	"gpio13",
7788c2ecf20Sopenharmony_ci};
7798c2ecf20Sopenharmony_cistatic const char * const qdss_stm7_groups[] = {
7808c2ecf20Sopenharmony_ci	"gpio13",
7818c2ecf20Sopenharmony_ci};
7828c2ecf20Sopenharmony_cistatic const char * const blsp_i2c8_groups[] = {
7838c2ecf20Sopenharmony_ci	"gpio6", "gpio7",
7848c2ecf20Sopenharmony_ci};
7858c2ecf20Sopenharmony_cistatic const char * const atest_usb1_groups[] = {
7868c2ecf20Sopenharmony_ci	"gpio7",
7878c2ecf20Sopenharmony_ci};
7888c2ecf20Sopenharmony_cistatic const char * const atest_usb13_groups[] = {
7898c2ecf20Sopenharmony_ci	"gpio8",
7908c2ecf20Sopenharmony_ci};
7918c2ecf20Sopenharmony_cistatic const char * const atest_bbrx0_groups[] = {
7928c2ecf20Sopenharmony_ci	"gpio9",
7938c2ecf20Sopenharmony_ci};
7948c2ecf20Sopenharmony_cistatic const char * const atest_gpsadc1_groups[] = {
7958c2ecf20Sopenharmony_ci	"gpio10",
7968c2ecf20Sopenharmony_ci};
7978c2ecf20Sopenharmony_cistatic const char * const qdss_tracedata_b_groups[] = {
7988c2ecf20Sopenharmony_ci	"gpio13", "gpio14", "gpio15", "gpio16", "gpio17", "gpio18", "gpio19",
7998c2ecf20Sopenharmony_ci	"gpio21", "gpio22", "gpio23", "gpio26", "gpio29", "gpio57", "gpio58",
8008c2ecf20Sopenharmony_ci	"gpio92", "gpio93",
8018c2ecf20Sopenharmony_ci};
8028c2ecf20Sopenharmony_cistatic const char * const pll_reset_groups[] = {
8038c2ecf20Sopenharmony_ci	"gpio14",
8048c2ecf20Sopenharmony_ci};
8058c2ecf20Sopenharmony_cistatic const char * const qdss_stm6_groups[] = {
8068c2ecf20Sopenharmony_ci	"gpio14",
8078c2ecf20Sopenharmony_ci};
8088c2ecf20Sopenharmony_cistatic const char * const qdss_stm5_groups[] = {
8098c2ecf20Sopenharmony_ci	"gpio15",
8108c2ecf20Sopenharmony_ci};
8118c2ecf20Sopenharmony_cistatic const char * const qdss_stm4_groups[] = {
8128c2ecf20Sopenharmony_ci	"gpio16",
8138c2ecf20Sopenharmony_ci};
8148c2ecf20Sopenharmony_cistatic const char * const atest_usb2_groups[] = {
8158c2ecf20Sopenharmony_ci	"gpio16",
8168c2ecf20Sopenharmony_ci};
8178c2ecf20Sopenharmony_cistatic const char * const dac_calib3_groups[] = {
8188c2ecf20Sopenharmony_ci	"gpio17", "gpio44",
8198c2ecf20Sopenharmony_ci};
8208c2ecf20Sopenharmony_cistatic const char * const cci_i2c_groups[] = {
8218c2ecf20Sopenharmony_ci	"gpio17", "gpio18", "gpio19", "gpio20",
8228c2ecf20Sopenharmony_ci};
8238c2ecf20Sopenharmony_cistatic const char * const qdss_stm3_groups[] = {
8248c2ecf20Sopenharmony_ci	"gpio17",
8258c2ecf20Sopenharmony_ci};
8268c2ecf20Sopenharmony_cistatic const char * const atest_usb23_groups[] = {
8278c2ecf20Sopenharmony_ci	"gpio17",
8288c2ecf20Sopenharmony_ci};
8298c2ecf20Sopenharmony_cistatic const char * const atest_char3_groups[] = {
8308c2ecf20Sopenharmony_ci	"gpio17",
8318c2ecf20Sopenharmony_ci};
8328c2ecf20Sopenharmony_cistatic const char * const dac_calib4_groups[] = {
8338c2ecf20Sopenharmony_ci	"gpio18", "gpio45",
8348c2ecf20Sopenharmony_ci};
8358c2ecf20Sopenharmony_cistatic const char * const qdss_stm2_groups[] = {
8368c2ecf20Sopenharmony_ci	"gpio18",
8378c2ecf20Sopenharmony_ci};
8388c2ecf20Sopenharmony_cistatic const char * const atest_usb22_groups[] = {
8398c2ecf20Sopenharmony_ci	"gpio18",
8408c2ecf20Sopenharmony_ci};
8418c2ecf20Sopenharmony_cistatic const char * const atest_char2_groups[] = {
8428c2ecf20Sopenharmony_ci	"gpio18",
8438c2ecf20Sopenharmony_ci};
8448c2ecf20Sopenharmony_cistatic const char * const dac_calib5_groups[] = {
8458c2ecf20Sopenharmony_ci	"gpio19", "gpio46",
8468c2ecf20Sopenharmony_ci};
8478c2ecf20Sopenharmony_cistatic const char * const qdss_stm1_groups[] = {
8488c2ecf20Sopenharmony_ci	"gpio19",
8498c2ecf20Sopenharmony_ci};
8508c2ecf20Sopenharmony_cistatic const char * const atest_usb21_groups[] = {
8518c2ecf20Sopenharmony_ci	"gpio19",
8528c2ecf20Sopenharmony_ci};
8538c2ecf20Sopenharmony_cistatic const char * const atest_char1_groups[] = {
8548c2ecf20Sopenharmony_ci	"gpio19",
8558c2ecf20Sopenharmony_ci};
8568c2ecf20Sopenharmony_cistatic const char * const dac_calib6_groups[] = {
8578c2ecf20Sopenharmony_ci	"gpio20", "gpio47",
8588c2ecf20Sopenharmony_ci};
8598c2ecf20Sopenharmony_cistatic const char * const dbg_out_groups[] = {
8608c2ecf20Sopenharmony_ci	"gpio20",
8618c2ecf20Sopenharmony_ci};
8628c2ecf20Sopenharmony_cistatic const char * const qdss_stm0_groups[] = {
8638c2ecf20Sopenharmony_ci	"gpio20",
8648c2ecf20Sopenharmony_ci};
8658c2ecf20Sopenharmony_cistatic const char * const atest_usb20_groups[] = {
8668c2ecf20Sopenharmony_ci	"gpio20",
8678c2ecf20Sopenharmony_ci};
8688c2ecf20Sopenharmony_cistatic const char * const atest_char0_groups[] = {
8698c2ecf20Sopenharmony_ci	"gpio20",
8708c2ecf20Sopenharmony_ci};
8718c2ecf20Sopenharmony_cistatic const char * const dac_calib7_groups[] = {
8728c2ecf20Sopenharmony_ci	"gpio21", "gpio48",
8738c2ecf20Sopenharmony_ci};
8748c2ecf20Sopenharmony_cistatic const char * const cci_timer0_groups[] = {
8758c2ecf20Sopenharmony_ci	"gpio21",
8768c2ecf20Sopenharmony_ci};
8778c2ecf20Sopenharmony_cistatic const char * const qdss_stm13_groups[] = {
8788c2ecf20Sopenharmony_ci	"gpio21",
8798c2ecf20Sopenharmony_ci};
8808c2ecf20Sopenharmony_cistatic const char * const dac_calib8_groups[] = {
8818c2ecf20Sopenharmony_ci	"gpio22", "gpio49",
8828c2ecf20Sopenharmony_ci};
8838c2ecf20Sopenharmony_cistatic const char * const cci_timer1_groups[] = {
8848c2ecf20Sopenharmony_ci	"gpio22",
8858c2ecf20Sopenharmony_ci};
8868c2ecf20Sopenharmony_cistatic const char * const qdss_stm12_groups[] = {
8878c2ecf20Sopenharmony_ci	"gpio22",
8888c2ecf20Sopenharmony_ci};
8898c2ecf20Sopenharmony_cistatic const char * const dac_calib9_groups[] = {
8908c2ecf20Sopenharmony_ci	"gpio23", "gpio50",
8918c2ecf20Sopenharmony_ci};
8928c2ecf20Sopenharmony_cistatic const char * const cci_timer2_groups[] = {
8938c2ecf20Sopenharmony_ci	"gpio23",
8948c2ecf20Sopenharmony_ci};
8958c2ecf20Sopenharmony_cistatic const char * const qdss_stm11_groups[] = {
8968c2ecf20Sopenharmony_ci	"gpio23",
8978c2ecf20Sopenharmony_ci};
8988c2ecf20Sopenharmony_cistatic const char * const dac_calib10_groups[] = {
8998c2ecf20Sopenharmony_ci	"gpio24", "gpio51",
9008c2ecf20Sopenharmony_ci};
9018c2ecf20Sopenharmony_cistatic const char * const cci_timer3_groups[] = {
9028c2ecf20Sopenharmony_ci	"gpio24",
9038c2ecf20Sopenharmony_ci};
9048c2ecf20Sopenharmony_cistatic const char * const cci_async_groups[] = {
9058c2ecf20Sopenharmony_ci	"gpio24", "gpio25", "gpio26",
9068c2ecf20Sopenharmony_ci};
9078c2ecf20Sopenharmony_cistatic const char * const blsp1_spi_groups[] = {
9088c2ecf20Sopenharmony_ci	"gpio24", "gpio27", "gpio28", "gpio90",
9098c2ecf20Sopenharmony_ci};
9108c2ecf20Sopenharmony_cistatic const char * const qdss_stm10_groups[] = {
9118c2ecf20Sopenharmony_ci	"gpio24",
9128c2ecf20Sopenharmony_ci};
9138c2ecf20Sopenharmony_cistatic const char * const qdss_cti_trig_in_a_groups[] = {
9148c2ecf20Sopenharmony_ci	"gpio24",
9158c2ecf20Sopenharmony_ci};
9168c2ecf20Sopenharmony_cistatic const char * const dac_calib11_groups[] = {
9178c2ecf20Sopenharmony_ci	"gpio25", "gpio52",
9188c2ecf20Sopenharmony_ci};
9198c2ecf20Sopenharmony_cistatic const char * const cci_timer4_groups[] = {
9208c2ecf20Sopenharmony_ci	"gpio25",
9218c2ecf20Sopenharmony_ci};
9228c2ecf20Sopenharmony_cistatic const char * const blsp_spi6_groups[] = {
9238c2ecf20Sopenharmony_ci	"gpio25", "gpio26", "gpio27", "gpio28",
9248c2ecf20Sopenharmony_ci};
9258c2ecf20Sopenharmony_cistatic const char * const blsp_uart6_groups[] = {
9268c2ecf20Sopenharmony_ci	"gpio25", "gpio26", "gpio27", "gpio28",
9278c2ecf20Sopenharmony_ci};
9288c2ecf20Sopenharmony_cistatic const char * const blsp_uim6_groups[] = {
9298c2ecf20Sopenharmony_ci	"gpio25", "gpio26",
9308c2ecf20Sopenharmony_ci};
9318c2ecf20Sopenharmony_cistatic const char * const blsp2_spi_groups[] = {
9328c2ecf20Sopenharmony_ci	"gpio25", "gpio29", "gpio30",
9338c2ecf20Sopenharmony_ci};
9348c2ecf20Sopenharmony_cistatic const char * const qdss_stm9_groups[] = {
9358c2ecf20Sopenharmony_ci	"gpio25",
9368c2ecf20Sopenharmony_ci};
9378c2ecf20Sopenharmony_cistatic const char * const qdss_cti_trig_out_a_groups[] = {
9388c2ecf20Sopenharmony_ci	"gpio25",
9398c2ecf20Sopenharmony_ci};
9408c2ecf20Sopenharmony_cistatic const char * const dac_calib12_groups[] = {
9418c2ecf20Sopenharmony_ci	"gpio26", "gpio53",
9428c2ecf20Sopenharmony_ci};
9438c2ecf20Sopenharmony_cistatic const char * const qdss_stm8_groups[] = {
9448c2ecf20Sopenharmony_ci	"gpio26",
9458c2ecf20Sopenharmony_ci};
9468c2ecf20Sopenharmony_cistatic const char * const dac_calib13_groups[] = {
9478c2ecf20Sopenharmony_ci	"gpio27", "gpio54",
9488c2ecf20Sopenharmony_ci};
9498c2ecf20Sopenharmony_cistatic const char * const blsp_i2c6_groups[] = {
9508c2ecf20Sopenharmony_ci	"gpio27", "gpio28",
9518c2ecf20Sopenharmony_ci};
9528c2ecf20Sopenharmony_cistatic const char * const qdss_tracectl_a_groups[] = {
9538c2ecf20Sopenharmony_ci	"gpio27",
9548c2ecf20Sopenharmony_ci};
9558c2ecf20Sopenharmony_cistatic const char * const dac_calib14_groups[] = {
9568c2ecf20Sopenharmony_ci	"gpio28", "gpio55",
9578c2ecf20Sopenharmony_ci};
9588c2ecf20Sopenharmony_cistatic const char * const qdss_traceclk_a_groups[] = {
9598c2ecf20Sopenharmony_ci	"gpio28",
9608c2ecf20Sopenharmony_ci};
9618c2ecf20Sopenharmony_cistatic const char * const dac_calib15_groups[] = {
9628c2ecf20Sopenharmony_ci	"gpio29", "gpio56",
9638c2ecf20Sopenharmony_ci};
9648c2ecf20Sopenharmony_cistatic const char * const dac_calib16_groups[] = {
9658c2ecf20Sopenharmony_ci	"gpio30", "gpio57",
9668c2ecf20Sopenharmony_ci};
9678c2ecf20Sopenharmony_cistatic const char * const hdmi_rcv_groups[] = {
9688c2ecf20Sopenharmony_ci	"gpio30",
9698c2ecf20Sopenharmony_ci};
9708c2ecf20Sopenharmony_cistatic const char * const dac_calib17_groups[] = {
9718c2ecf20Sopenharmony_ci	"gpio31", "gpio58",
9728c2ecf20Sopenharmony_ci};
9738c2ecf20Sopenharmony_cistatic const char * const pwr_modem_groups[] = {
9748c2ecf20Sopenharmony_ci	"gpio31",
9758c2ecf20Sopenharmony_ci};
9768c2ecf20Sopenharmony_cistatic const char * const hdmi_cec_groups[] = {
9778c2ecf20Sopenharmony_ci	"gpio31",
9788c2ecf20Sopenharmony_ci};
9798c2ecf20Sopenharmony_cistatic const char * const pwr_nav_groups[] = {
9808c2ecf20Sopenharmony_ci	"gpio32",
9818c2ecf20Sopenharmony_ci};
9828c2ecf20Sopenharmony_cistatic const char * const dac_calib18_groups[] = {
9838c2ecf20Sopenharmony_ci	"gpio32", "gpio59",
9848c2ecf20Sopenharmony_ci};
9858c2ecf20Sopenharmony_cistatic const char * const hdmi_ddc_groups[] = {
9868c2ecf20Sopenharmony_ci	"gpio32", "gpio33",
9878c2ecf20Sopenharmony_ci};
9888c2ecf20Sopenharmony_cistatic const char * const pwr_crypto_groups[] = {
9898c2ecf20Sopenharmony_ci	"gpio33",
9908c2ecf20Sopenharmony_ci};
9918c2ecf20Sopenharmony_cistatic const char * const dac_calib19_groups[] = {
9928c2ecf20Sopenharmony_ci	"gpio33", "gpio60",
9938c2ecf20Sopenharmony_ci};
9948c2ecf20Sopenharmony_cistatic const char * const dac_calib20_groups[] = {
9958c2ecf20Sopenharmony_ci	"gpio34", "gpio61",
9968c2ecf20Sopenharmony_ci};
9978c2ecf20Sopenharmony_cistatic const char * const hdmi_hot_groups[] = {
9988c2ecf20Sopenharmony_ci	"gpio34",
9998c2ecf20Sopenharmony_ci};
10008c2ecf20Sopenharmony_cistatic const char * const dac_calib21_groups[] = {
10018c2ecf20Sopenharmony_ci	"gpio35", "gpio62",
10028c2ecf20Sopenharmony_ci};
10038c2ecf20Sopenharmony_cistatic const char * const pci_e0_groups[] = {
10048c2ecf20Sopenharmony_ci	"gpio35", "gpio36",
10058c2ecf20Sopenharmony_ci};
10068c2ecf20Sopenharmony_cistatic const char * const dac_calib22_groups[] = {
10078c2ecf20Sopenharmony_ci	"gpio36", "gpio63",
10088c2ecf20Sopenharmony_ci};
10098c2ecf20Sopenharmony_cistatic const char * const dac_calib23_groups[] = {
10108c2ecf20Sopenharmony_ci	"gpio37", "gpio64",
10118c2ecf20Sopenharmony_ci};
10128c2ecf20Sopenharmony_cistatic const char * const blsp_i2c2_groups[] = {
10138c2ecf20Sopenharmony_ci	"gpio43", "gpio44",
10148c2ecf20Sopenharmony_ci};
10158c2ecf20Sopenharmony_cistatic const char * const blsp_spi3_groups[] = {
10168c2ecf20Sopenharmony_ci	"gpio45", "gpio46", "gpio47", "gpio48",
10178c2ecf20Sopenharmony_ci};
10188c2ecf20Sopenharmony_cistatic const char * const blsp_uart3_groups[] = {
10198c2ecf20Sopenharmony_ci	"gpio45", "gpio46", "gpio47", "gpio48",
10208c2ecf20Sopenharmony_ci};
10218c2ecf20Sopenharmony_cistatic const char * const blsp_uim3_groups[] = {
10228c2ecf20Sopenharmony_ci	"gpio45", "gpio46",
10238c2ecf20Sopenharmony_ci};
10248c2ecf20Sopenharmony_cistatic const char * const blsp_i2c3_groups[] = {
10258c2ecf20Sopenharmony_ci	"gpio47", "gpio48",
10268c2ecf20Sopenharmony_ci};
10278c2ecf20Sopenharmony_cistatic const char * const dac_calib24_groups[] = {
10288c2ecf20Sopenharmony_ci	"gpio38", "gpio65",
10298c2ecf20Sopenharmony_ci};
10308c2ecf20Sopenharmony_cistatic const char * const dac_calib25_groups[] = {
10318c2ecf20Sopenharmony_ci	"gpio39", "gpio66",
10328c2ecf20Sopenharmony_ci};
10338c2ecf20Sopenharmony_cistatic const char * const tsif1_sync_groups[] = {
10348c2ecf20Sopenharmony_ci	"gpio39",
10358c2ecf20Sopenharmony_ci};
10368c2ecf20Sopenharmony_cistatic const char * const sd_write_groups[] = {
10378c2ecf20Sopenharmony_ci	"gpio40",
10388c2ecf20Sopenharmony_ci};
10398c2ecf20Sopenharmony_cistatic const char * const tsif1_error_groups[] = {
10408c2ecf20Sopenharmony_ci	"gpio40",
10418c2ecf20Sopenharmony_ci};
10428c2ecf20Sopenharmony_cistatic const char * const blsp_spi2_groups[] = {
10438c2ecf20Sopenharmony_ci	"gpio41", "gpio42", "gpio43", "gpio44",
10448c2ecf20Sopenharmony_ci};
10458c2ecf20Sopenharmony_cistatic const char * const blsp_uart2_groups[] = {
10468c2ecf20Sopenharmony_ci	"gpio41", "gpio42", "gpio43", "gpio44",
10478c2ecf20Sopenharmony_ci};
10488c2ecf20Sopenharmony_cistatic const char * const blsp_uim2_groups[] = {
10498c2ecf20Sopenharmony_ci	"gpio41", "gpio42",
10508c2ecf20Sopenharmony_ci};
10518c2ecf20Sopenharmony_cistatic const char * const qdss_cti_groups[] = {
10528c2ecf20Sopenharmony_ci	"gpio41", "gpio42", "gpio100", "gpio101",
10538c2ecf20Sopenharmony_ci};
10548c2ecf20Sopenharmony_cistatic const char * const uim3_groups[] = {
10558c2ecf20Sopenharmony_ci	"gpio49", "gpio50", "gpio51", "gpio52",
10568c2ecf20Sopenharmony_ci};
10578c2ecf20Sopenharmony_cistatic const char * const blsp_spi9_groups[] = {
10588c2ecf20Sopenharmony_ci	"gpio49", "gpio50", "gpio51", "gpio52",
10598c2ecf20Sopenharmony_ci};
10608c2ecf20Sopenharmony_cistatic const char * const blsp_uart9_groups[] = {
10618c2ecf20Sopenharmony_ci	"gpio49", "gpio50", "gpio51", "gpio52",
10628c2ecf20Sopenharmony_ci};
10638c2ecf20Sopenharmony_cistatic const char * const blsp_uim9_groups[] = {
10648c2ecf20Sopenharmony_ci	"gpio49", "gpio50",
10658c2ecf20Sopenharmony_ci};
10668c2ecf20Sopenharmony_cistatic const char * const blsp10_spi_groups[] = {
10678c2ecf20Sopenharmony_ci	"gpio49", "gpio50", "gpio51", "gpio52", "gpio88",
10688c2ecf20Sopenharmony_ci};
10698c2ecf20Sopenharmony_cistatic const char * const blsp_i2c9_groups[] = {
10708c2ecf20Sopenharmony_ci	"gpio51", "gpio52",
10718c2ecf20Sopenharmony_ci};
10728c2ecf20Sopenharmony_cistatic const char * const blsp_spi7_groups[] = {
10738c2ecf20Sopenharmony_ci	"gpio53", "gpio54", "gpio55", "gpio56",
10748c2ecf20Sopenharmony_ci};
10758c2ecf20Sopenharmony_cistatic const char * const blsp_uart7_groups[] = {
10768c2ecf20Sopenharmony_ci	"gpio53", "gpio54", "gpio55", "gpio56",
10778c2ecf20Sopenharmony_ci};
10788c2ecf20Sopenharmony_cistatic const char * const blsp_uim7_groups[] = {
10798c2ecf20Sopenharmony_ci	"gpio53", "gpio54",
10808c2ecf20Sopenharmony_ci};
10818c2ecf20Sopenharmony_cistatic const char * const qdss_tracedata_a_groups[] = {
10828c2ecf20Sopenharmony_ci	"gpio53", "gpio54", "gpio63", "gpio64", "gpio65", "gpio66", "gpio67",
10838c2ecf20Sopenharmony_ci	"gpio74", "gpio75", "gpio76", "gpio77", "gpio85", "gpio86", "gpio87",
10848c2ecf20Sopenharmony_ci	"gpio89", "gpio90",
10858c2ecf20Sopenharmony_ci};
10868c2ecf20Sopenharmony_cistatic const char * const blsp_i2c7_groups[] = {
10878c2ecf20Sopenharmony_ci	"gpio55", "gpio56",
10888c2ecf20Sopenharmony_ci};
10898c2ecf20Sopenharmony_cistatic const char * const qua_mi2s_groups[] = {
10908c2ecf20Sopenharmony_ci	"gpio57", "gpio58", "gpio59", "gpio60", "gpio61", "gpio62", "gpio63",
10918c2ecf20Sopenharmony_ci};
10928c2ecf20Sopenharmony_cistatic const char * const gcc_gp1_clk_a_groups[] = {
10938c2ecf20Sopenharmony_ci	"gpio57",
10948c2ecf20Sopenharmony_ci};
10958c2ecf20Sopenharmony_cistatic const char * const uim4_groups[] = {
10968c2ecf20Sopenharmony_ci	"gpio58", "gpio59", "gpio60", "gpio61",
10978c2ecf20Sopenharmony_ci};
10988c2ecf20Sopenharmony_cistatic const char * const blsp_spi11_groups[] = {
10998c2ecf20Sopenharmony_ci	"gpio58", "gpio59", "gpio60", "gpio61",
11008c2ecf20Sopenharmony_ci};
11018c2ecf20Sopenharmony_cistatic const char * const blsp_uart11_groups[] = {
11028c2ecf20Sopenharmony_ci	"gpio58", "gpio59", "gpio60", "gpio61",
11038c2ecf20Sopenharmony_ci};
11048c2ecf20Sopenharmony_cistatic const char * const blsp_uim11_groups[] = {
11058c2ecf20Sopenharmony_ci	"gpio58", "gpio59",
11068c2ecf20Sopenharmony_ci};
11078c2ecf20Sopenharmony_cistatic const char * const gcc_gp2_clk_a_groups[] = {
11088c2ecf20Sopenharmony_ci	"gpio58",
11098c2ecf20Sopenharmony_ci};
11108c2ecf20Sopenharmony_cistatic const char * const gcc_gp3_clk_a_groups[] = {
11118c2ecf20Sopenharmony_ci	"gpio59",
11128c2ecf20Sopenharmony_ci};
11138c2ecf20Sopenharmony_cistatic const char * const blsp_i2c11_groups[] = {
11148c2ecf20Sopenharmony_ci	"gpio60", "gpio61",
11158c2ecf20Sopenharmony_ci};
11168c2ecf20Sopenharmony_cistatic const char * const cri_trng0_groups[] = {
11178c2ecf20Sopenharmony_ci	"gpio60",
11188c2ecf20Sopenharmony_ci};
11198c2ecf20Sopenharmony_cistatic const char * const cri_trng1_groups[] = {
11208c2ecf20Sopenharmony_ci	"gpio61",
11218c2ecf20Sopenharmony_ci};
11228c2ecf20Sopenharmony_cistatic const char * const cri_trng_groups[] = {
11238c2ecf20Sopenharmony_ci	"gpio62",
11248c2ecf20Sopenharmony_ci};
11258c2ecf20Sopenharmony_cistatic const char * const qdss_stm18_groups[] = {
11268c2ecf20Sopenharmony_ci	"gpio63",
11278c2ecf20Sopenharmony_ci};
11288c2ecf20Sopenharmony_cistatic const char * const pri_mi2s_groups[] = {
11298c2ecf20Sopenharmony_ci	"gpio64", "gpio65", "gpio66", "gpio67", "gpio68",
11308c2ecf20Sopenharmony_ci};
11318c2ecf20Sopenharmony_cistatic const char * const qdss_stm17_groups[] = {
11328c2ecf20Sopenharmony_ci	"gpio64",
11338c2ecf20Sopenharmony_ci};
11348c2ecf20Sopenharmony_cistatic const char * const blsp_spi4_groups[] = {
11358c2ecf20Sopenharmony_ci	"gpio65", "gpio66", "gpio67", "gpio68",
11368c2ecf20Sopenharmony_ci};
11378c2ecf20Sopenharmony_cistatic const char * const blsp_uart4_groups[] = {
11388c2ecf20Sopenharmony_ci	"gpio65", "gpio66", "gpio67", "gpio68",
11398c2ecf20Sopenharmony_ci};
11408c2ecf20Sopenharmony_cistatic const char * const blsp_uim4_groups[] = {
11418c2ecf20Sopenharmony_ci	"gpio65", "gpio66",
11428c2ecf20Sopenharmony_ci};
11438c2ecf20Sopenharmony_cistatic const char * const qdss_stm16_groups[] = {
11448c2ecf20Sopenharmony_ci	"gpio65",
11458c2ecf20Sopenharmony_ci};
11468c2ecf20Sopenharmony_cistatic const char * const qdss_stm15_groups[] = {
11478c2ecf20Sopenharmony_ci	"gpio66",
11488c2ecf20Sopenharmony_ci};
11498c2ecf20Sopenharmony_cistatic const char * const dac_calib26_groups[] = {
11508c2ecf20Sopenharmony_ci	"gpio67",
11518c2ecf20Sopenharmony_ci};
11528c2ecf20Sopenharmony_cistatic const char * const blsp_i2c4_groups[] = {
11538c2ecf20Sopenharmony_ci	"gpio67", "gpio68",
11548c2ecf20Sopenharmony_ci};
11558c2ecf20Sopenharmony_cistatic const char * const qdss_stm14_groups[] = {
11568c2ecf20Sopenharmony_ci	"gpio67",
11578c2ecf20Sopenharmony_ci};
11588c2ecf20Sopenharmony_cistatic const char * const spkr_i2s_groups[] = {
11598c2ecf20Sopenharmony_ci	"gpio69", "gpio70", "gpio71", "gpio72",
11608c2ecf20Sopenharmony_ci};
11618c2ecf20Sopenharmony_cistatic const char * const audio_ref_groups[] = {
11628c2ecf20Sopenharmony_ci	"gpio69",
11638c2ecf20Sopenharmony_ci};
11648c2ecf20Sopenharmony_cistatic const char * const lpass_slimbus_groups[] = {
11658c2ecf20Sopenharmony_ci	"gpio70", "gpio71", "gpio72",
11668c2ecf20Sopenharmony_ci};
11678c2ecf20Sopenharmony_cistatic const char * const isense_dbg_groups[] = {
11688c2ecf20Sopenharmony_ci	"gpio70",
11698c2ecf20Sopenharmony_ci};
11708c2ecf20Sopenharmony_cistatic const char * const tsense_pwm1_groups[] = {
11718c2ecf20Sopenharmony_ci	"gpio71",
11728c2ecf20Sopenharmony_ci};
11738c2ecf20Sopenharmony_cistatic const char * const tsense_pwm2_groups[] = {
11748c2ecf20Sopenharmony_ci	"gpio71",
11758c2ecf20Sopenharmony_ci};
11768c2ecf20Sopenharmony_cistatic const char * const btfm_slimbus_groups[] = {
11778c2ecf20Sopenharmony_ci	"gpio73", "gpio74",
11788c2ecf20Sopenharmony_ci};
11798c2ecf20Sopenharmony_cistatic const char * const ter_mi2s_groups[] = {
11808c2ecf20Sopenharmony_ci	"gpio74", "gpio75", "gpio76", "gpio77", "gpio78",
11818c2ecf20Sopenharmony_ci};
11828c2ecf20Sopenharmony_cistatic const char * const qdss_stm22_groups[] = {
11838c2ecf20Sopenharmony_ci	"gpio74",
11848c2ecf20Sopenharmony_ci};
11858c2ecf20Sopenharmony_cistatic const char * const qdss_stm21_groups[] = {
11868c2ecf20Sopenharmony_ci	"gpio75",
11878c2ecf20Sopenharmony_ci};
11888c2ecf20Sopenharmony_cistatic const char * const qdss_stm20_groups[] = {
11898c2ecf20Sopenharmony_ci	"gpio76",
11908c2ecf20Sopenharmony_ci};
11918c2ecf20Sopenharmony_cistatic const char * const qdss_stm19_groups[] = {
11928c2ecf20Sopenharmony_ci	"gpio77",
11938c2ecf20Sopenharmony_ci};
11948c2ecf20Sopenharmony_cistatic const char * const ssc_irq_groups[] = {
11958c2ecf20Sopenharmony_ci	"gpio78", "gpio79", "gpio80", "gpio117", "gpio118", "gpio119",
11968c2ecf20Sopenharmony_ci	"gpio120", "gpio121", "gpio122", "gpio123", "gpio124", "gpio125",
11978c2ecf20Sopenharmony_ci};
11988c2ecf20Sopenharmony_cistatic const char * const gcc_gp1_clk_b_groups[] = {
11998c2ecf20Sopenharmony_ci	"gpio78",
12008c2ecf20Sopenharmony_ci};
12018c2ecf20Sopenharmony_cistatic const char * const sec_mi2s_groups[] = {
12028c2ecf20Sopenharmony_ci	"gpio79", "gpio80", "gpio81", "gpio82", "gpio83",
12038c2ecf20Sopenharmony_ci};
12048c2ecf20Sopenharmony_cistatic const char * const blsp_spi5_groups[] = {
12058c2ecf20Sopenharmony_ci	"gpio81", "gpio82", "gpio83", "gpio84",
12068c2ecf20Sopenharmony_ci};
12078c2ecf20Sopenharmony_cistatic const char * const blsp_uart5_groups[] = {
12088c2ecf20Sopenharmony_ci	"gpio81", "gpio82", "gpio83", "gpio84",
12098c2ecf20Sopenharmony_ci};
12108c2ecf20Sopenharmony_cistatic const char * const blsp_uim5_groups[] = {
12118c2ecf20Sopenharmony_ci	"gpio81", "gpio82",
12128c2ecf20Sopenharmony_ci};
12138c2ecf20Sopenharmony_cistatic const char * const gcc_gp2_clk_b_groups[] = {
12148c2ecf20Sopenharmony_ci	"gpio81",
12158c2ecf20Sopenharmony_ci};
12168c2ecf20Sopenharmony_cistatic const char * const gcc_gp3_clk_b_groups[] = {
12178c2ecf20Sopenharmony_ci	"gpio82",
12188c2ecf20Sopenharmony_ci};
12198c2ecf20Sopenharmony_cistatic const char * const blsp_i2c5_groups[] = {
12208c2ecf20Sopenharmony_ci	"gpio83", "gpio84",
12218c2ecf20Sopenharmony_ci};
12228c2ecf20Sopenharmony_cistatic const char * const blsp_spi12_groups[] = {
12238c2ecf20Sopenharmony_ci	"gpio85", "gpio86", "gpio87", "gpio88",
12248c2ecf20Sopenharmony_ci};
12258c2ecf20Sopenharmony_cistatic const char * const blsp_uart12_groups[] = {
12268c2ecf20Sopenharmony_ci	"gpio85", "gpio86", "gpio87", "gpio88",
12278c2ecf20Sopenharmony_ci};
12288c2ecf20Sopenharmony_cistatic const char * const blsp_uim12_groups[] = {
12298c2ecf20Sopenharmony_ci	"gpio85", "gpio86",
12308c2ecf20Sopenharmony_ci};
12318c2ecf20Sopenharmony_cistatic const char * const qdss_stm25_groups[] = {
12328c2ecf20Sopenharmony_ci	"gpio85",
12338c2ecf20Sopenharmony_ci};
12348c2ecf20Sopenharmony_cistatic const char * const qdss_stm31_groups[] = {
12358c2ecf20Sopenharmony_ci	"gpio86",
12368c2ecf20Sopenharmony_ci};
12378c2ecf20Sopenharmony_cistatic const char * const blsp_i2c12_groups[] = {
12388c2ecf20Sopenharmony_ci	"gpio87", "gpio88",
12398c2ecf20Sopenharmony_ci};
12408c2ecf20Sopenharmony_cistatic const char * const qdss_stm30_groups[] = {
12418c2ecf20Sopenharmony_ci	"gpio87",
12428c2ecf20Sopenharmony_ci};
12438c2ecf20Sopenharmony_cistatic const char * const qdss_stm29_groups[] = {
12448c2ecf20Sopenharmony_ci	"gpio88",
12458c2ecf20Sopenharmony_ci};
12468c2ecf20Sopenharmony_cistatic const char * const tsif1_clk_groups[] = {
12478c2ecf20Sopenharmony_ci	"gpio89",
12488c2ecf20Sopenharmony_ci};
12498c2ecf20Sopenharmony_cistatic const char * const qdss_stm28_groups[] = {
12508c2ecf20Sopenharmony_ci	"gpio89",
12518c2ecf20Sopenharmony_ci};
12528c2ecf20Sopenharmony_cistatic const char * const tsif1_en_groups[] = {
12538c2ecf20Sopenharmony_ci	"gpio90",
12548c2ecf20Sopenharmony_ci};
12558c2ecf20Sopenharmony_cistatic const char * const tsif1_data_groups[] = {
12568c2ecf20Sopenharmony_ci	"gpio91",
12578c2ecf20Sopenharmony_ci};
12588c2ecf20Sopenharmony_cistatic const char * const sdc4_cmd_groups[] = {
12598c2ecf20Sopenharmony_ci	"gpio91",
12608c2ecf20Sopenharmony_ci};
12618c2ecf20Sopenharmony_cistatic const char * const qdss_stm27_groups[] = {
12628c2ecf20Sopenharmony_ci	"gpio91",
12638c2ecf20Sopenharmony_ci};
12648c2ecf20Sopenharmony_cistatic const char * const qdss_traceclk_b_groups[] = {
12658c2ecf20Sopenharmony_ci	"gpio91",
12668c2ecf20Sopenharmony_ci};
12678c2ecf20Sopenharmony_cistatic const char * const tsif2_error_groups[] = {
12688c2ecf20Sopenharmony_ci	"gpio92",
12698c2ecf20Sopenharmony_ci};
12708c2ecf20Sopenharmony_cistatic const char * const sdc43_groups[] = {
12718c2ecf20Sopenharmony_ci	"gpio92",
12728c2ecf20Sopenharmony_ci};
12738c2ecf20Sopenharmony_cistatic const char * const vfr_1_groups[] = {
12748c2ecf20Sopenharmony_ci	"gpio92",
12758c2ecf20Sopenharmony_ci};
12768c2ecf20Sopenharmony_cistatic const char * const qdss_stm26_groups[] = {
12778c2ecf20Sopenharmony_ci	"gpio92",
12788c2ecf20Sopenharmony_ci};
12798c2ecf20Sopenharmony_cistatic const char * const tsif2_clk_groups[] = {
12808c2ecf20Sopenharmony_ci	"gpio93",
12818c2ecf20Sopenharmony_ci};
12828c2ecf20Sopenharmony_cistatic const char * const sdc4_clk_groups[] = {
12838c2ecf20Sopenharmony_ci	"gpio93",
12848c2ecf20Sopenharmony_ci};
12858c2ecf20Sopenharmony_cistatic const char * const qdss_stm24_groups[] = {
12868c2ecf20Sopenharmony_ci	"gpio93",
12878c2ecf20Sopenharmony_ci};
12888c2ecf20Sopenharmony_cistatic const char * const tsif2_en_groups[] = {
12898c2ecf20Sopenharmony_ci	"gpio94",
12908c2ecf20Sopenharmony_ci};
12918c2ecf20Sopenharmony_cistatic const char * const sdc42_groups[] = {
12928c2ecf20Sopenharmony_ci	"gpio94",
12938c2ecf20Sopenharmony_ci};
12948c2ecf20Sopenharmony_cistatic const char * const qdss_stm23_groups[] = {
12958c2ecf20Sopenharmony_ci	"gpio94",
12968c2ecf20Sopenharmony_ci};
12978c2ecf20Sopenharmony_cistatic const char * const qdss_tracectl_b_groups[] = {
12988c2ecf20Sopenharmony_ci	"gpio94",
12998c2ecf20Sopenharmony_ci};
13008c2ecf20Sopenharmony_cistatic const char * const sd_card_groups[] = {
13018c2ecf20Sopenharmony_ci	"gpio95",
13028c2ecf20Sopenharmony_ci};
13038c2ecf20Sopenharmony_cistatic const char * const tsif2_data_groups[] = {
13048c2ecf20Sopenharmony_ci	"gpio95",
13058c2ecf20Sopenharmony_ci};
13068c2ecf20Sopenharmony_cistatic const char * const sdc41_groups[] = {
13078c2ecf20Sopenharmony_ci	"gpio95",
13088c2ecf20Sopenharmony_ci};
13098c2ecf20Sopenharmony_cistatic const char * const tsif2_sync_groups[] = {
13108c2ecf20Sopenharmony_ci	"gpio96",
13118c2ecf20Sopenharmony_ci};
13128c2ecf20Sopenharmony_cistatic const char * const sdc40_groups[] = {
13138c2ecf20Sopenharmony_ci	"gpio96",
13148c2ecf20Sopenharmony_ci};
13158c2ecf20Sopenharmony_cistatic const char * const mdp_vsync_p_b_groups[] = {
13168c2ecf20Sopenharmony_ci	"gpio97",
13178c2ecf20Sopenharmony_ci};
13188c2ecf20Sopenharmony_cistatic const char * const ldo_en_groups[] = {
13198c2ecf20Sopenharmony_ci	"gpio97",
13208c2ecf20Sopenharmony_ci};
13218c2ecf20Sopenharmony_cistatic const char * const mdp_vsync_s_b_groups[] = {
13228c2ecf20Sopenharmony_ci	"gpio98",
13238c2ecf20Sopenharmony_ci};
13248c2ecf20Sopenharmony_cistatic const char * const ldo_update_groups[] = {
13258c2ecf20Sopenharmony_ci	"gpio98",
13268c2ecf20Sopenharmony_ci};
13278c2ecf20Sopenharmony_cistatic const char * const blsp11_uart_tx_b_groups[] = {
13288c2ecf20Sopenharmony_ci	"gpio100",
13298c2ecf20Sopenharmony_ci};
13308c2ecf20Sopenharmony_cistatic const char * const blsp11_uart_rx_b_groups[] = {
13318c2ecf20Sopenharmony_ci	"gpio101",
13328c2ecf20Sopenharmony_ci};
13338c2ecf20Sopenharmony_cistatic const char * const blsp11_i2c_sda_b_groups[] = {
13348c2ecf20Sopenharmony_ci	"gpio102",
13358c2ecf20Sopenharmony_ci};
13368c2ecf20Sopenharmony_cistatic const char * const prng_rosc_groups[] = {
13378c2ecf20Sopenharmony_ci	"gpio102",
13388c2ecf20Sopenharmony_ci};
13398c2ecf20Sopenharmony_cistatic const char * const blsp11_i2c_scl_b_groups[] = {
13408c2ecf20Sopenharmony_ci	"gpio103",
13418c2ecf20Sopenharmony_ci};
13428c2ecf20Sopenharmony_cistatic const char * const uim2_groups[] = {
13438c2ecf20Sopenharmony_ci	"gpio105", "gpio106", "gpio107", "gpio108",
13448c2ecf20Sopenharmony_ci};
13458c2ecf20Sopenharmony_cistatic const char * const uim1_groups[] = {
13468c2ecf20Sopenharmony_ci	"gpio109", "gpio110", "gpio111", "gpio112",
13478c2ecf20Sopenharmony_ci};
13488c2ecf20Sopenharmony_cistatic const char * const uim_batt_groups[] = {
13498c2ecf20Sopenharmony_ci	"gpio113",
13508c2ecf20Sopenharmony_ci};
13518c2ecf20Sopenharmony_cistatic const char * const pci_e2_groups[] = {
13528c2ecf20Sopenharmony_ci	"gpio114", "gpio115", "gpio116",
13538c2ecf20Sopenharmony_ci};
13548c2ecf20Sopenharmony_cistatic const char * const pa_indicator_groups[] = {
13558c2ecf20Sopenharmony_ci	"gpio116",
13568c2ecf20Sopenharmony_ci};
13578c2ecf20Sopenharmony_cistatic const char * const adsp_ext_groups[] = {
13588c2ecf20Sopenharmony_ci	"gpio118",
13598c2ecf20Sopenharmony_ci};
13608c2ecf20Sopenharmony_cistatic const char * const ddr_bist_groups[] = {
13618c2ecf20Sopenharmony_ci	"gpio121", "gpio122", "gpio123", "gpio124",
13628c2ecf20Sopenharmony_ci};
13638c2ecf20Sopenharmony_cistatic const char * const qdss_tracedata_11_groups[] = {
13648c2ecf20Sopenharmony_ci	"gpio123",
13658c2ecf20Sopenharmony_ci};
13668c2ecf20Sopenharmony_cistatic const char * const qdss_tracedata_12_groups[] = {
13678c2ecf20Sopenharmony_ci	"gpio124",
13688c2ecf20Sopenharmony_ci};
13698c2ecf20Sopenharmony_cistatic const char * const modem_tsync_groups[] = {
13708c2ecf20Sopenharmony_ci	"gpio128",
13718c2ecf20Sopenharmony_ci};
13728c2ecf20Sopenharmony_cistatic const char * const nav_dr_groups[] = {
13738c2ecf20Sopenharmony_ci	"gpio128",
13748c2ecf20Sopenharmony_ci};
13758c2ecf20Sopenharmony_cistatic const char * const nav_pps_groups[] = {
13768c2ecf20Sopenharmony_ci	"gpio128",
13778c2ecf20Sopenharmony_ci};
13788c2ecf20Sopenharmony_cistatic const char * const pci_e1_groups[] = {
13798c2ecf20Sopenharmony_ci	"gpio130", "gpio131", "gpio132",
13808c2ecf20Sopenharmony_ci};
13818c2ecf20Sopenharmony_cistatic const char * const gsm_tx_groups[] = {
13828c2ecf20Sopenharmony_ci	"gpio134", "gpio135",
13838c2ecf20Sopenharmony_ci};
13848c2ecf20Sopenharmony_cistatic const char * const qspi_cs_groups[] = {
13858c2ecf20Sopenharmony_ci	"gpio138", "gpio141",
13868c2ecf20Sopenharmony_ci};
13878c2ecf20Sopenharmony_cistatic const char * const ssbi2_groups[] = {
13888c2ecf20Sopenharmony_ci	"gpio139",
13898c2ecf20Sopenharmony_ci};
13908c2ecf20Sopenharmony_cistatic const char * const ssbi1_groups[] = {
13918c2ecf20Sopenharmony_ci	"gpio140",
13928c2ecf20Sopenharmony_ci};
13938c2ecf20Sopenharmony_cistatic const char * const mss_lte_groups[] = {
13948c2ecf20Sopenharmony_ci	"gpio144", "gpio145",
13958c2ecf20Sopenharmony_ci};
13968c2ecf20Sopenharmony_cistatic const char * const qspi_clk_groups[] = {
13978c2ecf20Sopenharmony_ci	"gpio145",
13988c2ecf20Sopenharmony_ci};
13998c2ecf20Sopenharmony_cistatic const char * const qspi0_groups[] = {
14008c2ecf20Sopenharmony_ci	"gpio146",
14018c2ecf20Sopenharmony_ci};
14028c2ecf20Sopenharmony_cistatic const char * const qspi1_groups[] = {
14038c2ecf20Sopenharmony_ci	"gpio147",
14048c2ecf20Sopenharmony_ci};
14058c2ecf20Sopenharmony_cistatic const char * const qspi2_groups[] = {
14068c2ecf20Sopenharmony_ci	"gpio148",
14078c2ecf20Sopenharmony_ci};
14088c2ecf20Sopenharmony_cistatic const char * const qspi3_groups[] = {
14098c2ecf20Sopenharmony_ci	"gpio149",
14108c2ecf20Sopenharmony_ci};
14118c2ecf20Sopenharmony_ci
14128c2ecf20Sopenharmony_cistatic const struct msm_function msm8996_functions[] = {
14138c2ecf20Sopenharmony_ci	FUNCTION(adsp_ext),
14148c2ecf20Sopenharmony_ci	FUNCTION(atest_bbrx0),
14158c2ecf20Sopenharmony_ci	FUNCTION(atest_bbrx1),
14168c2ecf20Sopenharmony_ci	FUNCTION(atest_char),
14178c2ecf20Sopenharmony_ci	FUNCTION(atest_char0),
14188c2ecf20Sopenharmony_ci	FUNCTION(atest_char1),
14198c2ecf20Sopenharmony_ci	FUNCTION(atest_char2),
14208c2ecf20Sopenharmony_ci	FUNCTION(atest_char3),
14218c2ecf20Sopenharmony_ci	FUNCTION(atest_gpsadc0),
14228c2ecf20Sopenharmony_ci	FUNCTION(atest_gpsadc1),
14238c2ecf20Sopenharmony_ci	FUNCTION(atest_tsens),
14248c2ecf20Sopenharmony_ci	FUNCTION(atest_tsens2),
14258c2ecf20Sopenharmony_ci	FUNCTION(atest_usb1),
14268c2ecf20Sopenharmony_ci	FUNCTION(atest_usb10),
14278c2ecf20Sopenharmony_ci	FUNCTION(atest_usb11),
14288c2ecf20Sopenharmony_ci	FUNCTION(atest_usb12),
14298c2ecf20Sopenharmony_ci	FUNCTION(atest_usb13),
14308c2ecf20Sopenharmony_ci	FUNCTION(atest_usb2),
14318c2ecf20Sopenharmony_ci	FUNCTION(atest_usb20),
14328c2ecf20Sopenharmony_ci	FUNCTION(atest_usb21),
14338c2ecf20Sopenharmony_ci	FUNCTION(atest_usb22),
14348c2ecf20Sopenharmony_ci	FUNCTION(atest_usb23),
14358c2ecf20Sopenharmony_ci	FUNCTION(audio_ref),
14368c2ecf20Sopenharmony_ci	FUNCTION(bimc_dte0),
14378c2ecf20Sopenharmony_ci	FUNCTION(bimc_dte1),
14388c2ecf20Sopenharmony_ci	FUNCTION(blsp10_spi),
14398c2ecf20Sopenharmony_ci	FUNCTION(blsp11_i2c_scl_b),
14408c2ecf20Sopenharmony_ci	FUNCTION(blsp11_i2c_sda_b),
14418c2ecf20Sopenharmony_ci	FUNCTION(blsp11_uart_rx_b),
14428c2ecf20Sopenharmony_ci	FUNCTION(blsp11_uart_tx_b),
14438c2ecf20Sopenharmony_ci	FUNCTION(blsp1_spi),
14448c2ecf20Sopenharmony_ci	FUNCTION(blsp2_spi),
14458c2ecf20Sopenharmony_ci	FUNCTION(blsp_i2c1),
14468c2ecf20Sopenharmony_ci	FUNCTION(blsp_i2c10),
14478c2ecf20Sopenharmony_ci	FUNCTION(blsp_i2c11),
14488c2ecf20Sopenharmony_ci	FUNCTION(blsp_i2c12),
14498c2ecf20Sopenharmony_ci	FUNCTION(blsp_i2c2),
14508c2ecf20Sopenharmony_ci	FUNCTION(blsp_i2c3),
14518c2ecf20Sopenharmony_ci	FUNCTION(blsp_i2c4),
14528c2ecf20Sopenharmony_ci	FUNCTION(blsp_i2c5),
14538c2ecf20Sopenharmony_ci	FUNCTION(blsp_i2c6),
14548c2ecf20Sopenharmony_ci	FUNCTION(blsp_i2c7),
14558c2ecf20Sopenharmony_ci	FUNCTION(blsp_i2c8),
14568c2ecf20Sopenharmony_ci	FUNCTION(blsp_i2c9),
14578c2ecf20Sopenharmony_ci	FUNCTION(blsp_spi1),
14588c2ecf20Sopenharmony_ci	FUNCTION(blsp_spi10),
14598c2ecf20Sopenharmony_ci	FUNCTION(blsp_spi11),
14608c2ecf20Sopenharmony_ci	FUNCTION(blsp_spi12),
14618c2ecf20Sopenharmony_ci	FUNCTION(blsp_spi2),
14628c2ecf20Sopenharmony_ci	FUNCTION(blsp_spi3),
14638c2ecf20Sopenharmony_ci	FUNCTION(blsp_spi4),
14648c2ecf20Sopenharmony_ci	FUNCTION(blsp_spi5),
14658c2ecf20Sopenharmony_ci	FUNCTION(blsp_spi6),
14668c2ecf20Sopenharmony_ci	FUNCTION(blsp_spi7),
14678c2ecf20Sopenharmony_ci	FUNCTION(blsp_spi8),
14688c2ecf20Sopenharmony_ci	FUNCTION(blsp_spi9),
14698c2ecf20Sopenharmony_ci	FUNCTION(blsp_uart1),
14708c2ecf20Sopenharmony_ci	FUNCTION(blsp_uart10),
14718c2ecf20Sopenharmony_ci	FUNCTION(blsp_uart11),
14728c2ecf20Sopenharmony_ci	FUNCTION(blsp_uart12),
14738c2ecf20Sopenharmony_ci	FUNCTION(blsp_uart2),
14748c2ecf20Sopenharmony_ci	FUNCTION(blsp_uart3),
14758c2ecf20Sopenharmony_ci	FUNCTION(blsp_uart4),
14768c2ecf20Sopenharmony_ci	FUNCTION(blsp_uart5),
14778c2ecf20Sopenharmony_ci	FUNCTION(blsp_uart6),
14788c2ecf20Sopenharmony_ci	FUNCTION(blsp_uart7),
14798c2ecf20Sopenharmony_ci	FUNCTION(blsp_uart8),
14808c2ecf20Sopenharmony_ci	FUNCTION(blsp_uart9),
14818c2ecf20Sopenharmony_ci	FUNCTION(blsp_uim1),
14828c2ecf20Sopenharmony_ci	FUNCTION(blsp_uim10),
14838c2ecf20Sopenharmony_ci	FUNCTION(blsp_uim11),
14848c2ecf20Sopenharmony_ci	FUNCTION(blsp_uim12),
14858c2ecf20Sopenharmony_ci	FUNCTION(blsp_uim2),
14868c2ecf20Sopenharmony_ci	FUNCTION(blsp_uim3),
14878c2ecf20Sopenharmony_ci	FUNCTION(blsp_uim4),
14888c2ecf20Sopenharmony_ci	FUNCTION(blsp_uim5),
14898c2ecf20Sopenharmony_ci	FUNCTION(blsp_uim6),
14908c2ecf20Sopenharmony_ci	FUNCTION(blsp_uim7),
14918c2ecf20Sopenharmony_ci	FUNCTION(blsp_uim8),
14928c2ecf20Sopenharmony_ci	FUNCTION(blsp_uim9),
14938c2ecf20Sopenharmony_ci	FUNCTION(btfm_slimbus),
14948c2ecf20Sopenharmony_ci	FUNCTION(cam_mclk),
14958c2ecf20Sopenharmony_ci	FUNCTION(cci_async),
14968c2ecf20Sopenharmony_ci	FUNCTION(cci_i2c),
14978c2ecf20Sopenharmony_ci	FUNCTION(cci_timer0),
14988c2ecf20Sopenharmony_ci	FUNCTION(cci_timer1),
14998c2ecf20Sopenharmony_ci	FUNCTION(cci_timer2),
15008c2ecf20Sopenharmony_ci	FUNCTION(cci_timer3),
15018c2ecf20Sopenharmony_ci	FUNCTION(cci_timer4),
15028c2ecf20Sopenharmony_ci	FUNCTION(cri_trng),
15038c2ecf20Sopenharmony_ci	FUNCTION(cri_trng0),
15048c2ecf20Sopenharmony_ci	FUNCTION(cri_trng1),
15058c2ecf20Sopenharmony_ci	FUNCTION(dac_calib0),
15068c2ecf20Sopenharmony_ci	FUNCTION(dac_calib1),
15078c2ecf20Sopenharmony_ci	FUNCTION(dac_calib10),
15088c2ecf20Sopenharmony_ci	FUNCTION(dac_calib11),
15098c2ecf20Sopenharmony_ci	FUNCTION(dac_calib12),
15108c2ecf20Sopenharmony_ci	FUNCTION(dac_calib13),
15118c2ecf20Sopenharmony_ci	FUNCTION(dac_calib14),
15128c2ecf20Sopenharmony_ci	FUNCTION(dac_calib15),
15138c2ecf20Sopenharmony_ci	FUNCTION(dac_calib16),
15148c2ecf20Sopenharmony_ci	FUNCTION(dac_calib17),
15158c2ecf20Sopenharmony_ci	FUNCTION(dac_calib18),
15168c2ecf20Sopenharmony_ci	FUNCTION(dac_calib19),
15178c2ecf20Sopenharmony_ci	FUNCTION(dac_calib2),
15188c2ecf20Sopenharmony_ci	FUNCTION(dac_calib20),
15198c2ecf20Sopenharmony_ci	FUNCTION(dac_calib21),
15208c2ecf20Sopenharmony_ci	FUNCTION(dac_calib22),
15218c2ecf20Sopenharmony_ci	FUNCTION(dac_calib23),
15228c2ecf20Sopenharmony_ci	FUNCTION(dac_calib24),
15238c2ecf20Sopenharmony_ci	FUNCTION(dac_calib25),
15248c2ecf20Sopenharmony_ci	FUNCTION(dac_calib26),
15258c2ecf20Sopenharmony_ci	FUNCTION(dac_calib3),
15268c2ecf20Sopenharmony_ci	FUNCTION(dac_calib4),
15278c2ecf20Sopenharmony_ci	FUNCTION(dac_calib5),
15288c2ecf20Sopenharmony_ci	FUNCTION(dac_calib6),
15298c2ecf20Sopenharmony_ci	FUNCTION(dac_calib7),
15308c2ecf20Sopenharmony_ci	FUNCTION(dac_calib8),
15318c2ecf20Sopenharmony_ci	FUNCTION(dac_calib9),
15328c2ecf20Sopenharmony_ci	FUNCTION(dac_gpio),
15338c2ecf20Sopenharmony_ci	FUNCTION(dbg_out),
15348c2ecf20Sopenharmony_ci	FUNCTION(ddr_bist),
15358c2ecf20Sopenharmony_ci	FUNCTION(edp_hot),
15368c2ecf20Sopenharmony_ci	FUNCTION(edp_lcd),
15378c2ecf20Sopenharmony_ci	FUNCTION(gcc_gp1_clk_a),
15388c2ecf20Sopenharmony_ci	FUNCTION(gcc_gp1_clk_b),
15398c2ecf20Sopenharmony_ci	FUNCTION(gcc_gp2_clk_a),
15408c2ecf20Sopenharmony_ci	FUNCTION(gcc_gp2_clk_b),
15418c2ecf20Sopenharmony_ci	FUNCTION(gcc_gp3_clk_a),
15428c2ecf20Sopenharmony_ci	FUNCTION(gcc_gp3_clk_b),
15438c2ecf20Sopenharmony_ci	FUNCTION(gpio),
15448c2ecf20Sopenharmony_ci	FUNCTION(gsm_tx),
15458c2ecf20Sopenharmony_ci	FUNCTION(hdmi_cec),
15468c2ecf20Sopenharmony_ci	FUNCTION(hdmi_ddc),
15478c2ecf20Sopenharmony_ci	FUNCTION(hdmi_hot),
15488c2ecf20Sopenharmony_ci	FUNCTION(hdmi_rcv),
15498c2ecf20Sopenharmony_ci	FUNCTION(isense_dbg),
15508c2ecf20Sopenharmony_ci	FUNCTION(ldo_en),
15518c2ecf20Sopenharmony_ci	FUNCTION(ldo_update),
15528c2ecf20Sopenharmony_ci	FUNCTION(lpass_slimbus),
15538c2ecf20Sopenharmony_ci	FUNCTION(m_voc),
15548c2ecf20Sopenharmony_ci	FUNCTION(mdp_vsync),
15558c2ecf20Sopenharmony_ci	FUNCTION(mdp_vsync_p_b),
15568c2ecf20Sopenharmony_ci	FUNCTION(mdp_vsync_s_b),
15578c2ecf20Sopenharmony_ci	FUNCTION(modem_tsync),
15588c2ecf20Sopenharmony_ci	FUNCTION(mss_lte),
15598c2ecf20Sopenharmony_ci	FUNCTION(nav_dr),
15608c2ecf20Sopenharmony_ci	FUNCTION(nav_pps),
15618c2ecf20Sopenharmony_ci	FUNCTION(pa_indicator),
15628c2ecf20Sopenharmony_ci	FUNCTION(pci_e0),
15638c2ecf20Sopenharmony_ci	FUNCTION(pci_e1),
15648c2ecf20Sopenharmony_ci	FUNCTION(pci_e2),
15658c2ecf20Sopenharmony_ci	FUNCTION(pll_bypassnl),
15668c2ecf20Sopenharmony_ci	FUNCTION(pll_reset),
15678c2ecf20Sopenharmony_ci	FUNCTION(pri_mi2s),
15688c2ecf20Sopenharmony_ci	FUNCTION(prng_rosc),
15698c2ecf20Sopenharmony_ci	FUNCTION(pwr_crypto),
15708c2ecf20Sopenharmony_ci	FUNCTION(pwr_modem),
15718c2ecf20Sopenharmony_ci	FUNCTION(pwr_nav),
15728c2ecf20Sopenharmony_ci	FUNCTION(qdss_cti),
15738c2ecf20Sopenharmony_ci	FUNCTION(qdss_cti_trig_in_a),
15748c2ecf20Sopenharmony_ci	FUNCTION(qdss_cti_trig_in_b),
15758c2ecf20Sopenharmony_ci	FUNCTION(qdss_cti_trig_out_a),
15768c2ecf20Sopenharmony_ci	FUNCTION(qdss_cti_trig_out_b),
15778c2ecf20Sopenharmony_ci	FUNCTION(qdss_stm0),
15788c2ecf20Sopenharmony_ci	FUNCTION(qdss_stm1),
15798c2ecf20Sopenharmony_ci	FUNCTION(qdss_stm10),
15808c2ecf20Sopenharmony_ci	FUNCTION(qdss_stm11),
15818c2ecf20Sopenharmony_ci	FUNCTION(qdss_stm12),
15828c2ecf20Sopenharmony_ci	FUNCTION(qdss_stm13),
15838c2ecf20Sopenharmony_ci	FUNCTION(qdss_stm14),
15848c2ecf20Sopenharmony_ci	FUNCTION(qdss_stm15),
15858c2ecf20Sopenharmony_ci	FUNCTION(qdss_stm16),
15868c2ecf20Sopenharmony_ci	FUNCTION(qdss_stm17),
15878c2ecf20Sopenharmony_ci	FUNCTION(qdss_stm18),
15888c2ecf20Sopenharmony_ci	FUNCTION(qdss_stm19),
15898c2ecf20Sopenharmony_ci	FUNCTION(qdss_stm2),
15908c2ecf20Sopenharmony_ci	FUNCTION(qdss_stm20),
15918c2ecf20Sopenharmony_ci	FUNCTION(qdss_stm21),
15928c2ecf20Sopenharmony_ci	FUNCTION(qdss_stm22),
15938c2ecf20Sopenharmony_ci	FUNCTION(qdss_stm23),
15948c2ecf20Sopenharmony_ci	FUNCTION(qdss_stm24),
15958c2ecf20Sopenharmony_ci	FUNCTION(qdss_stm25),
15968c2ecf20Sopenharmony_ci	FUNCTION(qdss_stm26),
15978c2ecf20Sopenharmony_ci	FUNCTION(qdss_stm27),
15988c2ecf20Sopenharmony_ci	FUNCTION(qdss_stm28),
15998c2ecf20Sopenharmony_ci	FUNCTION(qdss_stm29),
16008c2ecf20Sopenharmony_ci	FUNCTION(qdss_stm3),
16018c2ecf20Sopenharmony_ci	FUNCTION(qdss_stm30),
16028c2ecf20Sopenharmony_ci	FUNCTION(qdss_stm31),
16038c2ecf20Sopenharmony_ci	FUNCTION(qdss_stm4),
16048c2ecf20Sopenharmony_ci	FUNCTION(qdss_stm5),
16058c2ecf20Sopenharmony_ci	FUNCTION(qdss_stm6),
16068c2ecf20Sopenharmony_ci	FUNCTION(qdss_stm7),
16078c2ecf20Sopenharmony_ci	FUNCTION(qdss_stm8),
16088c2ecf20Sopenharmony_ci	FUNCTION(qdss_stm9),
16098c2ecf20Sopenharmony_ci	FUNCTION(qdss_traceclk_a),
16108c2ecf20Sopenharmony_ci	FUNCTION(qdss_traceclk_b),
16118c2ecf20Sopenharmony_ci	FUNCTION(qdss_tracectl_a),
16128c2ecf20Sopenharmony_ci	FUNCTION(qdss_tracectl_b),
16138c2ecf20Sopenharmony_ci	FUNCTION(qdss_tracedata_11),
16148c2ecf20Sopenharmony_ci	FUNCTION(qdss_tracedata_12),
16158c2ecf20Sopenharmony_ci	FUNCTION(qdss_tracedata_a),
16168c2ecf20Sopenharmony_ci	FUNCTION(qdss_tracedata_b),
16178c2ecf20Sopenharmony_ci	FUNCTION(qspi0),
16188c2ecf20Sopenharmony_ci	FUNCTION(qspi1),
16198c2ecf20Sopenharmony_ci	FUNCTION(qspi2),
16208c2ecf20Sopenharmony_ci	FUNCTION(qspi3),
16218c2ecf20Sopenharmony_ci	FUNCTION(qspi_clk),
16228c2ecf20Sopenharmony_ci	FUNCTION(qspi_cs),
16238c2ecf20Sopenharmony_ci	FUNCTION(qua_mi2s),
16248c2ecf20Sopenharmony_ci	FUNCTION(sd_card),
16258c2ecf20Sopenharmony_ci	FUNCTION(sd_write),
16268c2ecf20Sopenharmony_ci	FUNCTION(sdc40),
16278c2ecf20Sopenharmony_ci	FUNCTION(sdc41),
16288c2ecf20Sopenharmony_ci	FUNCTION(sdc42),
16298c2ecf20Sopenharmony_ci	FUNCTION(sdc43),
16308c2ecf20Sopenharmony_ci	FUNCTION(sdc4_clk),
16318c2ecf20Sopenharmony_ci	FUNCTION(sdc4_cmd),
16328c2ecf20Sopenharmony_ci	FUNCTION(sec_mi2s),
16338c2ecf20Sopenharmony_ci	FUNCTION(spkr_i2s),
16348c2ecf20Sopenharmony_ci	FUNCTION(ssbi1),
16358c2ecf20Sopenharmony_ci	FUNCTION(ssbi2),
16368c2ecf20Sopenharmony_ci	FUNCTION(ssc_irq),
16378c2ecf20Sopenharmony_ci	FUNCTION(ter_mi2s),
16388c2ecf20Sopenharmony_ci	FUNCTION(tsense_pwm1),
16398c2ecf20Sopenharmony_ci	FUNCTION(tsense_pwm2),
16408c2ecf20Sopenharmony_ci	FUNCTION(tsif1_clk),
16418c2ecf20Sopenharmony_ci	FUNCTION(tsif1_data),
16428c2ecf20Sopenharmony_ci	FUNCTION(tsif1_en),
16438c2ecf20Sopenharmony_ci	FUNCTION(tsif1_error),
16448c2ecf20Sopenharmony_ci	FUNCTION(tsif1_sync),
16458c2ecf20Sopenharmony_ci	FUNCTION(tsif2_clk),
16468c2ecf20Sopenharmony_ci	FUNCTION(tsif2_data),
16478c2ecf20Sopenharmony_ci	FUNCTION(tsif2_en),
16488c2ecf20Sopenharmony_ci	FUNCTION(tsif2_error),
16498c2ecf20Sopenharmony_ci	FUNCTION(tsif2_sync),
16508c2ecf20Sopenharmony_ci	FUNCTION(uim1),
16518c2ecf20Sopenharmony_ci	FUNCTION(uim2),
16528c2ecf20Sopenharmony_ci	FUNCTION(uim3),
16538c2ecf20Sopenharmony_ci	FUNCTION(uim4),
16548c2ecf20Sopenharmony_ci	FUNCTION(uim_batt),
16558c2ecf20Sopenharmony_ci	FUNCTION(vfr_1),
16568c2ecf20Sopenharmony_ci};
16578c2ecf20Sopenharmony_ci
16588c2ecf20Sopenharmony_cistatic const struct msm_pingroup msm8996_groups[] = {
16598c2ecf20Sopenharmony_ci	PINGROUP(0, blsp_spi1, blsp_uart1, blsp_uim1, NA, NA, NA, NA, NA, NA),
16608c2ecf20Sopenharmony_ci	PINGROUP(1, blsp_spi1, blsp_uart1, blsp_uim1, NA, NA, NA, NA, NA, NA),
16618c2ecf20Sopenharmony_ci	PINGROUP(2, blsp_spi1, blsp_uart1, blsp_i2c1, NA, NA, NA, NA, NA, NA),
16628c2ecf20Sopenharmony_ci	PINGROUP(3, blsp_spi1, blsp_uart1, blsp_i2c1, NA, atest_tsens,
16638c2ecf20Sopenharmony_ci		 bimc_dte1, NA, NA, NA),
16648c2ecf20Sopenharmony_ci	PINGROUP(4, blsp_spi8, blsp_uart8, blsp_uim8, NA, qdss_cti_trig_out_b,
16658c2ecf20Sopenharmony_ci		 dac_calib0, bimc_dte0, NA, NA),
16668c2ecf20Sopenharmony_ci	PINGROUP(5, blsp_spi8, blsp_uart8, blsp_uim8, NA, qdss_cti_trig_in_b,
16678c2ecf20Sopenharmony_ci		 dac_calib1, bimc_dte1, NA, NA),
16688c2ecf20Sopenharmony_ci	PINGROUP(6, blsp_spi8, blsp_uart8, blsp_i2c8, NA, dac_calib2,
16698c2ecf20Sopenharmony_ci		 bimc_dte0, NA, NA, NA),
16708c2ecf20Sopenharmony_ci	PINGROUP(7, blsp_spi8, blsp_uart8, blsp_i2c8, NA, atest_tsens2,
16718c2ecf20Sopenharmony_ci		 atest_usb1, NA, NA, NA),
16728c2ecf20Sopenharmony_ci	PINGROUP(8, blsp_spi10, blsp_uart10, blsp_uim10, NA, atest_bbrx1,
16738c2ecf20Sopenharmony_ci		 atest_usb13, NA, NA, NA),
16748c2ecf20Sopenharmony_ci	PINGROUP(9, blsp_spi10, blsp_uart10, blsp_uim10, atest_bbrx0,
16758c2ecf20Sopenharmony_ci		 atest_usb12, NA, NA, NA, NA),
16768c2ecf20Sopenharmony_ci	PINGROUP(10, mdp_vsync, blsp_spi10, blsp_uart10, blsp_i2c10,
16778c2ecf20Sopenharmony_ci		 atest_gpsadc1, atest_usb11, NA, NA, NA),
16788c2ecf20Sopenharmony_ci	PINGROUP(11, mdp_vsync, blsp_spi10, blsp_uart10, blsp_i2c10,
16798c2ecf20Sopenharmony_ci		 atest_gpsadc0, atest_usb10, NA, NA, NA),
16808c2ecf20Sopenharmony_ci	PINGROUP(12, mdp_vsync, m_voc, dac_gpio, atest_char, NA, NA, NA, NA,
16818c2ecf20Sopenharmony_ci		 NA),
16828c2ecf20Sopenharmony_ci	PINGROUP(13, cam_mclk, pll_bypassnl, qdss_stm7, qdss_tracedata_b, NA,
16838c2ecf20Sopenharmony_ci		 NA, NA, NA, NA),
16848c2ecf20Sopenharmony_ci	PINGROUP(14, cam_mclk, pll_reset, qdss_stm6, qdss_tracedata_b, NA, NA,
16858c2ecf20Sopenharmony_ci		 NA, NA, NA),
16868c2ecf20Sopenharmony_ci	PINGROUP(15, cam_mclk, qdss_stm5, qdss_tracedata_b, NA, NA, NA, NA, NA,
16878c2ecf20Sopenharmony_ci		 NA),
16888c2ecf20Sopenharmony_ci	PINGROUP(16, cam_mclk, qdss_stm4, qdss_tracedata_b, NA, atest_usb2, NA,
16898c2ecf20Sopenharmony_ci		 NA, NA, NA),
16908c2ecf20Sopenharmony_ci	PINGROUP(17, cci_i2c, qdss_stm3, qdss_tracedata_b, dac_calib3,
16918c2ecf20Sopenharmony_ci		 atest_usb23, atest_char3, NA, NA, NA),
16928c2ecf20Sopenharmony_ci	PINGROUP(18, cci_i2c, qdss_stm2, qdss_tracedata_b, dac_calib4,
16938c2ecf20Sopenharmony_ci		 atest_usb22, atest_char2, NA, NA, NA),
16948c2ecf20Sopenharmony_ci	PINGROUP(19, cci_i2c, qdss_stm1, qdss_tracedata_b, dac_calib5,
16958c2ecf20Sopenharmony_ci		 atest_usb21, atest_char1, NA, NA, NA),
16968c2ecf20Sopenharmony_ci	PINGROUP(20, cci_i2c, dbg_out, qdss_stm0, dac_calib6, atest_usb20,
16978c2ecf20Sopenharmony_ci		 atest_char0, NA, NA, NA),
16988c2ecf20Sopenharmony_ci	PINGROUP(21, cci_timer0, qdss_stm13, qdss_tracedata_b, dac_calib7, NA,
16998c2ecf20Sopenharmony_ci		 NA, NA, NA, NA),
17008c2ecf20Sopenharmony_ci	PINGROUP(22, cci_timer1, qdss_stm12, qdss_tracedata_b, dac_calib8, NA,
17018c2ecf20Sopenharmony_ci		 NA, NA, NA, NA),
17028c2ecf20Sopenharmony_ci	PINGROUP(23, cci_timer2, blsp1_spi, qdss_stm11, qdss_tracedata_b,
17038c2ecf20Sopenharmony_ci		 dac_calib9, NA, NA, NA, NA),
17048c2ecf20Sopenharmony_ci	PINGROUP(24, cci_timer3, cci_async, blsp1_spi, qdss_stm10,
17058c2ecf20Sopenharmony_ci		 qdss_cti_trig_in_a, dac_calib10, NA, NA, NA),
17068c2ecf20Sopenharmony_ci	PINGROUP(25, cci_timer4, cci_async, blsp_spi6, blsp_uart6, blsp_uim6,
17078c2ecf20Sopenharmony_ci		 blsp2_spi, qdss_stm9, qdss_cti_trig_out_a, dac_calib11),
17088c2ecf20Sopenharmony_ci	PINGROUP(26, cci_async, blsp_spi6, blsp_uart6, blsp_uim6, qdss_stm8,
17098c2ecf20Sopenharmony_ci		 qdss_tracedata_b, dac_calib12, NA, NA),
17108c2ecf20Sopenharmony_ci	PINGROUP(27, blsp_spi6, blsp_uart6, blsp_i2c6, blsp1_spi,
17118c2ecf20Sopenharmony_ci		 qdss_tracectl_a, dac_calib13, NA, NA, NA),
17128c2ecf20Sopenharmony_ci	PINGROUP(28, blsp_spi6, blsp_uart6, blsp_i2c6, blsp1_spi,
17138c2ecf20Sopenharmony_ci		 qdss_traceclk_a, dac_calib14, NA, NA, NA),
17148c2ecf20Sopenharmony_ci	PINGROUP(29, blsp2_spi, NA, qdss_tracedata_b, dac_calib15, NA, NA, NA,
17158c2ecf20Sopenharmony_ci		 NA, NA),
17168c2ecf20Sopenharmony_ci	PINGROUP(30, hdmi_rcv, blsp2_spi, dac_calib16, NA, NA, NA, NA, NA, NA),
17178c2ecf20Sopenharmony_ci	PINGROUP(31, hdmi_cec, pwr_modem, dac_calib17, NA, NA, NA, NA, NA, NA),
17188c2ecf20Sopenharmony_ci	PINGROUP(32, hdmi_ddc, pwr_nav, NA, dac_calib18, NA, NA, NA, NA, NA),
17198c2ecf20Sopenharmony_ci	PINGROUP(33, hdmi_ddc, pwr_crypto, NA, dac_calib19, NA, NA, NA, NA, NA),
17208c2ecf20Sopenharmony_ci	PINGROUP(34, hdmi_hot, NA, dac_calib20, NA, NA, NA, NA, NA, NA),
17218c2ecf20Sopenharmony_ci	PINGROUP(35, pci_e0, NA, dac_calib21, NA, NA, NA, NA, NA, NA),
17228c2ecf20Sopenharmony_ci	PINGROUP(36, pci_e0, NA, dac_calib22, NA, NA, NA, NA, NA, NA),
17238c2ecf20Sopenharmony_ci	PINGROUP(37, NA, dac_calib23, NA, NA, NA, NA, NA, NA, NA),
17248c2ecf20Sopenharmony_ci	PINGROUP(38, NA, dac_calib24, NA, NA, NA, NA, NA, NA, NA),
17258c2ecf20Sopenharmony_ci	PINGROUP(39, tsif1_sync, NA, dac_calib25, NA, NA, NA, NA, NA, NA),
17268c2ecf20Sopenharmony_ci	PINGROUP(40, sd_write, tsif1_error, NA, NA, NA, NA, NA, NA, NA),
17278c2ecf20Sopenharmony_ci	PINGROUP(41, blsp_spi2, blsp_uart2, blsp_uim2, NA, qdss_cti,
17288c2ecf20Sopenharmony_ci		 dac_calib0, NA, NA, NA),
17298c2ecf20Sopenharmony_ci	PINGROUP(42, blsp_spi2, blsp_uart2, blsp_uim2, NA, qdss_cti,
17308c2ecf20Sopenharmony_ci		 dac_calib1, NA, NA, NA),
17318c2ecf20Sopenharmony_ci	PINGROUP(43, blsp_spi2, blsp_uart2, blsp_i2c2, NA, dac_calib2, NA, NA,
17328c2ecf20Sopenharmony_ci		 NA, NA),
17338c2ecf20Sopenharmony_ci	PINGROUP(44, blsp_spi2, blsp_uart2, blsp_i2c2, NA, dac_calib3, NA, NA,
17348c2ecf20Sopenharmony_ci		 NA, NA),
17358c2ecf20Sopenharmony_ci	PINGROUP(45, blsp_spi3, blsp_uart3, blsp_uim3, NA, dac_calib4, NA, NA,
17368c2ecf20Sopenharmony_ci		 NA, NA),
17378c2ecf20Sopenharmony_ci	PINGROUP(46, blsp_spi3, blsp_uart3, blsp_uim3, NA, dac_calib5, NA, NA,
17388c2ecf20Sopenharmony_ci		 NA, NA),
17398c2ecf20Sopenharmony_ci	PINGROUP(47, blsp_spi3, blsp_uart3, blsp_i2c3, dac_calib6, NA, NA, NA,
17408c2ecf20Sopenharmony_ci		 NA, NA),
17418c2ecf20Sopenharmony_ci	PINGROUP(48, blsp_spi3, blsp_uart3, blsp_i2c3, dac_calib7, NA, NA, NA,
17428c2ecf20Sopenharmony_ci		 NA, NA),
17438c2ecf20Sopenharmony_ci	PINGROUP(49, uim3, blsp_spi9, blsp_uart9, blsp_uim9, blsp10_spi,
17448c2ecf20Sopenharmony_ci		 dac_calib8, NA, NA, NA),
17458c2ecf20Sopenharmony_ci	PINGROUP(50, uim3, blsp_spi9, blsp_uart9, blsp_uim9, blsp10_spi,
17468c2ecf20Sopenharmony_ci		 dac_calib9, NA, NA, NA),
17478c2ecf20Sopenharmony_ci	PINGROUP(51, uim3, blsp_spi9, blsp_uart9, blsp_i2c9, blsp10_spi,
17488c2ecf20Sopenharmony_ci		 dac_calib10, NA, NA, NA),
17498c2ecf20Sopenharmony_ci	PINGROUP(52, uim3, blsp_spi9, blsp_uart9, blsp_i2c9,
17508c2ecf20Sopenharmony_ci		 blsp10_spi, dac_calib11, NA, NA, NA),
17518c2ecf20Sopenharmony_ci	PINGROUP(53, blsp_spi7, blsp_uart7, blsp_uim7, NA, qdss_tracedata_a,
17528c2ecf20Sopenharmony_ci		 dac_calib12, NA, NA, NA),
17538c2ecf20Sopenharmony_ci	PINGROUP(54, blsp_spi7, blsp_uart7, blsp_uim7, NA, NA,
17548c2ecf20Sopenharmony_ci		 qdss_tracedata_a, dac_calib13, NA, NA),
17558c2ecf20Sopenharmony_ci	PINGROUP(55, blsp_spi7, blsp_uart7, blsp_i2c7, NA, dac_calib14, NA, NA,
17568c2ecf20Sopenharmony_ci		 NA, NA),
17578c2ecf20Sopenharmony_ci	PINGROUP(56, blsp_spi7, blsp_uart7, blsp_i2c7, NA, dac_calib15, NA, NA,
17588c2ecf20Sopenharmony_ci		 NA, NA),
17598c2ecf20Sopenharmony_ci	PINGROUP(57, qua_mi2s, gcc_gp1_clk_a, NA, qdss_tracedata_b,
17608c2ecf20Sopenharmony_ci		 dac_calib16, NA, NA, NA, NA),
17618c2ecf20Sopenharmony_ci	PINGROUP(58, qua_mi2s, uim4, blsp_spi11, blsp_uart11, blsp_uim11,
17628c2ecf20Sopenharmony_ci		 gcc_gp2_clk_a, NA, qdss_tracedata_b, dac_calib17),
17638c2ecf20Sopenharmony_ci	PINGROUP(59, qua_mi2s, uim4, blsp_spi11, blsp_uart11, blsp_uim11,
17648c2ecf20Sopenharmony_ci		 gcc_gp3_clk_a, NA, dac_calib18, NA),
17658c2ecf20Sopenharmony_ci	PINGROUP(60, qua_mi2s, uim4, blsp_spi11, blsp_uart11, blsp_i2c11,
17668c2ecf20Sopenharmony_ci		 cri_trng0, NA, dac_calib19, NA),
17678c2ecf20Sopenharmony_ci	PINGROUP(61, qua_mi2s, uim4, blsp_spi11, blsp_uart11,
17688c2ecf20Sopenharmony_ci		 blsp_i2c11, cri_trng1, NA, dac_calib20, NA),
17698c2ecf20Sopenharmony_ci	PINGROUP(62, qua_mi2s, cri_trng, NA, dac_calib21, NA, NA, NA, NA, NA),
17708c2ecf20Sopenharmony_ci	PINGROUP(63, qua_mi2s, NA, NA, qdss_stm18, qdss_tracedata_a,
17718c2ecf20Sopenharmony_ci		 dac_calib22, NA, NA, NA),
17728c2ecf20Sopenharmony_ci	PINGROUP(64, pri_mi2s, NA, qdss_stm17, qdss_tracedata_a, dac_calib23,
17738c2ecf20Sopenharmony_ci		 NA, NA, NA, NA),
17748c2ecf20Sopenharmony_ci	PINGROUP(65, pri_mi2s, blsp_spi4, blsp_uart4, blsp_uim4, NA,
17758c2ecf20Sopenharmony_ci		 qdss_stm16, qdss_tracedata_a, dac_calib24, NA),
17768c2ecf20Sopenharmony_ci	PINGROUP(66, pri_mi2s, blsp_spi4, blsp_uart4, blsp_uim4, NA,
17778c2ecf20Sopenharmony_ci		 qdss_stm15, qdss_tracedata_a, dac_calib25, NA),
17788c2ecf20Sopenharmony_ci	PINGROUP(67, pri_mi2s, blsp_spi4, blsp_uart4, blsp_i2c4, qdss_stm14,
17798c2ecf20Sopenharmony_ci		 qdss_tracedata_a, dac_calib26, NA, NA),
17808c2ecf20Sopenharmony_ci	PINGROUP(68, pri_mi2s, blsp_spi4, blsp_uart4, blsp_i2c4, NA, NA, NA,
17818c2ecf20Sopenharmony_ci		 NA, NA),
17828c2ecf20Sopenharmony_ci	PINGROUP(69, spkr_i2s, audio_ref, NA, NA, NA, NA, NA, NA, NA),
17838c2ecf20Sopenharmony_ci	PINGROUP(70, lpass_slimbus, spkr_i2s, isense_dbg, NA, NA, NA, NA, NA,
17848c2ecf20Sopenharmony_ci		 NA),
17858c2ecf20Sopenharmony_ci	PINGROUP(71, lpass_slimbus, spkr_i2s, tsense_pwm1, tsense_pwm2, NA, NA,
17868c2ecf20Sopenharmony_ci		 NA, NA, NA),
17878c2ecf20Sopenharmony_ci	PINGROUP(72, lpass_slimbus, spkr_i2s, NA, NA, NA, NA, NA, NA, NA),
17888c2ecf20Sopenharmony_ci	PINGROUP(73, btfm_slimbus, NA, NA, NA, NA, NA, NA, NA, NA),
17898c2ecf20Sopenharmony_ci	PINGROUP(74, btfm_slimbus, ter_mi2s, qdss_stm22, qdss_tracedata_a, NA,
17908c2ecf20Sopenharmony_ci		 NA, NA, NA, NA),
17918c2ecf20Sopenharmony_ci	PINGROUP(75, ter_mi2s, qdss_stm21, qdss_tracedata_a, NA, NA, NA, NA,
17928c2ecf20Sopenharmony_ci		 NA, NA),
17938c2ecf20Sopenharmony_ci	PINGROUP(76, ter_mi2s, qdss_stm20, qdss_tracedata_a, NA, NA, NA, NA,
17948c2ecf20Sopenharmony_ci		 NA, NA),
17958c2ecf20Sopenharmony_ci	PINGROUP(77, ter_mi2s, qdss_stm19, qdss_tracedata_a, NA, NA, NA, NA,
17968c2ecf20Sopenharmony_ci		 NA, NA),
17978c2ecf20Sopenharmony_ci	PINGROUP(78, ter_mi2s, gcc_gp1_clk_b, NA, NA, NA, NA, NA, NA, NA),
17988c2ecf20Sopenharmony_ci	PINGROUP(79, sec_mi2s, NA, NA, NA, NA, NA, NA, NA, NA),
17998c2ecf20Sopenharmony_ci	PINGROUP(80, sec_mi2s, NA, NA, NA, NA, NA, NA, NA, NA),
18008c2ecf20Sopenharmony_ci	PINGROUP(81, sec_mi2s, blsp_spi5, blsp_uart5, blsp_uim5, gcc_gp2_clk_b,
18018c2ecf20Sopenharmony_ci		 NA, NA, NA, NA),
18028c2ecf20Sopenharmony_ci	PINGROUP(82, sec_mi2s, blsp_spi5, blsp_uart5, blsp_uim5, gcc_gp3_clk_b,
18038c2ecf20Sopenharmony_ci		 NA, NA, NA, NA),
18048c2ecf20Sopenharmony_ci	PINGROUP(83, sec_mi2s, blsp_spi5, blsp_uart5, blsp_i2c5, NA, NA, NA,
18058c2ecf20Sopenharmony_ci		 NA, NA),
18068c2ecf20Sopenharmony_ci	PINGROUP(84, blsp_spi5, blsp_uart5, blsp_i2c5, NA, NA, NA, NA, NA, NA),
18078c2ecf20Sopenharmony_ci	PINGROUP(85, blsp_spi12, blsp_uart12, blsp_uim12, NA, qdss_stm25,
18088c2ecf20Sopenharmony_ci		 qdss_tracedata_a, NA, NA, NA),
18098c2ecf20Sopenharmony_ci	PINGROUP(86, blsp_spi12, blsp_uart12, blsp_uim12, NA, NA, qdss_stm31,
18108c2ecf20Sopenharmony_ci		 qdss_tracedata_a, NA, NA),
18118c2ecf20Sopenharmony_ci	PINGROUP(87, blsp_spi12, blsp_uart12, blsp_i2c12, NA, qdss_stm30,
18128c2ecf20Sopenharmony_ci		 qdss_tracedata_a, NA, NA, NA),
18138c2ecf20Sopenharmony_ci	PINGROUP(88, blsp_spi12, blsp_uart12, blsp_i2c12, blsp10_spi, NA,
18148c2ecf20Sopenharmony_ci		 qdss_stm29, NA, NA, NA),
18158c2ecf20Sopenharmony_ci	PINGROUP(89, tsif1_clk, qdss_stm28, qdss_tracedata_a, NA, NA, NA, NA,
18168c2ecf20Sopenharmony_ci		 NA, NA),
18178c2ecf20Sopenharmony_ci	PINGROUP(90, tsif1_en, blsp1_spi, qdss_tracedata_a, NA, NA, NA, NA, NA,
18188c2ecf20Sopenharmony_ci		 NA),
18198c2ecf20Sopenharmony_ci	PINGROUP(91, tsif1_data, sdc4_cmd, qdss_stm27, qdss_traceclk_b, NA, NA,
18208c2ecf20Sopenharmony_ci		 NA, NA, NA),
18218c2ecf20Sopenharmony_ci	PINGROUP(92, tsif2_error, sdc43, vfr_1, qdss_stm26, qdss_tracedata_b,
18228c2ecf20Sopenharmony_ci		 NA, NA, NA, NA),
18238c2ecf20Sopenharmony_ci	PINGROUP(93, tsif2_clk, sdc4_clk, NA, qdss_stm24, qdss_tracedata_b, NA,
18248c2ecf20Sopenharmony_ci		 NA, NA, NA),
18258c2ecf20Sopenharmony_ci	PINGROUP(94, tsif2_en, sdc42, NA, qdss_stm23, qdss_tracectl_b, NA, NA,
18268c2ecf20Sopenharmony_ci		 NA, NA),
18278c2ecf20Sopenharmony_ci	PINGROUP(95, tsif2_data, sdc41, NA, NA, NA, NA, NA, NA, NA),
18288c2ecf20Sopenharmony_ci	PINGROUP(96, tsif2_sync, sdc40, NA, NA, NA, NA, NA, NA, NA),
18298c2ecf20Sopenharmony_ci	PINGROUP(97, NA, NA, mdp_vsync_p_b, ldo_en, NA, NA, NA, NA, NA),
18308c2ecf20Sopenharmony_ci	PINGROUP(98, NA, NA, mdp_vsync_s_b, ldo_update, NA, NA, NA, NA, NA),
18318c2ecf20Sopenharmony_ci	PINGROUP(99, NA, NA, NA, NA, NA, NA, NA, NA, NA),
18328c2ecf20Sopenharmony_ci	PINGROUP(100, NA, NA, blsp11_uart_tx_b, qdss_cti, NA, NA, NA, NA, NA),
18338c2ecf20Sopenharmony_ci	PINGROUP(101, NA, blsp11_uart_rx_b, qdss_cti, NA, NA, NA, NA, NA, NA),
18348c2ecf20Sopenharmony_ci	PINGROUP(102, NA, blsp11_i2c_sda_b, prng_rosc, NA, NA, NA, NA, NA, NA),
18358c2ecf20Sopenharmony_ci	PINGROUP(103, NA, blsp11_i2c_scl_b, NA, NA, NA, NA, NA, NA, NA),
18368c2ecf20Sopenharmony_ci	PINGROUP(104, NA, NA, NA, NA, NA, NA, NA, NA, NA),
18378c2ecf20Sopenharmony_ci	PINGROUP(105, uim2, NA, NA, NA, NA, NA, NA, NA, NA),
18388c2ecf20Sopenharmony_ci	PINGROUP(106, uim2, NA, NA, NA, NA, NA, NA, NA, NA),
18398c2ecf20Sopenharmony_ci	PINGROUP(107, uim2, NA, NA, NA, NA, NA, NA, NA, NA),
18408c2ecf20Sopenharmony_ci	PINGROUP(108, uim2, NA, NA, NA, NA, NA, NA, NA, NA),
18418c2ecf20Sopenharmony_ci	PINGROUP(109, uim1, NA, NA, NA, NA, NA, NA, NA, NA),
18428c2ecf20Sopenharmony_ci	PINGROUP(110, uim1, NA, NA, NA, NA, NA, NA, NA, NA),
18438c2ecf20Sopenharmony_ci	PINGROUP(111, uim1, NA, NA, NA, NA, NA, NA, NA, NA),
18448c2ecf20Sopenharmony_ci	PINGROUP(112, uim1, NA, NA, NA, NA, NA, NA, NA, NA),
18458c2ecf20Sopenharmony_ci	PINGROUP(113, uim_batt, NA, NA, NA, NA, NA, NA, NA, NA),
18468c2ecf20Sopenharmony_ci	PINGROUP(114, NA, pci_e2, NA, NA, NA, NA, NA, NA, NA),
18478c2ecf20Sopenharmony_ci	PINGROUP(115, NA, pci_e2, NA, NA, NA, NA, NA, NA, NA),
18488c2ecf20Sopenharmony_ci	PINGROUP(116, NA, pa_indicator, NA, NA, NA, NA, NA, NA, NA),
18498c2ecf20Sopenharmony_ci	PINGROUP(117, NA, NA, NA, NA, NA, NA, NA, NA, NA),
18508c2ecf20Sopenharmony_ci	PINGROUP(118, adsp_ext, NA, NA, NA, NA, NA, NA, NA, NA),
18518c2ecf20Sopenharmony_ci	PINGROUP(119, NA, NA, NA, NA, NA, NA, NA, NA, NA),
18528c2ecf20Sopenharmony_ci	PINGROUP(120, NA, NA, NA, NA, NA, NA, NA, NA, NA),
18538c2ecf20Sopenharmony_ci	PINGROUP(121, ddr_bist, NA, NA, NA, NA, NA, NA, NA, NA),
18548c2ecf20Sopenharmony_ci	PINGROUP(122, ddr_bist, NA, NA, NA, NA, NA, NA, NA, NA),
18558c2ecf20Sopenharmony_ci	PINGROUP(123, ddr_bist, qdss_tracedata_11, NA, NA, NA, NA, NA, NA, NA),
18568c2ecf20Sopenharmony_ci	PINGROUP(124, ddr_bist, qdss_tracedata_12, NA, NA, NA, NA, NA, NA, NA),
18578c2ecf20Sopenharmony_ci	PINGROUP(125, NA, NA, NA, NA, NA, NA, NA, NA, NA),
18588c2ecf20Sopenharmony_ci	PINGROUP(126, NA, NA, NA, NA, NA, NA, NA, NA, NA),
18598c2ecf20Sopenharmony_ci	PINGROUP(127, NA, NA, NA, NA, NA, NA, NA, NA, NA),
18608c2ecf20Sopenharmony_ci	PINGROUP(128, NA, modem_tsync, nav_dr, nav_pps, NA, NA, NA, NA, NA),
18618c2ecf20Sopenharmony_ci	PINGROUP(129, NA, NA, NA, NA, NA, NA, NA, NA, NA),
18628c2ecf20Sopenharmony_ci	PINGROUP(130, pci_e1, NA, NA, NA, NA, NA, NA, NA, NA),
18638c2ecf20Sopenharmony_ci	PINGROUP(131, pci_e1, NA, NA, NA, NA, NA, NA, NA, NA),
18648c2ecf20Sopenharmony_ci	PINGROUP(132, NA, NA, NA, NA, NA, NA, NA, NA, NA),
18658c2ecf20Sopenharmony_ci	PINGROUP(133, NA, NA, NA, NA, NA, NA, NA, NA, NA),
18668c2ecf20Sopenharmony_ci	PINGROUP(134, gsm_tx, NA, NA, NA, NA, NA, NA, NA, NA),
18678c2ecf20Sopenharmony_ci	PINGROUP(135, gsm_tx, NA, NA, NA, NA, NA, NA, NA, NA),
18688c2ecf20Sopenharmony_ci	PINGROUP(136, NA, NA, NA, NA, NA, NA, NA, NA, NA),
18698c2ecf20Sopenharmony_ci	PINGROUP(137, NA, NA, NA, NA, NA, NA, NA, NA, NA),
18708c2ecf20Sopenharmony_ci	PINGROUP(138, NA, qspi_cs, NA, NA, NA, NA, NA, NA, NA),
18718c2ecf20Sopenharmony_ci	PINGROUP(139, NA, ssbi2, NA, NA, NA, NA, NA, NA, NA),
18728c2ecf20Sopenharmony_ci	PINGROUP(140, NA, ssbi1, NA, NA, NA, NA, NA, NA, NA),
18738c2ecf20Sopenharmony_ci	PINGROUP(141, NA, qspi_cs, NA, NA, NA, NA, NA, NA, NA),
18748c2ecf20Sopenharmony_ci	PINGROUP(142, NA, NA, NA, NA, NA, NA, NA, NA, NA),
18758c2ecf20Sopenharmony_ci	PINGROUP(143, NA, NA, NA, NA, NA, NA, NA, NA, NA),
18768c2ecf20Sopenharmony_ci	PINGROUP(144, mss_lte, NA, NA, NA, NA, NA, NA, NA, NA),
18778c2ecf20Sopenharmony_ci	PINGROUP(145, mss_lte, qspi_clk, NA, NA, NA, NA, NA, NA, NA),
18788c2ecf20Sopenharmony_ci	PINGROUP(146, NA, qspi0, NA, NA, NA, NA, NA, NA, NA),
18798c2ecf20Sopenharmony_ci	PINGROUP(147, NA, qspi1, NA, NA, NA, NA, NA, NA, NA),
18808c2ecf20Sopenharmony_ci	PINGROUP(148, NA, qspi2, NA, NA, NA, NA, NA, NA, NA),
18818c2ecf20Sopenharmony_ci	PINGROUP(149, NA, qspi3, NA, NA, NA, NA, NA, NA, NA),
18828c2ecf20Sopenharmony_ci	SDC_QDSD_PINGROUP(sdc1_clk, 0x12c000, 13, 6),
18838c2ecf20Sopenharmony_ci	SDC_QDSD_PINGROUP(sdc1_cmd, 0x12c000, 11, 3),
18848c2ecf20Sopenharmony_ci	SDC_QDSD_PINGROUP(sdc1_data, 0x12c000, 9, 0),
18858c2ecf20Sopenharmony_ci	SDC_QDSD_PINGROUP(sdc2_clk, 0x12d000, 14, 6),
18868c2ecf20Sopenharmony_ci	SDC_QDSD_PINGROUP(sdc2_cmd, 0x12d000, 11, 3),
18878c2ecf20Sopenharmony_ci	SDC_QDSD_PINGROUP(sdc2_data, 0x12d000, 9, 0),
18888c2ecf20Sopenharmony_ci	SDC_QDSD_PINGROUP(sdc1_rclk, 0x12c000, 15, 0),
18898c2ecf20Sopenharmony_ci};
18908c2ecf20Sopenharmony_ci
18918c2ecf20Sopenharmony_cistatic const struct msm_pinctrl_soc_data msm8996_pinctrl = {
18928c2ecf20Sopenharmony_ci	.pins = msm8996_pins,
18938c2ecf20Sopenharmony_ci	.npins = ARRAY_SIZE(msm8996_pins),
18948c2ecf20Sopenharmony_ci	.functions = msm8996_functions,
18958c2ecf20Sopenharmony_ci	.nfunctions = ARRAY_SIZE(msm8996_functions),
18968c2ecf20Sopenharmony_ci	.groups = msm8996_groups,
18978c2ecf20Sopenharmony_ci	.ngroups = ARRAY_SIZE(msm8996_groups),
18988c2ecf20Sopenharmony_ci	.ngpios = 150,
18998c2ecf20Sopenharmony_ci};
19008c2ecf20Sopenharmony_ci
19018c2ecf20Sopenharmony_cistatic int msm8996_pinctrl_probe(struct platform_device *pdev)
19028c2ecf20Sopenharmony_ci{
19038c2ecf20Sopenharmony_ci	return msm_pinctrl_probe(pdev, &msm8996_pinctrl);
19048c2ecf20Sopenharmony_ci}
19058c2ecf20Sopenharmony_ci
19068c2ecf20Sopenharmony_cistatic const struct of_device_id msm8996_pinctrl_of_match[] = {
19078c2ecf20Sopenharmony_ci	{ .compatible = "qcom,msm8996-pinctrl", },
19088c2ecf20Sopenharmony_ci	{ }
19098c2ecf20Sopenharmony_ci};
19108c2ecf20Sopenharmony_ci
19118c2ecf20Sopenharmony_cistatic struct platform_driver msm8996_pinctrl_driver = {
19128c2ecf20Sopenharmony_ci	.driver = {
19138c2ecf20Sopenharmony_ci		.name = "msm8996-pinctrl",
19148c2ecf20Sopenharmony_ci		.of_match_table = msm8996_pinctrl_of_match,
19158c2ecf20Sopenharmony_ci	},
19168c2ecf20Sopenharmony_ci	.probe = msm8996_pinctrl_probe,
19178c2ecf20Sopenharmony_ci	.remove = msm_pinctrl_remove,
19188c2ecf20Sopenharmony_ci};
19198c2ecf20Sopenharmony_ci
19208c2ecf20Sopenharmony_cistatic int __init msm8996_pinctrl_init(void)
19218c2ecf20Sopenharmony_ci{
19228c2ecf20Sopenharmony_ci	return platform_driver_register(&msm8996_pinctrl_driver);
19238c2ecf20Sopenharmony_ci}
19248c2ecf20Sopenharmony_ciarch_initcall(msm8996_pinctrl_init);
19258c2ecf20Sopenharmony_ci
19268c2ecf20Sopenharmony_cistatic void __exit msm8996_pinctrl_exit(void)
19278c2ecf20Sopenharmony_ci{
19288c2ecf20Sopenharmony_ci	platform_driver_unregister(&msm8996_pinctrl_driver);
19298c2ecf20Sopenharmony_ci}
19308c2ecf20Sopenharmony_cimodule_exit(msm8996_pinctrl_exit);
19318c2ecf20Sopenharmony_ci
19328c2ecf20Sopenharmony_ciMODULE_DESCRIPTION("Qualcomm msm8996 pinctrl driver");
19338c2ecf20Sopenharmony_ciMODULE_LICENSE("GPL v2");
19348c2ecf20Sopenharmony_ciMODULE_DEVICE_TABLE(of, msm8996_pinctrl_of_match);
1935