/* * Copyright (c) 2019 Intel Corporation * Copyright (c) 2022 Microchip Technology Inc. * * SPDX-License-Identifier: Apache-2.0 */ #define DT_DRV_COMPAT microchip_xec_ps2 #include #include #include #ifdef CONFIG_SOC_SERIES_MEC172X #include #include #endif #ifdef CONFIG_PINCTRL #include #endif #include #include #include #define LOG_LEVEL CONFIG_PS2_LOG_LEVEL LOG_MODULE_REGISTER(ps2_mchp_xec); /* in 50us units */ #define PS2_TIMEOUT 10000 struct ps2_xec_config { struct ps2_regs * const regs; int isr_nvic; uint8_t girq_id; uint8_t girq_bit; uint8_t pcr_idx; uint8_t pcr_pos; void (*irq_config_func)(void); #ifdef CONFIG_PINCTRL const struct pinctrl_dev_config *pcfg; #endif }; struct ps2_xec_data { ps2_callback_t callback_isr; struct k_sem tx_lock; }; #ifdef CONFIG_SOC_SERIES_MEC172X static inline void ps2_xec_slp_en_clr(const struct device *dev) { const struct ps2_xec_config * const cfg = dev->config; z_mchp_xec_pcr_periph_sleep(cfg->pcr_idx, cfg->pcr_pos, 0); } static inline void ps2_xec_girq_clr(const struct device *dev) { const struct ps2_xec_config * const cfg = dev->config; mchp_soc_ecia_girq_src_clr(cfg->girq_id, cfg->girq_bit); } static inline void ps2_xec_girq_en(const struct device *dev) { const struct ps2_xec_config * const cfg = dev->config; mchp_xec_ecia_girq_src_en(cfg->girq_id, cfg->girq_bit); } #else static inline void ps2_xec_slp_en_clr(const struct device *dev) { const struct ps2_xec_config * const cfg = dev->config; if (cfg->pcr_pos == MCHP_PCR3_PS2_0_POS) { mchp_pcr_periph_slp_ctrl(PCR_PS2_0, 0); } else { mchp_pcr_periph_slp_ctrl(PCR_PS2_1, 0); } } static inline void ps2_xec_girq_clr(const struct device *dev) { const struct ps2_xec_config * const cfg = dev->config; MCHP_GIRQ_SRC(cfg->girq_id) = BIT(cfg->girq_bit); } static inline void ps2_xec_girq_en(const struct device *dev) { const struct ps2_xec_config * const cfg = dev->config; MCHP_GIRQ_ENSET(cfg->girq_id) = BIT(cfg->girq_bit); } #endif /* CONFIG_SOC_SERIES_MEC172X */ static int ps2_xec_configure(const struct device *dev, ps2_callback_t callback_isr) { const struct ps2_xec_config * const config = dev->config; struct ps2_xec_data * const data = dev->data; struct ps2_regs * const regs = config->regs; uint8_t __attribute__((unused)) temp; if (!callback_isr) { return -EINVAL; } data->callback_isr = callback_isr; /* In case the self test for a PS2 device already finished and * set the SOURCE bit to 1 we clear it before enabling the * interrupts. Instances must be allocated before the BAT or * the host may time out. */ temp = regs->TRX_BUFF; regs->STATUS = MCHP_PS2_STATUS_RW1C_MASK; /* clear next higher level */ ps2_xec_girq_clr(dev); /* Enable FSM and init instance in rx mode*/ regs->CTRL = MCHP_PS2_CTRL_EN_POS; /* We enable the interrupts in the EC aggregator so that the * result can be forwarded to the ARM NVIC */ ps2_xec_girq_en(dev); k_sem_give(&data->tx_lock); return 0; } static int ps2_xec_write(const struct device *dev, uint8_t value) { const struct ps2_xec_config * const config = dev->config; struct ps2_xec_data * const data = dev->data; struct ps2_regs * const regs = config->regs; int i = 0; uint8_t __attribute__((unused)) temp; if (k_sem_take(&data->tx_lock, K_NO_WAIT)) { return -EACCES; } /* Allow the PS2 controller to complete a RX transaction. This * is because the channel may be actively receiving data. * In addition, it is necessary to wait for a previous TX * transaction to complete. The PS2 block has a single * FSM. */ while (((regs->STATUS & (MCHP_PS2_STATUS_RX_BUSY | MCHP_PS2_STATUS_TX_IDLE)) != MCHP_PS2_STATUS_TX_IDLE) && (i < PS2_TIMEOUT)) { k_busy_wait(50); i++; } if (unlikely(i == PS2_TIMEOUT)) { LOG_DBG("PS2 write timed out"); return -ETIMEDOUT; } /* Inhibit ps2 controller and clear status register */ regs->CTRL = 0x00; /* Read to clear data ready bit in the status register*/ temp = regs->TRX_BUFF; k_sleep(K_MSEC(1)); regs->STATUS = MCHP_PS2_STATUS_RW1C_MASK; /* Switch the interface to TX mode and enable state machine */ regs->CTRL = MCHP_PS2_CTRL_TR_TX | MCHP_PS2_CTRL_EN; /* Write value to TX/RX register */ regs->TRX_BUFF = value; k_sem_give(&data->tx_lock); return 0; } static int ps2_xec_inhibit_interface(const struct device *dev) { const struct ps2_xec_config * const config = dev->config; struct ps2_xec_data * const data = dev->data; struct ps2_regs * const regs = config->regs; if (k_sem_take(&data->tx_lock, K_MSEC(10)) != 0) { return -EACCES; } regs->CTRL = 0x00; regs->STATUS = MCHP_PS2_STATUS_RW1C_MASK; ps2_xec_girq_clr(dev); NVIC_ClearPendingIRQ(config->isr_nvic); k_sem_give(&data->tx_lock); return 0; } static int ps2_xec_enable_interface(const struct device *dev) { const struct ps2_xec_config * const config = dev->config; struct ps2_xec_data * const data = dev->data; struct ps2_regs * const regs = config->regs; ps2_xec_girq_clr(dev); regs->CTRL = MCHP_PS2_CTRL_EN; k_sem_give(&data->tx_lock); return 0; } static void ps2_xec_isr(const struct device *dev) { const struct ps2_xec_config * const config = dev->config; struct ps2_xec_data * const data = dev->data; struct ps2_regs * const regs = config->regs; uint32_t status; /* Read and clear status */ status = regs->STATUS; /* clear next higher level the GIRQ */ ps2_xec_girq_clr(dev); if (status & MCHP_PS2_STATUS_RXD_RDY) { regs->CTRL = 0x00; if (data->callback_isr) { data->callback_isr(dev, regs->TRX_BUFF); } } else if (status & (MCHP_PS2_STATUS_TX_TMOUT | MCHP_PS2_STATUS_TX_ST_TMOUT)) { /* Clear sticky bits and go to read mode */ regs->STATUS = MCHP_PS2_STATUS_RW1C_MASK; LOG_ERR("TX time out: %0x", status); } /* The control register reverts to RX automatically after * transmitting the data */ regs->CTRL = MCHP_PS2_CTRL_EN; } static const struct ps2_driver_api ps2_xec_driver_api = { .config = ps2_xec_configure, .read = NULL, .write = ps2_xec_write, .disable_callback = ps2_xec_inhibit_interface, .enable_callback = ps2_xec_enable_interface, }; static int ps2_xec_init(const struct device *dev) { const struct ps2_xec_config * const cfg = dev->config; struct ps2_xec_data * const data = dev->data; #ifdef CONFIG_PINCTRL int ret = pinctrl_apply_state(cfg->pcfg, PINCTRL_STATE_DEFAULT); if (ret != 0) { LOG_ERR("XEC PS2 pinctrl init failed (%d)", ret); return ret; } #endif ps2_xec_slp_en_clr(dev); k_sem_init(&data->tx_lock, 0, 1); cfg->irq_config_func(); return 0; } #ifdef CONFIG_PINCTRL #define XEC_PS2_PINCTRL_CFG(inst) PINCTRL_DT_INST_DEFINE(inst) #define XEC_PS2_CONFIG(inst) \ static const struct ps2_xec_config ps2_xec_config_##inst = { \ .regs = (struct ps2_regs * const)(DT_INST_REG_ADDR(inst)), \ .isr_nvic = DT_INST_IRQN(inst), \ .girq_id = (uint8_t)(DT_INST_PROP_BY_IDX(inst, girqs, 0)), \ .girq_bit = (uint8_t)(DT_INST_PROP_BY_IDX(inst, girqs, 1)), \ .pcr_idx = (uint8_t)(DT_INST_PROP_BY_IDX(inst, pcrs, 0)), \ .pcr_pos = (uint8_t)(DT_INST_PROP_BY_IDX(inst, pcrs, 1)), \ .irq_config_func = ps2_xec_irq_config_func_##inst, \ .pcfg = PINCTRL_DT_INST_DEV_CONFIG_GET(inst), \ } #else #define XEC_PS2_PINCTRL_CFG(inst) #define XEC_PS2_CONFIG(inst) \ static const struct ps2_xec_config ps2_xec_config_##inst = { \ .regs = (struct ps2_regs * const)(DT_INST_REG_ADDR(inst)), \ .isr_nvic = DT_INST_IRQN(inst), \ .girq_id = (uint8_t)(DT_INST_PROP_BY_IDX(inst, girqs, 0)), \ .girq_bit = (uint8_t)(DT_INST_PROP_BY_IDX(inst, girqs, 1)), \ .pcr_idx = (uint8_t)(DT_INST_PROP_BY_IDX(inst, pcrs, 0)), \ .pcr_pos = (uint8_t)(DT_INST_PROP_BY_IDX(inst, pcrs, 1)), \ .irq_config_func = ps2_xec_irq_config_func_##inst, \ } #endif #define PS2_XEC_DEVICE(i) \ \ static void ps2_xec_irq_config_func_##i(void) \ { \ IRQ_CONNECT(DT_INST_IRQN(i), \ DT_INST_IRQ(i, priority), \ ps2_xec_isr, \ DEVICE_DT_INST_GET(i), 0); \ irq_enable(DT_INST_IRQN(i)); \ } \ \ static struct ps2_xec_data ps2_xec_port_data_##i; \ \ XEC_PS2_PINCTRL_CFG(i); \ \ XEC_PS2_CONFIG(i); \ \ DEVICE_DT_INST_DEFINE(i, &ps2_xec_init, \ NULL, \ &ps2_xec_port_data_##i, &ps2_xec_config_##i, \ POST_KERNEL, CONFIG_PS2_INIT_PRIORITY, \ &ps2_xec_driver_api); DT_INST_FOREACH_STATUS_OKAY(PS2_XEC_DEVICE)