/* SPDX-License-Identifier: GPL-2.0-only */ /* Copyright (c) 2018-2019, The Linux Foundation. All rights reserved. */ #ifndef _MHI_H_ #define _MHI_H_ #include struct mhi_chan; struct mhi_event; struct mhi_ctxt; struct mhi_cmd; struct image_info; struct bhi_vec_entry; struct mhi_timesync; struct mhi_buf_info; #define MHI_RAMDUMP_DUMP_COMPLETE 0x5000 /** * enum mhi_callback - MHI callback * @MHI_CB_IDLE: MHI entered idle state * @MHI_CB_PENDING_DATA: New data available for client to process * @MHI_CB_LPM_ENTER: MHI host entered low power mode * @MHI_CB_LPM_EXIT: MHI host about to exit low power mode * @MHI_CB_EE_RDDM: MHI device entered RDDM execution enviornment * @MHI_CB_SYS_ERROR: MHI device enter error state (may recover) * @MHI_CB_FATAL_ERROR: MHI device entered fatal error */ enum mhi_callback { MHI_CB_IDLE, MHI_CB_PENDING_DATA, MHI_CB_LPM_ENTER, MHI_CB_LPM_EXIT, MHI_CB_EE_RDDM, MHI_CB_EE_MISSION_MODE, MHI_CB_SYS_ERROR, MHI_CB_FATAL_ERROR, MHI_CB_BW_REQ, }; /** * enum MHI_DEBUG_LEVL - various debugging level */ enum MHI_DEBUG_LEVEL { MHI_MSG_LVL_VERBOSE, MHI_MSG_LVL_INFO, MHI_MSG_LVL_ERROR, MHI_MSG_LVL_CRITICAL, MHI_MSG_LVL_MASK_ALL, }; /** * enum MHI_FLAGS - Transfer flags * @MHI_EOB: End of buffer for bulk transfer * @MHI_EOT: End of transfer * @MHI_CHAIN: Linked transfer */ enum MHI_FLAGS { MHI_EOB, MHI_EOT, MHI_CHAIN, }; /** * enum mhi_device_type - Device types * @MHI_XFER_TYPE: Handles data transfer * @MHI_TIMESYNC_TYPE: Use for timesync feature * @MHI_CONTROLLER_TYPE: Control device */ enum mhi_device_type { MHI_XFER_TYPE, MHI_TIMESYNC_TYPE, MHI_CONTROLLER_TYPE, }; /** * enum mhi_ch_type - Channel types * @MHI_CH_TYPE_INVALID: Invalid channel type * @MHI_CH_TYPE_OUTBOUND: Outbound channel to the device * @MHI_CH_TYPE_INBOUND: Inbound channel from the device * @MHI_CH_TYPE_INBOUND_COALESCED: Coalesced channel for the device to combine * multiple packets and send them as a single * large packet to reduce CPU consumption */ enum mhi_ch_type { MHI_CH_TYPE_INVALID = 0, MHI_CH_TYPE_OUTBOUND = DMA_TO_DEVICE, MHI_CH_TYPE_INBOUND = DMA_FROM_DEVICE, MHI_CH_TYPE_INBOUND_COALESCED = 3, }; /** * enum mhi_ee - device current execution enviornment * @MHI_EE_PBL - device in PBL * @MHI_EE_SBL - device in SBL * @MHI_EE_AMSS - device in mission mode (firmware fully loaded) * @MHI_EE_RDDM - device in ram dump collection mode * @MHI_EE_WFW - device in WLAN firmware mode * @MHI_EE_PTHRU - device in PBL but configured in pass thru mode * @MHI_EE_EDL - device in emergency download mode */ enum mhi_ee { MHI_EE_PBL = 0x0, MHI_EE_SBL = 0x1, MHI_EE_AMSS = 0x2, MHI_EE_RDDM = 0x3, MHI_EE_WFW = 0x4, MHI_EE_PTHRU = 0x5, MHI_EE_EDL = 0x6, MHI_EE_MAX_SUPPORTED = MHI_EE_EDL, MHI_EE_DISABLE_TRANSITION, /* local EE, not related to mhi spec */ MHI_EE_MAX, }; /** * enum mhi_dev_state - device current MHI state */ enum mhi_dev_state { MHI_STATE_RESET = 0x0, MHI_STATE_READY = 0x1, MHI_STATE_M0 = 0x2, MHI_STATE_M1 = 0x3, MHI_STATE_M2 = 0x4, MHI_STATE_M3 = 0x5, MHI_STATE_BHI = 0x7, MHI_STATE_SYS_ERR = 0xFF, MHI_STATE_MAX, }; extern const char * const mhi_ee_str[MHI_EE_MAX]; #define TO_MHI_EXEC_STR(ee) (((ee) >= MHI_EE_MAX) ? \ "INVALID_EE" : mhi_ee_str[ee]) /** * struct image_info - firmware and rddm table table * @mhi_buf - Contain device firmware and rddm table * @entries - # of entries in table */ struct image_info { struct mhi_buf *mhi_buf; struct bhi_vec_entry *bhi_vec; u32 entries; }; enum mhi_er_data_type { MHI_ER_DATA_ELEMENT_TYPE, MHI_ER_DATA = 0, MHI_ER_CTRL_ELEMENT_TYPE, MHI_ER_CTRL = 1, MHI_ER_TSYNC_ELEMENT_TYPE, MHI_ER_DATA_TYPE_MAX = MHI_ER_TSYNC_ELEMENT_TYPE, }; /** * enum mhi_db_brst_mode - Doorbell mode * @MHI_DB_BRST_DISABLE: Burst mode disable * @MHI_DB_BRST_ENABLE: Burst mode enable */ enum mhi_db_brst_mode { MHI_DB_BRST_DISABLE = 0x2, MHI_DB_BRST_ENABLE = 0x3, }; /** * struct mhi_channel_config - Channel configuration structure for controller * @name: The name of this channel * @num: The number assigned to this channel * @num_elements: The number of elements that can be queued to this channel * @local_elements: The local ring length of the channel * @event_ring: The event rung index that services this channel * @dir: Direction that data may flow on this channel * @type: Channel type * @ee_mask: Execution Environment mask for this channel * @pollcfg: Polling configuration for burst mode. 0 is default. milliseconds for UL channels, multiple of 8 ring elements for DL channels * @doorbell: Doorbell mode * @lpm_notify: The channel master requires low power mode notifications * @offload_channel: The client manages the channel completely * @doorbell_mode_switch: Channel switches to doorbell mode on M0 transition * @auto_queue: Framework will automatically queue buffers for DL traffic * @auto_start: Automatically start (open) this channel * @wake-capable: Channel capable of waking up the system */ struct mhi_channel_config { char *name; u32 num; u32 num_elements; u32 local_elements; u32 event_ring; enum dma_data_direction dir; enum mhi_ch_type type; u32 ee_mask; u32 pollcfg; enum mhi_db_brst_mode doorbell; bool lpm_notify; bool offload_channel; bool doorbell_mode_switch; bool auto_queue; bool auto_start; bool wake_capable; }; /** * struct mhi_event_config - Event ring configuration structure for controller * @num_elements: The number of elements that can be queued to this ring * @irq_moderation_ms: Delay irq for additional events to be aggregated * @irq: IRQ associated with this ring * @channel: Dedicated channel number. U32_MAX indicates a non-dedicated ring * @priority: Priority of this ring. Use 1 for now * @mode: Doorbell mode * @data_type: Type of data this ring will process * @hardware_event: This ring is associated with hardware channels * @client_managed: This ring is client managed * @offload_channel: This ring is associated with an offloaded channel */ struct mhi_event_config { u32 num_elements; u32 irq_moderation_ms; u32 irq; u32 channel; u32 priority; enum mhi_db_brst_mode mode; enum mhi_er_data_type data_type; bool hardware_event; bool client_managed; bool offload_channel; }; /** * struct mhi_controller_config - Root MHI controller configuration * @max_channels: Maximum number of channels supported * @timeout_ms: Timeout value for operations. 0 means use default * @buf_len: Size of automatically allocated buffers. 0 means use default * @num_channels: Number of channels defined in @ch_cfg * @ch_cfg: Array of defined channels * @num_events: Number of event rings defined in @event_cfg * @event_cfg: Array of defined event rings * @use_bounce_buf: Use a bounce buffer pool due to limited DDR access * @m2_no_db: Host is not allowed to ring DB in M2 state */ struct mhi_controller_config { u32 max_channels; u32 timeout_ms; u32 buf_len; u32 num_channels; struct mhi_channel_config *ch_cfg; u32 num_events; struct mhi_event_config *event_cfg; bool use_bounce_buf; bool m2_no_db; }; /** * struct mhi_controller - Master controller structure for external modem * @dev: Device associated with this controller * @of_node: DT that has MHI configuration information * @regs: Points to base of MHI MMIO register space * @bhi: Points to base of MHI BHI register space * @bhie: Points to base of MHI BHIe register space * @wake_db: MHI WAKE doorbell register address * @dev_id: PCIe device id of the external device * @domain: PCIe domain the device connected to * @bus: PCIe bus the device assigned to * @slot: PCIe slot for the modem * @iova_start: IOMMU starting address for data * @iova_stop: IOMMU stop address for data * @fw_image: Firmware image name for normal booting * @edl_image: Firmware image name for emergency download mode * @fbc_download: MHI host needs to do complete image transfer * @rddm_size: RAM dump size that host should allocate for debugging purpose * @sbl_size: SBL image size * @seg_len: BHIe vector size * @fbc_image: Points to firmware image buffer * @rddm_image: Points to RAM dump buffer * @max_chan: Maximum number of channels controller support * @mhi_chan: Points to channel configuration table * @lpm_chans: List of channels that require LPM notifications * @total_ev_rings: Total # of event rings allocated * @hw_ev_rings: Number of hardware event rings * @sw_ev_rings: Number of software event rings * @msi_required: Number of msi required to operate * @msi_allocated: Number of msi allocated by bus master * @irq: base irq # to request * @irq_start: msi irq start value, used only for msi interrupts * @mhi_event: MHI event ring configurations table * @mhi_cmd: MHI command ring configurations table * @mhi_ctxt: MHI device context, shared memory between host and device * @timeout_ms: Timeout in ms for state transitions * @pm_state: Power management state * @ee: MHI device execution environment * @dev_state: MHI STATE * @status_cb: CB function to notify various power states to but master * @link_status: Query link status in case of abnormal value read from device * @runtime_get: Async runtime resume function * @runtimet_put: Release votes * @time_get: Return host time in us * @lpm_disable: Request controller to disable link level low power modes * @lpm_enable: Controller may enable link level low power modes again * @priv_data: Points to bus master's private data */ struct mhi_controller { struct list_head node; struct mhi_device *mhi_dev; /* device node for iommu ops */ union { struct device *dev; struct device *cntrl_dev; }; struct device_node *of_node; /* mmio base */ phys_addr_t base_addr; void __iomem *regs; void __iomem *bhi; void __iomem *bhie; void __iomem *wake_db; /* device topology */ u32 dev_id; u32 domain; u32 bus; u32 slot; /* addressing window */ dma_addr_t iova_start; dma_addr_t iova_stop; /* fw images */ const char *fw_image; const char *edl_image; /* mhi host manages downloading entire fbc images */ bool fbc_download; size_t rddm_size; size_t sbl_size; size_t seg_len; u32 session_id; u32 sequence_id; struct image_info *fbc_image; struct image_info *rddm_image; /* physical channel config data */ u32 max_chan; struct mhi_chan *mhi_chan; struct list_head lpm_chans; /* these chan require lpm notification */ /* physical event config data */ u32 total_ev_rings; u32 hw_ev_rings; u32 sw_ev_rings; union { u32 msi_required; u32 nr_irqs_req; }; union { u32 msi_allocated; u32 nr_irqs; }; int *irq; /* interrupt table */ int irq_start; struct mhi_event *mhi_event; /* cmd rings */ struct mhi_cmd *mhi_cmd; /* mhi context (shared with device) */ struct mhi_ctxt *mhi_ctxt; u32 timeout_ms; /* caller should grab pm_mutex for suspend/resume operations */ struct mutex pm_mutex; bool pre_init; rwlock_t pm_lock; u32 pm_state; enum mhi_ee ee; enum mhi_dev_state dev_state; bool wake_set; atomic_t dev_wake; atomic_t alloc_size; struct list_head transition_list; spinlock_t transition_lock; spinlock_t wlock; /* debug counters */ u32 M0, M2, M3; /* worker for different state transitions */ struct work_struct st_worker; struct work_struct fw_worker; struct work_struct syserr_worker; wait_queue_head_t state_event; void (*status_cb)(struct mhi_controller *mhi_cntrl, enum mhi_callback cb); void (*wake_get)(struct mhi_controller *mhi_cntrl, bool override); void (*wake_put)(struct mhi_controller *mhi_cntrl, bool override); int (*runtime_get)(struct mhi_controller *mhi_cntrl); void (*runtime_put)(struct mhi_controller *mhi_cntrl); int (*map_single)(struct mhi_controller *mhi_cntrl, struct mhi_buf_info *buf); void (*unmap_single)(struct mhi_controller *mhi_cntrl, struct mhi_buf_info *buf); int (*read_reg)(struct mhi_controller *mhi_cntrl, void __iomem *addr, u32 *out); void (*write_reg)(struct mhi_controller *mhi_cntrl, void __iomem *addr, u32 val); int (*link_status)(struct mhi_controller *mhi_cntrl); u64 (*time_get)(struct mhi_controller *mhi_cntrl); int (*lpm_disable)(struct mhi_controller *mhi_cntrl); int (*lpm_enable)(struct mhi_controller *mhi_cntrl); /* channel to control DTR messaging */ struct mhi_device *dtr_dev; /* bounce buffer settings */ bool bounce_buf; size_t buffer_len; /* supports time sync feature */ struct mhi_timesync *mhi_tsync; struct mhi_device *tsync_dev; /* kernel log level */ enum MHI_DEBUG_LEVEL klog_lvl; /* private log level controller driver to set */ enum MHI_DEBUG_LEVEL log_lvl; /* controller specific data */ void *priv_data; void *log_buf; struct dentry *dentry; struct dentry *parent; struct notifier_block mhi_panic_notifier; /* upstream specific members */ u32 family_number; u32 device_number; u32 major_version; u32 minor_version; }; /** * struct mhi_device - mhi device structure associated bind to channel * @dev: Device associated with the channels * @mtu: Maximum # of bytes controller support * @ul_chan_id: MHI channel id for UL transfer * @dl_chan_id: MHI channel id for DL transfer * @tiocm: Device current terminal settings * @priv: Driver private data */ struct mhi_device { struct device dev; u32 dev_id; u32 domain; u32 bus; u32 slot; size_t mtu; int ul_chan_id; int dl_chan_id; int ul_event_id; int dl_event_id; u32 tiocm; const struct mhi_device_id *id; const char *chan_name; struct mhi_controller *mhi_cntrl; struct mhi_chan *ul_chan; struct mhi_chan *dl_chan; atomic_t dev_wake; enum mhi_device_type dev_type; void *priv_data; int (*ul_xfer)(struct mhi_device *mhi_dev, struct mhi_chan *mhi_chan, void *buf, size_t len, enum MHI_FLAGS flags); int (*dl_xfer)(struct mhi_device *mhi_dev, struct mhi_chan *mhi_chan, void *buf, size_t size, enum MHI_FLAGS flags); void (*status_cb)(struct mhi_device *mhi_dev, enum mhi_callback reason); }; /** * struct mhi_result - Completed buffer information * @buf_addr: Address of data buffer * @dir: Channel direction * @bytes_xfer: # of bytes transferred * @transaction_status: Status of last trasnferred */ struct mhi_result { void *buf_addr; enum dma_data_direction dir; size_t bytes_xferd; int transaction_status; }; /** * struct mhi_buf - Describes the buffer * @page: buffer as a page * @buf: cpu address for the buffer * @phys_addr: physical address of the buffer * @dma_addr: iommu address for the buffer * @skb: skb of ip packet * @len: # of bytes * @name: Buffer label, for offload channel configurations name must be: * ECA - Event context array data * CCA - Channel context array data */ struct mhi_buf { struct list_head node; struct page *page; void *buf; phys_addr_t phys_addr; dma_addr_t dma_addr; struct sk_buff *skb; size_t len; const char *name; /* ECA, CCA */ }; /** * struct mhi_driver - mhi driver information * @id_table: NULL terminated channel ID names * @ul_xfer_cb: UL data transfer callback * @dl_xfer_cb: DL data transfer callback * @status_cb: Asynchronous status callback */ struct mhi_driver { const struct mhi_device_id *id_table; int (*probe)(struct mhi_device *mhi_dev, const struct mhi_device_id *id); void (*remove)(struct mhi_device *mhi_dev); void (*ul_xfer_cb)(struct mhi_device *mhi_dev, struct mhi_result *res); void (*dl_xfer_cb)(struct mhi_device *mhi_dev, struct mhi_result *res); void (*status_cb)(struct mhi_device *mhi_dev, enum mhi_callback mhi_cb); struct device_driver driver; }; #define to_mhi_driver(drv) container_of(drv, struct mhi_driver, driver) #define to_mhi_device(dev) container_of(dev, struct mhi_device, dev) static inline void mhi_device_set_devdata(struct mhi_device *mhi_dev, void *priv) { mhi_dev->priv_data = priv; } static inline void *mhi_device_get_devdata(struct mhi_device *mhi_dev) { return mhi_dev->priv_data; } /** * mhi_queue_transfer - Queue a buffer to hardware * All transfers are asyncronous transfers * @mhi_dev: Device associated with the channels * @dir: Data direction * @buf: Data buffer (skb for hardware channels) * @len: Size in bytes * @mflags: Interrupt flags for the device */ static inline int mhi_queue_transfer(struct mhi_device *mhi_dev, enum dma_data_direction dir, void *buf, size_t len, enum MHI_FLAGS mflags) { if (dir == DMA_TO_DEVICE) return mhi_dev->ul_xfer(mhi_dev, mhi_dev->ul_chan, buf, len, mflags); else return mhi_dev->dl_xfer(mhi_dev, mhi_dev->dl_chan, buf, len, mflags); } static inline void *mhi_controller_get_devdata(struct mhi_controller *mhi_cntrl) { return mhi_cntrl->priv_data; } static inline void mhi_free_controller(struct mhi_controller *mhi_cntrl) { kfree(mhi_cntrl); } /** * mhi_driver_register - Register driver with MHI framework * @mhi_drv: mhi_driver structure */ int mhi_driver_register(struct mhi_driver *mhi_drv); /** * mhi_driver_unregister - Unregister a driver for mhi_devices * @mhi_drv: mhi_driver structure */ void mhi_driver_unregister(struct mhi_driver *mhi_drv); /** * mhi_device_configure - configure ECA or CCA context * For offload channels that client manage, call this * function to configure channel context or event context * array associated with the channel * @mhi_div: Device associated with the channels * @dir: Direction of the channel * @mhi_buf: Configuration data * @elements: # of configuration elements */ int mhi_device_configure(struct mhi_device *mhi_div, enum dma_data_direction dir, struct mhi_buf *mhi_buf, int elements); /** * mhi_device_get - disable all low power modes * Only disables lpm, does not immediately exit low power mode * if controller already in a low power mode * @mhi_dev: Device associated with the channels */ void mhi_device_get(struct mhi_device *mhi_dev); /** * mhi_device_get_sync - disable all low power modes * Synchronously disable all low power, exit low power mode if * controller already in a low power state * @mhi_dev: Device associated with the channels */ int mhi_device_get_sync(struct mhi_device *mhi_dev); /** * mhi_device_put - re-enable low power modes * @mhi_dev: Device associated with the channels */ void mhi_device_put(struct mhi_device *mhi_dev); /** * mhi_prepare_for_transfer - setup channel for data transfer * Moves both UL and DL channel from RESET to START state * @mhi_dev: Device associated with the channels */ int mhi_prepare_for_transfer(struct mhi_device *mhi_dev); /** * mhi_unprepare_from_transfer -unprepare the channels * Moves both UL and DL channels to RESET state * @mhi_dev: Device associated with the channels */ void mhi_unprepare_from_transfer(struct mhi_device *mhi_dev); /** * mhi_get_no_free_descriptors - Get transfer ring length * Get # of TD available to queue buffers * @mhi_dev: Device associated with the channels * @dir: Direction of the channel */ int mhi_get_no_free_descriptors(struct mhi_device *mhi_dev, enum dma_data_direction dir); /** * mhi_poll - poll for any available data to consume * This is only applicable for DL direction * @mhi_dev: Device associated with the channels * @budget: In descriptors to service before returning */ int mhi_poll(struct mhi_device *mhi_dev, u32 budget); /** * mhi_ioctl - user space IOCTL support for MHI channels * Native support for setting TIOCM * @mhi_dev: Device associated with the channels * @cmd: IOCTL cmd * @arg: Optional parameter, iotcl cmd specific */ long mhi_ioctl(struct mhi_device *mhi_dev, unsigned int cmd, unsigned long arg); /** * mhi_bdf_to_controller - Look up a registered controller * Search for controller based on device identification * @domain: RC domain of the device * @bus: Bus device connected to * @slot: Slot device assigned to * @dev_id: Device Identification */ struct mhi_controller *mhi_bdf_to_controller(u32 domain, u32 bus, u32 slot, u32 dev_id); /** * mhi_async_power_up - Starts MHI power up sequence * @mhi_cntrl: MHI controller */ int mhi_async_power_up(struct mhi_controller *mhi_cntrl); /** * mhi_pm_suspend - Move MHI into a suspended state * Transition to MHI state M3 state from M0||M1||M2 state * @mhi_cntrl: MHI controller */ int mhi_pm_suspend(struct mhi_controller *mhi_cntrl); /** * mhi_pm_resume - Resume MHI from suspended state * Transition to MHI state M0 state from M3 state * @mhi_cntrl: MHI controller */ int mhi_pm_resume(struct mhi_controller *mhi_cntrl); /** * mhi_get_remote_time_sync - Get external soc time relative to local soc time * using MMIO method. * @mhi_dev: Device associated with the channels * @t_host: Pointer to output local soc time * @t_dev: Pointer to output remote soc time */ int mhi_get_remote_time_sync(struct mhi_device *mhi_dev, u64 *t_host, u64 *t_dev); /** * mhi_get_mhi_state - Return MHI state of device * @mhi_cntrl: MHI controller */ enum mhi_dev_state mhi_get_mhi_state(struct mhi_controller *mhi_cntrl); /** * mhi_is_active - helper function to determine if MHI in active state * @mhi_dev: client device */ static inline bool mhi_is_active(struct mhi_device *mhi_dev) { struct mhi_controller *mhi_cntrl = mhi_dev->mhi_cntrl; return (mhi_cntrl->dev_state >= MHI_STATE_M0 && mhi_cntrl->dev_state <= MHI_STATE_M3); } void mhi_wdt_panic_handler(void); #ifdef CONFIG_QRTR_MHI /** * mhi_prepare_for_power_up - Do pre-initialization before power up * This is optional, call this before power up if controller do not * want bus framework to automatically free any allocated memory during shutdown * process. * @mhi_cntrl: MHI controller */ int mhi_prepare_for_power_up(struct mhi_controller *mhi_cntrl); /** * mhi_unprepare_after_powre_down - free any allocated memory for power up * @mhi_cntrl: MHI controller */ void mhi_unprepare_after_power_down(struct mhi_controller *mhi_cntrl); int mhi_sync_power_up(struct mhi_controller *mhi_cntrl); /** * mhi_power_down - Start MHI power down sequence * @mhi_cntrl: MHI controller * @graceful: link is still accessible, do a graceful shutdown process otherwise * we will shutdown host w/o putting device into RESET state */ void mhi_power_down(struct mhi_controller *mhi_cntrl, bool graceful); /** * mhi_force_rddm_mode - Force external device into rddm mode * to collect device ramdump. This is useful if host driver assert * and we need to see device state as well. * @mhi_cntrl: MHI controller */ int mhi_force_rddm_mode(struct mhi_controller *mhi_cntrl); /** * mhi_set_mhi_state - Set device state * @mhi_cntrl: MHI controller * @state: state to set */ void mhi_set_mhi_state(struct mhi_controller *mhi_cntrl, enum mhi_dev_state state); /** * mhi_alloc_controller - Allocate mhi_controller structure * Allocate controller structure and additional data for controller * private data. You may get the private data pointer by calling * mhi_controller_get_devdata * @size: # of additional bytes to allocate */ struct mhi_controller *mhi_alloc_controller(size_t size); /** * of_register_mhi_controller - Register MHI controller * Registers MHI controller with MHI bus framework. DT must be supported * @mhi_cntrl: MHI controller to register */ int of_register_mhi_controller(struct mhi_controller *mhi_cntrl); void mhi_unregister_mhi_controller(struct mhi_controller *mhi_cntrl); /** * mhi_register_controller - Register MHI controller * @mhi_cntrl: MHI controller to register * @config: Configuration to use for the controller */ int mhi_register_controller(struct mhi_controller *mhi_cntrl, struct mhi_controller_config *config); /** * mhi_unregister_controller - Unregister MHI controller * @mhi_cntrl: MHI controller to unregister */ void mhi_unregister_controller(struct mhi_controller *mhi_cntrl); /** * mhi_download_rddm_img - Download ramdump image from device for * debugging purpose. * @mhi_cntrl: MHI controller * @in_panic: If we trying to capture image while in kernel panic */ int mhi_download_rddm_img(struct mhi_controller *mhi_cntrl, bool in_panic); /** * mhi_debug_reg_dump - dump MHI registers for debug purpose * @mhi_cntrl: MHI controller */ void mhi_debug_reg_dump(struct mhi_controller *mhi_cntrl); enum mhi_ee mhi_get_exec_env(struct mhi_controller *mhi_cntrl); #else static inline enum mhi_ee mhi_get_exec_env(struct mhi_controller *mhi_cntrl) { return MHI_EE_MAX; } static inline int mhi_prepare_for_power_up(struct mhi_controller *mhi_cntrl) { return -1; } static inline void mhi_unprepare_after_power_down(struct mhi_controller *mhi_cntrl) { return; } static inline int mhi_sync_power_up(struct mhi_controller *mhi_cntrl) { return -1; } static inline void mhi_power_down(struct mhi_controller *mhi_cntrl, bool graceful) { return; } static inline int mhi_force_rddm_mode(struct mhi_controller *mhi_cntrl) { return -1; } static inline void mhi_set_mhi_state(struct mhi_controller *mhi_cntrl, enum mhi_dev_state state) { return; } static inline struct mhi_controller *mhi_alloc_controller(size_t size) { return NULL; } static inline int of_register_mhi_controller(struct mhi_controller *mhi_cntrl) { return -1; } static inline void mhi_unregister_mhi_controller(struct mhi_controller *mhi_cntrl) { return; } static inline int mhi_download_rddm_img(struct mhi_controller *mhi_cntrl, bool in_panic) { return -1; } static inline void mhi_debug_reg_dump(struct mhi_controller *mhi_cntrl) { return; } #endif #ifndef CONFIG_ARCH_QCOM #ifdef CONFIG_MHI_DEBUG #define MHI_VERB(fmt, ...) do { \ if (mhi_cntrl->klog_lvl <= MHI_MSG_VERBOSE) \ pr_dbg("[D][%s] " fmt, __func__, ##__VA_ARGS__);\ } while (0) #else #define MHI_VERB(fmt, ...) #endif #define MHI_LOG(fmt, ...) do { \ if (mhi_cntrl->klog_lvl <= MHI_MSG_INFO) \ pr_info("[I][%s] " fmt, __func__, ##__VA_ARGS__);\ } while (0) #define MHI_ERR(fmt, ...) do { \ if (mhi_cntrl->klog_lvl <= MHI_MSG_LVL_ERROR) \ pr_err("[E][%s] " fmt, __func__, ##__VA_ARGS__); \ } while (0) #define MHI_CRITICAL(fmt, ...) do { \ if (mhi_cntrl->klog_lvl <= MHI_MSG_LVL_CRITICAL) \ pr_alert("[C][%s] " fmt, __func__, ##__VA_ARGS__); \ } while (0) #else /* ARCH QCOM */ #include #ifdef CONFIG_MHI_DEBUG #define MHI_VERB(fmt, ...) do { \ if (mhi_cntrl->klog_lvl <= MHI_MSG_LVL_VERBOSE) \ pr_err("[D][%s] " fmt, __func__, ##__VA_ARGS__);\ if (mhi_cntrl->log_buf && \ (mhi_cntrl->log_lvl <= MHI_MSG_LVL_VERBOSE)) \ ipc_log_string(mhi_cntrl->log_buf, "[D][%s] " fmt, \ __func__, ##__VA_ARGS__); \ } while (0) #else #define MHI_VERB(fmt, ...) #endif #define MHI_LOG(fmt, ...) do { \ if (mhi_cntrl->klog_lvl <= MHI_MSG_LVL_INFO) \ pr_err("[I][%s] " fmt, __func__, ##__VA_ARGS__);\ if (mhi_cntrl->log_buf && \ (mhi_cntrl->log_lvl <= MHI_MSG_LVL_INFO)) \ ipc_log_string(mhi_cntrl->log_buf, "[I][%s] " fmt, \ __func__, ##__VA_ARGS__); \ } while (0) #define MHI_ERR(fmt, ...) do { \ if (mhi_cntrl->klog_lvl <= MHI_MSG_LVL_ERROR) \ pr_err("[E][%s] " fmt, __func__, ##__VA_ARGS__); \ if (mhi_cntrl->log_buf && \ (mhi_cntrl->log_lvl <= MHI_MSG_LVL_ERROR)) \ ipc_log_string(mhi_cntrl->log_buf, "[E][%s] " fmt, \ __func__, ##__VA_ARGS__); \ } while (0) #define MHI_CRITICAL(fmt, ...) do { \ if (mhi_cntrl->klog_lvl <= MHI_MSG_LVL_CRITICAL) \ pr_err("[C][%s] " fmt, __func__, ##__VA_ARGS__); \ if (mhi_cntrl->log_buf && \ (mhi_cntrl->log_lvl <= MHI_MSG_LVL_CRITICAL)) \ ipc_log_string(mhi_cntrl->log_buf, "[C][%s] " fmt, \ __func__, ##__VA_ARGS__); \ } while (0) #endif #endif /* _MHI_H_ */