| |
| |
| |
| |
| library ieee; |
| use ieee.std_logic_1164.all; |
| use ieee.numeric_std.all; |
|
|
| library work; |
| use work.utils.all; |
| use work.common.all; |
| use work.helpers.all; |
| use work.wishbone_types.all; |
|
|
| entity dcache is |
| generic ( |
| SIM : boolean := false; |
| |
| LINE_SIZE : positive := 64; |
| |
| NUM_LINES : positive := 32; |
| |
| NUM_WAYS : positive := 4; |
| |
| TLB_SET_SIZE : positive := 64; |
| |
| TLB_NUM_WAYS : positive := 2; |
| |
| TLB_LG_PGSZ : positive := 12; |
| |
| LOG_LENGTH : natural := 0 |
| ); |
| port ( |
| clk : in std_ulogic; |
| rst : in std_ulogic; |
|
|
| d_in : in Loadstore1ToDcacheType; |
| d_out : out DcacheToLoadstore1Type; |
|
|
| m_in : in MmuToDcacheType; |
| m_out : out DcacheToMmuType; |
|
|
| snoop_in : in wishbone_master_out := wishbone_master_out_init; |
|
|
| stall_out : out std_ulogic; |
|
|
| wishbone_out : out wishbone_master_out; |
| wishbone_in : in wishbone_slave_out; |
|
|
| events : out DcacheEventType; |
|
|
| log_out : out std_ulogic_vector(19 downto 0) |
| ); |
| end entity dcache; |
|
|
| architecture rtl of dcache is |
| |
| |
| |
| |
| |
| constant ROW_SIZE : natural := wishbone_data_bits / 8; |
| |
| constant ROW_PER_LINE : natural := LINE_SIZE / ROW_SIZE; |
| |
| |
| constant BRAM_ROWS : natural := NUM_LINES * ROW_PER_LINE; |
|
|
| |
|
|
| |
| constant ROW_BITS : natural := log2(BRAM_ROWS); |
| |
| constant ROW_LINEBITS : natural := log2(ROW_PER_LINE); |
| |
| constant LINE_OFF_BITS : natural := log2(LINE_SIZE); |
| |
| constant ROW_OFF_BITS : natural := log2(ROW_SIZE); |
| |
| constant INDEX_BITS : natural := log2(NUM_LINES); |
| |
| constant SET_SIZE_BITS : natural := LINE_OFF_BITS + INDEX_BITS; |
| |
| constant TAG_BITS : natural := REAL_ADDR_BITS - SET_SIZE_BITS; |
| |
| constant TAG_WIDTH : natural := TAG_BITS + 7 - ((TAG_BITS + 7) mod 8); |
| |
| |
| constant WAY_BITS : natural := maximum(log2(NUM_WAYS), 1); |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| subtype row_t is unsigned(ROW_BITS-1 downto 0); |
| subtype index_t is unsigned(INDEX_BITS-1 downto 0); |
| subtype way_t is unsigned(WAY_BITS-1 downto 0); |
| subtype way_expand_t is std_ulogic_vector(NUM_WAYS-1 downto 0); |
| subtype row_in_line_t is unsigned(ROW_LINEBITS-1 downto 0); |
|
|
| |
| subtype cache_row_t is std_ulogic_vector(wishbone_data_bits-1 downto 0); |
|
|
| |
| |
| |
| subtype cache_tag_t is std_logic_vector(TAG_BITS-1 downto 0); |
| |
| |
| constant TAG_RAM_WIDTH : natural := TAG_WIDTH * NUM_WAYS; |
| subtype cache_tags_set_t is std_logic_vector(TAG_RAM_WIDTH-1 downto 0); |
| type cache_tags_array_t is array(0 to NUM_LINES-1) of cache_tags_set_t; |
|
|
| |
| subtype cache_way_valids_t is std_ulogic_vector(NUM_WAYS-1 downto 0); |
| type cache_valids_t is array(0 to NUM_LINES-1) of cache_way_valids_t; |
| type row_per_line_valid_t is array(0 to ROW_PER_LINE - 1) of std_ulogic; |
|
|
| |
| signal cache_tags : cache_tags_array_t; |
| signal cache_tag_set : cache_tags_set_t; |
| signal cache_valids : cache_valids_t; |
|
|
| attribute ram_style : string; |
| attribute ram_style of cache_tags : signal is "distributed"; |
|
|
| |
| constant TLB_SET_BITS : natural := log2(TLB_SET_SIZE); |
| constant TLB_WAY_BITS : natural := maximum(log2(TLB_NUM_WAYS), 1); |
| constant TLB_EA_TAG_BITS : natural := 64 - (TLB_LG_PGSZ + TLB_SET_BITS); |
| constant TLB_EA_TAG_WIDTH : natural := TLB_EA_TAG_BITS + 7 - ((TLB_EA_TAG_BITS + 7) mod 8); |
| constant TLB_TAG_WAY_BITS : natural := TLB_NUM_WAYS * TLB_EA_TAG_WIDTH; |
| constant TLB_PTE_BITS : natural := 64; |
| constant TLB_PTE_WAY_BITS : natural := TLB_NUM_WAYS * TLB_PTE_BITS; |
|
|
| subtype tlb_way_t is integer range 0 to TLB_NUM_WAYS - 1; |
| subtype tlb_way_sig_t is unsigned(TLB_WAY_BITS-1 downto 0); |
| subtype tlb_index_t is integer range 0 to TLB_SET_SIZE - 1; |
| subtype tlb_index_sig_t is unsigned(TLB_SET_BITS-1 downto 0); |
| subtype tlb_way_valids_t is std_ulogic_vector(TLB_NUM_WAYS-1 downto 0); |
| type tlb_valids_t is array(tlb_index_t) of tlb_way_valids_t; |
| subtype tlb_tag_t is std_ulogic_vector(TLB_EA_TAG_BITS - 1 downto 0); |
| subtype tlb_way_tags_t is std_ulogic_vector(TLB_TAG_WAY_BITS-1 downto 0); |
| type tlb_tags_t is array(tlb_index_t) of tlb_way_tags_t; |
| subtype tlb_pte_t is std_ulogic_vector(TLB_PTE_BITS - 1 downto 0); |
| subtype tlb_way_ptes_t is std_ulogic_vector(TLB_PTE_WAY_BITS-1 downto 0); |
| type tlb_ptes_t is array(tlb_index_t) of tlb_way_ptes_t; |
| type tlb_expand_t is array(tlb_way_t) of std_ulogic; |
|
|
| signal dtlb_valids : tlb_valids_t; |
| signal dtlb_tags : tlb_tags_t; |
| signal dtlb_ptes : tlb_ptes_t; |
| attribute ram_style of dtlb_tags : signal is "distributed"; |
| attribute ram_style of dtlb_ptes : signal is "distributed"; |
|
|
| |
| type perm_attr_t is record |
| reference : std_ulogic; |
| changed : std_ulogic; |
| nocache : std_ulogic; |
| priv : std_ulogic; |
| rd_perm : std_ulogic; |
| wr_perm : std_ulogic; |
| end record; |
|
|
| function extract_perm_attr(pte : std_ulogic_vector(TLB_PTE_BITS - 1 downto 0)) return perm_attr_t is |
| variable pa : perm_attr_t; |
| begin |
| pa.reference := pte(8); |
| pa.changed := pte(7); |
| pa.nocache := pte(5); |
| pa.priv := pte(3); |
| pa.rd_perm := pte(2); |
| pa.wr_perm := pte(1); |
| return pa; |
| end; |
|
|
| function andor(mask : std_ulogic; in1 : std_ulogic_vector(wishbone_data_bits-1 downto 0); |
| in2 : std_ulogic_vector(wishbone_data_bits-1 downto 0)) return std_ulogic_vector is |
| variable t : std_ulogic_vector(wishbone_data_bits-1 downto 0) := (others => mask); |
| begin |
| return in2 or (in1 and t); |
| end; |
|
|
| constant real_mode_perm_attr : perm_attr_t := (nocache => '0', others => '1'); |
|
|
| |
| type state_t is (IDLE, |
| RELOAD_WAIT_ACK, |
| STORE_WAIT_ACK, |
| NC_LOAD_WAIT_ACK, |
| DO_STCX, |
| FLUSH_CYCLE); |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| |
| type reg_stage_0_t is record |
| req : Loadstore1ToDcacheType; |
| mmu_req : std_ulogic; |
| d_valid : std_ulogic; |
| end record; |
|
|
| signal r0 : reg_stage_0_t; |
| signal r0_full : std_ulogic; |
|
|
| type mem_access_request_t is record |
| op_lmiss : std_ulogic; |
| op_store : std_ulogic; |
| op_flush : std_ulogic; |
| op_sync : std_ulogic; |
| nc : std_ulogic; |
| valid : std_ulogic; |
| dcbz : std_ulogic; |
| flush : std_ulogic; |
| touch : std_ulogic; |
| sync : std_ulogic; |
| reserve : std_ulogic; |
| first_dw : std_ulogic; |
| last_dw : std_ulogic; |
| real_addr : real_addr_t; |
| data : std_ulogic_vector(63 downto 0); |
| byte_sel : std_ulogic_vector(7 downto 0); |
| is_hit : std_ulogic; |
| hit_way : way_t; |
| hit_ways : way_expand_t; |
| hit_reload : std_ulogic; |
| same_page : std_ulogic; |
| mmu_req : std_ulogic; |
| dawr_m : std_ulogic; |
| tlb_hit : std_ulogic; |
| tlb_index : tlb_index_sig_t; |
| tlb_way : tlb_way_sig_t; |
| end record; |
|
|
| |
| |
| |
| type reg_stage_1_t is record |
| |
| full : std_ulogic; |
| mmu_req : std_ulogic; |
| req : mem_access_request_t; |
| atomic_more : std_ulogic; |
|
|
| |
| hit_way : way_t; |
| hit_load_valid : std_ulogic; |
| hit_index : index_t; |
| cache_hit : std_ulogic; |
| prev_hit : std_ulogic; |
| prev_way : way_t; |
| prev_hit_ways : way_expand_t; |
| prev_hit_reload : std_ulogic; |
|
|
| |
| tlb_hit : std_ulogic; |
| tlb_hit_way : tlb_way_sig_t; |
| tlb_hit_ways : tlb_expand_t; |
| tlb_hit_index : tlb_index_sig_t; |
| tlb_victim : tlb_way_sig_t; |
| ls_tlb_hit : std_ulogic; |
| tlb_acc_index : tlb_index_sig_t; |
| tlb_acc_way : tlb_way_sig_t; |
|
|
| |
| forward_data : std_ulogic_vector(63 downto 0); |
| forward_sel : std_ulogic_vector(7 downto 0); |
| forward_valid : std_ulogic; |
| forward_row : row_t; |
| forward_way : way_t; |
| data_out : std_ulogic_vector(63 downto 0); |
|
|
| |
| state : state_t; |
| dcbz : std_ulogic; |
| write_bram : std_ulogic; |
| write_tag : std_ulogic; |
| slow_valid : std_ulogic; |
| wb : wishbone_master_out; |
| reloading : std_ulogic; |
| reload_tag : cache_tag_t; |
| store_way : way_t; |
| store_ways : way_expand_t; |
| store_row : row_t; |
| store_index : index_t; |
| end_row_ix : row_in_line_t; |
| rows_valid : row_per_line_valid_t; |
| acks_pending : unsigned(2 downto 0); |
| stalled : std_ulogic; |
| dec_acks : std_ulogic; |
| choose_victim : std_ulogic; |
| victim_way : way_t; |
|
|
| |
| ls_valid : std_ulogic; |
| ls_error : std_ulogic; |
| mmu_done : std_ulogic; |
| mmu_error : std_ulogic; |
| cache_paradox : std_ulogic; |
| reserve_nc : std_ulogic; |
|
|
| |
| stcx_fail : std_ulogic; |
| end record; |
|
|
| signal r1 : reg_stage_1_t; |
|
|
| signal ev : DcacheEventType; |
|
|
| |
| |
| type reservation_t is record |
| valid : std_ulogic; |
| addr : std_ulogic_vector(REAL_ADDR_BITS - 1 downto LINE_OFF_BITS); |
| end record; |
|
|
| signal reservation : reservation_t; |
| signal kill_rsrv : std_ulogic; |
|
|
| |
| signal req_index : index_t; |
| signal req_hit_way : way_t; |
| signal req_hit_ways : way_expand_t; |
| signal req_is_hit : std_ulogic; |
| signal req_tag : cache_tag_t; |
| signal req_op_load_hit : std_ulogic; |
| signal req_op_load_miss : std_ulogic; |
| signal req_op_store : std_ulogic; |
| signal req_op_flush : std_ulogic; |
| signal req_op_sync : std_ulogic; |
| signal req_op_bad : std_ulogic; |
| signal req_op_nop : std_ulogic; |
| signal req_data : std_ulogic_vector(63 downto 0); |
| signal req_same_page : std_ulogic; |
| signal req_go : std_ulogic; |
| signal req_nc : std_ulogic; |
| signal req_hit_reload : std_ulogic; |
|
|
| signal early_req_row : row_t; |
| signal early_rd_valid : std_ulogic; |
|
|
| signal r0_valid : std_ulogic; |
| signal r0_stall : std_ulogic; |
|
|
| signal use_forward_st : way_expand_t; |
| signal use_forward2 : way_expand_t; |
|
|
| |
| type cache_ram_out_t is array(0 to NUM_WAYS-1) of cache_row_t; |
| signal cache_out : cache_ram_out_t; |
| signal ram_wr_data : cache_row_t; |
| signal ram_wr_select : std_ulogic_vector(ROW_SIZE - 1 downto 0); |
|
|
| |
| signal plru_victim : way_t; |
| signal replace_way : way_t; |
|
|
| |
| signal bus_sel : std_ulogic_vector(7 downto 0); |
|
|
| |
| signal tlb_tag_way : tlb_way_tags_t; |
| signal tlb_pte_way : tlb_way_ptes_t; |
| signal tlb_valid_way : tlb_way_valids_t; |
| signal tlb_req_index : tlb_index_sig_t; |
| signal tlb_read_valid : std_ulogic; |
| signal tlb_hit : std_ulogic; |
| signal tlb_hit_way : tlb_way_sig_t; |
| signal tlb_hit_expand : tlb_expand_t; |
| signal pte : tlb_pte_t; |
| signal ra : real_addr_t; |
| signal valid_ra : std_ulogic; |
| signal perm_attr : perm_attr_t; |
| signal rc_ok : std_ulogic; |
| signal perm_ok : std_ulogic; |
| signal access_ok : std_ulogic; |
| signal tlb_miss : std_ulogic; |
|
|
| |
| signal tlb_plru_victim : std_ulogic_vector(TLB_WAY_BITS-1 downto 0); |
|
|
| signal snoop_active : std_ulogic; |
| signal snoop_tag_set : cache_tags_set_t; |
| signal snoop_valid : std_ulogic; |
| signal snoop_paddr : real_addr_t; |
| signal snoop_addr : real_addr_t; |
| signal snoop_hits : cache_way_valids_t; |
| signal req_snoop_hit : std_ulogic; |
|
|
| |
| |
| |
|
|
| |
| function get_index(addr: std_ulogic_vector) return index_t is |
| begin |
| return unsigned(addr(SET_SIZE_BITS - 1 downto LINE_OFF_BITS)); |
| end; |
|
|
| |
| function get_row(addr: std_ulogic_vector) return row_t is |
| begin |
| return unsigned(addr(SET_SIZE_BITS - 1 downto ROW_OFF_BITS)); |
| end; |
|
|
| |
| function get_row_of_line(row: row_t) return row_in_line_t is |
| begin |
| return row(ROW_LINEBITS-1 downto 0); |
| end; |
|
|
| |
| function is_last_row_wb_addr(addr: wishbone_addr_type; last: row_in_line_t) return boolean is |
| begin |
| return unsigned(addr(LINE_OFF_BITS - ROW_OFF_BITS - 1 downto 0)) = last; |
| end; |
|
|
| |
| function is_last_row(row: row_t; last: row_in_line_t) return boolean is |
| begin |
| return get_row_of_line(row) = last; |
| end; |
|
|
| |
| function next_row_wb_addr(addr: wishbone_addr_type) return std_ulogic_vector is |
| variable row_idx : std_ulogic_vector(ROW_LINEBITS-1 downto 0); |
| variable result : wishbone_addr_type; |
| begin |
| |
| row_idx := addr(ROW_LINEBITS - 1 downto 0); |
| row_idx := std_ulogic_vector(unsigned(row_idx) + 1); |
| result := addr; |
| result(ROW_LINEBITS - 1 downto 0) := row_idx; |
| return result; |
| end; |
|
|
| |
| |
| |
| |
| function next_row(row: row_t) return row_t is |
| variable row_v : std_ulogic_vector(ROW_BITS-1 downto 0); |
| variable row_idx : std_ulogic_vector(ROW_LINEBITS-1 downto 0); |
| variable result : std_ulogic_vector(ROW_BITS-1 downto 0); |
| begin |
| row_v := std_ulogic_vector(row); |
| row_idx := row_v(ROW_LINEBITS-1 downto 0); |
| row_v(ROW_LINEBITS-1 downto 0) := std_ulogic_vector(unsigned(row_idx) + 1); |
| return unsigned(row_v); |
| end; |
|
|
| |
| function get_tag(addr: std_ulogic_vector) return cache_tag_t is |
| begin |
| return addr(REAL_ADDR_BITS - 1 downto SET_SIZE_BITS); |
| end; |
|
|
| |
| function read_tag(way: integer; tagset: cache_tags_set_t) return cache_tag_t is |
| begin |
| return tagset(way * TAG_WIDTH + TAG_BITS - 1 downto way * TAG_WIDTH); |
| end; |
|
|
| |
| function read_tlb_tag(way: tlb_way_t; tags: tlb_way_tags_t) return tlb_tag_t is |
| variable j : integer; |
| begin |
| j := way * TLB_EA_TAG_WIDTH; |
| return tags(j + TLB_EA_TAG_BITS - 1 downto j); |
| end; |
|
|
| |
| function read_tlb_pte(way: tlb_way_t; ptes: tlb_way_ptes_t) return tlb_pte_t is |
| variable j : integer; |
| begin |
| j := way * TLB_PTE_BITS; |
| return ptes(j + TLB_PTE_BITS - 1 downto j); |
| end; |
|
|
| begin |
|
|
| assert LINE_SIZE mod ROW_SIZE = 0 report "LINE_SIZE not multiple of ROW_SIZE" severity FAILURE; |
| assert ispow2(LINE_SIZE) report "LINE_SIZE not power of 2" severity FAILURE; |
| assert ispow2(NUM_LINES) report "NUM_LINES not power of 2" severity FAILURE; |
| assert ispow2(ROW_PER_LINE) and ROW_PER_LINE > 1 |
| report "ROW_PER_LINE not power of 2 greater than 1" severity FAILURE; |
| assert (ROW_BITS = INDEX_BITS + ROW_LINEBITS) |
| report "geometry bits don't add up" severity FAILURE; |
| assert (LINE_OFF_BITS = ROW_OFF_BITS + ROW_LINEBITS) |
| report "geometry bits don't add up" severity FAILURE; |
| assert (REAL_ADDR_BITS = TAG_BITS + INDEX_BITS + LINE_OFF_BITS) |
| report "geometry bits don't add up" severity FAILURE; |
| assert (REAL_ADDR_BITS = TAG_BITS + ROW_BITS + ROW_OFF_BITS) |
| report "geometry bits don't add up" severity FAILURE; |
| assert (64 = wishbone_data_bits) |
| report "Can't yet handle a wishbone width that isn't 64-bits" severity FAILURE; |
| assert SET_SIZE_BITS <= TLB_LG_PGSZ report "Set indexed by virtual address" severity FAILURE; |
|
|
| |
| stage_0 : process(clk) |
| variable r : reg_stage_0_t; |
| begin |
| if rising_edge(clk) then |
| assert (d_in.valid and m_in.valid) = '0' report |
| "request collision loadstore vs MMU"; |
| if m_in.valid = '1' then |
| r.req := Loadstore1ToDcacheInit; |
| r.req.valid := '1'; |
| r.req.load := '1'; |
| r.req.priv_mode := '1'; |
| r.req.addr := m_in.addr; |
| r.req.byte_sel := (others => '1'); |
| r.mmu_req := '1'; |
| r.d_valid := '1'; |
| else |
| r.req := d_in; |
| r.req.data := (others => '0'); |
| r.mmu_req := '0'; |
| r.d_valid := '0'; |
| end if; |
| if r.req.valid = '1' then |
| assert not is_X(r.req.addr) severity failure; |
| end if; |
| if rst = '1' then |
| r0_full <= '0'; |
| elsif r1.full = '0' and d_in.hold = '0' then |
| r0 <= r; |
| r0_full <= r.req.valid; |
| elsif r0.d_valid = '0' then |
| |
| |
| |
| r0.req.data <= d_in.data; |
| r0.d_valid <= r0.req.valid; |
| |
| r0.req.dawr_match <= d_in.dawr_match; |
| end if; |
| end if; |
| end process; |
|
|
| |
| m_out.stall <= '0'; |
|
|
| |
| r0_stall <= r1.full or d_in.hold; |
| r0_valid <= r0_full and not r1.full and not d_in.hold; |
| stall_out <= r1.full; |
|
|
| events <= ev; |
|
|
| |
| |
| |
| tlb_read : process(clk) |
| variable index : tlb_index_t; |
| variable addrbits : std_ulogic_vector(TLB_SET_BITS - 1 downto 0); |
| variable valid : std_ulogic; |
| begin |
| if rising_edge(clk) then |
| if m_in.valid = '1' then |
| addrbits := m_in.addr(TLB_LG_PGSZ + TLB_SET_BITS - 1 downto TLB_LG_PGSZ); |
| valid := not (m_in.tlbie and m_in.doall); |
| else |
| addrbits := d_in.addr(TLB_LG_PGSZ + TLB_SET_BITS - 1 downto TLB_LG_PGSZ); |
| valid := d_in.valid; |
| end if; |
| |
| |
| if r0_stall = '0' then |
| assert not (valid = '1' and is_X(addrbits)); |
| if is_X(addrbits) then |
| tlb_valid_way <= (others => 'X'); |
| tlb_tag_way <= (others => 'X'); |
| tlb_pte_way <= (others => 'X'); |
| else |
| index := to_integer(unsigned(addrbits)); |
| tlb_valid_way <= dtlb_valids(index); |
| tlb_tag_way <= dtlb_tags(index); |
| tlb_pte_way <= dtlb_ptes(index); |
| end if; |
| end if; |
| if rst = '1' then |
| tlb_read_valid <= '0'; |
| elsif r0_stall = '0' then |
| tlb_read_valid <= valid; |
| end if; |
| end if; |
| end process; |
|
|
| |
| maybe_tlb_plrus : if TLB_NUM_WAYS > 1 generate |
| type tlb_plru_array is array(tlb_index_t) of std_ulogic_vector(TLB_NUM_WAYS - 2 downto 0); |
| signal tlb_plru_ram : tlb_plru_array; |
| signal tlb_plru_cur : std_ulogic_vector(TLB_NUM_WAYS - 2 downto 0); |
| signal tlb_plru_upd : std_ulogic_vector(TLB_NUM_WAYS - 2 downto 0); |
| signal tlb_plru_acc : std_ulogic_vector(TLB_WAY_BITS-1 downto 0); |
| signal tlb_plru_out : std_ulogic_vector(TLB_WAY_BITS-1 downto 0); |
| begin |
| tlb_plru : entity work.plrufn |
| generic map ( |
| BITS => TLB_WAY_BITS |
| ) |
| port map ( |
| acc => tlb_plru_acc, |
| tree_in => tlb_plru_cur, |
| tree_out => tlb_plru_upd, |
| lru => tlb_plru_out |
| ); |
|
|
| process(all) |
| begin |
| |
| if is_X(r1.tlb_hit_index) then |
| tlb_plru_cur <= (others => 'X'); |
| else |
| tlb_plru_cur <= tlb_plru_ram(to_integer(r1.tlb_hit_index)); |
| end if; |
|
|
| |
| tlb_plru_acc <= std_ulogic_vector(r1.tlb_hit_way); |
| tlb_plru_victim <= tlb_plru_out; |
| end process; |
|
|
| |
| process(clk) |
| begin |
| if rising_edge(clk) then |
| if r1.tlb_hit = '1' then |
| assert not is_X(r1.tlb_hit_index) severity failure; |
| tlb_plru_ram(to_integer(r1.tlb_hit_index)) <= tlb_plru_upd; |
| end if; |
| end if; |
| end process; |
| end generate; |
|
|
| tlb_search : process(all) |
| variable hitway : tlb_way_sig_t; |
| variable hit : std_ulogic; |
| variable eatag : tlb_tag_t; |
| variable hitpte : tlb_pte_t; |
| begin |
| tlb_req_index <= unsigned(r0.req.addr(TLB_LG_PGSZ + TLB_SET_BITS - 1 |
| downto TLB_LG_PGSZ)); |
| hitway := to_unsigned(0, TLB_WAY_BITS); |
| hit := '0'; |
| hitpte := (others => '0'); |
| tlb_hit_expand <= (others => '0'); |
| eatag := r0.req.addr(63 downto TLB_LG_PGSZ + TLB_SET_BITS); |
| for i in tlb_way_t loop |
| if tlb_valid_way(i) = '1' and |
| read_tlb_tag(i, tlb_tag_way) = eatag then |
| hitway := to_unsigned(i, TLB_WAY_BITS); |
| hit := tlb_read_valid; |
| hitpte := hitpte or read_tlb_pte(i, tlb_pte_way); |
| tlb_hit_expand(i) <= '1'; |
| end if; |
| end loop; |
| tlb_hit <= hit and r0_valid; |
| tlb_hit_way <= hitway; |
| pte <= hitpte; |
| valid_ra <= tlb_hit or not r0.req.virt_mode; |
| tlb_miss <= r0_valid and r0.req.virt_mode and not tlb_hit; |
|
|
| |
| |
| req_same_page <= '0'; |
| if r0.req.virt_mode = '1' then |
| ra <= hitpte(REAL_ADDR_BITS - 1 downto TLB_LG_PGSZ) & |
| r0.req.addr(TLB_LG_PGSZ - 1 downto ROW_OFF_BITS) & |
| (ROW_OFF_BITS-1 downto 0 => '0'); |
| perm_attr <= extract_perm_attr(hitpte); |
| if tlb_read_valid = '1' and r1.state = STORE_WAIT_ACK and r1.ls_tlb_hit = '1' and |
| tlb_req_index = r1.tlb_acc_index and hitway = r1.tlb_acc_way then |
| req_same_page <= '1'; |
| end if; |
| else |
| ra <= r0.req.addr(REAL_ADDR_BITS - 1 downto ROW_OFF_BITS) & |
| (ROW_OFF_BITS-1 downto 0 => '0'); |
| perm_attr <= real_mode_perm_attr; |
| if r0.req.addr(REAL_ADDR_BITS - 1 downto TLB_LG_PGSZ) = |
| wb_to_addr(r1.wb.adr)(REAL_ADDR_BITS - 1 downto TLB_LG_PGSZ) then |
| req_same_page <= '1'; |
| end if; |
| end if; |
| end process; |
|
|
| tlb_update : process(clk) |
| variable tlb_wr_index : tlb_index_sig_t; |
| variable j, k : integer; |
| begin |
| if rising_edge(clk) then |
| tlb_wr_index := unsigned(m_in.addr(TLB_LG_PGSZ + TLB_SET_BITS - 1 |
| downto TLB_LG_PGSZ)); |
| ev.dtlb_miss_resolved <= m_in.tlbld; |
| if rst = '1' or (m_in.tlbie = '1' and m_in.doall = '1') then |
| |
| for i in tlb_index_t loop |
| dtlb_valids(i) <= (others => '0'); |
| end loop; |
| elsif m_in.tlbie = '1' then |
| for i in tlb_way_t loop |
| if r1.tlb_hit_ways(i) = '1' then |
| assert not is_X(tlb_wr_index); |
| dtlb_valids(to_integer(tlb_wr_index))(i) <= '0'; |
| end if; |
| end loop; |
| elsif m_in.tlbld = '1' then |
| assert not is_X(tlb_wr_index); |
| assert not is_X(r1.tlb_victim); |
| for way in 0 to TLB_NUM_WAYS - 1 loop |
| if TLB_NUM_WAYS = 1 or way = to_integer(unsigned(r1.tlb_victim)) then |
| j := way * TLB_EA_TAG_WIDTH; |
| dtlb_tags(to_integer(tlb_wr_index))(j + TLB_EA_TAG_WIDTH - 1 downto j) <= |
| (TLB_EA_TAG_WIDTH - 1 downto TLB_EA_TAG_BITS => '0') & |
| m_in.addr(63 downto TLB_LG_PGSZ + TLB_SET_BITS); |
| k := way * TLB_PTE_BITS; |
| dtlb_ptes(to_integer(tlb_wr_index))(k + TLB_PTE_BITS - 1 downto k) <= m_in.pte; |
| dtlb_valids(to_integer(tlb_wr_index))(way) <= '1'; |
| end if; |
| end loop; |
| end if; |
| end if; |
| end process; |
|
|
| |
| maybe_plrus : if NUM_WAYS > 1 generate |
| type plru_array is array(0 to NUM_LINES-1) of std_ulogic_vector(NUM_WAYS - 2 downto 0); |
| signal plru_ram : plru_array; |
| signal plru_cur : std_ulogic_vector(NUM_WAYS - 2 downto 0); |
| signal plru_upd : std_ulogic_vector(NUM_WAYS - 2 downto 0); |
| signal plru_acc : std_ulogic_vector(WAY_BITS-1 downto 0); |
| signal plru_out : std_ulogic_vector(WAY_BITS-1 downto 0); |
| begin |
| plru : entity work.plrufn |
| generic map ( |
| BITS => WAY_BITS |
| ) |
| port map ( |
| acc => plru_acc, |
| tree_in => plru_cur, |
| tree_out => plru_upd, |
| lru => plru_out |
| ); |
|
|
| process(all) |
| begin |
| |
| if is_X(r1.hit_index) then |
| plru_cur <= (others => 'X'); |
| else |
| plru_cur <= plru_ram(to_integer(r1.hit_index)); |
| end if; |
|
|
| |
| plru_acc <= std_ulogic_vector(r1.hit_way); |
| plru_victim <= unsigned(plru_out); |
| end process; |
|
|
| |
| process(clk) |
| begin |
| if rising_edge(clk) then |
| |
| |
| |
| if r1.cache_hit = '1' or r1.choose_victim = '1' then |
| report "PLRU update, index=" & to_hstring(r1.hit_index) & |
| " way=" & to_hstring(r1.hit_way); |
| assert not is_X(r1.hit_index) severity failure; |
| plru_ram(to_integer(r1.hit_index)) <= plru_upd; |
| end if; |
| end if; |
| end process; |
| end generate; |
|
|
| |
| cache_tag_read : process(clk) |
| variable index : index_t; |
| variable valid : std_ulogic; |
| begin |
| if rising_edge(clk) then |
| if r0_stall = '1' then |
| index := req_index; |
| valid := r0.req.valid; |
| elsif m_in.valid = '1' then |
| index := get_index(m_in.addr); |
| valid := '1'; |
| else |
| index := get_index(d_in.addr); |
| valid := d_in.valid; |
| end if; |
| if valid = '1' or not SIM then |
| cache_tag_set <= cache_tags(to_integer(index)); |
| else |
| cache_tag_set <= (others => 'X'); |
| end if; |
| end if; |
| end process; |
|
|
| |
| |
| snoop_addr <= addr_to_real(wb_to_addr(snoop_in.adr)); |
| snoop_active <= snoop_in.cyc and snoop_in.stb and snoop_in.we and |
| not (r1.wb.cyc and not wishbone_in.stall); |
|
|
| |
| cache_tag_read_2 : process(clk) |
| begin |
| if rising_edge(clk) then |
| if is_X(snoop_addr) then |
| snoop_tag_set <= (others => 'X'); |
| else |
| snoop_tag_set <= cache_tags(to_integer(get_index(snoop_addr))); |
| end if; |
| snoop_paddr <= snoop_addr; |
| snoop_valid <= snoop_active; |
| end if; |
| end process; |
|
|
| |
| kill_rsrv <= '1' when (snoop_valid = '1' and reservation.valid = '1' and |
| snoop_paddr(REAL_ADDR_BITS - 1 downto LINE_OFF_BITS) = reservation.addr) |
| else '0'; |
|
|
| snoop_tag_match : process(all) |
| begin |
| snoop_hits <= (others => '0'); |
| for i in 0 to NUM_WAYS-1 loop |
| if snoop_valid = '1' and read_tag(i, snoop_tag_set) = get_tag(snoop_paddr) then |
| snoop_hits(i) <= '1'; |
| end if; |
| end loop; |
| end process; |
|
|
| |
| dcache_request : process(all) |
| variable req_row : row_t; |
| variable rindex : index_t; |
| variable is_hit : std_ulogic; |
| variable hit_way : way_t; |
| variable hit_ways : way_expand_t; |
| variable go : std_ulogic; |
| variable nc : std_ulogic; |
| variable s_tag : cache_tag_t; |
| variable s_pte : tlb_pte_t; |
| variable s_ra : real_addr_t; |
| variable rel_match : std_ulogic; |
| variable fwd_match : std_ulogic; |
| variable snoop_match : std_ulogic; |
| variable hit_reload : std_ulogic; |
| variable dawr_match : std_ulogic; |
| variable idx_reload : way_expand_t; |
| variable maybe_fwd_st : way_expand_t; |
| variable maybe_fwd2 : way_expand_t; |
| variable wr_row_match : std_ulogic; |
| begin |
| |
| rindex := get_index(r0.req.addr); |
| req_index <= rindex; |
| req_row := get_row(r0.req.addr); |
| req_tag <= get_tag(ra); |
| if r0.d_valid = '0' then |
| dawr_match := d_in.dawr_match; |
| else |
| dawr_match := r0.req.dawr_match; |
| end if; |
|
|
| go := r0_valid and not r1.ls_error; |
| if is_X(ra) then |
| go := '0'; |
| end if; |
|
|
| |
| if go = '1' and r1.reloading = '1' then |
| assert not is_X(r1.store_index); |
| assert not is_X(r1.store_row); |
| assert not is_X(r1.store_way); |
| end if; |
| wr_row_match := '0'; |
| if go = '1' and req_row = r1.store_row then |
| wr_row_match := '1'; |
| end if; |
| idx_reload := (others => '0'); |
| if go = '1' and r1.reloading = '1' and rindex = r1.store_index then |
| |
| |
| |
| |
| |
| if r0.req.load = '1' and r0.req.touch = '0' and |
| r1.rows_valid(to_integer(req_row(ROW_LINEBITS-1 downto 0))) = '0' then |
| idx_reload := r1.store_ways; |
| end if; |
| end if; |
|
|
| |
| maybe_fwd_st := (others => '0'); |
| if wr_row_match = '1' and r1.write_bram = '1' then |
| maybe_fwd_st := r1.store_ways; |
| end if; |
|
|
| |
| maybe_fwd2 := (others => '0'); |
| if go = '1' and r1.forward_valid = '1' and req_row = r1.forward_row then |
| assert not is_X(r1.forward_way); |
| maybe_fwd2(to_integer(r1.forward_way)) := '1'; |
| end if; |
|
|
| hit_ways := (others => '0'); |
| if r0.req.load = '1' and r0.req.atomic_qw = '1' and r0.req.atomic_first = '0' then |
| |
| |
| |
| |
| |
| |
| |
| hit_ways := r1.prev_hit_ways; |
| end if; |
|
|
| |
| |
| |
| |
| if r0.req.virt_mode = '1' then |
| for j in tlb_way_t loop |
| if tlb_valid_way(j) = '1' then |
| s_pte := read_tlb_pte(j, tlb_pte_way); |
| s_ra := s_pte(REAL_ADDR_BITS - 1 downto TLB_LG_PGSZ) & |
| r0.req.addr(TLB_LG_PGSZ - 1 downto 0); |
| s_tag := get_tag(s_ra); |
| assert not is_X(s_tag); |
| for i in 0 to NUM_WAYS-1 loop |
| if cache_valids(to_integer(rindex))(i) = '1' and |
| read_tag(i, cache_tag_set) = s_tag and |
| tlb_hit_expand(j) = '1' then |
| hit_ways(i) := '1'; |
| end if; |
| end loop; |
| end if; |
| end loop; |
| else |
| s_tag := get_tag(r0.req.addr); |
| if go = '1' then |
| assert not is_X(s_tag); |
| end if; |
| for i in 0 to NUM_WAYS-1 loop |
| if go = '1' and cache_valids(to_integer(rindex))(i) = '1' and |
| read_tag(i, cache_tag_set) = s_tag then |
| hit_ways(i) := '1'; |
| end if; |
| end loop; |
| end if; |
|
|
| hit_way := to_unsigned(0, WAY_BITS); |
| is_hit := '0'; |
| hit_reload := '0'; |
| for i in 0 to NUM_WAYS-1 loop |
| if hit_ways(i) = '1' then |
| hit_way := to_unsigned(i, WAY_BITS); |
| is_hit := go and not idx_reload(i); |
| hit_reload := go and idx_reload(i); |
| end if; |
| end loop; |
|
|
| |
| |
| req_snoop_hit <= '0'; |
| if go = '1' and get_index(snoop_paddr) = rindex then |
| |
| req_snoop_hit <= or (snoop_hits and hit_ways); |
| end if; |
|
|
| |
| use_forward_st <= maybe_fwd_st; |
| use_forward2 <= maybe_fwd2; |
|
|
| |
| replace_way <= to_unsigned(0, WAY_BITS); |
| if NUM_WAYS > 1 then |
| if r1.write_tag = '1' then |
| if r1.choose_victim = '1' then |
| replace_way <= plru_victim; |
| else |
| |
| |
| replace_way <= r1.victim_way; |
| end if; |
| else |
| replace_way <= r1.store_way; |
| end if; |
| end if; |
|
|
| req_go <= go; |
| req_nc <= nc; |
|
|
| |
| req_hit_way <= hit_way; |
| req_hit_ways <= hit_ways; |
| req_is_hit <= is_hit; |
| req_hit_reload <= hit_reload; |
|
|
| |
| |
| rc_ok <= perm_attr.reference and (r0.req.load or perm_attr.changed); |
| perm_ok <= (r0.req.priv_mode or not perm_attr.priv) and |
| (perm_attr.wr_perm or (r0.req.load and perm_attr.rd_perm)); |
| access_ok <= valid_ra and perm_ok and rc_ok and not dawr_match; |
|
|
| |
| |
| |
| nc := r0.req.nc or perm_attr.nocache; |
| req_op_bad <= '0'; |
| req_op_load_hit <= '0'; |
| req_op_load_miss <= '0'; |
| req_op_store <= '0'; |
| req_op_nop <= '0'; |
| req_op_flush <= '0'; |
| req_op_sync <= '0'; |
| if go = '1' then |
| if r0.req.sync = '1' then |
| req_op_sync <= '1'; |
| elsif r0.req.touch = '1' then |
| if access_ok = '1' and (is_hit or hit_reload) = '0' and nc = '0' then |
| req_op_load_miss <= '1'; |
| elsif access_ok = '1' and (is_hit or hit_reload) = '1' and nc = '0' then |
| |
| req_op_load_hit <= '1'; |
| else |
| req_op_nop <= '1'; |
| end if; |
| elsif r0.req.tlb_probe = '1' then |
| |
| |
| |
| |
| |
| elsif access_ok = '0' then |
| req_op_bad <= '1'; |
| elsif r0.req.flush = '1' then |
| if is_hit = '0' then |
| req_op_nop <= '1'; |
| else |
| req_op_flush <= '1'; |
| end if; |
| elsif nc = '1' and (is_hit = '1' or r0.req.reserve = '1') then |
| req_op_bad <= '1'; |
| elsif r0.req.load = '0' then |
| req_op_store <= '1'; |
| else |
| req_op_load_hit <= is_hit; |
| req_op_load_miss <= not is_hit; |
| end if; |
| end if; |
|
|
| |
| |
| |
| |
| if r0_stall = '0' then |
| early_rd_valid <= '1'; |
| if m_in.valid = '1' then |
| early_req_row <= get_row(m_in.addr); |
| else |
| early_req_row <= get_row(d_in.addr); |
| end if; |
| else |
| early_req_row <= req_row; |
| early_rd_valid <= r0.req.valid and r0.req.load; |
| end if; |
| end process; |
|
|
| |
| wishbone_out <= r1.wb; |
|
|
| |
| |
| writeback_control: process(all) |
| begin |
| d_out.valid <= r1.ls_valid; |
| d_out.data <= r1.data_out; |
| d_out.store_done <= not r1.stcx_fail; |
| d_out.error <= r1.ls_error; |
| d_out.cache_paradox <= r1.cache_paradox; |
| d_out.reserve_nc <= r1.reserve_nc; |
|
|
| |
| m_out.done <= r1.mmu_done; |
| m_out.err <= r1.mmu_error; |
| m_out.data <= r1.data_out; |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
|
|
| |
| assert (r1.slow_valid and r1.stcx_fail) /= '1' report |
| "unexpected slow_valid collision with stcx_fail" |
| severity FAILURE; |
| assert ((r1.slow_valid or r1.stcx_fail) and r1.hit_load_valid) /= '1' report |
| "unexpected hit_load_delayed collision with slow_valid" |
| severity FAILURE; |
|
|
| if r1.mmu_req = '0' then |
| |
| |
| if r1.hit_load_valid = '1' then |
| report "completing load hit data=" & to_hstring(r1.data_out); |
| end if; |
|
|
| |
| if r1.ls_error = '1' then |
| report "completing ld/st with error"; |
| end if; |
|
|
| |
| if r1.slow_valid = '1' then |
| report "completing store or load miss data=" & to_hstring(r1.data_out); |
| end if; |
|
|
| else |
| |
| if r1.hit_load_valid = '1' then |
| report "completing load hit to MMU, data=" & to_hstring(m_out.data); |
| end if; |
|
|
| |
| if r1.mmu_error = '1' then |
| report "completing MMU ld with error"; |
| end if; |
|
|
| |
| if r1.slow_valid = '1' then |
| report "completing MMU load miss, data=" & to_hstring(m_out.data); |
| end if; |
| end if; |
|
|
| end process; |
|
|
| |
| ram_wr_data <= r1.req.data when r1.write_bram = '1' or r1.dcbz = '1' else |
| wishbone_in.dat; |
| ram_wr_select <= r1.req.byte_sel when r1.write_bram = '1' else |
| (others => '1'); |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| rams: for i in 0 to NUM_WAYS-1 generate |
| signal do_read : std_ulogic; |
| signal rd_addr : std_ulogic_vector(ROW_BITS-1 downto 0); |
| signal wr_addr : std_ulogic_vector(ROW_BITS-1 downto 0); |
| signal wr_data : std_ulogic_vector(wishbone_data_bits-1 downto 0); |
| signal wr_sel : std_ulogic_vector(ROW_SIZE-1 downto 0); |
| signal wr_sel_m : std_ulogic_vector(ROW_SIZE-1 downto 0); |
| signal dout : cache_row_t; |
| begin |
| way: entity work.cache_ram |
| generic map ( |
| ROW_BITS => ROW_BITS, |
| WIDTH => wishbone_data_bits, |
| ADD_BUF => false |
| ) |
| port map ( |
| clk => clk, |
| rd_en => do_read, |
| rd_addr => rd_addr, |
| rd_data => dout, |
| wr_sel => wr_sel_m, |
| wr_addr => wr_addr, |
| wr_data => ram_wr_data |
| ); |
| process(all) |
| variable dword : cache_row_t; |
| variable j : integer; |
| begin |
| |
| do_read <= early_rd_valid; |
| rd_addr <= std_ulogic_vector(early_req_row); |
|
|
| |
| dword := (others => '0'); |
| for b in 0 to ROW_SIZE - 1 loop |
| j := b * 8; |
| if use_forward_st(i) = '1' and r1.req.byte_sel(b) = '1' then |
| dword(j + 7 downto j) := r1.req.data(j + 7 downto j); |
| elsif use_forward2(i) = '1' and r1.forward_sel(b) = '1' then |
| dword(j + 7 downto j) := r1.forward_data(j + 7 downto j); |
| else |
| dword(j + 7 downto j) := dout(j + 7 downto j); |
| end if; |
| end loop; |
| cache_out(i) <= dword; |
|
|
| |
| |
| |
| |
| |
| |
| |
| wr_addr <= std_ulogic_vector(r1.store_row); |
|
|
| wr_sel_m <= (others => '0'); |
| if r1.write_bram = '1' or |
| (r1.reloading = '1' and wishbone_in.ack = '1') then |
| assert not is_X(replace_way); |
| if to_unsigned(i, WAY_BITS) = replace_way then |
| wr_sel_m <= ram_wr_select; |
| end if; |
| end if; |
|
|
| end process; |
| end generate; |
|
|
| |
| |
| |
| |
| dcache_fast_hit : process(clk) |
| variable j : integer; |
| variable sel : std_ulogic_vector(1 downto 0); |
| variable data_out : std_ulogic_vector(63 downto 0); |
| begin |
| if rising_edge(clk) then |
| if r0_valid = '1' then |
| r1.mmu_req <= r0.mmu_req; |
| end if; |
|
|
| data_out := (others => '0'); |
| if req_is_hit = '0' then |
| data_out := wishbone_in.dat; |
| else |
| for w in 0 to NUM_WAYS-1 loop |
| data_out := andor(req_hit_ways(w), cache_out(w), data_out); |
| end loop; |
| end if; |
| r1.data_out <= data_out; |
|
|
| r1.forward_data <= ram_wr_data; |
| r1.forward_row <= r1.store_row; |
| r1.forward_sel <= ram_wr_select; |
| r1.forward_way <= replace_way; |
| r1.forward_valid <= r1.write_bram; |
| if r1.reloading = '1' and wishbone_in.ack = '1' then |
| r1.forward_valid <= '1'; |
| end if; |
|
|
| r1.hit_load_valid <= req_op_load_hit; |
| r1.cache_hit <= req_op_load_hit or (req_op_store and req_is_hit); |
|
|
| r1.cache_paradox <= access_ok and req_nc and req_is_hit; |
| r1.reserve_nc <= access_ok and r0.req.reserve and req_nc; |
| if req_op_bad = '1' then |
| report "Signalling ld/st error valid_ra=" & std_ulogic'image(valid_ra) & |
| " rc_ok=" & std_ulogic'image(rc_ok) & " perm_ok=" & std_ulogic'image(perm_ok); |
| r1.ls_error <= not r0.mmu_req; |
| r1.mmu_error <= r0.mmu_req; |
| else |
| r1.ls_error <= '0'; |
| r1.mmu_error <= '0'; |
| end if; |
|
|
| |
| |
| if r0_valid = '1' then |
| r1.tlb_hit <= tlb_hit; |
| r1.tlb_hit_way <= tlb_hit_way; |
| r1.tlb_hit_ways <= tlb_hit_expand; |
| r1.tlb_hit_index <= tlb_req_index; |
| else |
| r1.tlb_hit <= '0'; |
| end if; |
| |
| |
| if r1.ls_error = '1' then |
| if r1.tlb_hit = '0' then |
| r1.tlb_victim <= unsigned(tlb_plru_victim); |
| else |
| r1.tlb_victim <= r1.tlb_hit_way; |
| end if; |
| end if; |
|
|
| end if; |
| end process; |
|
|
| |
| |
| |
| |
| |
| |
| |
| |
| |
| |
| dcache_slow : process(clk) |
| variable stbs_done : boolean; |
| variable req : mem_access_request_t; |
| variable acks : unsigned(2 downto 0); |
| begin |
| if rising_edge(clk) then |
| ev.dcache_refill <= '0'; |
| ev.load_miss <= '0'; |
| ev.store_miss <= '0'; |
| ev.dtlb_miss <= tlb_miss; |
| r1.choose_victim <= '0'; |
|
|
| |
| if rst = '1' then |
| for i in 0 to NUM_LINES-1 loop |
| cache_valids(i) <= (others => '0'); |
| end loop; |
| r1.state <= IDLE; |
| r1.full <= '0'; |
| r1.slow_valid <= '0'; |
| r1.wb.cyc <= '0'; |
| r1.wb.stb <= '0'; |
| r1.ls_valid <= '0'; |
| r1.mmu_done <= '0'; |
| r1.reloading <= '0'; |
| r1.acks_pending <= to_unsigned(0, 3); |
| r1.stalled <= '0'; |
| r1.dec_acks <= '0'; |
| r1.prev_hit <= '0'; |
| r1.prev_hit_reload <= '0'; |
| r1.prev_hit_ways <= (others => '0'); |
| reservation.valid <= '0'; |
| reservation.addr <= (others => '0'); |
|
|
| |
| r1.wb.adr <= (others => '0'); |
| else |
| |
| r1.slow_valid <= '0'; |
| r1.write_bram <= '0'; |
| r1.stcx_fail <= '0'; |
|
|
| r1.ls_valid <= (req_op_load_hit or req_op_nop) and not r0.mmu_req; |
| r1.mmu_done <= req_op_load_hit and r0.mmu_req; |
|
|
| |
| if kill_rsrv = '1' then |
| reservation.valid <= '0'; |
| end if; |
| if req_go = '1' and access_ok = '1' and r0.req.load = '1' and |
| r0.req.reserve = '1' and r0.req.atomic_first = '1' then |
| reservation.addr <= ra(REAL_ADDR_BITS - 1 downto LINE_OFF_BITS); |
| reservation.valid <= req_is_hit and not req_snoop_hit; |
| end if; |
|
|
| |
| if snoop_valid = '1' then |
| assert not is_X(snoop_paddr); |
| assert not is_X(snoop_hits); |
| end if; |
| for i in 0 to NUM_WAYS-1 loop |
| if snoop_hits(i) = '1' then |
| cache_valids(to_integer(get_index(snoop_paddr)))(i) <= '0'; |
| end if; |
| end loop; |
|
|
| if r1.write_tag = '1' then |
| |
| assert not is_X(r1.store_index); |
| assert not is_X(replace_way); |
| for i in 0 to NUM_WAYS-1 loop |
| if to_unsigned(i, WAY_BITS) = replace_way then |
| cache_tags(to_integer(r1.store_index))((i + 1) * TAG_WIDTH - 1 downto i * TAG_WIDTH) <= |
| (TAG_WIDTH - 1 downto TAG_BITS => '0') & r1.reload_tag; |
| end if; |
| end loop; |
| r1.store_way <= replace_way; |
| r1.store_ways <= (others => '0'); |
| r1.store_ways(to_integer(replace_way)) <= '1'; |
| r1.write_tag <= '0'; |
| |
| |
| |
| cache_valids(to_integer(r1.store_index))(to_integer(replace_way)) <= '1'; |
| |
| r1.prev_hit_ways <= (others => '0'); |
| r1.prev_hit_ways(to_integer(replace_way)) <= '1'; |
| end if; |
|
|
| |
| |
| if r1.full = '1' then |
| req := r1.req; |
| else |
| req.op_lmiss := req_op_load_miss; |
| req.op_store := req_op_store; |
| req.op_flush := req_op_flush; |
| req.op_sync := req_op_sync; |
| req.nc := req_nc; |
| req.valid := req_go; |
| req.mmu_req := r0.mmu_req; |
| req.dcbz := r0.req.dcbz; |
| req.flush := r0.req.flush; |
| req.touch := r0.req.touch; |
| req.sync := r0.req.sync; |
| req.reserve := r0.req.reserve; |
| req.first_dw := not r0.req.atomic_qw or r0.req.atomic_first; |
| req.last_dw := not r0.req.atomic_qw or r0.req.atomic_last; |
| req.real_addr := ra; |
| req.tlb_hit := tlb_hit; |
| req.tlb_index := tlb_req_index; |
| req.tlb_way := tlb_hit_way; |
| |
| if r0.req.dcbz = '1' then |
| req.data := (others => '0'); |
| elsif r0.d_valid = '1' then |
| req.data := r0.req.data; |
| else |
| req.data := d_in.data; |
| end if; |
| |
| if r0.req.dcbz = '1' or (r0.req.load = '1' and r0.req.nc = '0' and perm_attr.nocache = '0') then |
| req.byte_sel := (others => '1'); |
| else |
| req.byte_sel := r0.req.byte_sel; |
| end if; |
| req.hit_way := req_hit_way; |
| req.hit_ways := req_hit_ways; |
| req.is_hit := req_is_hit; |
| req.hit_reload := req_hit_reload and req_op_load_miss; |
| req.same_page := req_same_page; |
|
|
| |
| |
| |
| |
| if req_go = '1' then |
| r1.req <= req; |
| r1.full <= req_op_load_miss or req_op_store or req_op_flush or req_op_sync; |
| end if; |
| end if; |
| if m_in.tlbld = '1' or m_in.tlbie = '1' then |
| r1.ls_tlb_hit <= '0'; |
| end if; |
|
|
| |
| r1.hit_way <= req_hit_way; |
| r1.hit_index <= req_index; |
| |
| if r1.choose_victim = '1' then |
| r1.victim_way <= plru_victim; |
| report "victim way:" & to_hstring(plru_victim); |
| end if; |
| if req_op_load_miss = '1' or (r0.req.dcbz = '1' and req_is_hit = '0') then |
| r1.choose_victim <= '1'; |
| end if; |
| if req_go = '1' then |
| r1.prev_hit <= req_is_hit; |
| r1.prev_way <= req_hit_way; |
| r1.prev_hit_ways <= req_hit_ways; |
| r1.prev_hit_reload <= req_hit_reload; |
| end if; |
|
|
| |
| acks := r1.acks_pending; |
| if r1.wb.cyc = '0' then |
| acks := to_unsigned(0, 3); |
| elsif r1.wb.stb = '1' and r1.stalled = '0' and r1.dec_acks = '0' then |
| acks := acks + 1; |
| elsif (r1.wb.stb = '0' or r1.stalled = '1') and r1.dec_acks = '1' then |
| acks := acks - 1; |
| end if; |
| r1.acks_pending <= acks; |
| r1.stalled <= wishbone_in.stall and r1.wb.cyc; |
| r1.dec_acks <= wishbone_in.ack and r1.wb.cyc; |
|
|
| |
| case r1.state is |
| when IDLE => |
| r1.wb.adr <= addr_to_wb(req.real_addr); |
| r1.wb.sel <= req.byte_sel; |
| r1.wb.dat <= req.data; |
| r1.dcbz <= req.dcbz and req.valid; |
| r1.atomic_more <= not req.last_dw; |
|
|
| |
| r1.store_index <= get_index(req.real_addr); |
| r1.store_row <= get_row(req.real_addr); |
| r1.end_row_ix <= get_row_of_line(get_row(req.real_addr)) - 1; |
| r1.reload_tag <= get_tag(req.real_addr); |
| r1.req.hit_reload <= '1'; |
| r1.ls_tlb_hit <= req.tlb_hit and not req.mmu_req; |
| r1.tlb_acc_index <= req.tlb_index; |
| r1.tlb_acc_way <= req.tlb_way; |
|
|
| if req.is_hit = '1' then |
| r1.store_way <= req.hit_way; |
| r1.store_ways <= req.hit_ways; |
| end if; |
|
|
| |
| for i in 0 to ROW_PER_LINE - 1 loop |
| r1.rows_valid(i) <= '0'; |
| end loop; |
|
|
| if req.op_lmiss = '1' then |
| |
| |
| if req.nc = '0' then |
| report "cache miss real addr:" & to_hstring(req.real_addr) & |
| " idx:" & to_hstring(get_index(req.real_addr)) & |
| " tag:" & to_hstring(get_tag(req.real_addr)); |
| end if; |
|
|
| |
| r1.wb.we <= '0'; |
| r1.wb.cyc <= '1'; |
| r1.wb.stb <= '1'; |
|
|
| if req.nc = '0' then |
| |
| r1.state <= RELOAD_WAIT_ACK; |
| r1.reloading <= '1'; |
| r1.write_tag <= '1'; |
| ev.load_miss <= '1'; |
| else |
| r1.state <= NC_LOAD_WAIT_ACK; |
| end if; |
| end if; |
|
|
| if req.op_store = '1' then |
| if req.reserve = '1' then |
| if reservation.valid = '0' or kill_rsrv = '1' then |
| |
| r1.stcx_fail <= '1'; |
| r1.full <= '0'; |
| r1.ls_valid <= '1'; |
| else |
| r1.wb.we <= '1'; |
| r1.wb.cyc <= '1'; |
| |
| |
| r1.state <= DO_STCX; |
| end if; |
| elsif req.dcbz = '0' then |
| r1.state <= STORE_WAIT_ACK; |
| r1.full <= '0'; |
| r1.slow_valid <= '1'; |
| if req.mmu_req = '0' then |
| r1.ls_valid <= '1'; |
| else |
| r1.mmu_done <= '1'; |
| end if; |
| r1.write_bram <= req.is_hit; |
| r1.wb.we <= '1'; |
| r1.wb.cyc <= '1'; |
| r1.wb.stb <= '1'; |
| else |
| |
| |
| r1.state <= RELOAD_WAIT_ACK; |
| r1.reloading <= not req.nc; |
| r1.write_tag <= not req.nc and not req.is_hit; |
| r1.wb.we <= '1'; |
| r1.wb.cyc <= '1'; |
| r1.wb.stb <= '1'; |
| end if; |
| ev.store_miss <= not req.is_hit; |
| end if; |
|
|
| if req.op_flush = '1' then |
| r1.state <= FLUSH_CYCLE; |
| end if; |
|
|
| if req.op_sync = '1' then |
| |
| |
| r1.full <= '0'; |
| r1.slow_valid <= '1'; |
| r1.ls_valid <= '1'; |
| end if; |
|
|
| when RELOAD_WAIT_ACK => |
| |
| if wishbone_in.stall = '0' and r1.wb.stb = '1' then |
| |
| assert not is_X(r1.wb.adr); |
| assert not is_X(r1.end_row_ix); |
| if is_last_row_wb_addr(r1.wb.adr, r1.end_row_ix) then |
| r1.wb.stb <= '0'; |
| end if; |
|
|
| |
| r1.wb.adr <= next_row_wb_addr(r1.wb.adr); |
| end if; |
|
|
| |
| |
| if r1.full = '1' and r1.req.touch = '1' and r1.req.hit_reload = '1' and |
| r1.write_tag = '0' then |
| r1.full <= '0'; |
| r1.slow_valid <= '1'; |
| r1.ls_valid <= '1'; |
| end if; |
|
|
| |
| if wishbone_in.ack = '1' then |
| r1.rows_valid(to_integer(r1.store_row(ROW_LINEBITS-1 downto 0))) <= '1'; |
| |
| |
| |
| |
| |
| |
| if r1.full = '1' then |
| assert not is_X(r1.store_row); |
| assert not is_X(r1.req.real_addr); |
| end if; |
| |
| |
| |
| if req.hit_reload = '1' and |
| get_row_of_line(r1.store_row) = get_row_of_line(get_row(req.real_addr)) then |
| r1.full <= '0'; |
| r1.slow_valid <= '1'; |
| if req.mmu_req = '0' then |
| r1.ls_valid <= '1'; |
| else |
| r1.mmu_done <= '1'; |
| end if; |
| |
| if r1.req.reserve = '1' and r1.req.first_dw = '1' then |
| reservation.valid <= '1'; |
| end if; |
| end if; |
|
|
| |
| assert not is_X(r1.store_row); |
| assert not is_X(r1.end_row_ix); |
| if is_last_row(r1.store_row, r1.end_row_ix) then |
| |
| r1.wb.cyc <= '0'; |
|
|
| |
| assert not is_X(r1.store_index); |
| assert not is_X(r1.store_way); |
| r1.reloading <= '0'; |
|
|
| ev.dcache_refill <= not r1.dcbz; |
| |
| |
| r1.prev_hit <= r1.prev_hit_reload; |
| r1.prev_way <= r1.store_way; |
| r1.prev_hit_ways <= r1.store_ways; |
| r1.state <= IDLE; |
| end if; |
|
|
| |
| r1.store_row <= next_row(r1.store_row); |
| end if; |
|
|
| when STORE_WAIT_ACK => |
| stbs_done := r1.wb.stb = '0'; |
| |
| if wishbone_in.stall = '0' then |
| |
| |
| |
| |
| |
| |
| if req.valid = '1' then |
| r1.wb.adr(TLB_LG_PGSZ - ROW_OFF_BITS - 1 downto 0) <= |
| req.real_addr(TLB_LG_PGSZ - 1 downto ROW_OFF_BITS); |
| r1.wb.dat <= req.data; |
| r1.wb.sel <= req.byte_sel; |
| end if; |
| assert not is_X(acks); |
| r1.wb.stb <= '0'; |
| if req.op_store = '1' and req.same_page = '1' and req.dcbz = '0' and |
| (req.reserve = '0' or r1.atomic_more = '1') then |
| if acks < 7 then |
| r1.wb.stb <= '1'; |
| stbs_done := false; |
| r1.store_way <= req.hit_way; |
| r1.store_ways <= req.hit_ways; |
| r1.store_row <= get_row(req.real_addr); |
| r1.write_bram <= req.is_hit; |
| r1.atomic_more <= not req.last_dw; |
| r1.full <= '0'; |
| r1.slow_valid <= '1'; |
| |
| r1.ls_valid <= '1'; |
| end if; |
| else |
| stbs_done := true; |
| if req.valid = '1' then |
| r1.atomic_more <= '0'; |
| end if; |
| end if; |
| end if; |
|
|
| |
| if stbs_done and r1.atomic_more = '0' then |
| assert not is_X(acks); |
| if acks = 0 or (wishbone_in.ack = '1' and acks = 1) then |
| r1.state <= IDLE; |
| r1.wb.cyc <= '0'; |
| r1.wb.stb <= '0'; |
| end if; |
| end if; |
|
|
| when NC_LOAD_WAIT_ACK => |
| |
| if wishbone_in.stall = '0' then |
| r1.wb.stb <= '0'; |
| end if; |
|
|
| |
| if wishbone_in.ack = '1' then |
| r1.state <= IDLE; |
| r1.full <= '0'; |
| r1.slow_valid <= '1'; |
| if r1.mmu_req = '0' then |
| r1.ls_valid <= '1'; |
| else |
| r1.mmu_done <= '1'; |
| end if; |
| r1.wb.cyc <= '0'; |
| r1.wb.stb <= '0'; |
| end if; |
|
|
| when DO_STCX => |
| if reservation.valid = '0' or kill_rsrv = '1' or |
| r1.req.real_addr(REAL_ADDR_BITS - 1 downto LINE_OFF_BITS) /= reservation.addr then |
| |
| |
| r1.stcx_fail <= '1'; |
| r1.full <= '0'; |
| r1.ls_valid <= '1'; |
| r1.state <= IDLE; |
| r1.wb.cyc <= '0'; |
| reservation.valid <= '0'; |
| |
| |
| r1.state <= IDLE; |
| elsif wishbone_in.stall = '0' then |
| |
| |
| r1.write_bram <= r1.req.is_hit; |
| r1.wb.stb <= '1'; |
| r1.full <= '0'; |
| r1.slow_valid <= '1'; |
| r1.ls_valid <= '1'; |
| reservation.valid <= '0'; |
| |
| |
| |
| |
| |
| r1.state <= STORE_WAIT_ACK; |
| end if; |
|
|
| when FLUSH_CYCLE => |
| cache_valids(to_integer(r1.store_index))(to_integer(r1.store_way)) <= '0'; |
| r1.full <= '0'; |
| r1.slow_valid <= '1'; |
| r1.ls_valid <= '1'; |
| r1.state <= IDLE; |
| end case; |
| end if; |
| end if; |
| end process; |
|
|
| dc_log: if LOG_LENGTH > 0 generate |
| signal log_data : std_ulogic_vector(19 downto 0); |
| begin |
| dcache_log: process(clk) |
| begin |
| if rising_edge(clk) then |
| log_data <= r1.wb.adr(2 downto 0) & |
| wishbone_in.stall & |
| wishbone_in.ack & |
| r1.wb.stb & r1.wb.cyc & |
| d_out.error & |
| d_out.valid & |
| req_op_load_miss & req_op_store & req_hit_reload & |
| stall_out & |
| std_ulogic_vector(resize(tlb_hit_way, 3)) & |
| valid_ra & |
| std_ulogic_vector(to_unsigned(state_t'pos(r1.state), 3)); |
| end if; |
| end process; |
| log_out <= log_data; |
| end generate; |
| end; |
|
|