layer23: Split [2/2] -> The header files
[osmocom-bb.git] / src / host / layer23 / include / osmocom / bb / common / l1ctl.h
1 #ifndef osmocom_l1ctl_h
2 #define osmocom_l1ctl_h
3
4 #include <osmocore/msgb.h>
5 #include <osmocom/bb/common/osmocom_data.h>
6
7 struct osmocom_ms;
8
9 /* Receive incoming data from L1 using L1CTL format */
10 int l1ctl_recv(struct osmocom_ms *ms, struct msgb *msg);
11
12 /* Transmit L1CTL_DATA_REQ */
13 int tx_ph_data_req(struct osmocom_ms *ms, struct msgb *msg, uint8_t chan_nr,
14         uint8_t link_id);
15
16 /* Transmit L1CTL_PARAM_REQ */
17 int l1ctl_tx_ph_param_req(struct osmocom_ms *ms, uint8_t ta, uint8_t tx_power);
18
19 /* Transmit L1CTL_RACH_REQ */
20 int tx_ph_rach_req(struct osmocom_ms *ms, uint8_t ra, uint8_t fn51,
21         uint8_t mf_off);
22
23 /* Transmit L1CTL_DM_EST_REQ */
24 int tx_ph_dm_est_req_h0(struct osmocom_ms *ms, uint16_t band_arfcn,
25         uint8_t chan_nr, uint8_t tsc);
26 int tx_ph_dm_est_req_h1(struct osmocom_ms *ms, uint8_t maio, uint8_t hsn,
27         uint16_t *ma, uint8_t ma_len, uint8_t chan_nr, uint8_t tsc);
28
29 /* Transmit L1CTL_DM_REL_REQ */
30 int tx_ph_dm_rel_req(struct osmocom_ms *ms);
31
32 /* Transmit FBSB_REQ */
33 int l1ctl_tx_fbsb_req(struct osmocom_ms *ms, uint16_t arfcn,
34                       uint8_t flags, uint16_t timeout, uint8_t sync_info_idx,
35                       uint8_t ccch_mode);
36
37 int l1ctl_tx_ccch_mode_req(struct osmocom_ms *ms, uint8_t ccch_mode);
38
39 int l1ctl_tx_echo_req(struct osmocom_ms *ms, unsigned int len);
40
41 /* Transmit L1CTL_RESET_REQ */
42 int l1ctl_tx_reset_req(struct osmocom_ms *ms, uint8_t type);
43
44 /* Transmit L1CTL_PM_REQ */
45 int l1ctl_tx_pm_req_range(struct osmocom_ms *ms, uint16_t arfcn_from,
46                           uint16_t arfcm_to);
47
48 #endif