blob: e990d54f70e27f2120fabaa1ad588b7f0cfcaeb0 (
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
|
//
// Copyright 2011 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 <http://www.gnu.org/licenses/>.
//
#ifndef INCLUDED_SLAVE_BASE_H
#define INCLUDED_SLAVE_BASE_H
#define RAM_BASE 0x0000
#define ROUTER_RAM_BASE 0x8000
#define SPI_BASE 0xC000
#define I2C_BASE 0xC400
#define GPIO_BASE 0xC800
#define ROUTER_STATUS_BASE 0xCC00
#define ETH_BASE 0xD000
#define MISC_OUTPUT_BASE 0xD400
#define PIC_BASE 0xD800
#define UART_BASE 0xE000
#define ATR_BASE 0xE400
#define SDSPI_BASE 0xEC00
#endif
|