// // Copyright 2010-2012 Ettus Research LLC // // This program 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 of the License, or // (at your option) any later version. // // This program 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, see . // #ifndef INCLUDED_E100_REGS_HPP #define INCLUDED_E100_REGS_HPP #include #define TOREG(x) ((x)*4) #define localparam static const int localparam SR_MISC = 0; // 5 localparam SR_USER_REGS = 5; // 2 localparam SR_TX_CTRL = 32; // 6 localparam SR_TX_DSP = 40; // 5 localparam SR_TX_FE = 48; // 5 localparam SR_RX_CTRL0 = 96; // 9 localparam SR_RX_DSP0 = 106; // 7 localparam SR_RX_FE = 114; // 5 localparam SR_RX_CTRL1 = 128; // 9 localparam SR_RX_DSP1 = 138; // 7 localparam SR_TIME64 = 192; // 6 localparam SR_SPI = 208; // 3 localparam SR_I2C = 216; // 1 localparam SR_GPIO = 224; // 5 #define REG_RB_TIME_NOW_HI TOREG(10) #define REG_RB_TIME_NOW_LO TOREG(11) #define REG_RB_TIME_PPS_HI TOREG(14) #define REG_RB_TIME_PPS_LO TOREG(15) #define REG_RB_SPI TOREG(0) #define REG_RB_COMPAT TOREG(1) #define REG_RB_GPIO TOREG(3) #define REG_RB_I2C TOREG(2) #define REG_RB_CONFIG0 TOREG(4) #define REG_RB_CONFIG1 TOREG(5) #define REG_RB_NUM_RX_DSP TOREG(6) //spi slave constants #define UE_SPI_SS_AD9522 (1 << 3) #define UE_SPI_SS_AD9862 (1 << 2) #define UE_SPI_SS_TX_DB (1 << 1) #define UE_SPI_SS_RX_DB (1 << 0) #endif /*INCLUDED_E100_REGS_HPP*/