now reads h/w rev from eeprom. f/w app set_hw_rev sets it
[debian/gnuradio] / usrp2 / firmware / lib / u2_init.c
1 /*
2  * Copyright 2007 Free Software Foundation, Inc.
3  *
4  * This program is free software: you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation, either version 3 of the License, or
7  * (at your option) any later version.
8  *
9  * This program is distributed in the hope that it will be useful,
10  * but WITHOUT ANY WARRANTY; without even the implied warranty of
11  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
12  * GNU General Public License for more details.
13  *
14  * You should have received a copy of the GNU General Public License
15  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
16  */
17
18 #include "u2_init.h"
19 #include "memory_map.h"
20 #include "spi.h"
21 #include "pic.h"
22 #include "hal_io.h"
23 #include "lsadc.h"
24 #include "lsdac.h"
25 #include "buffer_pool.h"
26 #include "hal_uart.h"
27 #include "i2c.h"
28 #include "bool.h"
29 #include "mdelay.h"
30 #include "ad9777.h"
31 #include "clocks.h"
32 #include "db.h"
33 #include "usrp2_i2c_addr.h"
34
35 //#include "nonstdio.h"
36
37 unsigned char u2_hw_rev_major;
38 unsigned char u2_hw_rev_minor;
39
40 static inline void
41 get_hw_rev(void)
42 {
43   bool ok = eeprom_read(I2C_ADDR_MBOARD, MBOARD_REV_LSB, &u2_hw_rev_minor, 1);
44   ok &= eeprom_read(I2C_ADDR_MBOARD, MBOARD_REV_MSB, &u2_hw_rev_major, 1);
45 }
46
47
48 /*
49  * We ought to arrange for this to be called before main, but for now,
50  * we require that the user's main call u2_init as the first thing...
51  */
52 bool
53 u2_init(void)
54 {
55   // Set GPIOs to inputs
56   hal_gpio_set_ddr(GPIO_TX_BANK, 0x0000, 0xffff);
57   hal_gpio_set_ddr(GPIO_RX_BANK, 0x0000, 0xffff);
58
59   hal_gpio_write(GPIO_TX_BANK, 0x0000, 0xffff); // init s/w output value to zero
60   hal_gpio_write(GPIO_RX_BANK, 0x0000, 0xffff);
61
62   hal_io_init();
63
64   // init spi, so that we can switch over to the high-speed clock
65   spi_init();
66
67   // set up the default clocks
68   clocks_init();
69
70   // clocks_enable_test_clk(true);
71
72   // Enable ADCs
73   output_regs->adc_ctrl = ADC_CTRL_ON;
74
75   // Set up AD9777 DAC
76   ad9777_write_reg(0, R0_1R);
77   ad9777_write_reg(1, R1_INTERP_4X | R1_REAL_MIX);
78   ad9777_write_reg(2, 0);
79   ad9777_write_reg(3, R3_PLL_DIV_1);
80   ad9777_write_reg(4, R4_PLL_ON | R4_CP_AUTO);
81   ad9777_write_reg(5, R5_I_FINE_GAIN(0));
82   ad9777_write_reg(6, R6_I_COARSE_GAIN(0xf));
83   ad9777_write_reg(7, 0);       // I dac offset
84   ad9777_write_reg(8, 0);
85   ad9777_write_reg(9,  R9_Q_FINE_GAIN(0));
86   ad9777_write_reg(10, R10_Q_COARSE_GAIN(0xf));
87   ad9777_write_reg(11, 0);      // Q dac offset
88   ad9777_write_reg(12, 0);
89   
90   // Set up serdes
91   output_regs->serdes_ctrl = (SERDES_ENABLE | SERDES_RXEN);
92
93   pic_init();   // progammable interrupt controller
94   bp_init();    // buffer pool
95   i2c_init();
96   lsadc_init();     // low-speed ADCs
97   lsdac_init();     // low-speed DACs
98   db_init();        // daughterboard init
99   
100   get_hw_rev();
101
102   hal_enable_ints();
103
104   // flash all leds to let us know board is alive
105   hal_set_leds(0x0, 0x1f);
106   mdelay(100);
107   hal_set_leds(0x1f, 0x1f);
108   mdelay(100);
109   hal_set_leds(0x0, 0x1f);
110   mdelay(100);
111
112 #if 0
113   // test register readback
114   int rr, vv;
115   vv = ad9777_read_reg(0);
116   printf("ad9777 reg[0] = 0x%x\n", vv);
117   
118   for (rr = 0x04; rr <= 0x0d; rr++){
119     vv = ad9510_read_reg(rr);
120     printf("ad9510 reg[0x%x] = 0x%x\n", rr, vv);
121   }
122 #endif
123   
124   return true;
125 }