blob: a5f8919384a1d4ddacd79c6cf727efd35cfa9e6f [file] [log] [blame]
Houston Hoffman32bc8eb2016-03-14 21:11:34 -07001/*
2 * Copyright (c) 2016 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
28#include "hif.h"
Houston Hoffman54ef87d2016-03-14 21:11:58 -070029#include "hif_main.h"
Houston Hoffman32bc8eb2016-03-14 21:11:34 -070030#include "multibus.h"
31#include "pci_api.h"
Houston Hoffmanca581c42016-03-14 21:11:56 -070032#include "hif_io32.h"
33#include "dummy.h"
Nirav Shah3573f952016-05-12 18:37:03 +053034#include "ce_api.h"
Houston Hoffman32bc8eb2016-03-14 21:11:34 -070035
36/**
37 * hif_initialize_pci_ops() - initialize the pci ops
38 * @bus_ops: hif_bus_ops table pointer to initialize
39 *
40 * Return: QDF_STATUS_SUCCESS
41 */
Houston Hoffman54ef87d2016-03-14 21:11:58 -070042QDF_STATUS hif_initialize_pci_ops(struct hif_softc *hif_sc)
Houston Hoffman32bc8eb2016-03-14 21:11:34 -070043{
Houston Hoffman54ef87d2016-03-14 21:11:58 -070044 struct hif_bus_ops *bus_ops = &hif_sc->bus_ops;
45
Houston Hoffman32bc8eb2016-03-14 21:11:34 -070046 bus_ops->hif_bus_open = &hif_pci_open;
47 bus_ops->hif_bus_close = &hif_pci_close;
Houston Hoffman4ca03b62016-03-14 21:11:51 -070048 bus_ops->hif_bus_prevent_linkdown = &hif_pci_prevent_linkdown;
49 bus_ops->hif_reset_soc = &hif_pci_reset_soc;
50 bus_ops->hif_bus_suspend = &hif_pci_bus_suspend;
51 bus_ops->hif_bus_resume = &hif_pci_bus_resume;
Houston Hoffmanca581c42016-03-14 21:11:56 -070052
Houston Hoffman54ef87d2016-03-14 21:11:58 -070053 /* do not put the target to sleep for epping or maxperf mode */
54 if (CONFIG_ATH_PCIE_MAX_PERF == 0 &&
Houston Hoffman75ef5a52016-04-14 17:15:49 -070055 !QDF_IS_EPPING_ENABLED(hif_get_conparam(hif_sc)))
Houston Hoffmanca581c42016-03-14 21:11:56 -070056 bus_ops->hif_target_sleep_state_adjust =
57 &hif_pci_target_sleep_state_adjust;
58 else
59 bus_ops->hif_target_sleep_state_adjust =
60 &hif_dummy_target_sleep_state_adjust;
Houston Hoffman4ca03b62016-03-14 21:11:51 -070061
Houston Hoffman8f239f62016-03-14 21:12:05 -070062 bus_ops->hif_disable_isr = &hif_pci_disable_isr;
63 bus_ops->hif_nointrs = &hif_pci_nointrs;
64 bus_ops->hif_enable_bus = &hif_pci_enable_bus;
65 bus_ops->hif_disable_bus = &hif_pci_disable_bus;
66 bus_ops->hif_bus_configure = &hif_pci_bus_configure;
Nirav Shah3573f952016-05-12 18:37:03 +053067 bus_ops->hif_get_config_item = &hif_dummy_get_config_item;
68 bus_ops->hif_set_mailbox_swap = &hif_dummy_set_mailbox_swap;
69 bus_ops->hif_claim_device = &hif_dummy_claim_device;
70 bus_ops->hif_shutdown_device = &hif_ce_stop;
71 bus_ops->hif_stop = &hif_ce_stop;
Nirav Shah3573f952016-05-12 18:37:03 +053072 bus_ops->hif_cancel_deferred_target_sleep =
73 &hif_pci_cancel_deferred_target_sleep;
Houston Hoffman8f239f62016-03-14 21:12:05 -070074 bus_ops->hif_irq_disable = &hif_pci_irq_disable;
75 bus_ops->hif_irq_enable = &hif_pci_irq_enable;
Houston Hoffman3c017e72016-03-14 21:12:11 -070076 bus_ops->hif_dump_registers = &hif_pci_dump_registers;
Nirav Shah3573f952016-05-12 18:37:03 +053077 bus_ops->hif_dump_target_memory = &hif_ce_dump_target_memory;
78 bus_ops->hif_ipa_get_ce_resource = &hif_ce_ipa_get_ce_resource;
79 bus_ops->hif_mask_interrupt_call = &hif_dummy_mask_interrupt_call;
Houston Hoffmanb4149dd2016-03-23 15:55:41 -070080 bus_ops->hif_enable_power_management =
81 &hif_pci_enable_power_management;
82 bus_ops->hif_disable_power_management =
83 &hif_pci_disable_power_management;
84
Houston Hoffman8f239f62016-03-14 21:12:05 -070085
Houston Hoffman32bc8eb2016-03-14 21:11:34 -070086 return QDF_STATUS_SUCCESS;
87}
Houston Hoffman162164c2016-03-14 21:12:10 -070088
89/**
90 * hif_pci_get_context_size() - return the size of the pci context
91 *
92 * Return the size of the context. (0 for invalid bus)
93 */
94int hif_pci_get_context_size(void)
95{
96 return sizeof(struct hif_pci_softc);
97}