123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138 |
- /*
- * Copyright (c) 2016-2017 The Linux Foundation. All rights reserved.
- *
- * Permission to use, copy, modify, and/or distribute this software for
- * any purpose with or without fee is hereby granted, provided that the
- * above copyright notice and this permission notice appear in all
- * copies.
- *
- * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
- * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
- * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
- * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
- * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
- * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
- * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
- * PERFORMANCE OF THIS SOFTWARE.
- */
- /**
- * DOC: This file provides various init/deinit trigger point for new
- * components.
- */
- #if !defined(__DISPATCHER_INIT_H)
- #define __DISPATCHER_INIT_H
- #include <qdf_types.h>
- #include <wlan_objmgr_cmn.h>
- #include <wlan_objmgr_psoc_obj.h>
- #include <wlan_objmgr_global_obj.h>
- /**
- * dispatcher_init(): API to init all new components
- *
- * This API calls all new components init APIs. This is invoked
- * from HDD/OS_If layer during:
- * 1) Driver load sequence
- * 2) before probing the attached device.
- * 3) FW is not ready
- * 4) WMI channel is not established
- *
- * A component can't communicate with FW during init stage.
- *
- * Return: none
- */
- QDF_STATUS dispatcher_init(void);
- /**
- * dispatcher_deinit(): API to de-init all new components
- *
- * This API calls all new components de-init APIs. This is invoked
- * from HDD/OS_If layer during:
- * 1) Driver unload sequence
- * 2) FW is dead
- * 3) WMI channel is destroyed
- * 4) all PDEV and PSOC objects are destroyed
- *
- * A component can't communicate with FW during de-init stage.
- *
- * Return: none
- */
- QDF_STATUS dispatcher_deinit(void);
- /**
- * dispatcher_psoc_open(): API to trigger PSOC open for all new components
- * @psoc: psoc context
- *
- * This API calls all new components PSOC OPEN APIs. This is invoked from
- * HDD/OS_If layer during:
- * 1) Driver load sequence
- * 2) PSOC object is created
- * 3) FW is not yet ready
- * 4) WMI channel is not yet established with FW
- *
- * PSOC open happens before FW WMI ready and hence a component can't
- * communicate with FW during PSOC open sequence.
- *
- * Return: none
- */
- QDF_STATUS dispatcher_psoc_open(struct wlan_objmgr_psoc *psoc);
- /**
- * dispatcher_psoc_close(): API to trigger PSOC close for all new components
- * @psoc: psoc context
- *
- * This API calls all new components PSOC CLOSE APIs. This is invoked from
- * HDD/OS_If layer during:
- * 1) Driver unload sequence
- * 2) PSOC object is destroyed
- * 3) FW is already dead(PDEV suspended)
- * 4) WMI channel is destroyed with FW
- *
- * A component can't communicate with FW during PSOC close.
- *
- * Return: none
- */
- QDF_STATUS dispatcher_psoc_close(struct wlan_objmgr_psoc *psoc);
- /**
- * dispatcher_psoc_enable(): API to trigger PSOC enable(start) for all new
- * components
- * @psoc: psoc context
- *
- * This API calls all new components PSOC enable(start) APIs. This is invoked
- * from HDD/OS_If layer during:
- * 1) Driver load sequence
- * 2) PSOC object is created
- * 3) WMI endpoint and WMI channel is ready with FW
- * 4) WMI FW ready event is also received from FW.
- *
- * FW is already ready and WMI channel is established by this time so a
- * component can communicate with FW during PSOC enable sequence.
- *
- * Return: none
- */
- QDF_STATUS dispatcher_psoc_enable(struct wlan_objmgr_psoc *psoc);
- /**
- * dispatcher_psoc_disable(): API to trigger PSOC disable(stop) for all new
- * components
- * @psoc: psoc context
- *
- * This API calls all new components PSOC disable(stop) APIs. This is invoked
- * from HDD/OS_If layer during:
- * 1) Driver unload sequence
- * 2) WMI channel is still available
- * 3) FW is still running and up
- * 4) PSOC object is not destroyed
- *
- * A component should abort all its ongign transaction with FW at this stage
- * for example scan component needs to abort all its ongoing scan in FW because
- * is goign to be stopped very soon.
- *
- * Return: none
- */
- QDF_STATUS dispatcher_psoc_disable(struct wlan_objmgr_psoc *psoc);
- #endif /* End of !defined(__DISPATCHER_INIT_H) */
|