File: bladerf_rfic_spi_ctrl.vhd

package info (click to toggle)
bladerf 0.2022.11-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 373,752 kB
  • sloc: ansic: 1,186,428; xml: 150,799; vhdl: 24,182; tcl: 15,408; python: 3,409; sh: 1,551; makefile: 1,255; asm: 158; csh: 18; cpp: 9
file content (205 lines) | stat: -rw-r--r-- 6,580 bytes parent folder | download | duplicates (2)
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
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
-- RFIC SPI Control
-- Copyright (c) 2020 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.

library ieee;
    use ieee.std_logic_1164.all;
    use ieee.numeric_std.all;

entity bladerf_rfic_spi_ctrl is
  generic(
    CLOCK_DIV           : positive  range 2 to 16 := 2;
    ADDR_WIDTH          : positive                := 16;
    DATA_WIDTH          : positive                := 8
  );
  port (
    -- Physical Interface
    sclk                : out   std_logic;
    miso                : in    std_logic;
    mosi                : out   std_logic;
    cs_n                : out   std_logic;

    arbiter_req         : out   std_logic;
    arbiter_grant       : in    std_logic;
    arbiter_done        : out   std_logic;

    -- Control Interface
    clock               : in    std_logic;
    reset               : in    std_logic;
    tx_ota_req          : in    std_logic
  );
end entity; -- pll_reset

architecture arch of bladerf_rfic_spi_ctrl is
    type fsm_t is (
        INIT,
        GET_ARBITER,
        WAIT_END_TX,
        RELEASE_ARBITER,
        WAIT_TO_WR,
        WAIT_WR_DVALID,
        WAIT_WR_DVALID_2,
        WAIT_RD_DVALID,
        WAIT_RD_DVALID_2
    );

    type state_t is record
        state        : fsm_t;
        n_state      : fsm_t;
        mm_read      : std_logic;
        mm_write     : std_logic;
        mm_addr      : std_logic_vector(ADDR_WIDTH-1 downto 0);
        mm_din       : std_logic_vector(DATA_WIDTH-1 downto 0);
        mm_dout      : std_logic_vector(DATA_WIDTH-1 downto 0);
        counter      : natural range 0 to 50000;
        arbiter_req  : std_logic;
        arbiter_done : std_logic;
    end record;

    constant reset_value : state_t := (
        state        => INIT,
        n_state      => INIT,
        mm_read      => '0',
        mm_write     => '0',
        mm_addr      => ( others => '0' ),
        mm_din       => ( others => '0' ),
        mm_dout      => ( others => '0' ),
        counter      => 0,
        arbiter_req  => '0',
        arbiter_done => '0'
    );

    signal current  : state_t := reset_value;
    signal future   : state_t := reset_value;

    signal mm_dout    : std_logic_vector(DATA_WIDTH-1 downto 0);
    signal mm_dvalid  : std_logic ;
    signal mm_busy    : std_logic ;

begin
    arbiter_req  <= current.arbiter_req;
    arbiter_done <= current.arbiter_done;

    U_rfic_spi: entity work.rfic_spi_controller
       port map(
        -- Physical Interface
        sclk         =>  sclk,
        miso         =>  miso,
        mosi         =>  mosi,
        cs_n         =>  cs_n,

        -- Avalon-MM Interface
        mm_clock     => clock,
        mm_reset     => reset,
        mm_read      => current.mm_read,
        mm_write     => current.mm_write,
        mm_addr      => current.mm_addr,
        mm_din       => current.mm_din,
        mm_dout      => mm_dout,
        mm_dout_val  => mm_dvalid,
        mm_busy      => mm_busy
      );

    sync_proc : process(clock)
    begin
        if(reset = '1') then
            current <= reset_value;
        elsif(rising_edge(clock)) then
            current <= future;
        end if;
    end process sync_proc;

    comb_proc : process(all)
    begin
        -- defaults
        future              <= current;
        future.mm_read      <= '0';
        future.mm_write     <= '0';

        future.arbiter_req   <= '0';
        future.arbiter_done  <= '0';

        -- states
        case current.state is
            when INIT =>
                if( tx_ota_req = '1' ) then
                    future.arbiter_req <= '1';
                    future.state   <= GET_ARBITER;
                end if;

            when GET_ARBITER =>
                future.arbiter_req <= '1';
                if( arbiter_grant = '1' ) then
                    future.state   <= WAIT_WR_DVALID;
                    future.n_state <= WAIT_END_TX;

                    future.mm_addr  <= x"0051";
                    future.mm_din   <= x"00";
                    future.mm_write <= '1';
                end if;

            when WAIT_END_TX =>
                if( tx_ota_req = '0' ) then
                    future.state   <= WAIT_TO_WR;
                    future.counter <= 550;
                end if;


            when WAIT_TO_WR =>
                if( current.counter = 0) then
                    future.state   <= WAIT_WR_DVALID;
                    future.n_state <= RELEASE_ARBITER;

                    future.mm_addr  <= x"0051";
                    future.mm_din   <= x"10";
                    future.mm_write <= '1';
                else
                    future.counter  <= current.counter - 1;
                end if;


            when RELEASE_ARBITER =>
                future.arbiter_done <= '1';
                future.state        <= INIT;

            when WAIT_WR_DVALID =>
                future.state <= WAIT_WR_DVALID_2;

            when WAIT_WR_DVALID_2 =>
                if( mm_busy = '0' ) then
                    future.state <= WAIT_RD_DVALID;
                    future.mm_addr  <= x"0051";
                    future.mm_din   <= x"00";
                    future.mm_read  <= '1';
                end if;

            when WAIT_RD_DVALID =>
                future.state <= WAIT_RD_DVALID_2;

            when WAIT_RD_DVALID_2 =>
                if( mm_dvalid = '1' ) then
                    future.mm_dout  <= mm_dout;
                    future.state    <= current.n_state;
                end if;
        end case;

    end process comb_proc;

end architecture arch;