Просмотр исходного кода

qcacmn: Remove pld_common.h from pld_stub folder which is no longer used

Change-Id: Ib3d6f6b45dbc15f3ad0c00e03be3b179afd923b9
Balamurugan Mahalingam 7 лет назад
Родитель
Сommit
d85083e7be
2 измененных файлов с 1 добавлено и 282 удалено
  1. 0 281
      pld_stub/inc/pld_common.h
  2. 1 1
      qdf/Kbuild

+ 0 - 281
pld_stub/inc/pld_common.h

@@ -1,281 +0,0 @@
-/*
- * 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.
- */
-
-#ifndef __PLD_COMMON_H__
-#define __PLD_COMMON_H__
-
-#ifdef CONFIG_PLD_STUB
-
-/**
- * struct pld_ce_tgt_pipe_cfg - copy engine target pipe configuration
- * @pipe_num: pipe number
- * @pipe_dir: pipe direction
- * @nentries: number of entries
- * @nbytes_max: max number of bytes
- * @flags: flags
- * @reserved: reserved
- *
- * pld_ce_tgt_pipe_cfg is used to store copy engine target pipe
- * configuration.
- */
-struct pld_ce_tgt_pipe_cfg {
-	u32 pipe_num;
-	u32 pipe_dir;
-	u32 nentries;
-	u32 nbytes_max;
-	u32 flags;
-	u32 reserved;
-};
-
-/**
- * struct pld_ce_svc_pipe_cfg - copy engine service pipe configuration
- * @service_id: service ID
- * @pipe_dir: pipe direction
- * @pipe_num: pipe number
- *
- * pld_ce_svc_pipe_cfg is used to store copy engine service pipe
- * configuration.
- */
-struct pld_ce_svc_pipe_cfg {
-	u32 service_id;
-	u32 pipe_dir;
-	u32 pipe_num;
-};
-
-/**
- * struct pld_shadow_reg_cfg - shadow register configuration
- * @ce_id: copy engine ID
- * @reg_offset: register offset
- *
- * pld_shadow_reg_cfg is used to store shadow register configuration.
- */
-struct pld_shadow_reg_cfg {
-	u16 ce_id;
-	u16 reg_offset;
-};
-
-/**
- * struct pld_shadow_reg_v2_cfg - shadow register version 2 configuration
- * @addr: shadow register physical address
- *
- * pld_shadow_reg_v2_cfg is used to store shadow register version 2
- * configuration.
- */
-struct pld_shadow_reg_v2_cfg {
-	u32 addr;
-};
-
-/**
- * struct pld_wlan_enable_cfg - WLAN FW configuration
- * @num_ce_tgt_cfg: number of CE target configuration
- * @ce_tgt_cfg: CE target configuration
- * @num_ce_svc_pipe_cfg: number of CE service configuration
- * @ce_svc_cfg: CE service configuration
- * @num_shadow_reg_cfg: number of shadow register configuration
- * @shadow_reg_cfg: shadow register configuration
- * @num_shadow_reg_v2_cfg: number of shadow register version 2 configuration
- * @shadow_reg_v2_cfg: shadow register version 2 configuration
- *
- * pld_wlan_enable_cfg stores WLAN FW configurations. It will be
- * passed to WLAN FW when WLAN host driver calls wlan_enable.
- */
-struct pld_wlan_enable_cfg {
-	u32 num_ce_tgt_cfg;
-	struct pld_ce_tgt_pipe_cfg *ce_tgt_cfg;
-	u32 num_ce_svc_pipe_cfg;
-	struct pld_ce_svc_pipe_cfg *ce_svc_cfg;
-	u32 num_shadow_reg_cfg;
-	struct pld_shadow_reg_cfg *shadow_reg_cfg;
-	u32 num_shadow_reg_v2_cfg;
-	struct pld_shadow_reg_v2_cfg *shadow_reg_v2_cfg;
-};
-
-/**
- * enum pld_driver_mode - WLAN host driver mode
- * @PLD_MISSION: mission mode
- * @PLD_FTM: FTM mode
- * @PLD_EPPING: EPPING mode
- * @PLD_WALTEST: WAL test mode, FW standalone test mode
- * @PLD_OFF: OFF mode
- */
-enum pld_driver_mode {
-	PLD_MISSION,
-	PLD_FTM,
-	PLD_EPPING,
-	PLD_WALTEST,
-	PLD_OFF
-};
-
-#define PLD_MAX_TIMESTAMP_LEN 32
-
-/**
- * struct pld_soc_info - SOC information
- * @v_addr: virtual address of preallocated memory
- * @p_addr: physical address of preallcoated memory
- * @chip_id: chip ID
- * @chip_family: chip family
- * @board_id: board ID
- * @soc_id: SOC ID
- * @fw_version: FW version
- * @fw_build_timestamp: FW build timestamp
- *
- * pld_soc_info is used to store WLAN SOC information.
- */
-struct pld_soc_info {
-	void __iomem *v_addr;
-	phys_addr_t p_addr;
-	u32 chip_id;
-	u32 chip_family;
-	u32 board_id;
-	u32 soc_id;
-	u32 fw_version;
-	char fw_build_timestamp[PLD_MAX_TIMESTAMP_LEN + 1];
-};
-
-/**
- * enum pld_runtime_request - PM runtime request
- * @PLD_PM_RUNTIME_GET: pm_runtime_get
- * @PLD_PM_RUNTIME_PUT: pm_runtime_put
- * @PLD_PM_RUNTIME_MARK_LAST_BUSY: pm_runtime_mark_last_busy
- * @PLD_PM_RUNTIME_RESUME: pm_runtime_resume
- * @PLD_PM_RUNTIME_PUT_NOIDLE: pm_runtime_put_noidle
- * @PLD_PM_REQUEST_RESUME: pm_request_resume
- * @PLD_PM_RUNTIME_PUT_AUTO: pm_runtime_put_auto
- */
-enum pld_runtime_request {
-	PLD_PM_RUNTIME_GET,
-	PLD_PM_RUNTIME_PUT,
-	PLD_PM_RUNTIME_MARK_LAST_BUSY,
-	PLD_PM_RUNTIME_RESUME,
-	PLD_PM_RUNTIME_PUT_NOIDLE,
-	PLD_PM_REQUEST_RESUME,
-	PLD_PM_RUNTIME_PUT_AUTO,
-};
-
-static inline int pld_wlan_enable(struct device *dev,
-				  struct pld_wlan_enable_cfg *config,
-				  enum pld_driver_mode mode,
-				  const char *host_version)
-{
-	return 0;
-}
-static inline int pld_wlan_disable(struct device *dev,
-				   enum pld_driver_mode mode)
-{
-	return 0;
-}
-static inline void pld_is_pci_link_down(struct device *dev)
-{
-}
-static inline int pld_wlan_pm_control(struct device *dev, bool vote)
-{
-	return 0;
-}
-static inline void pld_intr_notify_q6(struct device *dev)
-{
-}
-
-static inline int pld_get_user_msi_assignment(struct device *dev,
-			char *user_name, int *num_vectors,
-			uint32_t *user_base_data, uint32_t *base_vector)
-{
-	return -EINVAL;
-}
-
-/* should not be called if pld_get_user_msi_assignment returns error */
-static inline int pld_get_msi_irq(struct device *dev, unsigned int vector)
-{
-	return -EINVAL;
-}
-
-/* should not be called if pld_get_user_msi_assignment returns error */
-static inline void pld_get_msi_address(struct device *dev,
-				       uint32_t *msi_addr_low,
-				       uint32_t *msi_addr_high)
-{
-	return;
-}
-
-static inline int pld_get_irq(struct device *dev, int ce_id)
-{
-	return -EINVAL;
-}
-
-static inline int pld_ce_request_irq(struct device *dev, unsigned int ce_id,
-				     irqreturn_t (*handler)(int, void *),
-				     unsigned long flags, const char *name,
-				     void *ctx)
-{
-	return 0;
-}
-static inline int pld_ce_free_irq(struct device *dev,
-				  unsigned int ce_id, void *ctx)
-{
-	return 0;
-}
-static inline int pld_get_soc_info(struct device *dev,
-				   struct pld_soc_info *info)
-{
-	return 0;
-}
-static inline int pld_get_ce_id(struct device *dev, int irq)
-{
-	return 0;
-}
-static inline int pld_pm_runtime_request(struct device *dev,
-					 enum pld_runtime_request request)
-{
-	return 0;
-}
-static inline void pld_runtime_init(struct device *dev, int auto_delay)
-{
-}
-static inline void pld_runtime_exit(struct device *dev)
-{
-}
-static inline int pld_athdiag_read(struct device *dev,
-				   uint32_t offset, uint32_t memtype,
-				   uint32_t datalen, uint8_t *output)
-{
-	return 0;
-}
-static inline int pld_athdiag_write(struct device *dev,
-				    uint32_t offset, uint32_t memtype,
-				    uint32_t datalen, uint8_t *input)
-{
-	return 0;
-}
-static inline void *pld_hif_sdio_get_virt_ramdump_mem(struct device *dev,
-						unsigned long *size)
-{
-	return NULL;
-}
-static inline void pld_hif_sdio_release_ramdump_mem(unsigned long *address)
-{
-}
-static inline struct sk_buff *pld_nbuf_pre_alloc(size_t size)
-{
-	return NULL;
-}
-static inline int pld_nbuf_pre_alloc_free(struct sk_buff *skb)
-{
-	return 0;
-}
-
-#endif
-#endif

+ 1 - 1
qdf/Kbuild

@@ -27,7 +27,7 @@ INCS += -I$(obj)/$(HOST_CMN_CONVG_PTT)/inc \
         -I$(obj)/$(DEPTH)/cmn_dev/utils/host_diag_log/inc \
         -I$(obj)/$(DEPTH)/cmn_dev/utils/host_diag_log/src \
         -I$(obj)/$(DEPTH)/cmn_dev/utils/ptt/inc \
-        -I$(obj)/$(DEPTH)/cmn_dev/pld_stub/inc
+        -I$(WLAN_TOP)/pld/inc
 
 obj-m += qdf.o