xref: /wlan-dirver/qca-wifi-host-cmn/hif/src/dispatcher/dummy.h (revision aa6cfd9f971c0e14f93481280e1f636954e47f0e)
1 /*
2  * Copyright (c) 2016-2018 The Linux Foundation. All rights reserved.
3  *
4  * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
5  *
6  *
7  * Permission to use, copy, modify, and/or distribute this software for
8  * any purpose with or without fee is hereby granted, provided that the
9  * above copyright notice and this permission notice appear in all
10  * copies.
11  *
12  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
13  * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
14  * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
15  * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
16  * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
17  * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
18  * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
19  * PERFORMANCE OF THIS SOFTWARE.
20  */
21 
22 /*
23  * This file was originally distributed by Qualcomm Atheros, Inc.
24  * under proprietary terms before Copyright ownership was assigned
25  * to the Linux Foundation.
26  */
27 struct hif_softc;
28 struct hif_exec_context;
29 
30 void hif_dummy_bus_prevent_linkdown(struct hif_softc *scn, bool flag);
31 void hif_dummy_reset_soc(struct hif_softc *scn);
32 int hif_dummy_bus_suspend(struct hif_softc *hif_ctx);
33 int hif_dummy_bus_resume(struct hif_softc *hif_ctx);
34 int hif_dummy_bus_suspend_noirq(struct hif_softc *hif_ctx);
35 int hif_dummy_bus_resume_noirq(struct hif_softc *hif_ctx);
36 int hif_dummy_target_sleep_state_adjust(struct hif_softc *scn,
37 					bool sleep_ok, bool wait_for_it);
38 void hif_dummy_enable_power_management(struct hif_softc *hif_ctx,
39 				 bool is_packet_log_enabled);
40 void hif_dummy_disable_power_management(struct hif_softc *hif_ctx);
41 void hif_dummy_disable_isr(struct hif_softc *scn);
42 void hif_dummy_nointrs(struct hif_softc *hif_sc);
43 int hif_dummy_bus_configure(struct hif_softc *hif_sc);
44 QDF_STATUS hif_dummy_get_config_item(struct hif_softc *hif_sc,
45 		     int opcode, void *config, uint32_t config_len);
46 void hif_dummy_set_mailbox_swap(struct hif_softc *hif_sc);
47 void hif_dummy_claim_device(struct hif_softc *hif_sc);
48 void hif_dummy_cancel_deferred_target_sleep(struct hif_softc *hif_sc);
49 void hif_dummy_irq_enable(struct hif_softc *hif_sc, int irq_id);
50 void hif_dummy_irq_disable(struct hif_softc *hif_sc, int irq_id);
51 void hif_dummy_grp_irq_enable(struct hif_softc *hif_sc, uint32_t grp_id);
52 void hif_dummy_grp_irq_disable(struct hif_softc *hif_sc, uint32_t grp_id);
53 int hif_dummy_grp_irq_configure(struct hif_softc *hif_sc,
54 				struct hif_exec_context *exec);
55 int hif_dummy_dump_registers(struct hif_softc *hif_sc);
56 void hif_dummy_dump_target_memory(struct hif_softc *hif_sc, void *ramdump_base,
57 				  uint32_t address, uint32_t size);
58 void hif_dummy_ipa_get_ce_resource(struct hif_softc *hif_sc,
59 				   qdf_shared_mem_t **ce_sr,
60 				   uint32_t *sr_ring_size,
61 				   qdf_dma_addr_t *reg_paddr);
62 void hif_dummy_mask_interrupt_call(struct hif_softc *hif_sc);
63 void hif_dummy_display_stats(struct hif_softc *hif_ctx);
64 void hif_dummy_clear_stats(struct hif_softc *hif_ctx);
65 void hif_dummy_set_bundle_mode(struct hif_softc *hif_ctx,
66 					bool enabled, int rx_bundle_cnt);
67 int hif_dummy_bus_reset_resume(struct hif_softc *hif_ctx);
68 int hif_dummy_map_ce_to_irq(struct hif_softc *scn, int ce_id);
69 int hif_dummy_addr_in_boundary(struct hif_softc *scn, uint32_t offset);
70