forked from Nuand/bladeRF
-
Notifications
You must be signed in to change notification settings - Fork 0
/
bladeRF.h
106 lines (88 loc) · 3.71 KB
/
bladeRF.h
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
/*
* Copyright (c) 2013 Nuand LLC
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
#ifndef _INCLUDED_BLADE_H_
#define _INCLUDED_BLADE_H_
#include <stdint.h>
#include "cyu3externcstart.h"
#include "cyu3types.h"
#include "cyu3usbconst.h"
#include "cyu3dma.h"
#include "../firmware_common/bladeRF.h"
#define BLADE_GPIF_16_32BIT_CONF_SELECT (0)
#define BLADE_DMA_BUF_COUNT (2)
#define BLADE_DMA_TX_SIZE (0)
#define BLADE_DMA_RX_SIZE (0)
#define BLADE_THREAD_STACK (0x0400)
#define BLADE_THREAD_PRIORITY (8)
// interface #3
#define BLADE_FPGA_EP_PRODUCER 0x02
#define BLADE_FPGA_CONFIG_SOCKET CY_U3P_UIB_SOCKET_PROD_2
// interface #1
#define BLADE_RF_SAMPLE_EP_PRODUCER 0x01
#define BLADE_RF_SAMPLE_EP_PRODUCER_USB_SOCKET CY_U3P_UIB_SOCKET_PROD_1
#define BLADE_UART_EP_PRODUCER 0x02
#define BLADE_UART_EP_PRODUCER_USB_SOCKET CY_U3P_UIB_SOCKET_PROD_2
#define BLADE_RF_SAMPLE_EP_CONSUMER 0x81
#define BLADE_RF_SAMPLE_EP_CONSUMER_USB_SOCKET CY_U3P_UIB_SOCKET_CONS_1
#define BLADE_UART_EP_CONSUMER 0x82
#define BLADE_UART_EP_CONSUMER_USB_SOCKET CY_U3P_UIB_SOCKET_CONS_2
// interface #2
// doesn't actually use BULK, EP exists for debugging purposes
/* Extern definitions for the USB Descriptors */
extern const uint8_t CyFxUSB20DeviceDscr[];
extern const uint8_t CyFxUSB30DeviceDscr[];
extern const uint8_t CyFxUSBDeviceQualDscr[];
extern const uint8_t CyFxUSBFSConfigDscr[];
extern const uint8_t CyFxUSBHSConfigDscr[];
extern const uint8_t CyFxUSBBOSDscr[];
extern const uint8_t CyFxUSBSSConfigDscr[];
extern const uint8_t CyFxUSBStringLangIDDscr[];
extern const uint8_t CyFxUSBManufactureDscr[];
extern const uint8_t CyFxUSBProductDscr[];
#include "cyu3externcend.h"
CyU3PReturnStatus_t CyFxSpiEraseSector(CyBool_t /* isErase */, uint8_t /* sector */);
void NuandGPIOReconfigure(CyBool_t /* fullGpif */, CyBool_t /* warm */);
CyU3PReturnStatus_t ClearDMAChannel(uint8_t ep, CyU3PDmaChannel * handle,
uint32_t count);
void CyFxAppErrorHandler(CyU3PReturnStatus_t apiRetStatus);
void NuandAllowSuspend(CyBool_t set_allow_suspend);
extern uint32_t glAppMode;
struct NuandApplication {
void (*start)(void);
void (*stop)(void);
CyBool_t (*halt_endpoint)(CyBool_t set, uint16_t endpoint);
CyBool_t (*halted)(uint16_t endpoint, uint8_t *data);
CyU3PReturnStatus_t (*reset_endpoint)(uint8_t endpoint);
};
#define GPIO_nSTATUS 52
#define GPIO_nCONFIG 51
#define GPIO_CONFDONE 50
#define GPIO_LED 58
#define GPIO_ID 59
#define GPIO_SYS_RST 24
#define GPIO_RX_EN 21
#define GPIO_TX_EN 22
#define MODE_NO_CONFIG 0
#define MODE_FPGA_CONFIG 1
#define MODE_RF_CONFIG 2
#define MODE_FW_CONFIG 3
#endif