summaryrefslogtreecommitdiff
path: root/usrp/host/lib/inband/usrp_server.h
blob: 87c2768e507a7f60d1ffda3c886ad824d3db4aab (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
/* -*- 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 2, 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_SERVER_H
#define INCLUDED_USRP_SERVER_H

#include <mb_mblock.h>
#include <vector>

/*!
 * \brief Implements the lowest-level mblock interface to the USRP
 */
class usrp_server : public mb_mblock
{
public:

  enum error_codes {
    RQSTD_CAPACITY_UNAVAIL = 0,
    CHANNEL_UNAVAIL = 1,
    CHANNEL_INVALID = 2,
    PERMISSION_DENIED = 3
  };

  // our ports
  enum port_types {
    RX_PORT = 0,
    TX_PORT = 1
  };
  static const int N_PORTS = 4;
  std::vector<mb_port_sptr> d_tx, d_rx;
  mb_port_sptr	d_cs;

  static const int D_USB_CAPACITY = 32 * 1024 * 1024;
  static const int D_MAX_CHANNELS = 16;
  long d_ntx_chan;
  long d_nrx_chan;

  struct channel_info {
    long assigned_capacity;  // the capacity currently assignedby the channel
    pmt_t owner;              // port ID of the owner of the channel
  };

  struct channel_info d_chaninfo_tx[D_MAX_CHANNELS];
  struct channel_info d_chaninfo_rx[D_MAX_CHANNELS];

public:
  usrp_server(mb_runtime *rt, const std::string &instance_name, pmt_t user_arg);
  ~usrp_server();

  void initial_transition();
  void handle_message(mb_message_sptr msg);

protected:
  static int max_capacity() { return D_USB_CAPACITY; }

private:
  void handle_cmd_allocate_channel(pmt_t port_id, pmt_t data);
  void handle_cmd_deallocate_channel(pmt_t port_id, pmt_t data);
  void handle_cmd_xmit_raw_frame(pmt_t data);
  int rx_port_index(pmt_t port_id);
  int tx_port_index(pmt_t port_id);
  long current_capacity_allocation();
};

#endif /* INCLUDED_USRP_SERVER_H */