123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986 |
- // SPDX-License-Identifier: GPL-2.0-only
- /*
- * Copyright (c) 2018 - 2019, The Linux Foundation. All rights reserved.
- */
- #include "ipa_i.h"
- #include <linux/ipa_wdi3.h>
- #define UPDATE_RP_MODERATION_CONFIG 1
- #define UPDATE_RP_MODERATION_THRESHOLD 8
- #define IPA_WLAN_AGGR_PKT_LIMIT 1
- #define IPA_WLAN_AGGR_BYTE_LIMIT 2 /*2 Kbytes Agger hard byte limit*/
- #define IPA_WDI3_GSI_EVT_RING_INT_MODT 32
- static void ipa3_wdi3_gsi_evt_ring_err_cb(struct gsi_evt_err_notify *notify)
- {
- switch (notify->evt_id) {
- case GSI_EVT_OUT_OF_BUFFERS_ERR:
- IPAERR("Got GSI_EVT_OUT_OF_BUFFERS_ERR\n");
- break;
- case GSI_EVT_OUT_OF_RESOURCES_ERR:
- IPAERR("Got GSI_EVT_OUT_OF_RESOURCES_ERR\n");
- break;
- case GSI_EVT_UNSUPPORTED_INTER_EE_OP_ERR:
- IPAERR("Got GSI_EVT_UNSUPPORTED_INTER_EE_OP_ERR\n");
- break;
- case GSI_EVT_EVT_RING_EMPTY_ERR:
- IPAERR("Got GSI_EVT_EVT_RING_EMPTY_ERR\n");
- break;
- default:
- IPAERR("Unexpected err evt: %d\n", notify->evt_id);
- }
- ipa_assert();
- }
- static void ipa3_wdi3_gsi_chan_err_cb(struct gsi_chan_err_notify *notify)
- {
- switch (notify->evt_id) {
- case GSI_CHAN_INVALID_TRE_ERR:
- IPAERR("Got GSI_CHAN_INVALID_TRE_ERR\n");
- break;
- case GSI_CHAN_NON_ALLOCATED_EVT_ACCESS_ERR:
- IPAERR("Got GSI_CHAN_NON_ALLOCATED_EVT_ACCESS_ERR\n");
- break;
- case GSI_CHAN_OUT_OF_BUFFERS_ERR:
- IPAERR("Got GSI_CHAN_OUT_OF_BUFFERS_ERR\n");
- break;
- case GSI_CHAN_OUT_OF_RESOURCES_ERR:
- IPAERR("Got GSI_CHAN_OUT_OF_RESOURCES_ERR\n");
- break;
- case GSI_CHAN_UNSUPPORTED_INTER_EE_OP_ERR:
- IPAERR("Got GSI_CHAN_UNSUPPORTED_INTER_EE_OP_ERR\n");
- break;
- case GSI_CHAN_HWO_1_ERR:
- IPAERR("Got GSI_CHAN_HWO_1_ERR\n");
- break;
- default:
- IPAERR("Unexpected err evt: %d\n", notify->evt_id);
- }
- ipa_assert();
- }
- static int ipa3_setup_wdi3_gsi_channel(u8 is_smmu_enabled,
- struct ipa_wdi_pipe_setup_info *info,
- struct ipa_wdi_pipe_setup_info_smmu *info_smmu, u8 dir,
- struct ipa3_ep_context *ep)
- {
- struct gsi_evt_ring_props gsi_evt_ring_props;
- struct gsi_chan_props gsi_channel_props;
- union __packed gsi_channel_scratch ch_scratch;
- union __packed gsi_evt_scratch evt_scratch;
- const struct ipa_gsi_ep_config *gsi_ep_info;
- int result, len;
- unsigned long va;
- uint32_t addr_low, addr_high;
- if (!info || !info_smmu || !ep) {
- IPAERR("invalid input\n");
- return -EINVAL;
- }
- /* setup event ring */
- memset(&gsi_evt_ring_props, 0, sizeof(gsi_evt_ring_props));
- gsi_evt_ring_props.intf = GSI_EVT_CHTYPE_WDI3_EV;
- if (ipa3_ctx->ipa_hw_type >= IPA_HW_v4_9) {
- gsi_evt_ring_props.intr = GSI_INTR_MSI;
- /* 32 (for Tx) and 8 (for Rx) */
- if (dir == IPA_WDI3_TX_DIR)
- gsi_evt_ring_props.re_size = GSI_EVT_RING_RE_SIZE_32B;
- else
- gsi_evt_ring_props.re_size = GSI_EVT_RING_RE_SIZE_8B;
- } else {
- gsi_evt_ring_props.intr = GSI_INTR_IRQ;
- /* 16 (for Tx) and 8 (for Rx) */
- if (dir == IPA_WDI3_TX_DIR)
- gsi_evt_ring_props.re_size = GSI_EVT_RING_RE_SIZE_16B;
- else
- gsi_evt_ring_props.re_size = GSI_EVT_RING_RE_SIZE_8B;
- }
- if (!is_smmu_enabled) {
- gsi_evt_ring_props.ring_len = info->event_ring_size;
- gsi_evt_ring_props.ring_base_addr =
- (u64)info->event_ring_base_pa;
- } else {
- len = info_smmu->event_ring_size;
- if (dir == IPA_WDI3_TX_DIR) {
- if (ipa_create_gsi_smmu_mapping(IPA_WDI_CE_RING_RES,
- true, info->event_ring_base_pa,
- &info_smmu->event_ring_base, len,
- false, &va)) {
- IPAERR("failed to get smmu mapping\n");
- return -EFAULT;
- }
- } else {
- if (ipa_create_gsi_smmu_mapping(
- IPA_WDI_RX_COMP_RING_RES, true,
- info->event_ring_base_pa,
- &info_smmu->event_ring_base, len,
- false, &va)) {
- IPAERR("failed to get smmu mapping\n");
- return -EFAULT;
- }
- }
- gsi_evt_ring_props.ring_len = len;
- gsi_evt_ring_props.ring_base_addr = (u64)va;
- }
- gsi_evt_ring_props.int_modt = IPA_WDI3_GSI_EVT_RING_INT_MODT;
- gsi_evt_ring_props.int_modc = 1;
- gsi_evt_ring_props.exclusive = true;
- gsi_evt_ring_props.err_cb = ipa3_wdi3_gsi_evt_ring_err_cb;
- gsi_evt_ring_props.user_data = NULL;
- result = gsi_alloc_evt_ring(&gsi_evt_ring_props, ipa3_ctx->gsi_dev_hdl,
- &ep->gsi_evt_ring_hdl);
- if (result != GSI_STATUS_SUCCESS) {
- IPAERR("fail to alloc RX event ring\n");
- result = -EFAULT;
- goto fail_smmu_mapping;
- }
- ep->gsi_mem_info.evt_ring_len = gsi_evt_ring_props.ring_len;
- ep->gsi_mem_info.evt_ring_base_addr =
- gsi_evt_ring_props.ring_base_addr;
- /* setup channel ring */
- memset(&gsi_channel_props, 0, sizeof(gsi_channel_props));
- gsi_channel_props.prot = GSI_CHAN_PROT_WDI3;
- if (dir == IPA_WDI3_TX_DIR)
- gsi_channel_props.dir = GSI_CHAN_DIR_FROM_GSI;
- else
- gsi_channel_props.dir = GSI_CHAN_DIR_TO_GSI;
- gsi_ep_info = ipa3_get_gsi_ep_info(ep->client);
- if (!gsi_ep_info) {
- IPAERR("Failed getting GSI EP info for client=%d\n",
- ep->client);
- result = -EINVAL;
- goto fail_get_gsi_ep_info;
- } else
- gsi_channel_props.ch_id = gsi_ep_info->ipa_gsi_chan_num;
- gsi_channel_props.db_in_bytes = 0;
- gsi_channel_props.evt_ring_hdl = ep->gsi_evt_ring_hdl;
- if (ipa3_ctx->ipa_hw_type >= IPA_HW_v4_9) {
- /* 32 (for Tx) and 64 (for Rx) */
- if (dir == IPA_WDI3_TX_DIR)
- gsi_channel_props.re_size = GSI_CHAN_RE_SIZE_32B;
- else
- gsi_channel_props.re_size = GSI_CHAN_RE_SIZE_64B;
- } else
- gsi_channel_props.re_size = GSI_CHAN_RE_SIZE_16B;
- gsi_channel_props.use_db_eng = GSI_CHAN_DB_MODE;
- gsi_channel_props.max_prefetch = GSI_ONE_PREFETCH_SEG;
- gsi_channel_props.prefetch_mode =
- gsi_ep_info->prefetch_mode;
- gsi_channel_props.empty_lvl_threshold =
- gsi_ep_info->prefetch_threshold;
- gsi_channel_props.low_weight = 1;
- gsi_channel_props.err_cb = ipa3_wdi3_gsi_chan_err_cb;
- if (!is_smmu_enabled) {
- gsi_channel_props.ring_len = (u16)info->transfer_ring_size;
- gsi_channel_props.ring_base_addr =
- (u64)info->transfer_ring_base_pa;
- } else {
- len = info_smmu->transfer_ring_size;
- if (dir == IPA_WDI3_TX_DIR) {
- if (ipa_create_gsi_smmu_mapping(IPA_WDI_TX_RING_RES,
- true, info->transfer_ring_base_pa,
- &info_smmu->transfer_ring_base, len,
- false, &va)) {
- IPAERR("failed to get smmu mapping\n");
- result = -EFAULT;
- goto fail_get_gsi_ep_info;
- }
- } else {
- if (ipa_create_gsi_smmu_mapping(
- IPA_WDI_RX_RING_RES, true,
- info->transfer_ring_base_pa,
- &info_smmu->transfer_ring_base, len,
- false, &va)) {
- IPAERR("failed to get smmu mapping\n");
- result = -EFAULT;
- goto fail_get_gsi_ep_info;
- }
- }
- gsi_channel_props.ring_len = len;
- gsi_channel_props.ring_base_addr = (u64)va;
- }
- result = gsi_alloc_channel(&gsi_channel_props, ipa3_ctx->gsi_dev_hdl,
- &ep->gsi_chan_hdl);
- if (result != GSI_STATUS_SUCCESS)
- goto fail_get_gsi_ep_info;
- ep->gsi_mem_info.chan_ring_len = gsi_channel_props.ring_len;
- ep->gsi_mem_info.chan_ring_base_addr =
- gsi_channel_props.ring_base_addr;
- /* write event scratch */
- memset(&evt_scratch, 0, sizeof(evt_scratch));
- evt_scratch.wdi3.update_rp_moderation_config =
- UPDATE_RP_MODERATION_CONFIG;
- result = gsi_write_evt_ring_scratch(ep->gsi_evt_ring_hdl, evt_scratch);
- if (result != GSI_STATUS_SUCCESS) {
- IPAERR("failed to write evt ring scratch\n");
- goto fail_write_scratch;
- }
- if (!is_smmu_enabled) {
- IPADBG("smmu disabled\n");
- if (info->is_evt_rn_db_pcie_addr == true)
- IPADBG_LOW("is_evt_rn_db_pcie_addr is PCIE addr\n");
- else
- IPADBG_LOW("is_evt_rn_db_pcie_addr is DDR addr\n");
- IPADBG_LOW("LSB 0x%x\n",
- (u32)info->event_ring_doorbell_pa);
- IPADBG_LOW("MSB 0x%x\n",
- (u32)((u64)info->event_ring_doorbell_pa >> 32));
- } else {
- IPADBG("smmu enabled\n");
- if (info_smmu->is_evt_rn_db_pcie_addr == true)
- IPADBG_LOW("is_evt_rn_db_pcie_addr is PCIE addr\n");
- else
- IPADBG_LOW("is_evt_rn_db_pcie_addr is DDR addr\n");
- IPADBG_LOW("LSB 0x%x\n",
- (u32)info_smmu->event_ring_doorbell_pa);
- IPADBG_LOW("MSB 0x%x\n",
- (u32)((u64)info_smmu->event_ring_doorbell_pa >> 32));
- }
- if (!is_smmu_enabled) {
- addr_low = (u32)info->event_ring_doorbell_pa;
- addr_high = (u32)((u64)info->event_ring_doorbell_pa >> 32);
- } else {
- if (dir == IPA_WDI3_TX_DIR) {
- if (ipa_create_gsi_smmu_mapping(IPA_WDI_CE_DB_RES,
- true, info_smmu->event_ring_doorbell_pa,
- NULL, 4, true, &va)) {
- IPAERR("failed to get smmu mapping\n");
- result = -EFAULT;
- goto fail_write_scratch;
- }
- } else {
- if (ipa_create_gsi_smmu_mapping(
- IPA_WDI_RX_COMP_RING_WP_RES,
- true, info_smmu->event_ring_doorbell_pa,
- NULL, 4, true, &va)) {
- IPAERR("failed to get smmu mapping\n");
- result = -EFAULT;
- goto fail_write_scratch;
- }
- }
- addr_low = (u32)va;
- addr_high = (u32)((u64)va >> 32);
- }
- /*
- * Arch specific:
- * pcie addr which are not via smmu, use pa directly!
- * pcie and DDR via 2 different port
- * assert bit 40 to indicate it is pcie addr
- * WDI-3.0, MSM --> pcie via smmu
- * WDI-3.0, MDM --> pcie not via smmu + dual port
- * assert bit 40 in case
- */
- if ((ipa3_ctx->platform_type == IPA_PLAT_TYPE_MDM) &&
- is_smmu_enabled) {
- /*
- * Ir-respective of smmu enabled don't use IOVA addr
- * since pcie not via smmu in MDM's
- */
- if (info_smmu->is_evt_rn_db_pcie_addr == true) {
- addr_low = (u32)info_smmu->event_ring_doorbell_pa;
- addr_high =
- (u32)((u64)info_smmu->event_ring_doorbell_pa
- >> 32);
- }
- }
- /*
- * GSI recomendation to set bit-40 for (mdm targets && pcie addr)
- * from wdi-3.0 interface document
- */
- if (!is_smmu_enabled) {
- if ((ipa3_ctx->platform_type == IPA_PLAT_TYPE_MDM) &&
- info->is_evt_rn_db_pcie_addr)
- addr_high |= (1 << 8);
- } else {
- if ((ipa3_ctx->platform_type == IPA_PLAT_TYPE_MDM) &&
- info_smmu->is_evt_rn_db_pcie_addr)
- addr_high |= (1 << 8);
- }
- gsi_wdi3_write_evt_ring_db(ep->gsi_evt_ring_hdl,
- addr_low,
- addr_high);
- /* write channel scratch */
- memset(&ch_scratch, 0, sizeof(ch_scratch));
- ch_scratch.wdi3.update_rp_moderation_threshold =
- UPDATE_RP_MODERATION_THRESHOLD;
- if (dir == IPA_WDI3_RX_DIR) {
- if (!is_smmu_enabled)
- ch_scratch.wdi3.rx_pkt_offset = info->pkt_offset;
- else
- ch_scratch.wdi3.rx_pkt_offset = info_smmu->pkt_offset;
- /* this metadata reg offset need to be in words */
- ch_scratch.wdi3.endp_metadata_reg_offset =
- ipahal_get_reg_mn_ofst(IPA_ENDP_INIT_HDR_METADATA_n, 0,
- gsi_ep_info->ipa_ep_num) / 4;
- }
- if (!is_smmu_enabled) {
- IPADBG_LOW("smmu disabled\n");
- if (info->is_txr_rn_db_pcie_addr == true)
- IPADBG_LOW("is_txr_rn_db_pcie_addr is PCIE addr\n");
- else
- IPADBG_LOW("is_txr_rn_db_pcie_addr is DDR addr\n");
- IPADBG_LOW("LSB 0x%x\n",
- (u32)info->transfer_ring_doorbell_pa);
- IPADBG_LOW("MSB 0x%x\n",
- (u32)((u64)info->transfer_ring_doorbell_pa >> 32));
- } else {
- IPADBG_LOW("smmu eabled\n");
- if (info_smmu->is_txr_rn_db_pcie_addr == true)
- IPADBG_LOW("is_txr_rn_db_pcie_addr is PCIE addr\n");
- else
- IPADBG_LOW("is_txr_rn_db_pcie_addr is DDR addr\n");
- IPADBG_LOW("LSB 0x%x\n",
- (u32)info_smmu->transfer_ring_doorbell_pa);
- IPADBG_LOW("MSB 0x%x\n",
- (u32)((u64)info_smmu->transfer_ring_doorbell_pa >> 32));
- }
- if (!is_smmu_enabled) {
- ch_scratch.wdi3.wifi_rp_address_low =
- (u32)info->transfer_ring_doorbell_pa;
- ch_scratch.wdi3.wifi_rp_address_high =
- (u32)((u64)info->transfer_ring_doorbell_pa >> 32);
- } else {
- if (dir == IPA_WDI3_TX_DIR) {
- if (ipa_create_gsi_smmu_mapping(IPA_WDI_TX_DB_RES,
- true, info_smmu->transfer_ring_doorbell_pa,
- NULL, 4, true, &va)) {
- IPAERR("failed to get smmu mapping\n");
- result = -EFAULT;
- goto fail_write_scratch;
- }
- ch_scratch.wdi3.wifi_rp_address_low = (u32)va;
- ch_scratch.wdi3.wifi_rp_address_high =
- (u32)((u64)va >> 32);
- } else {
- if (ipa_create_gsi_smmu_mapping(IPA_WDI_RX_RING_RP_RES,
- true, info_smmu->transfer_ring_doorbell_pa,
- NULL, 4, true, &va)) {
- IPAERR("failed to get smmu mapping\n");
- result = -EFAULT;
- goto fail_write_scratch;
- }
- ch_scratch.wdi3.wifi_rp_address_low = (u32)va;
- ch_scratch.wdi3.wifi_rp_address_high =
- (u32)((u64)va >> 32);
- }
- }
- /*
- * Arch specific:
- * pcie addr which are not via smmu, use pa directly!
- * pcie and DDR via 2 different port
- * assert bit 40 to indicate it is pcie addr
- * WDI-3.0, MSM --> pcie via smmu
- * WDI-3.0, MDM --> pcie not via smmu + dual port
- * assert bit 40 in case
- */
- if ((ipa3_ctx->platform_type == IPA_PLAT_TYPE_MDM) &&
- is_smmu_enabled) {
- /*
- * Ir-respective of smmu enabled don't use IOVA addr
- * since pcie not via smmu in MDM's
- */
- if (info_smmu->is_txr_rn_db_pcie_addr == true) {
- ch_scratch.wdi3.wifi_rp_address_low =
- (u32)info_smmu->transfer_ring_doorbell_pa;
- ch_scratch.wdi3.wifi_rp_address_high =
- (u32)((u64)info_smmu->transfer_ring_doorbell_pa
- >> 32);
- }
- }
- /*
- * GSI recomendation to set bit-40 for (mdm targets && pcie addr)
- * from wdi-3.0 interface document
- */
- if (!is_smmu_enabled) {
- if ((ipa3_ctx->platform_type == IPA_PLAT_TYPE_MDM) &&
- info->is_txr_rn_db_pcie_addr)
- ch_scratch.wdi3.wifi_rp_address_high =
- (u32)((u32)ch_scratch.wdi3.wifi_rp_address_high |
- (1 << 8));
- } else {
- if ((ipa3_ctx->platform_type == IPA_PLAT_TYPE_MDM) &&
- info_smmu->is_txr_rn_db_pcie_addr)
- ch_scratch.wdi3.wifi_rp_address_high =
- (u32)((u32)ch_scratch.wdi3.wifi_rp_address_high |
- (1 << 8));
- }
- result = gsi_write_channel_scratch(ep->gsi_chan_hdl, ch_scratch);
- if (result != GSI_STATUS_SUCCESS) {
- IPAERR("failed to write evt ring scratch\n");
- goto fail_write_scratch;
- }
- return 0;
- fail_write_scratch:
- gsi_dealloc_channel(ep->gsi_chan_hdl);
- ep->gsi_chan_hdl = ~0;
- fail_get_gsi_ep_info:
- gsi_dealloc_evt_ring(ep->gsi_evt_ring_hdl);
- ep->gsi_evt_ring_hdl = ~0;
- fail_smmu_mapping:
- ipa3_release_wdi3_gsi_smmu_mappings(dir);
- return result;
- }
- int ipa3_conn_wdi3_pipes(struct ipa_wdi_conn_in_params *in,
- struct ipa_wdi_conn_out_params *out,
- ipa_wdi_meter_notifier_cb wdi_notify)
- {
- enum ipa_client_type rx_client;
- enum ipa_client_type tx_client;
- struct ipa3_ep_context *ep_rx;
- struct ipa3_ep_context *ep_tx;
- int ipa_ep_idx_rx;
- int ipa_ep_idx_tx;
- int result = 0;
- u32 gsi_db_addr_low, gsi_db_addr_high;
- void __iomem *db_addr;
- u32 evt_ring_db_addr_low, evt_ring_db_addr_high;
- /* wdi3 only support over gsi */
- if (!ipa3_ctx->ipa_wdi3_over_gsi) {
- IPAERR("wdi3 over uc offload not supported");
- WARN_ON(1);
- return -EFAULT;
- }
- if (in == NULL || out == NULL) {
- IPAERR("invalid input\n");
- return -EINVAL;
- }
- if (in->is_smmu_enabled == false) {
- rx_client = in->u_rx.rx.client;
- tx_client = in->u_tx.tx.client;
- } else {
- rx_client = in->u_rx.rx_smmu.client;
- tx_client = in->u_tx.tx_smmu.client;
- }
- ipa_ep_idx_rx = ipa_get_ep_mapping(rx_client);
- ipa_ep_idx_tx = ipa_get_ep_mapping(tx_client);
- if (ipa_ep_idx_rx == -1 || ipa_ep_idx_tx == -1) {
- IPAERR("fail to alloc EP.\n");
- return -EFAULT;
- }
- if (ipa_ep_idx_rx >= IPA3_MAX_NUM_PIPES ||
- ipa_ep_idx_tx >= IPA3_MAX_NUM_PIPES) {
- IPAERR("ep out of range.\n");
- return -EFAULT;
- }
- ep_rx = &ipa3_ctx->ep[ipa_ep_idx_rx];
- ep_tx = &ipa3_ctx->ep[ipa_ep_idx_tx];
- if (ep_rx->valid || ep_tx->valid) {
- IPAERR("EP already allocated.\n");
- return -EFAULT;
- }
- memset(ep_rx, 0, offsetof(struct ipa3_ep_context, sys));
- memset(ep_tx, 0, offsetof(struct ipa3_ep_context, sys));
- IPA_ACTIVE_CLIENTS_INC_SIMPLE();
- #ifdef IPA_WAN_MSG_IPv6_ADDR_GW_LEN
- if (wdi_notify)
- ipa3_ctx->uc_wdi_ctx.stats_notify = wdi_notify;
- else
- IPADBG("wdi_notify is null\n");
- #endif
- /* setup rx ep cfg */
- ep_rx->valid = 1;
- ep_rx->client = rx_client;
- result = ipa3_disable_data_path(ipa_ep_idx_rx);
- if (result) {
- IPAERR("disable data path failed res=%d clnt=%d.\n", result,
- ipa_ep_idx_rx);
- IPA_ACTIVE_CLIENTS_DEC_SIMPLE();
- return -EFAULT;
- }
- ep_rx->client_notify = in->notify;
- ep_rx->priv = in->priv;
- if (in->is_smmu_enabled == false)
- memcpy(&ep_rx->cfg, &in->u_rx.rx.ipa_ep_cfg,
- sizeof(ep_rx->cfg));
- else
- memcpy(&ep_rx->cfg, &in->u_rx.rx_smmu.ipa_ep_cfg,
- sizeof(ep_rx->cfg));
- if (ipa3_cfg_ep(ipa_ep_idx_rx, &ep_rx->cfg)) {
- IPAERR("fail to setup rx pipe cfg\n");
- result = -EFAULT;
- goto fail;
- }
- IPADBG("ipa3_ctx->ipa_wdi3_over_gsi %d\n",
- ipa3_ctx->ipa_wdi3_over_gsi);
- /* setup RX gsi channel */
- if (ipa3_setup_wdi3_gsi_channel(in->is_smmu_enabled,
- &in->u_rx.rx, &in->u_rx.rx_smmu, IPA_WDI3_RX_DIR,
- ep_rx)) {
- IPAERR("fail to setup wdi3 gsi rx channel\n");
- result = -EFAULT;
- goto fail;
- }
- if (gsi_query_channel_db_addr(ep_rx->gsi_chan_hdl,
- &gsi_db_addr_low, &gsi_db_addr_high)) {
- IPAERR("failed to query gsi rx db addr\n");
- result = -EFAULT;
- goto fail;
- }
- /* only 32 bit lsb is used */
- out->rx_uc_db_pa = (phys_addr_t)(gsi_db_addr_low);
- IPADBG("out->rx_uc_db_pa %llu\n", out->rx_uc_db_pa);
- ipa3_install_dflt_flt_rules(ipa_ep_idx_rx);
- IPADBG("client %d (ep: %d) connected\n", rx_client,
- ipa_ep_idx_rx);
- /* setup tx ep cfg */
- ep_tx->valid = 1;
- ep_tx->client = tx_client;
- result = ipa3_disable_data_path(ipa_ep_idx_tx);
- if (result) {
- IPAERR("disable data path failed res=%d ep=%d.\n", result,
- ipa_ep_idx_tx);
- result = -EFAULT;
- goto fail;
- }
- if (in->is_smmu_enabled == false)
- memcpy(&ep_tx->cfg, &in->u_tx.tx.ipa_ep_cfg,
- sizeof(ep_tx->cfg));
- else
- memcpy(&ep_tx->cfg, &in->u_tx.tx_smmu.ipa_ep_cfg,
- sizeof(ep_tx->cfg));
- ep_tx->cfg.aggr.aggr_en = IPA_ENABLE_AGGR;
- ep_tx->cfg.aggr.aggr = IPA_GENERIC;
- ep_tx->cfg.aggr.aggr_byte_limit = IPA_WLAN_AGGR_BYTE_LIMIT;
- ep_tx->cfg.aggr.aggr_pkt_limit = IPA_WLAN_AGGR_PKT_LIMIT;
- ep_tx->cfg.aggr.aggr_hard_byte_limit_en = IPA_ENABLE_AGGR;
- if (ipa3_cfg_ep(ipa_ep_idx_tx, &ep_tx->cfg)) {
- IPAERR("fail to setup tx pipe cfg\n");
- result = -EFAULT;
- goto fail;
- }
- /* setup TX gsi channel */
- if (ipa3_setup_wdi3_gsi_channel(in->is_smmu_enabled,
- &in->u_tx.tx, &in->u_tx.tx_smmu, IPA_WDI3_TX_DIR,
- ep_tx)) {
- IPAERR("fail to setup wdi3 gsi tx channel\n");
- result = -EFAULT;
- goto fail;
- }
- if (gsi_query_channel_db_addr(ep_tx->gsi_chan_hdl,
- &gsi_db_addr_low, &gsi_db_addr_high)) {
- IPAERR("failed to query gsi tx db addr\n");
- result = -EFAULT;
- goto fail;
- }
- /* only 32 bit lsb is used */
- out->tx_uc_db_pa = (phys_addr_t)(gsi_db_addr_low);
- IPADBG("out->tx_uc_db_pa %llu\n", out->tx_uc_db_pa);
- IPADBG("client %d (ep: %d) connected\n", tx_client,
- ipa_ep_idx_tx);
- /* ring initial event ring dbs */
- gsi_query_evt_ring_db_addr(ep_rx->gsi_evt_ring_hdl,
- &evt_ring_db_addr_low, &evt_ring_db_addr_high);
- IPADBG("evt_ring_hdl %lu, db_addr_low %u db_addr_high %u\n",
- ep_rx->gsi_evt_ring_hdl, evt_ring_db_addr_low,
- evt_ring_db_addr_high);
- /* only 32 bit lsb is used */
- db_addr = ioremap((phys_addr_t)(evt_ring_db_addr_low), 4);
- /*
- * IPA/GSI driver should ring the event DB once after
- * initialization of the event, with a value that is
- * outside of the ring range. Eg: ring base = 0x1000,
- * ring size = 0x100 => AP can write value > 0x1100
- * into the doorbell address. Eg: 0x 1110
- */
- iowrite32(in->u_rx.rx.event_ring_size / 4 + 10, db_addr);
- gsi_query_evt_ring_db_addr(ep_tx->gsi_evt_ring_hdl,
- &evt_ring_db_addr_low, &evt_ring_db_addr_high);
- /* only 32 bit lsb is used */
- db_addr = ioremap((phys_addr_t)(evt_ring_db_addr_low), 4);
- /*
- * IPA/GSI driver should ring the event DB once after
- * initialization of the event, with a value that is
- * outside of the ring range. Eg: ring base = 0x1000,
- * ring size = 0x100 => AP can write value > 0x1100
- * into the doorbell address. Eg: 0x 1110
- */
- iowrite32(in->u_tx.tx.event_ring_size / 4 + 10, db_addr);
- fail:
- IPA_ACTIVE_CLIENTS_DEC_SIMPLE();
- return result;
- }
- int ipa3_disconn_wdi3_pipes(int ipa_ep_idx_tx, int ipa_ep_idx_rx)
- {
- struct ipa3_ep_context *ep_tx, *ep_rx;
- int result = 0;
- /* wdi3 only support over gsi */
- if (!ipa3_ctx->ipa_wdi3_over_gsi) {
- IPAERR("wdi3 over uc offload not supported");
- WARN_ON(1);
- return -EFAULT;
- }
- IPADBG("ep_tx = %d\n", ipa_ep_idx_tx);
- IPADBG("ep_rx = %d\n", ipa_ep_idx_rx);
- if (ipa_ep_idx_tx < 0 || ipa_ep_idx_tx >= IPA3_MAX_NUM_PIPES ||
- ipa_ep_idx_rx < 0 || ipa_ep_idx_rx >= IPA3_MAX_NUM_PIPES) {
- IPAERR("invalid ipa ep index\n");
- return -EINVAL;
- }
- ep_tx = &ipa3_ctx->ep[ipa_ep_idx_tx];
- ep_rx = &ipa3_ctx->ep[ipa_ep_idx_rx];
- IPA_ACTIVE_CLIENTS_INC_EP(ipa3_get_client_mapping(ipa_ep_idx_tx));
- /* tear down tx pipe */
- result = ipa3_reset_gsi_channel(ipa_ep_idx_tx);
- if (result != GSI_STATUS_SUCCESS) {
- IPAERR("failed to reset gsi channel: %d.\n", result);
- goto exit;
- }
- result = gsi_reset_evt_ring(ep_tx->gsi_evt_ring_hdl);
- if (result != GSI_STATUS_SUCCESS) {
- IPAERR("failed to reset evt ring: %d.\n", result);
- goto exit;
- }
- result = ipa3_release_gsi_channel(ipa_ep_idx_tx);
- if (result) {
- IPAERR("failed to release gsi channel: %d\n", result);
- goto exit;
- }
- memset(ep_tx, 0, sizeof(struct ipa3_ep_context));
- IPADBG("tx client (ep: %d) disconnected\n", ipa_ep_idx_tx);
- /* tear down rx pipe */
- result = ipa3_reset_gsi_channel(ipa_ep_idx_rx);
- if (result != GSI_STATUS_SUCCESS) {
- IPAERR("failed to reset gsi channel: %d.\n", result);
- goto exit;
- }
- result = gsi_reset_evt_ring(ep_rx->gsi_evt_ring_hdl);
- if (result != GSI_STATUS_SUCCESS) {
- IPAERR("failed to reset evt ring: %d.\n", result);
- goto exit;
- }
- result = ipa3_release_gsi_channel(ipa_ep_idx_rx);
- if (result) {
- IPAERR("failed to release gsi channel: %d\n", result);
- goto exit;
- }
- if (ipa3_ctx->ipa_hw_type >= IPA_HW_v4_5)
- ipa3_uc_debug_stats_dealloc(IPA_HW_PROTOCOL_WDI3);
- ipa3_delete_dflt_flt_rules(ipa_ep_idx_rx);
- memset(ep_rx, 0, sizeof(struct ipa3_ep_context));
- IPADBG("rx client (ep: %d) disconnected\n", ipa_ep_idx_rx);
- exit:
- IPA_ACTIVE_CLIENTS_DEC_EP(ipa3_get_client_by_pipe(ipa_ep_idx_tx));
- return result;
- }
- int ipa3_enable_wdi3_pipes(int ipa_ep_idx_tx, int ipa_ep_idx_rx)
- {
- struct ipa3_ep_context *ep_tx, *ep_rx;
- int result = 0;
- /* wdi3 only support over gsi */
- if (!ipa3_ctx->ipa_wdi3_over_gsi) {
- IPAERR("wdi3 over uc offload not supported");
- WARN_ON(1);
- return -EFAULT;
- }
- IPADBG("ep_tx = %d\n", ipa_ep_idx_tx);
- IPADBG("ep_rx = %d\n", ipa_ep_idx_rx);
- ep_tx = &ipa3_ctx->ep[ipa_ep_idx_tx];
- ep_rx = &ipa3_ctx->ep[ipa_ep_idx_rx];
- IPA_ACTIVE_CLIENTS_INC_EP(ipa3_get_client_mapping(ipa_ep_idx_tx));
- /* start uC event ring */
- if (ipa3_ctx->ipa_hw_type >= IPA_HW_v4_5) {
- if (ipa3_ctx->uc_ctx.uc_loaded &&
- !ipa3_ctx->uc_ctx.uc_event_ring_valid) {
- if (ipa3_uc_setup_event_ring()) {
- IPAERR("failed to set uc_event ring\n");
- return -EFAULT;
- }
- } else
- IPAERR("uc-loaded %d, ring-valid %d\n",
- ipa3_ctx->uc_ctx.uc_loaded,
- ipa3_ctx->uc_ctx.uc_event_ring_valid);
- }
- /* enable data path */
- result = ipa3_enable_data_path(ipa_ep_idx_rx);
- if (result) {
- IPAERR("enable data path failed res=%d clnt=%d\n", result,
- ipa_ep_idx_rx);
- goto exit;
- }
- result = ipa3_enable_data_path(ipa_ep_idx_tx);
- if (result) {
- IPAERR("enable data path failed res=%d clnt=%d\n", result,
- ipa_ep_idx_tx);
- goto fail_enable_path1;
- }
- /* start gsi tx channel */
- result = gsi_start_channel(ep_tx->gsi_chan_hdl);
- if (result) {
- IPAERR("failed to start gsi tx channel\n");
- goto fail_enable_path2;
- }
- /* start gsi rx channel */
- result = gsi_start_channel(ep_rx->gsi_chan_hdl);
- if (result) {
- IPAERR("failed to start gsi rx channel\n");
- goto fail_start_channel1;
- }
- /* start uC gsi dbg stats monitor */
- if (ipa3_ctx->ipa_hw_type >= IPA_HW_v4_5) {
- ipa3_ctx->gsi_info[IPA_HW_PROTOCOL_WDI3].ch_id_info[0].ch_id
- = ep_rx->gsi_chan_hdl;
- ipa3_ctx->gsi_info[IPA_HW_PROTOCOL_WDI3].ch_id_info[0].dir
- = DIR_PRODUCER;
- ipa3_ctx->gsi_info[IPA_HW_PROTOCOL_WDI3].ch_id_info[1].ch_id
- = ep_tx->gsi_chan_hdl;
- ipa3_ctx->gsi_info[IPA_HW_PROTOCOL_WDI3].ch_id_info[1].dir
- = DIR_CONSUMER;
- ipa3_uc_debug_stats_alloc(
- ipa3_ctx->gsi_info[IPA_HW_PROTOCOL_WDI3]);
- }
- goto exit;
- fail_start_channel1:
- gsi_stop_channel(ep_tx->gsi_chan_hdl);
- fail_enable_path2:
- ipa3_disable_data_path(ipa_ep_idx_tx);
- fail_enable_path1:
- ipa3_disable_data_path(ipa_ep_idx_rx);
- exit:
- IPA_ACTIVE_CLIENTS_DEC_EP(ipa3_get_client_mapping(ipa_ep_idx_tx));
- return result;
- }
- int ipa3_disable_wdi3_pipes(int ipa_ep_idx_tx, int ipa_ep_idx_rx)
- {
- int result = 0;
- struct ipa3_ep_context *ep;
- u32 source_pipe_bitmask = 0;
- bool disable_force_clear = false;
- struct ipahal_ep_cfg_ctrl_scnd ep_ctrl_scnd = { 0 };
- /* wdi3 only support over gsi */
- if (!ipa3_ctx->ipa_wdi3_over_gsi) {
- IPAERR("wdi3 over uc offload not supported");
- WARN_ON(1);
- return -EFAULT;
- }
- IPA_ACTIVE_CLIENTS_INC_SIMPLE();
- /* disable tx data path */
- result = ipa3_disable_data_path(ipa_ep_idx_tx);
- if (result) {
- IPAERR("enable data path failed res=%d clnt=%d.\n", result,
- ipa_ep_idx_tx);
- result = -EFAULT;
- goto fail;
- }
- /* disable rx data path */
- result = ipa3_disable_data_path(ipa_ep_idx_rx);
- if (result) {
- IPAERR("disable data path failed res=%d clnt=%d.\n", result,
- ipa_ep_idx_rx);
- result = -EFAULT;
- goto fail;
- }
- /*
- * For WDI 3.0 need to ensure pipe will be empty before suspend
- * as IPA uC will fail to suspend the pipe otherwise.
- */
- ep = &ipa3_ctx->ep[ipa_ep_idx_rx];
- source_pipe_bitmask = 1 <<
- ipa3_get_ep_mapping(ep->client);
- result = ipa3_enable_force_clear(ipa_ep_idx_rx,
- false, source_pipe_bitmask);
- if (result) {
- /*
- * assuming here modem SSR, AP can remove
- * the delay in this case
- */
- IPAERR("failed to force clear %d\n", result);
- IPAERR("remove delay from SCND reg\n");
- ep_ctrl_scnd.endp_delay = false;
- ipahal_write_reg_n_fields(
- IPA_ENDP_INIT_CTRL_SCND_n, ipa_ep_idx_rx,
- &ep_ctrl_scnd);
- } else {
- disable_force_clear = true;
- }
- /* stop gsi rx channel */
- result = ipa3_stop_gsi_channel(ipa_ep_idx_rx);
- if (result) {
- IPAERR("failed to stop gsi rx channel\n");
- result = -EFAULT;
- goto fail;
- }
- /* stop gsi tx channel */
- result = ipa3_stop_gsi_channel(ipa_ep_idx_tx);
- if (result) {
- IPAERR("failed to stop gsi tx channel\n");
- result = -EFAULT;
- goto fail;
- }
- /* stop uC gsi dbg stats monitor */
- if (ipa3_ctx->ipa_hw_type >= IPA_HW_v4_5) {
- ipa3_ctx->gsi_info[IPA_HW_PROTOCOL_WDI3].ch_id_info[0].ch_id
- = 0xff;
- ipa3_ctx->gsi_info[IPA_HW_PROTOCOL_WDI3].ch_id_info[0].dir
- = DIR_PRODUCER;
- ipa3_ctx->gsi_info[IPA_HW_PROTOCOL_WDI3].ch_id_info[1].ch_id
- = 0xff;
- ipa3_ctx->gsi_info[IPA_HW_PROTOCOL_WDI3].ch_id_info[1].dir
- = DIR_CONSUMER;
- ipa3_uc_debug_stats_alloc(
- ipa3_ctx->gsi_info[IPA_HW_PROTOCOL_WDI3]);
- }
- if (disable_force_clear)
- ipa3_disable_force_clear(ipa_ep_idx_rx);
- fail:
- IPA_ACTIVE_CLIENTS_DEC_SIMPLE();
- return result;
- }
- int ipa3_write_qmapid_wdi3_gsi_pipe(u32 clnt_hdl, u8 qmap_id)
- {
- int result = 0;
- struct ipa3_ep_context *ep;
- union __packed gsi_wdi3_channel_scratch2_reg scratch2_reg;
- memset(&scratch2_reg, 0, sizeof(scratch2_reg));
- if (clnt_hdl >= ipa3_ctx->ipa_num_pipes ||
- ipa3_ctx->ep[clnt_hdl].valid == 0) {
- IPAERR_RL("bad parm, %d\n", clnt_hdl);
- return -EINVAL;
- }
- ep = &ipa3_ctx->ep[clnt_hdl];
- IPA_ACTIVE_CLIENTS_INC_EP(ipa3_get_client_mapping(clnt_hdl));
- result = gsi_read_wdi3_channel_scratch2_reg(ep->gsi_chan_hdl,
- &scratch2_reg);
- if (result != GSI_STATUS_SUCCESS) {
- IPAERR("failed to read channel scratch2 reg %d\n", result);
- goto exit;
- }
- scratch2_reg.wdi.qmap_id = qmap_id;
- result = gsi_write_wdi3_channel_scratch2_reg(ep->gsi_chan_hdl,
- scratch2_reg);
- if (result != GSI_STATUS_SUCCESS) {
- IPAERR("failed to write channel scratch2 reg %d\n", result);
- goto exit;
- }
- exit:
- IPA_ACTIVE_CLIENTS_DEC_EP(ipa3_get_client_mapping(clnt_hdl));
- return result;
- }
- /**
- * ipa3_get_wdi3_gsi_stats() - Query WDI3 gsi stats from uc
- * @stats: [inout] stats blob from client populated by driver
- *
- * Returns: 0 on success, negative on failure
- *
- * @note Cannot be called from atomic context
- *
- */
- int ipa3_get_wdi3_gsi_stats(struct ipa_uc_dbg_ring_stats *stats)
- {
- int i;
- if (!ipa3_ctx->wdi3_ctx.dbg_stats.uc_dbg_stats_mmio) {
- IPAERR("bad NULL parms for wdi3_gsi_stats\n");
- return -EINVAL;
- }
- IPA_ACTIVE_CLIENTS_INC_SIMPLE();
- for (i = 0; i < MAX_WDI3_CHANNELS; i++) {
- stats->ring[i].ringFull = ioread32(
- ipa3_ctx->wdi3_ctx.dbg_stats.uc_dbg_stats_mmio
- + i * IPA3_UC_DEBUG_STATS_OFF +
- IPA3_UC_DEBUG_STATS_RINGFULL_OFF);
- stats->ring[i].ringEmpty = ioread32(
- ipa3_ctx->wdi3_ctx.dbg_stats.uc_dbg_stats_mmio
- + i * IPA3_UC_DEBUG_STATS_OFF +
- IPA3_UC_DEBUG_STATS_RINGEMPTY_OFF);
- stats->ring[i].ringUsageHigh = ioread32(
- ipa3_ctx->wdi3_ctx.dbg_stats.uc_dbg_stats_mmio
- + i * IPA3_UC_DEBUG_STATS_OFF +
- IPA3_UC_DEBUG_STATS_RINGUSAGEHIGH_OFF);
- stats->ring[i].ringUsageLow = ioread32(
- ipa3_ctx->wdi3_ctx.dbg_stats.uc_dbg_stats_mmio
- + i * IPA3_UC_DEBUG_STATS_OFF +
- IPA3_UC_DEBUG_STATS_RINGUSAGELOW_OFF);
- stats->ring[i].RingUtilCount = ioread32(
- ipa3_ctx->wdi3_ctx.dbg_stats.uc_dbg_stats_mmio
- + i * IPA3_UC_DEBUG_STATS_OFF +
- IPA3_UC_DEBUG_STATS_RINGUTILCOUNT_OFF);
- }
- IPA_ACTIVE_CLIENTS_DEC_SIMPLE();
- return 0;
- }
|