1 #ifndef LINUX_B43_PHY_COMMON_H_
2 #define LINUX_B43_PHY_COMMON_H_
4 #include <linux/types.h>
8 /* Complex number using 2 32-bit signed integers */
9 struct b43_c32
{ s32 i
, q
; };
11 #define CORDIC_CONVERT(value) (((value) >= 0) ? \
12 ((((value) >> 15) + 1) >> 1) : \
13 -((((-(value)) >> 15) + 1) >> 1))
15 /* PHY register routing bits */
16 #define B43_PHYROUTE 0x0C00 /* PHY register routing bits mask */
17 #define B43_PHYROUTE_BASE 0x0000 /* Base registers */
18 #define B43_PHYROUTE_OFDM_GPHY 0x0400 /* OFDM register routing for G-PHYs */
19 #define B43_PHYROUTE_EXT_GPHY 0x0800 /* Extended G-PHY registers */
20 #define B43_PHYROUTE_N_BMODE 0x0C00 /* N-PHY BMODE registers */
22 /* CCK (B-PHY) registers. */
23 #define B43_PHY_CCK(reg) ((reg) | B43_PHYROUTE_BASE)
24 /* N-PHY registers. */
25 #define B43_PHY_N(reg) ((reg) | B43_PHYROUTE_BASE)
26 /* N-PHY BMODE registers. */
27 #define B43_PHY_N_BMODE(reg) ((reg) | B43_PHYROUTE_N_BMODE)
28 /* OFDM (A-PHY) registers. */
29 #define B43_PHY_OFDM(reg) ((reg) | B43_PHYROUTE_OFDM_GPHY)
30 /* Extended G-PHY registers. */
31 #define B43_PHY_EXTG(reg) ((reg) | B43_PHYROUTE_EXT_GPHY)
34 /* Masks for the PHY versioning registers. */
35 #define B43_PHYVER_ANALOG 0xF000
36 #define B43_PHYVER_ANALOG_SHIFT 12
37 #define B43_PHYVER_TYPE 0x0F00
38 #define B43_PHYVER_TYPE_SHIFT 8
39 #define B43_PHYVER_VERSION 0x00FF
42 * enum b43_interference_mitigation - Interference Mitigation mode
44 * @B43_INTERFMODE_NONE: Disabled
45 * @B43_INTERFMODE_NONWLAN: Non-WLAN Interference Mitigation
46 * @B43_INTERFMODE_MANUALWLAN: WLAN Interference Mitigation
47 * @B43_INTERFMODE_AUTOWLAN: Automatic WLAN Interference Mitigation
49 enum b43_interference_mitigation
{
51 B43_INTERFMODE_NONWLAN
,
52 B43_INTERFMODE_MANUALWLAN
,
53 B43_INTERFMODE_AUTOWLAN
,
56 /* Antenna identifiers */
58 B43_ANTENNA0
= 0, /* Antenna 0 */
59 B43_ANTENNA1
= 1, /* Antenna 1 */
60 B43_ANTENNA_AUTO0
= 2, /* Automatic, starting with antenna 0 */
61 B43_ANTENNA_AUTO1
= 3, /* Automatic, starting with antenna 1 */
65 B43_ANTENNA_AUTO
= B43_ANTENNA_AUTO0
,
66 B43_ANTENNA_DEFAULT
= B43_ANTENNA_AUTO
,
70 * enum b43_txpwr_result - Return value for the recalc_txpower PHY op.
72 * @B43_TXPWR_RES_NEED_ADJUST: Values changed. Hardware adjustment is needed.
73 * @B43_TXPWR_RES_DONE: No more work to do. Everything is done.
75 enum b43_txpwr_result
{
76 B43_TXPWR_RES_NEED_ADJUST
,
81 * struct b43_phy_operations - Function pointers for PHY ops.
83 * @allocate: Allocate and initialise the PHY data structures.
85 * @free: Destroy and free the PHY data structures.
88 * @prepare_structs: Prepare the PHY data structures.
89 * The data structures allocated in @allocate are
92 * @prepare_hardware: Prepare the PHY. This is called before b43_chip_init to
93 * do some early early PHY hardware init.
94 * Can be NULL, if not required.
95 * @init: Initialize the PHY.
97 * @exit: Shutdown the PHY.
98 * Can be NULL, if not required.
100 * @phy_read: Read from a PHY register.
102 * @phy_write: Write to a PHY register.
104 * @phy_maskset: Maskset a PHY register, taking shortcuts.
105 * If it is NULL, a generic algorithm is used.
106 * @radio_read: Read from a Radio register.
108 * @radio_write: Write to a Radio register.
111 * @supports_hwpctl: Returns a boolean whether Hardware Power Control
112 * is supported or not.
113 * If NULL, hwpctl is assumed to be never supported.
114 * @software_rfkill: Turn the radio ON or OFF.
115 * Possible state values are
116 * RFKILL_STATE_SOFT_BLOCKED or
117 * RFKILL_STATE_UNBLOCKED
119 * @switch_analog: Turn the Analog on/off.
121 * @switch_channel: Switch the radio to another channel.
123 * @get_default_chan: Just returns the default channel number.
125 * @set_rx_antenna: Set the antenna used for RX.
126 * Can be NULL, if not supported.
127 * @interf_mitigation: Switch the Interference Mitigation mode.
128 * Can be NULL, if not supported.
130 * @recalc_txpower: Recalculate the transmission power parameters.
131 * This callback has to recalculate the TX power settings,
132 * but does not need to write them to the hardware, yet.
133 * Returns enum b43_txpwr_result to indicate whether the hardware
134 * needs to be adjusted.
135 * If B43_TXPWR_NEED_ADJUST is returned, @adjust_txpower
136 * will be called later.
137 * If the parameter "ignore_tssi" is true, the TSSI values should
138 * be ignored and a recalculation of the power settings should be
139 * done even if the TSSI values did not change.
140 * This function may sleep, but should not.
142 * @adjust_txpower: Write the previously calculated TX power settings
143 * (from @recalc_txpower) to the hardware.
144 * This function may sleep.
145 * Can be NULL, if (and ONLY if) @recalc_txpower _always_
146 * returns B43_TXPWR_RES_DONE.
148 * @pwork_15sec: Periodic work. Called every 15 seconds.
149 * Can be NULL, if not required.
150 * @pwork_60sec: Periodic work. Called every 60 seconds.
151 * Can be NULL, if not required.
153 struct b43_phy_operations
{
155 int (*allocate
)(struct b43_wldev
*dev
);
156 void (*free
)(struct b43_wldev
*dev
);
157 void (*prepare_structs
)(struct b43_wldev
*dev
);
158 int (*prepare_hardware
)(struct b43_wldev
*dev
);
159 int (*init
)(struct b43_wldev
*dev
);
160 void (*exit
)(struct b43_wldev
*dev
);
162 /* Register access */
163 u16 (*phy_read
)(struct b43_wldev
*dev
, u16 reg
);
164 void (*phy_write
)(struct b43_wldev
*dev
, u16 reg
, u16 value
);
165 void (*phy_maskset
)(struct b43_wldev
*dev
, u16 reg
, u16 mask
, u16 set
);
166 u16 (*radio_read
)(struct b43_wldev
*dev
, u16 reg
);
167 void (*radio_write
)(struct b43_wldev
*dev
, u16 reg
, u16 value
);
170 bool (*supports_hwpctl
)(struct b43_wldev
*dev
);
171 void (*software_rfkill
)(struct b43_wldev
*dev
, bool blocked
);
172 void (*switch_analog
)(struct b43_wldev
*dev
, bool on
);
173 int (*switch_channel
)(struct b43_wldev
*dev
, unsigned int new_channel
);
174 unsigned int (*get_default_chan
)(struct b43_wldev
*dev
);
175 void (*set_rx_antenna
)(struct b43_wldev
*dev
, int antenna
);
176 int (*interf_mitigation
)(struct b43_wldev
*dev
,
177 enum b43_interference_mitigation new_mode
);
179 /* Transmission power adjustment */
180 enum b43_txpwr_result (*recalc_txpower
)(struct b43_wldev
*dev
,
182 void (*adjust_txpower
)(struct b43_wldev
*dev
);
185 void (*pwork_15sec
)(struct b43_wldev
*dev
);
186 void (*pwork_60sec
)(struct b43_wldev
*dev
);
195 /* Hardware operation callbacks. */
196 const struct b43_phy_operations
*ops
;
198 /* Most hardware context information is stored in the standard-
199 * specific data structures pointed to by the pointers below.
200 * Only one of them is valid (the currently enabled PHY). */
201 #ifdef CONFIG_B43_DEBUG
202 /* No union for debug build to force NULL derefs in buggy code. */
207 /* A-PHY specific information */
209 /* G-PHY specific information */
211 /* N-PHY specific information */
213 /* LP-PHY specific information */
214 struct b43_phy_lp
*lp
;
217 /* Band support flags. */
224 /* GMODE bit enabled? */
231 /* PHY revision number. */
234 /* Radio versioning */
235 u16 radio_manuf
; /* Radio manufacturer */
236 u16 radio_ver
; /* Radio version */
237 u8 radio_rev
; /* Radio revision */
239 /* Software state of the radio */
242 /* Desired TX power level (in dBm).
243 * This is set by the user and adjusted in b43_phy_xmitpower(). */
246 /* Hardware Power Control enabled? */
247 bool hardware_power_control
;
249 /* The time (in absolute jiffies) when the next TX power output
250 * check is needed. */
251 unsigned long next_txpwr_check_time
;
253 /* current channel */
254 unsigned int channel
;
256 /* PHY TX errors counter. */
259 #ifdef CONFIG_B43_DEBUG
260 /* PHY registers locked (w.r.t. firmware) */
262 /* Radio registers locked (w.r.t. firmware) */
264 #endif /* B43_DEBUG */
269 * b43_phy_allocate - Allocate PHY structs
270 * Allocate the PHY data structures, based on the current dev->phy.type
272 int b43_phy_allocate(struct b43_wldev
*dev
);
275 * b43_phy_free - Free PHY structs
277 void b43_phy_free(struct b43_wldev
*dev
);
280 * b43_phy_init - Initialise the PHY
282 int b43_phy_init(struct b43_wldev
*dev
);
285 * b43_phy_exit - Cleanup PHY
287 void b43_phy_exit(struct b43_wldev
*dev
);
290 * b43_has_hardware_pctl - Hardware Power Control supported?
291 * Returns a boolean, whether hardware power control is supported.
293 bool b43_has_hardware_pctl(struct b43_wldev
*dev
);
296 * b43_phy_read - 16bit PHY register read access
298 u16
b43_phy_read(struct b43_wldev
*dev
, u16 reg
);
301 * b43_phy_write - 16bit PHY register write access
303 void b43_phy_write(struct b43_wldev
*dev
, u16 reg
, u16 value
);
306 * b43_phy_copy - copy contents of 16bit PHY register to another
308 void b43_phy_copy(struct b43_wldev
*dev
, u16 destreg
, u16 srcreg
);
311 * b43_phy_mask - Mask a PHY register with a mask
313 void b43_phy_mask(struct b43_wldev
*dev
, u16 offset
, u16 mask
);
316 * b43_phy_set - OR a PHY register with a bitmap
318 void b43_phy_set(struct b43_wldev
*dev
, u16 offset
, u16 set
);
321 * b43_phy_maskset - Mask and OR a PHY register with a mask and bitmap
323 void b43_phy_maskset(struct b43_wldev
*dev
, u16 offset
, u16 mask
, u16 set
);
326 * b43_radio_read - 16bit Radio register read access
328 u16
b43_radio_read(struct b43_wldev
*dev
, u16 reg
);
329 #define b43_radio_read16 b43_radio_read /* DEPRECATED */
332 * b43_radio_write - 16bit Radio register write access
334 void b43_radio_write(struct b43_wldev
*dev
, u16 reg
, u16 value
);
335 #define b43_radio_write16 b43_radio_write /* DEPRECATED */
338 * b43_radio_mask - Mask a 16bit radio register with a mask
340 void b43_radio_mask(struct b43_wldev
*dev
, u16 offset
, u16 mask
);
343 * b43_radio_set - OR a 16bit radio register with a bitmap
345 void b43_radio_set(struct b43_wldev
*dev
, u16 offset
, u16 set
);
348 * b43_radio_maskset - Mask and OR a radio register with a mask and bitmap
350 void b43_radio_maskset(struct b43_wldev
*dev
, u16 offset
, u16 mask
, u16 set
);
353 * b43_radio_lock - Lock firmware radio register access
355 void b43_radio_lock(struct b43_wldev
*dev
);
358 * b43_radio_unlock - Unlock firmware radio register access
360 void b43_radio_unlock(struct b43_wldev
*dev
);
363 * b43_phy_lock - Lock firmware PHY register access
365 void b43_phy_lock(struct b43_wldev
*dev
);
368 * b43_phy_unlock - Unlock firmware PHY register access
370 void b43_phy_unlock(struct b43_wldev
*dev
);
373 * b43_switch_channel - Switch to another channel
375 int b43_switch_channel(struct b43_wldev
*dev
, unsigned int new_channel
);
377 * B43_DEFAULT_CHANNEL - Switch to the default channel.
379 #define B43_DEFAULT_CHANNEL UINT_MAX
382 * b43_software_rfkill - Turn the radio ON or OFF in software.
384 void b43_software_rfkill(struct b43_wldev
*dev
, bool blocked
);
387 * b43_phy_txpower_check - Check TX power output.
389 * Compare the current TX power output to the desired power emission
390 * and schedule an adjustment in case it mismatches.
392 * @flags: OR'ed enum b43_phy_txpower_check_flags flags.
393 * See the docs below.
395 void b43_phy_txpower_check(struct b43_wldev
*dev
, unsigned int flags
);
397 * enum b43_phy_txpower_check_flags - Flags for b43_phy_txpower_check()
399 * @B43_TXPWR_IGNORE_TIME: Ignore the schedule time and force-redo
401 * @B43_TXPWR_IGNORE_TSSI: Redo the recalculation, even if the average
402 * TSSI did not change.
404 enum b43_phy_txpower_check_flags
{
405 B43_TXPWR_IGNORE_TIME
= (1 << 0),
406 B43_TXPWR_IGNORE_TSSI
= (1 << 1),
410 void b43_phy_txpower_adjust_work(struct work_struct
*work
);
413 * b43_phy_shm_tssi_read - Read the average of the last 4 TSSI from SHM.
415 * @shm_offset: The SHM address to read the values from.
417 * Returns the average of the 4 TSSI values, or a negative error code.
419 int b43_phy_shm_tssi_read(struct b43_wldev
*dev
, u16 shm_offset
);
422 * b43_phy_switch_analog_generic - Generic PHY operation for switching the Analog.
424 * It does the switching based on the PHY0 core register.
425 * Do _not_ call this directly. Only use it as a switch_analog callback
426 * for struct b43_phy_operations.
428 void b43_phyop_switch_analog_generic(struct b43_wldev
*dev
, bool on
);
430 struct b43_c32
b43_cordic(int theta
);
432 #endif /* LINUX_B43_PHY_COMMON_H_ */