qcacmn: hif/ce changes for wcn6450

Add the following hif/ce changes to add support for wcn6450,
* New host/target wlan ce config for wcn6450
* New service to pipe map for wcn6450
* New host/ce/target table attach for wcn6450

Change-Id: I20fa1410f5e4e7a0146bc2d0b48a18269ca4a8c9
CRs-Fixed: 3381111
This commit is contained in:
Venkateswara Naralasetty
2022-11-01 18:22:33 +05:30
committed by Madan Koyyalamudi
parent 4440f2b36a
commit ad3cd5fa15
12 changed files with 229 additions and 7 deletions

View File

@@ -301,7 +301,12 @@ static inline uint32_t hif_read32_mb_reg_window(void *scn, void __iomem *addr)
}
#endif
#ifdef CONFIG_IO_MEM_ACCESS_DEBUG
#if defined(HIF_HAL_REG_ACCESS_SUPPORT)
#define A_TARGET_READ(scn, offset) \
hif_reg_window_read(scn, offset)
#define A_TARGET_WRITE(scn, offset, value) \
hif_reg_window_write(scn, offset, value)
#elif defined(CONFIG_IO_MEM_ACCESS_DEBUG)
uint32_t hif_target_read_checked(struct hif_softc *scn,
uint32_t offset);
void hif_target_write_checked(struct hif_softc *scn, uint32_t offset,