/* SPDX-License-Identifier: GPL-2.0+ */ /* * Qualcomm common pin control data. * * Copyright (C) 2023 Linaro Ltd. */ #ifndef _QCOM_GPIO_H_ #define _QCOM_GPIO_H_ #include #include struct msm_pin_data { int pin_count; const unsigned int *pin_offsets; }; static inline u32 qcom_pin_offset(const unsigned int *offs, unsigned int selector) { u32 out = (selector * 0x1000); if (offs) return out + offs[selector]; return out; } #endif /* _QCOM_GPIO_H_ */