Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

140 строки
5.5KB

  1. ---------------------------------------------------------------------
  2. -- TITLE: Pipeline
  3. -- AUTHOR: Steve Rhoads (rhoadss@yahoo.com)
  4. -- DATE CREATED: 6/24/02
  5. -- FILENAME: pipeline.vhd
  6. -- PROJECT: Plasma CPU core
  7. -- COPYRIGHT: Software placed into the public domain by the author.
  8. -- Software 'as is' without warranty. Author liable for nothing.
  9. -- DESCRIPTION:
  10. -- Controls the three stage pipeline by delaying the signals:
  11. -- a_bus, b_bus, alu/shift/mult_func, c_source, and rs_index.
  12. ---------------------------------------------------------------------
  13. library ieee;
  14. use ieee.std_logic_1164.all;
  15. use work.mlite_pack.all;
  16. --Note: sigD <= sig after rising_edge(clk)
  17. entity pipeline is
  18. port(clk : in std_logic;
  19. reset : in std_logic;
  20. a_bus : in std_logic_vector(31 downto 0);
  21. a_busD : out std_logic_vector(31 downto 0);
  22. b_bus : in std_logic_vector(31 downto 0);
  23. b_busD : out std_logic_vector(31 downto 0);
  24. alu_func : in alu_function_type;
  25. alu_funcD : out alu_function_type;
  26. shift_func : in shift_function_type;
  27. shift_funcD : out shift_function_type;
  28. mult_func : in mult_function_type;
  29. mult_funcD : out mult_function_type;
  30. reg_dest : in std_logic_vector(31 downto 0);
  31. reg_destD : out std_logic_vector(31 downto 0);
  32. rd_index : in std_logic_vector(5 downto 0);
  33. rd_indexD : out std_logic_vector(5 downto 0);
  34. rs_index : in std_logic_vector(5 downto 0);
  35. rt_index : in std_logic_vector(5 downto 0);
  36. pc_source : in pc_source_type;
  37. mem_source : in mem_source_type;
  38. a_source : in a_source_type;
  39. b_source : in b_source_type;
  40. c_source : in c_source_type;
  41. c_bus : in std_logic_vector(31 downto 0);
  42. pause_any : in std_logic;
  43. pause_pipeline : out std_logic);
  44. end; --entity pipeline
  45. architecture logic of pipeline is
  46. signal rd_index_reg : std_logic_vector(5 downto 0);
  47. signal reg_dest_reg : std_logic_vector(31 downto 0);
  48. signal reg_dest_delay : std_logic_vector(31 downto 0);
  49. signal c_source_reg : c_source_type;
  50. signal pause_enable_reg : std_logic;
  51. begin
  52. --When operating in three stage pipeline mode, the following signals
  53. --are delayed by one clock cycle: a_bus, b_bus, alu/shift/mult_func,
  54. --c_source, and rd_index.
  55. pipeline3: process(clk, reset, a_bus, b_bus, alu_func, shift_func, mult_func,
  56. rd_index, rd_index_reg, pause_any, pause_enable_reg,
  57. rs_index, rt_index,
  58. pc_source, mem_source, a_source, b_source, c_source, c_source_reg,
  59. reg_dest, reg_dest_reg, reg_dest_delay, c_bus)
  60. variable pause_mult_clock : std_logic;
  61. variable freeze_pipeline : std_logic;
  62. begin
  63. if (pc_source /= FROM_INC4 and pc_source /= FROM_OPCODE25_0) or
  64. mem_source /= MEM_FETCH or
  65. (mult_func = MULT_READ_LO or mult_func = MULT_READ_HI) then
  66. pause_mult_clock := '1';
  67. else
  68. pause_mult_clock := '0';
  69. end if;
  70. freeze_pipeline := not (pause_mult_clock and pause_enable_reg) and pause_any;
  71. pause_pipeline <= pause_mult_clock and pause_enable_reg;
  72. rd_indexD <= rd_index_reg;
  73. -- The value written back into the register bank, signal reg_dest is tricky.
  74. -- If reg_dest comes from the ALU via the signal c_bus, it is already delayed
  75. -- into stage #3, because a_busD and b_busD are delayed. If reg_dest comes from
  76. -- c_memory, pc_current, or pc_plus4 then reg_dest hasn't yet been delayed into
  77. -- stage #3.
  78. -- Instead of delaying c_memory, pc_current, and pc_plus4, these signals
  79. -- are multiplexed into reg_dest which is then delayed. The decision to use
  80. -- the already delayed c_bus or the delayed value of reg_dest (reg_dest_reg) is
  81. -- based on a delayed value of c_source (c_source_reg).
  82. if c_source_reg = C_FROM_ALU then
  83. reg_dest_delay <= c_bus; --delayed by 1 clock cycle via a_busD & b_busD
  84. else
  85. reg_dest_delay <= reg_dest_reg; --need to delay 1 clock cycle from reg_dest
  86. end if;
  87. reg_destD <= reg_dest_delay;
  88. if reset = '1' then
  89. a_busD <= ZERO;
  90. b_busD <= ZERO;
  91. alu_funcD <= ALU_NOTHING;
  92. shift_funcD <= SHIFT_NOTHING;
  93. mult_funcD <= MULT_NOTHING;
  94. reg_dest_reg <= ZERO;
  95. c_source_reg <= "000";
  96. rd_index_reg <= "000000";
  97. pause_enable_reg <= '0';
  98. elsif rising_edge(clk) then
  99. if freeze_pipeline = '0' then
  100. if (rs_index = "000000" or rs_index /= rd_index_reg) or
  101. (a_source /= A_FROM_REG_SOURCE or pause_enable_reg = '0') then
  102. a_busD <= a_bus;
  103. else
  104. a_busD <= reg_dest_delay; --rs from previous operation (bypass stage)
  105. end if;
  106. if (rt_index = "000000" or rt_index /= rd_index_reg) or
  107. (b_source /= B_FROM_REG_TARGET or pause_enable_reg = '0') then
  108. b_busD <= b_bus;
  109. else
  110. b_busD <= reg_dest_delay; --rt from previous operation
  111. end if;
  112. alu_funcD <= alu_func;
  113. shift_funcD <= shift_func;
  114. mult_funcD <= mult_func;
  115. reg_dest_reg <= reg_dest;
  116. c_source_reg <= c_source;
  117. rd_index_reg <= rd_index;
  118. end if;
  119. if pause_enable_reg = '0' and pause_any = '0' then
  120. pause_enable_reg <= '1'; --enable pause_pipeline
  121. elsif pause_mult_clock = '1' then
  122. pause_enable_reg <= '0'; --disable pause_pipeline
  123. end if;
  124. end if;
  125. end process; --pipeline3
  126. end; --logic