ahb_api.h 1.8 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. /*
  2. * Copyright (c) 2013-2016 The Linux Foundation. All rights reserved.
  3. *
  4. * Permission to use, copy, modify, and/or distribute this software for
  5. * any purpose with or without fee is hereby granted, provided that the
  6. * above copyright notice and this permission notice appear in all
  7. * copies.
  8. *
  9. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  10. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  11. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  12. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  13. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  14. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  15. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  16. * PERFORMANCE OF THIS SOFTWARE.
  17. */
  18. #ifndef __AHB_API_H
  19. #define __AHB_API_H
  20. QDF_STATUS hif_ahb_open(struct hif_softc *hif_ctx,
  21. enum qdf_bus_type bus_type);
  22. void hif_ahb_close(struct hif_softc *hif_ctx);
  23. void hif_ahb_disable_isr(struct hif_softc *hif_ctx);
  24. void hif_ahb_nointrs(struct hif_softc *scn);
  25. void hif_ahb_reset_soc(struct hif_softc *hif_ctx);
  26. QDF_STATUS hif_ahb_enable_bus(struct hif_softc *ol_sc,
  27. struct device *dev, void *bdev,
  28. const hif_bus_id *bid,
  29. enum hif_enable_type type);
  30. void hif_ahb_disable_bus(struct hif_softc *scn);
  31. int hif_ahb_bus_configure(struct hif_softc *scn);
  32. void hif_ahb_irq_disable(struct hif_softc *scn, int ce_id);
  33. void hif_ahb_irq_enable(struct hif_softc *scn, int ce_id);
  34. int hif_ahb_dump_registers(struct hif_softc *scn);
  35. int hif_ahb_configure_legacy_irq(struct hif_pci_softc *sc);
  36. int hif_ahb_clk_enable_disable(struct device *dev, int enable);
  37. void hif_ahb_device_reset(struct hif_softc *scn);
  38. int hif_ahb_enable_radio(struct hif_pci_softc *sc,
  39. struct platform_device *pdev,
  40. const struct platform_device_id *id);
  41. #endif