cachepc-linux

Fork of AMDESE/linux with modifications for CachePC side-channel attack
git clone https://git.sinitax.com/sinitax/cachepc-linux
Log | Files | Refs | README | LICENSE | sfeed.txt

tables_phy_ht.h (1107B)


      1/* SPDX-License-Identifier: GPL-2.0 */
      2#ifndef B43_TABLES_PHY_HT_H_
      3#define B43_TABLES_PHY_HT_H_
      4
      5/* The HT-PHY tables. */
      6#define B43_HTTAB_TYPEMASK		0xF0000000
      7#define B43_HTTAB_8BIT			0x10000000
      8#define B43_HTTAB_16BIT			0x20000000
      9#define B43_HTTAB_32BIT			0x30000000
     10#define B43_HTTAB8(table, offset)	(((table) << 10) | (offset) | B43_HTTAB_8BIT)
     11#define B43_HTTAB16(table, offset)	(((table) << 10) | (offset) | B43_HTTAB_16BIT)
     12#define B43_HTTAB32(table, offset)	(((table) << 10) | (offset) | B43_HTTAB_32BIT)
     13
     14u32 b43_httab_read(struct b43_wldev *dev, u32 offset);
     15void b43_httab_read_bulk(struct b43_wldev *dev, u32 offset,
     16			 unsigned int nr_elements, void *_data);
     17void b43_httab_write(struct b43_wldev *dev, u32 offset, u32 value);
     18void b43_httab_write_few(struct b43_wldev *dev, u32 offset, size_t num, ...);
     19void b43_httab_write_bulk(struct b43_wldev *dev, u32 offset,
     20			  unsigned int nr_elements, const void *_data);
     21
     22void b43_phy_ht_tables_init(struct b43_wldev *dev);
     23
     24#define B43_HTTAB_1A_C0_LATE_SIZE		128
     25extern const u32 b43_httab_0x1a_0xc0_late[];
     26
     27#endif /* B43_TABLES_PHY_HT_H_ */