summaryrefslogtreecommitdiff
path: root/usrp/host/lib/inband/usrp_inband_usb_packet.h
blob: 8f59d1b656cc735ba1cd8cd8bf9cf4d762650a8a (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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
/* -*- c++ -*- */
/*
 * Copyright 2007 Free Software Foundation, Inc.
 * 
 * This file is part of GNU Radio
 * 
 * GNU Radio is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 3, or (at your option)
 * any later version.
 * 
 * GNU Radio is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 * 
 * You should have received a copy of the GNU General Public License along
 * with this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
 */

#ifndef INCLUDED_USRP_INBAND_USB_PACKET_H_
#define INCLUDED_USRP_INBAND_USB_PACKET_H_

#include <usrp_bytesex.h>
#include <mb_mblock.h>
#include <pmt.h>
#include <iostream>

#include <symbols_usrp_low_level_cs.h>

static const int USB_PKT_SIZE = 512;   // bytes
static const int MAX_PAYLOAD = USB_PKT_SIZE-2*sizeof(uint32_t);
static const int CONTROL_CHAN = 0x1f;

class usrp_inband_usb_packet {
  //
  // keep raw packet in USRP-endian order
  //
  uint32_t	      d_word0;
  uint32_t	      d_timestamp;
  unsigned char	  d_payload[MAX_PAYLOAD];

public:

  enum opcodes {
    OP_PING_FIXED         = 0x00,
    OP_PING_FIXED_REPLY   = 0x01,
    OP_WRITE_REG          = 0x02,
    OP_WRITE_REG_MASKED   = 0x03,
    OP_READ_REG           = 0x04,
    OP_READ_REG_REPLY     = 0x05,
    OP_I2C_WRITE          = 0x06,
    OP_I2C_READ           = 0x07,
    OP_I2C_READ_REPLY     = 0x08,
    OP_SPI_WRITE          = 0x09,
    OP_SPI_READ           = 0x0a,
    OP_SPI_READ_REPLY     = 0x0b,
    OP_DELAY              = 0x0c
  };

  enum flags {
    FL_OVERRUN        = 0x80000000,
    FL_UNDERRUN       = 0x40000000,
    FL_DROPPED        = 0x20000000,
    FL_START_OF_BURST = 0x10000000,
    FL_END_OF_BURST   = 0x08000000,
    FL_CARRIER_SENSE  = 0x04000000,

    FL_ALL_FLAGS      = 0xfc000000
  };

  static const int FL_OVERRUN_SHIFT = 31;
  static const int FL_UNDERRUN_SHIFT = 30;
  static const int FL_DROPPED_SHIFT = 29;
  static const int FL_END_OF_BURST_SHIFT = 27;
  static const int FL_START_OF_BURST_SHIFT = 28;
  
  static const int RSSI_MASK = 0x3f;
  static const int RSSI_SHIFT = 21;

  static const int CHAN_MASK = 0x1f;
  static const int CHAN_SHIFT = 16;

  static const int TAG_MASK = 0xf;
  static const int TAG_SHIFT = 9;

  static const int PAYLOAD_LEN_MASK = 0x1ff;
  static const int PAYLOAD_LEN_SHIFT = 0;

  // Fixed size for opcode and length fields
  static const int CS_FIXED_LEN = 2;

  static const int CS_OPCODE_MASK = 0xff;
  static const int CS_OPCODE_SHIFT = 24;

  static const int CS_LEN_MASK = 0xff;
  static const int CS_LEN_SHIFT = 16;

  static const int CS_RID_MASK = 0x3f;
  static const int CS_RID_SHIFT = 10;

  static const int CS_PING_LEN = 2;
  static const int CS_PINGVAL_MASK = 0x3ff;
  static const int CS_PINGVAL_SHIFT = 0;

  static const int CS_WRITEREG_LEN = 6;
  static const int CS_WRITEREGMASKED_LEN = 10;
  static const int CS_READREG_LEN = 2;
  static const int CS_READREGREPLY_LEN = 6;
  static const int CS_REGNUM_MASK = 0x3ff;
  static const int CS_REGNUM_SHIFT = 0;

  static const int CS_DELAY_LEN = 2;
  static const int CS_DELAY_MASK = 0xffff;
  static const int CS_DELAY_SHIFT = 0;

  static const int CS_I2CADDR_MASK = 0x7f;
  static const int CS_I2CADDR_SHIFT = 0;

  static const int CS_I2CREAD_LEN = 3;
  static const int CS_I2CREADBYTES_MASK = 0x7f;
  static const int CS_I2CREADBYTES_SHIFT = 24;

  static const int CS_SPIOPT_MASK = 0xffff;
  static const int CS_SPIOPT_SHIFT = 0;
  static const int CS_SPIFORMAT_MASK = 0xff;
  static const int CS_SPIFORMAT_SHIFT = 16;
  static const int CS_SPIENABLES_MASK = 0xff;
  static const int CS_SPIENABLES_SHIFT = 24;
  static const int CS_SPIREAD_LEN = 7;
  static const int CS_SPINBYTES_MASK = 0xff;
  static const int CS_SPINBYTES_SHIFT = 24;

public:
  
  void set_timestamp(uint32_t timestamp){
    d_timestamp = host_to_usrp_u32(timestamp);
  }

  void set_end_of_burst() {
    uint32_t word0 = usrp_to_host_u32(d_word0);
    word0 |= 1<<FL_END_OF_BURST_SHIFT;
    d_word0 = host_to_usrp_u32(word0);
  }
  
  void set_header(int flags, int chan, int tag, int payload_len){
    uint32_t word0 =  ((flags & FL_ALL_FLAGS)
                       | ((chan & CHAN_MASK) << CHAN_SHIFT)
                       | ((tag & TAG_MASK) << TAG_SHIFT)
                       | ((payload_len & PAYLOAD_LEN_MASK) << PAYLOAD_LEN_SHIFT));
    d_word0 = host_to_usrp_u32(word0);
  }

  void incr_header_len(int val) {
    set_header(flags(), chan(), tag(), payload_len() + val);
  }
  
  uint32_t timestamp() const {
    return usrp_to_host_u32(d_timestamp);
  }

  int rssi() const {
    uint32_t word0 = usrp_to_host_u32(d_word0);
    return (word0 >> RSSI_SHIFT) & RSSI_MASK;
  }

  int chan() const {
    uint32_t word0 = usrp_to_host_u32(d_word0);
    return (word0 >> CHAN_SHIFT) & CHAN_MASK;
  }

  int tag() const {
    uint32_t word0 = usrp_to_host_u32(d_word0);
    return (word0 >> TAG_SHIFT) & TAG_MASK;
  }

  int payload_len() const {
    uint32_t word0 = usrp_to_host_u32(d_word0);
    return (word0 >> PAYLOAD_LEN_SHIFT) & PAYLOAD_LEN_MASK;
  }
  
  int flags() const {
    return usrp_to_host_u32(d_word0) & FL_ALL_FLAGS;
  }

  int overrun() const {
    return (usrp_to_host_u32(d_word0) & FL_OVERRUN) >> FL_OVERRUN_SHIFT;
  }
  

  int underrun() const {
    return (usrp_to_host_u32(d_word0) & FL_UNDERRUN) >> FL_UNDERRUN_SHIFT;
  }


  int start_of_burst() const {
    return (usrp_to_host_u32(d_word0) & FL_START_OF_BURST) >> FL_START_OF_BURST_SHIFT;
  }

  int end_of_burst() const {
    return (usrp_to_host_u32(d_word0) & FL_END_OF_BURST) >> FL_END_OF_BURST_SHIFT;
  }

  int dropped() const {
    return (usrp_to_host_u32(d_word0) & FL_DROPPED) >> FL_DROPPED_SHIFT;
  }

  unsigned char *payload() { 
    return d_payload; 
  }

  static int max_payload() {
    return MAX_PAYLOAD;
  }

  static int max_pkt_size() {
    return USB_PKT_SIZE;
  }

  // C/S methods
  bool align32();
  bool cs_ping(long rid, long ping_val);
  bool cs_ping_reply(long rid, long ping_val);
  bool cs_write_reg(long reg_num, long val);
  bool cs_write_reg_masked(long reg_num, long val, long mask);
  bool cs_read_reg(long rid, long reg_num);
  bool cs_read_reg_reply(long rid, long reg_num, long reg_val);
  bool cs_delay(long ticks);
  bool cs_i2c_write(long i2c_addr, uint8_t *i2c_data, size_t data_len);
  bool cs_i2c_read(long rid, long i2c_addr, long n_bytes);
  bool cs_i2c_read_reply(long rid, long i2c_addr, uint8_t *i2c_data, long i2c_data_len);
  bool cs_spi_write(long enables, long format, long opt_header_bytes, uint8_t *spi_data, long spi_data_len);
  bool cs_spi_read(long rid, long enables, long format, long opt_header_bytes, long n_bytes);
  bool cs_spi_read_reply(long rid, uint8_t *spi_data, long spi_data_len);
  int cs_len(int payload_offset);
  pmt_t read_subpacket(int payload_offset);
};

#endif