123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214 |
- /* SPDX-License-Identifier: GPL-2.0-only */
- /*
- * Copyright (c) 2013, Sony Mobile Communications AB.
- * Copyright (c) 2021, The Linux Foundation. All rights reserved.
- * Copyright (c) 2023-2024 Qualcomm Innovation Center, Inc. All rights reserved.
- */
- #ifndef __PINCTRL_MSM_H__
- #define __PINCTRL_MSM_H__
- #include <linux/pinctrl/qcom-pinctrl.h>
- struct pinctrl_pin_desc;
- /**
- * struct msm_function - a pinmux function
- * @name: Name of the pinmux function.
- * @groups: List of pingroups for this function.
- * @ngroups: Number of entries in @groups.
- */
- struct msm_function {
- const char *name;
- const char * const *groups;
- unsigned ngroups;
- };
- /**
- * struct msm_pingroup - Qualcomm pingroup definition
- * @name: Name of the pingroup.
- * @pins: A list of pins assigned to this pingroup.
- * @npins: Number of entries in @pins.
- * @funcs: A list of pinmux functions that can be selected for
- * this group. The index of the selected function is used
- * for programming the function selector.
- * Entries should be indices into the groups list of the
- * struct msm_pinctrl_soc_data.
- * @ctl_reg: Offset of the register holding control bits for this group.
- * @io_reg: Offset of the register holding input/output bits for this group.
- * @intr_cfg_reg: Offset of the register holding interrupt configuration bits.
- * @intr_status_reg: Offset of the register holding the status bits for this group.
- * @intr_target_reg: Offset of the register specifying routing of the interrupts
- * from this group.
- * @dir_conn_reg: Offset of the register hmss setup in tile.
- * @reg_size_4k: Size of the group register space in 4k granularity.
- * @mux_bit: Offset in @ctl_reg for the pinmux function selection.
- * @pull_bit: Offset in @ctl_reg for the bias configuration.
- * @drv_bit: Offset in @ctl_reg for the drive strength configuration.
- * @od_bit: Offset in @ctl_reg for controlling open drain.
- * @oe_bit: Offset in @ctl_reg for controlling output enable.
- * @in_bit: Offset in @io_reg for the input bit value.
- * @out_bit: Offset in @io_reg for the output bit value.
- * @intr_enable_bit: Offset in @intr_cfg_reg for enabling the interrupt for this group.
- * @intr_status_bit: Offset in @intr_status_reg for reading and acking the interrupt
- * status.
- * @intr_target_bit: Offset in @intr_target_reg for configuring the interrupt routing.
- * @intr_target_width: Number of bits used for specifying interrupt routing target.
- * @intr_target_kpss_val: Value in @intr_target_bit for specifying that the interrupt from
- * this gpio should get routed to the KPSS processor.
- * @intr_raw_status_bit: Offset in @intr_cfg_reg for the raw status bit.
- * @intr_polarity_bit: Offset in @intr_cfg_reg for specifying polarity of the interrupt.
- * @intr_detection_bit: Offset in @intr_cfg_reg for specifying interrupt type.
- * @intr_detection_width: Number of bits used for specifying interrupt type,
- * Should be 2 for SoCs that can detect both edges in hardware,
- * otherwise 1.
- * @dir_conn_en_bit: Offset in @intr_cfg_reg for direct connect enable bit
- * @wake_reg: Offset of the WAKEUP_INT_EN register from base tile
- * @wake_bit: Bit number for the corresponding gpio
- */
- struct msm_pingroup {
- const char *name;
- const unsigned *pins;
- unsigned npins;
- unsigned *funcs;
- unsigned nfuncs;
- u32 ctl_reg;
- u32 io_reg;
- u32 intr_cfg_reg;
- u32 intr_status_reg;
- u32 intr_target_reg;
- u32 dir_conn_reg;
- unsigned int reg_size_4k:5;
- unsigned int tile:2;
- unsigned mux_bit:5;
- unsigned pull_bit:5;
- unsigned drv_bit:5;
- unsigned od_bit:5;
- unsigned egpio_enable:5;
- unsigned egpio_present:5;
- unsigned oe_bit:5;
- unsigned in_bit:5;
- unsigned out_bit:5;
- unsigned intr_enable_bit:5;
- unsigned intr_status_bit:5;
- unsigned intr_ack_high:1;
- unsigned intr_target_bit:5;
- unsigned intr_target_width:5;
- unsigned intr_wakeup_enable_bit:5;
- unsigned intr_wakeup_present_bit:5;
- unsigned intr_target_kpss_val:5;
- unsigned intr_raw_status_bit:5;
- unsigned intr_polarity_bit:5;
- unsigned intr_detection_bit:5;
- unsigned intr_detection_width:5;
- unsigned dir_conn_en_bit:8;
- u32 wake_reg;
- unsigned int wake_bit;
- };
- /**
- * struct msm_gpio_wakeirq_map - Map of GPIOs and their wakeup pins
- * @gpio: The GPIOs that are wakeup capable
- * @wakeirq: The interrupt at the always-on interrupt controller
- */
- struct msm_gpio_wakeirq_map {
- unsigned int gpio;
- unsigned int wakeirq;
- };
- /**
- * struct msm_dir_conn - TLMM Direct GPIO connect configuration
- * @gpio: GPIO pin number
- * @irq: The GIC interrupt that the pin is connected to
- */
- struct msm_dir_conn {
- int gpio;
- int irq;
- };
- /*
- * struct pinctrl_qup - Qup mode configuration
- * @mode: Qup i3c mode
- * @offset: Offset of the register
- */
- struct pinctrl_qup {
- u32 mode;
- u32 offset;
- };
- /*
- * struct msm_spare_tlmm - TLMM spare registers config
- * @spare_reg: spare register number
- * @offset: Offset of spare register
- */
- struct msm_spare_tlmm {
- int spare_reg;
- u32 offset;
- };
- /**
- * struct msm_pinctrl_soc_data - Qualcomm pin controller driver configuration
- * @pins: An array describing all pins the pin controller affects.
- * @npins: The number of entries in @pins.
- * @functions: An array describing all mux functions the SoC supports.
- * @nfunctions: The number of entries in @functions.
- * @groups: An array describing all pin groups the pin SoC supports.
- * @ngroups: The numbmer of entries in @groups.
- * @ngpio: The number of pingroups the driver should expose as GPIOs.
- * @pull_no_keeper: The SoC does not support keeper bias.
- * @wakeirq_map: The map of wakeup capable GPIOs and the pin at PDC/MPM
- * @nwakeirq_map: The number of entries in @wakeirq_map
- * @dir_conn: An array describing all the pins directly connected to GIC.
- * @wakeirq_dual_edge_errata: If true then GPIOs using the wakeirq_map need
- * to be aware that their parent can't handle dual
- * edge interrupts.
- * @gpio_func: Which function number is GPIO (usually 0).
- * @egpio_func: If non-zero then this SoC supports eGPIO. Even though in
- * hardware this is a mux 1-level above the TLMM, we'll treat
- * it as if this is just another mux state of the TLMM. Since
- * it doesn't really map to hardware, we'll allocate a virtual
- * function number for eGPIO and any time we see that function
- * number used we'll treat it as a request to mux away from
- * our TLMM towards another owner.
- */
- struct msm_pinctrl_soc_data {
- const struct pinctrl_pin_desc *pins;
- unsigned npins;
- const struct msm_function *functions;
- unsigned nfunctions;
- const struct msm_pingroup *groups;
- unsigned ngroups;
- unsigned ngpios;
- bool pull_no_keeper;
- const char *const *tiles;
- unsigned int ntiles;
- const int *reserved_gpios;
- const struct msm_gpio_wakeirq_map *wakeirq_map;
- unsigned int nwakeirq_map;
- bool wakeirq_dual_edge_errata;
- struct pinctrl_qup *qup_regs;
- unsigned int nqup_regs;
- unsigned int gpio_func;
- unsigned int egpio_func;
- u32 *dir_conn_addr;
- const struct msm_spare_tlmm *spare_regs;
- unsigned int nspare_regs;
- struct msm_dir_conn *dir_conn;
- };
- extern const struct dev_pm_ops msm_pinctrl_dev_pm_ops;
- extern const struct dev_pm_ops noirq_msm_pinctrl_dev_pm_ops;
- int msm_pinctrl_probe(struct platform_device *pdev,
- const struct msm_pinctrl_soc_data *soc_data);
- int msm_pinctrl_remove(struct platform_device *pdev);
- #endif
|