blob: caff9db6831fb39e82570c90e87cf8cb96d2f151 [file] [log] [blame]
Rafał Miłecki1d738e62011-07-07 15:25:27 +02001#ifndef B43_TABLES_PHY_LCN_H_
2#define B43_TABLES_PHY_LCN_H_
3
Rafał Miłeckiba2d00e2011-08-15 01:23:09 +02004/* The LCN-PHY tables. */
5#define B43_LCNTAB_TYPEMASK 0xF0000000
6#define B43_LCNTAB_8BIT 0x10000000
7#define B43_LCNTAB_16BIT 0x20000000
8#define B43_LCNTAB_32BIT 0x30000000
9#define B43_LCNTAB8(table, offset) (((table) << 10) | (offset) | B43_LCNTAB_8BIT)
10#define B43_LCNTAB16(table, offset) (((table) << 10) | (offset) | B43_LCNTAB_16BIT)
11#define B43_LCNTAB32(table, offset) (((table) << 10) | (offset) | B43_LCNTAB_32BIT)
12
Rafał Miłecki28e31812011-09-04 09:11:46 +020013#define B43_LCNTAB_TX_GAIN_SIZE 128
14
Rafał Miłeckiba2d00e2011-08-15 01:23:09 +020015u32 b43_lcntab_read(struct b43_wldev *dev, u32 offset);
16void b43_lcntab_read_bulk(struct b43_wldev *dev, u32 offset,
17 unsigned int nr_elements, void *_data);
18void b43_lcntab_write(struct b43_wldev *dev, u32 offset, u32 value);
19void b43_lcntab_write_bulk(struct b43_wldev *dev, u32 offset,
20 unsigned int nr_elements, const void *_data);
21
Rafał Miłecki1d738e62011-07-07 15:25:27 +020022void b43_phy_lcn_tables_init(struct b43_wldev *dev);
23
24#endif /* B43_TABLES_PHY_LCN_H_ */