summaryrefslogtreecommitdiffstats
path: root/src/target/firmware/include/rf/trf6151.h
blob: 6a23d8ac944c745ac55074b33f452c6b04d80c7d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#ifndef _TRF6151_H
#define _TRF6151_H

#include <osmocom/gsm/gsm_utils.h>

/* initialize (reset + power up) */
void trf6151_init(uint8_t tsp_uid, uint16_t tsp_reset_id);

/* switch power off or on */
void trf6151_power(int on);

/* obtain the current total gain of the TRF6151 */
uint8_t trf6151_get_gain_reg(void);

/* put current set (or computed) gain to register */
int trf6151_set_gain_reg(uint8_t dbm, int high);

/* set the global gain to use */
int trf6151_set_gain(uint8_t dbm);

/* obtain the global gain set */
uint8_t trf6151_get_gain(void);

/* Request the PLL to be tuned to the given frequency */
/*  arfcn must have ARFCN_UPLINK flag set if you want uplink ! */
/*  tx selects the TX path only and doesn't set UL band ! */
void trf6151_set_arfcn(uint16_t arfcn, int tx);

enum trf6151_mode {
	TRF6151_IDLE,
	TRF6151_RX,
	TRF6151_TX,
};

/* Set the operational mode of the TRF6151 chip */
void trf6151_set_mode(enum trf6151_mode mode);

void trf6151_test(uint16_t arfcn);
void trf6151_tx_test(uint16_t arfcn);

/* prepare a Rx window with the TRF6151 finished at time 'start' (in qbits) */
void trf6151_rx_window(int16_t start_qbits, uint16_t arfcn);

/* prepare a Tx window with the TRF6151 finished at time 'start' (in qbits) */
void trf6151_tx_window(int16_t start_qbits, uint16_t arfcn);

/* Given the expected input level of exp_inp dBm and the target of target_bb
 * dBm, configure the RF Frontend with the respective gain */
void trf6151_compute_gain(int16_t exp_inp, int16_t target_bb);

/* Need for IQ swap */
int trf6151_iq_swapped(uint16_t band_arfcn, int tx);

#endif /* TRF6151_H */