20021f2826
This change will print sw_ctrl_gpio value during pci_link up fails. Change-Id: Ifc92f52911e64b69ba80787763de0b5d1e15c217 CRs-Fixed: 3641068
680 lines
18 KiB
C
680 lines
18 KiB
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/* Copyright (c) 2022-2023 Qualcomm Innovation Center, Inc. All rights reserved. */
|
|
|
|
#include "pci_platform.h"
|
|
#include "debug.h"
|
|
|
|
static struct cnss_msi_config msi_config = {
|
|
.total_vectors = 32,
|
|
.total_users = MSI_USERS,
|
|
.users = (struct cnss_msi_user[]) {
|
|
{ .name = "MHI", .num_vectors = 3, .base_vector = 0 },
|
|
{ .name = "CE", .num_vectors = 10, .base_vector = 3 },
|
|
{ .name = "WAKE", .num_vectors = 1, .base_vector = 13 },
|
|
{ .name = "DP", .num_vectors = 18, .base_vector = 14 },
|
|
},
|
|
};
|
|
|
|
#ifdef CONFIG_ONE_MSI_VECTOR
|
|
/**
|
|
* All the user share the same vector and msi data
|
|
* For MHI user, we need pass IRQ array information to MHI component
|
|
* MHI_IRQ_NUMBER is defined to specify this MHI IRQ array size
|
|
*/
|
|
#define MHI_IRQ_NUMBER 3
|
|
static struct cnss_msi_config msi_config_one_msi = {
|
|
.total_vectors = 1,
|
|
.total_users = 4,
|
|
.users = (struct cnss_msi_user[]) {
|
|
{ .name = "MHI", .num_vectors = 1, .base_vector = 0 },
|
|
{ .name = "CE", .num_vectors = 1, .base_vector = 0 },
|
|
{ .name = "WAKE", .num_vectors = 1, .base_vector = 0 },
|
|
{ .name = "DP", .num_vectors = 1, .base_vector = 0 },
|
|
},
|
|
};
|
|
#endif
|
|
|
|
int _cnss_pci_enumerate(struct cnss_plat_data *plat_priv, u32 rc_num)
|
|
{
|
|
return msm_pcie_enumerate(rc_num);
|
|
}
|
|
|
|
int cnss_pci_assert_perst(struct cnss_pci_data *pci_priv)
|
|
{
|
|
struct pci_dev *pci_dev = pci_priv->pci_dev;
|
|
|
|
return msm_pcie_pm_control(MSM_PCIE_HANDLE_LINKDOWN,
|
|
pci_dev->bus->number, pci_dev, NULL,
|
|
PM_OPTIONS_DEFAULT);
|
|
}
|
|
|
|
int cnss_pci_disable_pc(struct cnss_pci_data *pci_priv, bool vote)
|
|
{
|
|
struct pci_dev *pci_dev = pci_priv->pci_dev;
|
|
|
|
return msm_pcie_pm_control(vote ? MSM_PCIE_DISABLE_PC :
|
|
MSM_PCIE_ENABLE_PC,
|
|
pci_dev->bus->number, pci_dev, NULL,
|
|
PM_OPTIONS_DEFAULT);
|
|
}
|
|
|
|
int cnss_pci_set_link_bandwidth(struct cnss_pci_data *pci_priv,
|
|
u16 link_speed, u16 link_width)
|
|
{
|
|
return msm_pcie_set_link_bandwidth(pci_priv->pci_dev,
|
|
link_speed, link_width);
|
|
}
|
|
|
|
int cnss_pci_set_max_link_speed(struct cnss_pci_data *pci_priv,
|
|
u32 rc_num, u16 link_speed)
|
|
{
|
|
return msm_pcie_set_target_link_speed(rc_num, link_speed, false);
|
|
}
|
|
|
|
/**
|
|
* _cnss_pci_prevent_l1() - Prevent PCIe L1 and L1 sub-states
|
|
* @pci_priv: driver PCI bus context pointer
|
|
*
|
|
* This function shall call corresponding PCIe root complex driver APIs
|
|
* to prevent PCIe link enter L1 and L1 sub-states. The APIs should also
|
|
* bring link out of L1 or L1 sub-states if any and avoid synchronization
|
|
* issues if any.
|
|
*
|
|
* Return: 0 for success, negative value for error
|
|
*/
|
|
static int _cnss_pci_prevent_l1(struct cnss_pci_data *pci_priv)
|
|
{
|
|
return msm_pcie_prevent_l1(pci_priv->pci_dev);
|
|
}
|
|
|
|
/**
|
|
* _cnss_pci_allow_l1() - Allow PCIe L1 and L1 sub-states
|
|
* @pci_priv: driver PCI bus context pointer
|
|
*
|
|
* This function shall call corresponding PCIe root complex driver APIs
|
|
* to allow PCIe link enter L1 and L1 sub-states. The APIs should avoid
|
|
* synchronization issues if any.
|
|
*
|
|
* Return: 0 for success, negative value for error
|
|
*/
|
|
static void _cnss_pci_allow_l1(struct cnss_pci_data *pci_priv)
|
|
{
|
|
msm_pcie_allow_l1(pci_priv->pci_dev);
|
|
}
|
|
|
|
/**
|
|
* cnss_pci_set_link_up() - Power on or resume PCIe link
|
|
* @pci_priv: driver PCI bus context pointer
|
|
*
|
|
* This function shall call corresponding PCIe root complex driver APIs
|
|
* to Power on or resume PCIe link.
|
|
*
|
|
* Return: 0 for success, negative value for error
|
|
*/
|
|
static int cnss_pci_set_link_up(struct cnss_pci_data *pci_priv)
|
|
{
|
|
struct pci_dev *pci_dev = pci_priv->pci_dev;
|
|
enum msm_pcie_pm_opt pm_ops = MSM_PCIE_RESUME;
|
|
u32 pm_options = PM_OPTIONS_DEFAULT;
|
|
int ret;
|
|
|
|
ret = msm_pcie_pm_control(pm_ops, pci_dev->bus->number, pci_dev,
|
|
NULL, pm_options);
|
|
if (ret)
|
|
cnss_pr_err("Failed to resume PCI link with default option, err = %d\n",
|
|
ret);
|
|
|
|
return ret;
|
|
}
|
|
|
|
/**
|
|
* cnss_pci_set_link_down() - Power off or suspend PCIe link
|
|
* @pci_priv: driver PCI bus context pointer
|
|
*
|
|
* This function shall call corresponding PCIe root complex driver APIs
|
|
* to power off or suspend PCIe link.
|
|
*
|
|
* Return: 0 for success, negative value for error
|
|
*/
|
|
static int cnss_pci_set_link_down(struct cnss_pci_data *pci_priv)
|
|
{
|
|
struct pci_dev *pci_dev = pci_priv->pci_dev;
|
|
enum msm_pcie_pm_opt pm_ops;
|
|
u32 pm_options = PM_OPTIONS_DEFAULT;
|
|
int ret;
|
|
|
|
if (pci_priv->drv_connected_last) {
|
|
cnss_pr_vdbg("Use PCIe DRV suspend\n");
|
|
pm_ops = MSM_PCIE_DRV_SUSPEND;
|
|
} else {
|
|
pm_ops = MSM_PCIE_SUSPEND;
|
|
}
|
|
|
|
ret = msm_pcie_pm_control(pm_ops, pci_dev->bus->number, pci_dev,
|
|
NULL, pm_options);
|
|
if (ret)
|
|
cnss_pr_err("Failed to suspend PCI link with default option, err = %d\n",
|
|
ret);
|
|
|
|
return ret;
|
|
}
|
|
|
|
void cnss_pci_update_drv_supported(struct cnss_pci_data *pci_priv)
|
|
{
|
|
struct pci_dev *root_port = pcie_find_root_port(pci_priv->pci_dev);
|
|
struct cnss_plat_data *plat_priv = pci_priv->plat_priv;
|
|
struct device_node *root_of_node;
|
|
bool drv_supported = false;
|
|
|
|
if (!root_port) {
|
|
cnss_pr_err("PCIe DRV is not supported as root port is null\n");
|
|
pci_priv->drv_supported = false;
|
|
return;
|
|
}
|
|
|
|
root_of_node = root_port->dev.of_node;
|
|
|
|
if (root_of_node->parent) {
|
|
drv_supported = of_property_read_bool(root_of_node->parent,
|
|
"qcom,drv-supported") ||
|
|
of_property_read_bool(root_of_node->parent,
|
|
"qcom,drv-name");
|
|
}
|
|
|
|
cnss_pr_dbg("PCIe DRV is %s\n",
|
|
drv_supported ? "supported" : "not supported");
|
|
pci_priv->drv_supported = drv_supported;
|
|
|
|
if (drv_supported) {
|
|
plat_priv->cap.cap_flag |= CNSS_HAS_DRV_SUPPORT;
|
|
cnss_set_feature_list(plat_priv, CNSS_DRV_SUPPORT_V01);
|
|
}
|
|
}
|
|
|
|
static void cnss_pci_event_cb(struct msm_pcie_notify *notify)
|
|
{
|
|
struct pci_dev *pci_dev;
|
|
struct cnss_pci_data *pci_priv;
|
|
struct device *dev;
|
|
struct cnss_plat_data *plat_priv = NULL;
|
|
int ret = 0;
|
|
|
|
if (!notify)
|
|
return;
|
|
|
|
pci_dev = notify->user;
|
|
if (!pci_dev)
|
|
return;
|
|
|
|
pci_priv = cnss_get_pci_priv(pci_dev);
|
|
if (!pci_priv)
|
|
return;
|
|
dev = &pci_priv->pci_dev->dev;
|
|
|
|
switch (notify->event) {
|
|
case MSM_PCIE_EVENT_LINK_RECOVER:
|
|
cnss_pr_dbg("PCI link recover callback\n");
|
|
|
|
plat_priv = pci_priv->plat_priv;
|
|
if (!plat_priv) {
|
|
cnss_pr_err("plat_priv is NULL\n");
|
|
return;
|
|
}
|
|
|
|
plat_priv->ctrl_params.quirks |= BIT(LINK_DOWN_SELF_RECOVERY);
|
|
|
|
ret = msm_pcie_pm_control(MSM_PCIE_HANDLE_LINKDOWN,
|
|
pci_dev->bus->number, pci_dev, NULL,
|
|
PM_OPTIONS_DEFAULT);
|
|
if (ret)
|
|
cnss_pci_handle_linkdown(pci_priv);
|
|
break;
|
|
case MSM_PCIE_EVENT_LINKDOWN:
|
|
cnss_pr_dbg("PCI link down event callback\n");
|
|
cnss_pci_handle_linkdown(pci_priv);
|
|
break;
|
|
case MSM_PCIE_EVENT_WAKEUP:
|
|
cnss_pr_dbg("PCI Wake up event callback\n");
|
|
if ((cnss_pci_get_monitor_wake_intr(pci_priv) &&
|
|
cnss_pci_get_auto_suspended(pci_priv)) ||
|
|
dev->power.runtime_status == RPM_SUSPENDING) {
|
|
cnss_pci_set_monitor_wake_intr(pci_priv, false);
|
|
cnss_pci_pm_request_resume(pci_priv);
|
|
}
|
|
complete(&pci_priv->wake_event_complete);
|
|
break;
|
|
case MSM_PCIE_EVENT_DRV_CONNECT:
|
|
cnss_pr_dbg("DRV subsystem is connected\n");
|
|
cnss_pci_set_drv_connected(pci_priv, 1);
|
|
break;
|
|
case MSM_PCIE_EVENT_DRV_DISCONNECT:
|
|
cnss_pr_dbg("DRV subsystem is disconnected\n");
|
|
if (cnss_pci_get_auto_suspended(pci_priv))
|
|
cnss_pci_pm_request_resume(pci_priv);
|
|
cnss_pci_set_drv_connected(pci_priv, 0);
|
|
break;
|
|
default:
|
|
cnss_pr_err("Received invalid PCI event: %d\n", notify->event);
|
|
}
|
|
}
|
|
|
|
int cnss_reg_pci_event(struct cnss_pci_data *pci_priv)
|
|
{
|
|
int ret = 0;
|
|
struct msm_pcie_register_event *pci_event;
|
|
|
|
pci_event = &pci_priv->msm_pci_event;
|
|
pci_event->events = MSM_PCIE_EVENT_LINK_RECOVER |
|
|
MSM_PCIE_EVENT_LINKDOWN |
|
|
MSM_PCIE_EVENT_WAKEUP;
|
|
|
|
if (cnss_pci_get_drv_supported(pci_priv))
|
|
pci_event->events = pci_event->events |
|
|
MSM_PCIE_EVENT_DRV_CONNECT |
|
|
MSM_PCIE_EVENT_DRV_DISCONNECT;
|
|
|
|
pci_event->user = pci_priv->pci_dev;
|
|
pci_event->mode = MSM_PCIE_TRIGGER_CALLBACK;
|
|
pci_event->callback = cnss_pci_event_cb;
|
|
pci_event->options = MSM_PCIE_CONFIG_NO_RECOVERY;
|
|
|
|
ret = msm_pcie_register_event(pci_event);
|
|
if (ret)
|
|
cnss_pr_err("Failed to register MSM PCI event, err = %d\n",
|
|
ret);
|
|
|
|
return ret;
|
|
}
|
|
|
|
void cnss_dereg_pci_event(struct cnss_pci_data *pci_priv)
|
|
{
|
|
msm_pcie_deregister_event(&pci_priv->msm_pci_event);
|
|
}
|
|
|
|
int cnss_wlan_adsp_pc_enable(struct cnss_pci_data *pci_priv,
|
|
bool control)
|
|
{
|
|
struct pci_dev *pci_dev = pci_priv->pci_dev;
|
|
int ret = 0;
|
|
u32 pm_options = PM_OPTIONS_DEFAULT;
|
|
struct cnss_plat_data *plat_priv = pci_priv->plat_priv;
|
|
|
|
if (!cnss_pci_get_drv_supported(pci_priv))
|
|
return 0;
|
|
|
|
if (plat_priv->adsp_pc_enabled == control) {
|
|
cnss_pr_dbg("ADSP power collapse already %s\n",
|
|
control ? "Enabled" : "Disabled");
|
|
return 0;
|
|
}
|
|
|
|
if (control)
|
|
pm_options &= ~MSM_PCIE_CONFIG_NO_DRV_PC;
|
|
else
|
|
pm_options |= MSM_PCIE_CONFIG_NO_DRV_PC;
|
|
|
|
ret = msm_pcie_pm_control(MSM_PCIE_DRV_PC_CTRL, pci_dev->bus->number,
|
|
pci_dev, NULL, pm_options);
|
|
if (ret)
|
|
return ret;
|
|
|
|
cnss_pr_dbg("%s ADSP power collapse\n", control ? "Enable" : "Disable");
|
|
plat_priv->adsp_pc_enabled = control;
|
|
return 0;
|
|
}
|
|
|
|
static int cnss_set_pci_link_status(struct cnss_pci_data *pci_priv,
|
|
enum pci_link_status status)
|
|
{
|
|
u16 link_speed, link_width = pci_priv->def_link_width;
|
|
u16 one_lane = PCI_EXP_LNKSTA_NLW_X1 >> PCI_EXP_LNKSTA_NLW_SHIFT;
|
|
int ret;
|
|
|
|
cnss_pr_vdbg("Set PCI link status to: %u\n", status);
|
|
|
|
switch (status) {
|
|
case PCI_GEN1:
|
|
link_speed = PCI_EXP_LNKSTA_CLS_2_5GB;
|
|
if (!link_width)
|
|
link_width = one_lane;
|
|
break;
|
|
case PCI_GEN2:
|
|
link_speed = PCI_EXP_LNKSTA_CLS_5_0GB;
|
|
if (!link_width)
|
|
link_width = one_lane;
|
|
break;
|
|
case PCI_DEF:
|
|
link_speed = pci_priv->def_link_speed;
|
|
if (!link_speed || !link_width) {
|
|
cnss_pr_err("PCI link speed or width is not valid\n");
|
|
return -EINVAL;
|
|
}
|
|
break;
|
|
default:
|
|
cnss_pr_err("Unknown PCI link status config: %u\n", status);
|
|
return -EINVAL;
|
|
}
|
|
|
|
ret = cnss_pci_set_link_bandwidth(pci_priv, link_speed, link_width);
|
|
if (!ret)
|
|
pci_priv->cur_link_speed = link_speed;
|
|
|
|
return ret;
|
|
}
|
|
|
|
int cnss_set_pci_link(struct cnss_pci_data *pci_priv, bool link_up)
|
|
{
|
|
int ret = 0, retry = 0;
|
|
struct cnss_plat_data *plat_priv;
|
|
int sw_ctrl_gpio;
|
|
|
|
plat_priv = pci_priv->plat_priv;
|
|
sw_ctrl_gpio = plat_priv->pinctrl_info.sw_ctrl_gpio;
|
|
|
|
cnss_pr_vdbg("%s PCI link\n", link_up ? "Resuming" : "Suspending");
|
|
|
|
if (link_up) {
|
|
retry:
|
|
ret = cnss_pci_set_link_up(pci_priv);
|
|
if (ret && retry++ < LINK_TRAINING_RETRY_MAX_TIMES) {
|
|
cnss_pr_dbg("Retry PCI link training #%d\n", retry);
|
|
cnss_pr_dbg("Value of SW_CTRL GPIO: %d\n",
|
|
cnss_get_input_gpio_value(plat_priv, sw_ctrl_gpio));
|
|
if (pci_priv->pci_link_down_ind)
|
|
msleep(LINK_TRAINING_RETRY_DELAY_MS * retry);
|
|
goto retry;
|
|
}
|
|
} else {
|
|
/* Since DRV suspend cannot be done in Gen 3, set it to
|
|
* Gen 2 if current link speed is larger than Gen 2.
|
|
*/
|
|
if (pci_priv->drv_connected_last &&
|
|
pci_priv->cur_link_speed > PCI_EXP_LNKSTA_CLS_5_0GB)
|
|
cnss_set_pci_link_status(pci_priv, PCI_GEN2);
|
|
|
|
ret = cnss_pci_set_link_down(pci_priv);
|
|
}
|
|
|
|
if (pci_priv->drv_connected_last) {
|
|
if ((link_up && !ret) || (!link_up && ret))
|
|
cnss_set_pci_link_status(pci_priv, PCI_DEF);
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
|
|
int cnss_pci_prevent_l1(struct device *dev)
|
|
{
|
|
struct pci_dev *pci_dev = to_pci_dev(dev);
|
|
struct cnss_pci_data *pci_priv = cnss_get_pci_priv(pci_dev);
|
|
int ret;
|
|
|
|
if (!pci_priv) {
|
|
cnss_pr_err("pci_priv is NULL\n");
|
|
return -ENODEV;
|
|
}
|
|
|
|
if (pci_priv->pci_link_state == PCI_LINK_DOWN) {
|
|
cnss_pr_dbg("PCIe link is in suspend state\n");
|
|
return -EIO;
|
|
}
|
|
|
|
if (pci_priv->pci_link_down_ind) {
|
|
cnss_pr_err("PCIe link is down\n");
|
|
return -EIO;
|
|
}
|
|
|
|
ret = _cnss_pci_prevent_l1(pci_priv);
|
|
if (ret == -EIO) {
|
|
cnss_pr_err("Failed to prevent PCIe L1, considered as link down\n");
|
|
cnss_pci_link_down(dev);
|
|
}
|
|
|
|
return ret;
|
|
}
|
|
EXPORT_SYMBOL(cnss_pci_prevent_l1);
|
|
|
|
void cnss_pci_allow_l1(struct device *dev)
|
|
{
|
|
struct pci_dev *pci_dev = to_pci_dev(dev);
|
|
struct cnss_pci_data *pci_priv = cnss_get_pci_priv(pci_dev);
|
|
|
|
if (!pci_priv) {
|
|
cnss_pr_err("pci_priv is NULL\n");
|
|
return;
|
|
}
|
|
|
|
if (pci_priv->pci_link_state == PCI_LINK_DOWN) {
|
|
cnss_pr_dbg("PCIe link is in suspend state\n");
|
|
return;
|
|
}
|
|
|
|
if (pci_priv->pci_link_down_ind) {
|
|
cnss_pr_err("PCIe link is down\n");
|
|
return;
|
|
}
|
|
|
|
_cnss_pci_allow_l1(pci_priv);
|
|
}
|
|
EXPORT_SYMBOL(cnss_pci_allow_l1);
|
|
|
|
int cnss_pci_get_msi_assignment(struct cnss_pci_data *pci_priv)
|
|
{
|
|
pci_priv->msi_config = &msi_config;
|
|
|
|
return 0;
|
|
}
|
|
|
|
#ifdef CONFIG_ONE_MSI_VECTOR
|
|
int cnss_pci_get_one_msi_assignment(struct cnss_pci_data *pci_priv)
|
|
{
|
|
pci_priv->msi_config = &msi_config_one_msi;
|
|
|
|
return 0;
|
|
}
|
|
|
|
bool cnss_pci_fallback_one_msi(struct cnss_pci_data *pci_priv,
|
|
int *num_vectors)
|
|
{
|
|
struct pci_dev *pci_dev = pci_priv->pci_dev;
|
|
struct cnss_msi_config *msi_config;
|
|
|
|
cnss_pci_get_one_msi_assignment(pci_priv);
|
|
msi_config = pci_priv->msi_config;
|
|
if (!msi_config) {
|
|
cnss_pr_err("one msi_config is NULL!\n");
|
|
return false;
|
|
}
|
|
*num_vectors = pci_alloc_irq_vectors(pci_dev,
|
|
msi_config->total_vectors,
|
|
msi_config->total_vectors,
|
|
PCI_IRQ_MSI);
|
|
if (*num_vectors < 0) {
|
|
cnss_pr_err("Failed to get one MSI vector!\n");
|
|
return false;
|
|
}
|
|
cnss_pr_dbg("request MSI one vector\n");
|
|
|
|
return true;
|
|
}
|
|
|
|
bool cnss_pci_is_one_msi(struct cnss_pci_data *pci_priv)
|
|
{
|
|
return pci_priv && pci_priv->msi_config &&
|
|
(pci_priv->msi_config->total_vectors == 1);
|
|
}
|
|
|
|
int cnss_pci_get_one_msi_mhi_irq_array_size(struct cnss_pci_data *pci_priv)
|
|
{
|
|
return MHI_IRQ_NUMBER;
|
|
}
|
|
|
|
bool cnss_pci_is_force_one_msi(struct cnss_pci_data *pci_priv)
|
|
{
|
|
struct cnss_plat_data *plat_priv = pci_priv->plat_priv;
|
|
|
|
return test_bit(FORCE_ONE_MSI, &plat_priv->ctrl_params.quirks);
|
|
}
|
|
#else
|
|
int cnss_pci_get_one_msi_assignment(struct cnss_pci_data *pci_priv)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
bool cnss_pci_fallback_one_msi(struct cnss_pci_data *pci_priv,
|
|
int *num_vectors)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
bool cnss_pci_is_one_msi(struct cnss_pci_data *pci_priv)
|
|
{
|
|
return false;
|
|
}
|
|
|
|
int cnss_pci_get_one_msi_mhi_irq_array_size(struct cnss_pci_data *pci_priv)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
bool cnss_pci_is_force_one_msi(struct cnss_pci_data *pci_priv)
|
|
{
|
|
return false;
|
|
}
|
|
#endif
|
|
|
|
static int cnss_pci_smmu_fault_handler(struct iommu_domain *domain,
|
|
struct device *dev, unsigned long iova,
|
|
int flags, void *handler_token)
|
|
{
|
|
struct cnss_pci_data *pci_priv = handler_token;
|
|
|
|
cnss_fatal_err("SMMU fault happened with IOVA 0x%lx\n", iova);
|
|
|
|
if (!pci_priv) {
|
|
cnss_pr_err("pci_priv is NULL\n");
|
|
return -ENODEV;
|
|
}
|
|
|
|
pci_priv->is_smmu_fault = true;
|
|
cnss_pci_update_status(pci_priv, CNSS_FW_DOWN);
|
|
cnss_force_fw_assert(&pci_priv->pci_dev->dev);
|
|
|
|
/* IOMMU driver requires -ENOSYS to print debug info. */
|
|
return -ENOSYS;
|
|
}
|
|
|
|
int cnss_pci_init_smmu(struct cnss_pci_data *pci_priv)
|
|
{
|
|
struct pci_dev *pci_dev = pci_priv->pci_dev;
|
|
struct cnss_plat_data *plat_priv = pci_priv->plat_priv;
|
|
struct device_node *of_node;
|
|
struct resource *res;
|
|
const char *iommu_dma_type;
|
|
u32 addr_win[2];
|
|
int ret = 0;
|
|
|
|
of_node = of_parse_phandle(pci_dev->dev.of_node, "qcom,iommu-group", 0);
|
|
if (!of_node)
|
|
return ret;
|
|
|
|
cnss_pr_dbg("Initializing SMMU\n");
|
|
|
|
pci_priv->iommu_domain = iommu_get_domain_for_dev(&pci_dev->dev);
|
|
ret = of_property_read_string(of_node, "qcom,iommu-dma",
|
|
&iommu_dma_type);
|
|
if (!ret && !strcmp("fastmap", iommu_dma_type)) {
|
|
cnss_pr_dbg("Enabling SMMU S1 stage\n");
|
|
pci_priv->smmu_s1_enable = true;
|
|
iommu_set_fault_handler(pci_priv->iommu_domain,
|
|
cnss_pci_smmu_fault_handler, pci_priv);
|
|
cnss_register_iommu_fault_handler_irq(pci_priv);
|
|
}
|
|
|
|
ret = of_property_read_u32_array(of_node, "qcom,iommu-dma-addr-pool",
|
|
addr_win, ARRAY_SIZE(addr_win));
|
|
if (ret) {
|
|
cnss_pr_err("Invalid SMMU size window, err = %d\n", ret);
|
|
of_node_put(of_node);
|
|
return ret;
|
|
}
|
|
|
|
pci_priv->smmu_iova_start = addr_win[0];
|
|
pci_priv->smmu_iova_len = addr_win[1];
|
|
cnss_pr_dbg("smmu_iova_start: %pa, smmu_iova_len: 0x%zx\n",
|
|
&pci_priv->smmu_iova_start,
|
|
pci_priv->smmu_iova_len);
|
|
|
|
res = platform_get_resource_byname(plat_priv->plat_dev, IORESOURCE_MEM,
|
|
"smmu_iova_ipa");
|
|
if (res) {
|
|
pci_priv->smmu_iova_ipa_start = res->start;
|
|
pci_priv->smmu_iova_ipa_current = res->start;
|
|
pci_priv->smmu_iova_ipa_len = resource_size(res);
|
|
cnss_pr_dbg("smmu_iova_ipa_start: %pa, smmu_iova_ipa_len: 0x%zx\n",
|
|
&pci_priv->smmu_iova_ipa_start,
|
|
pci_priv->smmu_iova_ipa_len);
|
|
}
|
|
|
|
pci_priv->iommu_geometry = of_property_read_bool(of_node,
|
|
"qcom,iommu-geometry");
|
|
cnss_pr_dbg("iommu_geometry: %d\n", pci_priv->iommu_geometry);
|
|
|
|
of_node_put(of_node);
|
|
|
|
return 0;
|
|
}
|
|
|
|
int _cnss_pci_get_reg_dump(struct cnss_pci_data *pci_priv,
|
|
u8 *buf, u32 len)
|
|
{
|
|
return msm_pcie_reg_dump(pci_priv->pci_dev, buf, len);
|
|
}
|
|
|
|
#if IS_ENABLED(CONFIG_ARCH_QCOM)
|
|
/**
|
|
* cnss_pci_of_reserved_mem_device_init() - Assign reserved memory region
|
|
* to given PCI device
|
|
* @pci_priv: driver PCI bus context pointer
|
|
*
|
|
* This function shall call corresponding of_reserved_mem_device* API to
|
|
* assign reserved memory region to PCI device based on where the memory is
|
|
* defined and attached to (platform device of_node or PCI device of_node)
|
|
* in device tree.
|
|
*
|
|
* Return: 0 for success, negative value for error
|
|
*/
|
|
int cnss_pci_of_reserved_mem_device_init(struct cnss_pci_data *pci_priv)
|
|
{
|
|
struct device *dev_pci = &pci_priv->pci_dev->dev;
|
|
int ret;
|
|
|
|
/* Use of_reserved_mem_device_init_by_idx() if reserved memory is
|
|
* attached to platform device of_node.
|
|
*/
|
|
ret = of_reserved_mem_device_init(dev_pci);
|
|
if (ret) {
|
|
if (ret == -EINVAL)
|
|
cnss_pr_vdbg("Ignore, no specific reserved-memory assigned\n");
|
|
else
|
|
cnss_pr_err("Failed to init reserved mem device, err = %d\n",
|
|
ret);
|
|
}
|
|
if (dev_pci->cma_area)
|
|
cnss_pr_dbg("CMA area is %s\n",
|
|
cma_get_name(dev_pci->cma_area));
|
|
|
|
return ret;
|
|
}
|
|
|
|
int cnss_pci_wake_gpio_init(struct cnss_pci_data *pci_priv)
|
|
{
|
|
return 0;
|
|
}
|
|
|
|
void cnss_pci_wake_gpio_deinit(struct cnss_pci_data *pci_priv)
|
|
{
|
|
}
|
|
#endif
|
|
|