1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <device/mmio.h>
7 void gpio_configure(gpio_t gpio
, uint32_t func
, uint32_t pull
,
8 uint32_t drive_str
, uint32_t enable
)
11 struct tlmm_gpio
*regs
= (void *)(uintptr_t)gpio
.addr
;
13 reg_val
= ((enable
& GPIO_CFG_OE_BMSK
) << GPIO_CFG_OE_SHFT
) |
14 ((drive_str
& GPIO_CFG_DRV_BMSK
) << GPIO_CFG_DRV_SHFT
) |
15 ((func
& GPIO_CFG_FUNC_BMSK
) << GPIO_CFG_FUNC_SHFT
) |
16 ((pull
& GPIO_CFG_PULL_BMSK
) << GPIO_CFG_PULL_SHFT
);
18 write32(®s
->cfg
, reg_val
);
21 void gpio_set(gpio_t gpio
, int value
)
23 struct tlmm_gpio
*regs
= (void *)(uintptr_t)gpio
.addr
;
24 write32(®s
->in_out
, (!!value
) << GPIO_IO_OUT_SHFT
);
27 int gpio_get(gpio_t gpio
)
29 struct tlmm_gpio
*regs
= (void *)(uintptr_t)gpio
.addr
;
31 return ((read32(®s
->in_out
) >> GPIO_IO_IN_SHFT
) &
35 void gpio_input_pulldown(gpio_t gpio
)
37 gpio_configure(gpio
, GPIO_FUNC_GPIO
,
38 GPIO_PULL_DOWN
, GPIO_2MA
, GPIO_DISABLE
);
41 void gpio_input_pullup(gpio_t gpio
)
43 gpio_configure(gpio
, GPIO_FUNC_GPIO
,
44 GPIO_PULL_UP
, GPIO_2MA
, GPIO_DISABLE
);
47 void gpio_input(gpio_t gpio
)
49 gpio_configure(gpio
, GPIO_FUNC_GPIO
,
50 GPIO_NO_PULL
, GPIO_2MA
, GPIO_DISABLE
);
53 void gpio_output(gpio_t gpio
, int value
)
55 gpio_set(gpio
, value
);
56 gpio_configure(gpio
, GPIO_FUNC_GPIO
,
57 GPIO_NO_PULL
, GPIO_2MA
, GPIO_ENABLE
);
60 void gpio_input_irq(gpio_t gpio
, enum gpio_irq_type type
, uint32_t pull
)
62 struct tlmm_gpio
*regs
= (void *)(uintptr_t)gpio
.addr
;
64 gpio_configure(gpio
, GPIO_FUNC_GPIO
,
65 pull
, GPIO_2MA
, GPIO_DISABLE
);
67 clrsetbits32(®s
->intr_cfg
, GPIO_INTR_DECT_CTL_MASK
<<
68 GPIO_INTR_DECT_CTL_SHIFT
, type
<< GPIO_INTR_DECT_CTL_SHIFT
);
69 clrsetbits32(®s
->intr_cfg
, GPIO_INTR_RAW_STATUS_ENABLE
70 << GPIO_INTR_RAW_STATUS_EN_SHIFT
, GPIO_INTR_RAW_STATUS_ENABLE
71 << GPIO_INTR_RAW_STATUS_EN_SHIFT
);
74 int gpio_irq_status(gpio_t gpio
)
76 struct tlmm_gpio
*regs
= (void *)(uintptr_t)gpio
.addr
;
78 if (!(read32(®s
->intr_status
) & GPIO_INTR_STATUS_MASK
))
81 write32(®s
->intr_status
, GPIO_INTR_STATUS_DISABLE
);