soc/intel/ptl: Update ME specification version to 21
[coreboot.git] / src / soc / qualcomm / common / gpio.c
blob5053f3ba5f35e24b4d85bf0ff70ed6f642730440
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <assert.h>
4 #include <device/mmio.h>
5 #include <gpio.h>
7 void gpio_configure(gpio_t gpio, uint32_t func, uint32_t pull,
8 uint32_t drive_str, uint32_t enable)
10 struct tlmm_gpio *regs = (void *)(uintptr_t)gpio.addr;
11 uint32_t reg_val;
13 /* gpio pull only PULLNONE, PULLUP, KEEPER, PULLDOWN status */
14 assert(pull <= GPIO_PULL_UP);
16 reg_val = ((enable & GPIO_BMSK) << GPIO_CFG_OE_SHFT) |
17 ((drive_str & GPIO_CFG_DRV_BMSK) << GPIO_CFG_DRV_SHFT) |
18 ((func & GPIO_CFG_FUNC_BMSK) << GPIO_CFG_FUNC_SHFT) |
19 ((pull & GPIO_CFG_PULL_BMSK) << GPIO_CFG_PULL_SHFT) |
20 ((read32(&regs->cfg) & GPIO_CFG_EGPIO_BMSK)
21 << GPIO_CFG_EGPIO_SHFT);
23 write32(&regs->cfg, reg_val);
26 void gpio_set(gpio_t gpio, int value)
28 struct tlmm_gpio *regs = (void *)(uintptr_t)gpio.addr;
30 write32(&regs->in_out, (!!value) << GPIO_IO_OUT_SHFT);
33 int gpio_get(gpio_t gpio)
35 struct tlmm_gpio *regs = (void *)(uintptr_t)gpio.addr;
37 return ((read32(&regs->in_out) >> GPIO_IO_IN_SHFT) & GPIO_BMSK);
40 void gpio_input_pulldown(gpio_t gpio)
42 gpio_configure(gpio, GPIO_FUNC_GPIO,
43 GPIO_PULL_DOWN, GPIO_2MA, GPIO_INPUT);
46 void gpio_input_pullup(gpio_t gpio)
48 gpio_configure(gpio, GPIO_FUNC_GPIO,
49 GPIO_PULL_UP, GPIO_2MA, GPIO_INPUT);
52 void gpio_input(gpio_t gpio)
54 gpio_configure(gpio, GPIO_FUNC_GPIO,
55 GPIO_NO_PULL, GPIO_2MA, GPIO_INPUT);
58 void gpio_output(gpio_t gpio, int value)
60 gpio_set(gpio, value);
61 gpio_configure(gpio, GPIO_FUNC_GPIO,
62 GPIO_NO_PULL, GPIO_2MA, GPIO_OUTPUT);
65 void gpio_input_irq(gpio_t gpio, enum gpio_irq_type type, uint32_t pull)
67 struct tlmm_gpio *regs = (void *)(uintptr_t)gpio.addr;
69 gpio_configure(gpio, GPIO_FUNC_GPIO,
70 pull, GPIO_2MA, GPIO_INPUT);
72 clrsetbits32(&regs->intr_cfg, GPIO_INTR_DECT_CTL_MASK <<
73 GPIO_INTR_DECT_CTL_SHFT, type << GPIO_INTR_DECT_CTL_SHFT);
74 clrsetbits32(&regs->intr_cfg, GPIO_INTR_STATUS_ENABLE
75 << GPIO_INTR_RAW_STATUS_EN_SHFT, GPIO_INTR_STATUS_ENABLE
76 << GPIO_INTR_RAW_STATUS_EN_SHFT);
79 int gpio_irq_status(gpio_t gpio)
81 struct tlmm_gpio *regs = (void *)(uintptr_t)gpio.addr;
83 if (!(read32(&regs->intr_status) & GPIO_INTR_STATUS_MASK))
84 return GPIO_INTR_STATUS_DISABLE;
86 write32(&regs->intr_status, GPIO_INTR_STATUS_DISABLE);
88 return GPIO_INTR_STATUS_ENABLE;