18c2ecf20Sopenharmony_ci/* SPDX-License-Identifier: GPL-2.0 */ 28c2ecf20Sopenharmony_ci#ifndef B43legacy_ILT_H_ 38c2ecf20Sopenharmony_ci#define B43legacy_ILT_H_ 48c2ecf20Sopenharmony_ci 58c2ecf20Sopenharmony_ci#define B43legacy_ILT_ROTOR_SIZE 53 68c2ecf20Sopenharmony_ciextern const u32 b43legacy_ilt_rotor[B43legacy_ILT_ROTOR_SIZE]; 78c2ecf20Sopenharmony_ci#define B43legacy_ILT_RETARD_SIZE 53 88c2ecf20Sopenharmony_ciextern const u32 b43legacy_ilt_retard[B43legacy_ILT_RETARD_SIZE]; 98c2ecf20Sopenharmony_ci#define B43legacy_ILT_FINEFREQA_SIZE 256 108c2ecf20Sopenharmony_ciextern const u16 b43legacy_ilt_finefreqa[B43legacy_ILT_FINEFREQA_SIZE]; 118c2ecf20Sopenharmony_ci#define B43legacy_ILT_FINEFREQG_SIZE 256 128c2ecf20Sopenharmony_ciextern const u16 b43legacy_ilt_finefreqg[B43legacy_ILT_FINEFREQG_SIZE]; 138c2ecf20Sopenharmony_ci#define B43legacy_ILT_NOISEA2_SIZE 8 148c2ecf20Sopenharmony_ciextern const u16 b43legacy_ilt_noisea2[B43legacy_ILT_NOISEA2_SIZE]; 158c2ecf20Sopenharmony_ci#define B43legacy_ILT_NOISEA3_SIZE 8 168c2ecf20Sopenharmony_ciextern const u16 b43legacy_ilt_noisea3[B43legacy_ILT_NOISEA3_SIZE]; 178c2ecf20Sopenharmony_ci#define B43legacy_ILT_NOISEG1_SIZE 8 188c2ecf20Sopenharmony_ciextern const u16 b43legacy_ilt_noiseg1[B43legacy_ILT_NOISEG1_SIZE]; 198c2ecf20Sopenharmony_ci#define B43legacy_ILT_NOISEG2_SIZE 8 208c2ecf20Sopenharmony_ciextern const u16 b43legacy_ilt_noiseg2[B43legacy_ILT_NOISEG2_SIZE]; 218c2ecf20Sopenharmony_ci#define B43legacy_ILT_NOISESCALEG_SIZE 27 228c2ecf20Sopenharmony_ciextern const u16 b43legacy_ilt_noisescaleg1[B43legacy_ILT_NOISESCALEG_SIZE]; 238c2ecf20Sopenharmony_ciextern const u16 b43legacy_ilt_noisescaleg2[B43legacy_ILT_NOISESCALEG_SIZE]; 248c2ecf20Sopenharmony_ciextern const u16 b43legacy_ilt_noisescaleg3[B43legacy_ILT_NOISESCALEG_SIZE]; 258c2ecf20Sopenharmony_ci#define B43legacy_ILT_SIGMASQR_SIZE 53 268c2ecf20Sopenharmony_ciextern const u16 b43legacy_ilt_sigmasqr1[B43legacy_ILT_SIGMASQR_SIZE]; 278c2ecf20Sopenharmony_ciextern const u16 b43legacy_ilt_sigmasqr2[B43legacy_ILT_SIGMASQR_SIZE]; 288c2ecf20Sopenharmony_ci 298c2ecf20Sopenharmony_ci 308c2ecf20Sopenharmony_civoid b43legacy_ilt_write(struct b43legacy_wldev *dev, u16 offset, u16 val); 318c2ecf20Sopenharmony_civoid b43legacy_ilt_write32(struct b43legacy_wldev *dev, u16 offset, 328c2ecf20Sopenharmony_ci u32 val); 338c2ecf20Sopenharmony_ciu16 b43legacy_ilt_read(struct b43legacy_wldev *dev, u16 offset); 348c2ecf20Sopenharmony_ci 358c2ecf20Sopenharmony_ci#endif /* B43legacy_ILT_H_ */ 36