]> git.proxmox.com Git - mirror_ubuntu-disco-kernel.git/blame - drivers/net/wireless/broadcom/b43/tables_phy_lcn.h
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[mirror_ubuntu-disco-kernel.git] / drivers / net / wireless / broadcom / b43 / tables_phy_lcn.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
1d738e64
RM
2#ifndef B43_TABLES_PHY_LCN_H_
3#define B43_TABLES_PHY_LCN_H_
4
ba2d00e8
RM
5/* The LCN-PHY tables. */
6#define B43_LCNTAB_TYPEMASK 0xF0000000
7#define B43_LCNTAB_8BIT 0x10000000
8#define B43_LCNTAB_16BIT 0x20000000
9#define B43_LCNTAB_32BIT 0x30000000
10#define B43_LCNTAB8(table, offset) (((table) << 10) | (offset) | B43_LCNTAB_8BIT)
11#define B43_LCNTAB16(table, offset) (((table) << 10) | (offset) | B43_LCNTAB_16BIT)
12#define B43_LCNTAB32(table, offset) (((table) << 10) | (offset) | B43_LCNTAB_32BIT)
13
28e3181a
RM
14#define B43_LCNTAB_TX_GAIN_SIZE 128
15
ba2d00e8
RM
16u32 b43_lcntab_read(struct b43_wldev *dev, u32 offset);
17void b43_lcntab_read_bulk(struct b43_wldev *dev, u32 offset,
18 unsigned int nr_elements, void *_data);
19void b43_lcntab_write(struct b43_wldev *dev, u32 offset, u32 value);
20void b43_lcntab_write_bulk(struct b43_wldev *dev, u32 offset,
21 unsigned int nr_elements, const void *_data);
22
1d738e64
RM
23void b43_phy_lcn_tables_init(struct b43_wldev *dev);
24
25#endif /* B43_TABLES_PHY_LCN_H_ */