blob: 8dac62f870b9d80968b2ca601e70fdbd7a3974ae [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001/* SPDX-License-Identifier: GPL-2.0+ */
Mateusz Kulikowski2507d822016-03-31 23:12:32 +02002/*
Caleb Connollyfabb8972023-11-14 12:55:42 +00003 * Qualcomm common pin control data.
Mateusz Kulikowski2507d822016-03-31 23:12:32 +02004 *
Caleb Connollyfabb8972023-11-14 12:55:42 +00005 * Copyright (C) 2023 Linaro Ltd.
Mateusz Kulikowski2507d822016-03-31 23:12:32 +02006 */
Caleb Connollyfabb8972023-11-14 12:55:42 +00007#ifndef _QCOM_GPIO_H_
8#define _QCOM_GPIO_H_
9
10#include <asm/types.h>
11#include <stdbool.h>
12
13struct msm_pin_data {
14 int pin_count;
15 const unsigned int *pin_offsets;
16};
17
18static inline u32 qcom_pin_offset(const unsigned int *offs, unsigned int selector)
19{
20 u32 out = (selector * 0x1000);
21
22 if (offs)
23 return out + offs[selector];
24
25 return out;
26}
27
28#endif /* _QCOM_GPIO_H_ */