2017-04-24 19:21:18 +00:00
|
|
|
----------------------------------------------------------------------------------
|
|
|
|
-- Engineer: David Banks
|
|
|
|
--
|
2018-07-15 14:36:02 +00:00
|
|
|
-- Create Date: 15/7/2018
|
2017-04-24 19:21:18 +00:00
|
|
|
-- Module Name: RGBtoHDMI CPLD
|
|
|
|
-- Project Name: RGBtoHDMI
|
|
|
|
-- Target Devices: XC9572XL
|
|
|
|
--
|
2018-07-15 14:36:02 +00:00
|
|
|
-- Version: 1.0
|
2017-04-24 19:21:18 +00:00
|
|
|
--
|
|
|
|
----------------------------------------------------------------------------------
|
|
|
|
library ieee;
|
|
|
|
use ieee.std_logic_1164.all;
|
|
|
|
use ieee.numeric_std.all;
|
|
|
|
|
|
|
|
entity RGBtoHDMI is
|
|
|
|
Port (
|
|
|
|
-- From Beeb RGB Connector
|
2018-06-05 16:52:42 +00:00
|
|
|
R0: in std_logic;
|
|
|
|
G0: in std_logic;
|
|
|
|
B0: in std_logic;
|
|
|
|
R1: in std_logic;
|
|
|
|
G1: in std_logic;
|
|
|
|
B1: in std_logic;
|
2017-04-26 17:15:47 +00:00
|
|
|
S: in std_logic;
|
2017-04-24 19:21:18 +00:00
|
|
|
|
|
|
|
-- From Pi
|
|
|
|
clk: in std_logic;
|
2017-04-26 21:19:41 +00:00
|
|
|
mode7: in std_logic;
|
2018-06-12 11:39:06 +00:00
|
|
|
mux: in std_logic;
|
2017-05-24 12:20:06 +00:00
|
|
|
sp_clk: in std_logic;
|
2018-06-06 16:51:11 +00:00
|
|
|
sp_clken: in std_logic;
|
2017-05-24 12:20:06 +00:00
|
|
|
sp_data: in std_logic;
|
2017-04-24 19:21:18 +00:00
|
|
|
|
|
|
|
-- To PI GPIO
|
|
|
|
quad: out std_logic_vector(11 downto 0);
|
|
|
|
psync: out std_logic;
|
2017-04-26 17:15:47 +00:00
|
|
|
csync: out std_logic;
|
2017-04-24 19:21:18 +00:00
|
|
|
|
2018-06-05 16:52:42 +00:00
|
|
|
-- User interface
|
2018-06-09 12:24:47 +00:00
|
|
|
version: in std_logic;
|
|
|
|
SW1: in std_logic; -- currently unused
|
2018-06-05 17:58:11 +00:00
|
|
|
SW2: in std_logic; -- currently unused
|
|
|
|
SW3: in std_logic; -- currently unused
|
2018-06-06 16:51:11 +00:00
|
|
|
link: in std_logic; -- currently unused
|
2018-06-12 11:39:06 +00:00
|
|
|
spare: in std_logic; -- currently unused
|
|
|
|
LED1: in std_logic -- allow it to be driven from the Pi
|
2017-04-24 19:21:18 +00:00
|
|
|
);
|
|
|
|
end RGBtoHDMI;
|
|
|
|
|
|
|
|
architecture Behavorial of RGBtoHDMI is
|
|
|
|
|
2018-06-09 12:24:47 +00:00
|
|
|
-- Version number: Design_Major_Minor
|
|
|
|
-- Design: 0 = Normal CPLD, 1 = Alternative CPLD
|
2018-10-15 15:19:23 +00:00
|
|
|
constant VERSION_NUM : std_logic_vector(11 downto 0) := x"011";
|
2018-07-15 14:36:02 +00:00
|
|
|
|
|
|
|
-- Measured values (leading edge of HS to active display)
|
|
|
|
-- Mode 0: 15.478us
|
|
|
|
-- Mode 1: 15.540us ( +1 16MHz cycles / +6 96MHz cycles)
|
|
|
|
-- Mode 2: 15.665us ( +3 16MHz cycles / +18 96MHz cycles)
|
|
|
|
-- Mode 3: 15.481us
|
|
|
|
-- Mode 4: 16.040us ( +9 16MHz cycles / +54 96MHz cycles)
|
|
|
|
-- Mode 5: 16.165us (+11 16MHz cycles / +66 96MHz cycles)
|
|
|
|
-- Mode 6: 16.044us ( +9 16MHz cycles / +54 96MHz cycles)
|
|
|
|
-- Mode 7: 17.084us
|
2018-06-09 19:41:06 +00:00
|
|
|
--
|
|
|
|
-- Mode 0-6 FB is 672px wide (cf 640 active pixels)
|
2018-07-15 10:35:30 +00:00
|
|
|
-- (ideally) 16 extra "16MHz" pixels at each side
|
|
|
|
-- 96 extra "96MHz" cycles at each side
|
|
|
|
-- i.e. 1us extra at each side
|
2018-07-15 14:36:02 +00:00
|
|
|
-- => start samping at 14.50us
|
|
|
|
-- == 96 * 14.50 == 1392 (must be a multiple of 8)
|
2018-06-09 19:41:06 +00:00
|
|
|
--
|
|
|
|
-- Mode 7 FB is is 504px wide (cf 480 active pixels)
|
2018-07-15 10:35:30 +00:00
|
|
|
-- (ideally) 12 extra pixels "12Mhz" pixels at each side
|
2018-06-09 19:41:06 +00:00
|
|
|
-- 1us extra at each side
|
2018-07-15 14:36:02 +00:00
|
|
|
-- start samping at 16.25us
|
|
|
|
-- == 96 * 16.25 == 1560 (must be a multiple of 8)
|
2018-06-09 19:41:06 +00:00
|
|
|
|
2017-04-26 21:19:41 +00:00
|
|
|
-- For Modes 0..6
|
2018-07-15 14:36:02 +00:00
|
|
|
constant default_offset_A : unsigned(11 downto 0) := to_unsigned(4096 - 1392, 12);
|
2018-06-09 19:41:06 +00:00
|
|
|
-- Offset B adds half a 16MHz pixel
|
2018-07-15 14:36:02 +00:00
|
|
|
constant default_offset_B : unsigned(11 downto 0) := to_unsigned(4096 - 1392 + 3, 12);
|
2017-04-26 17:15:47 +00:00
|
|
|
|
2017-05-23 12:03:27 +00:00
|
|
|
-- For Mode 7
|
2018-07-15 14:36:02 +00:00
|
|
|
constant mode7_offset_A : unsigned(11 downto 0) := to_unsigned(4096 - 1560, 12);
|
2018-06-09 19:41:06 +00:00
|
|
|
-- Offset B adds half a 12MHz pixel
|
2018-07-15 14:36:02 +00:00
|
|
|
constant mode7_offset_B : unsigned(11 downto 0) := to_unsigned(4096 - 1560 + 4, 12);
|
2017-05-24 12:20:06 +00:00
|
|
|
|
|
|
|
-- Sampling points
|
2018-06-09 19:41:06 +00:00
|
|
|
constant INIT_SAMPLING_POINTS : std_logic_vector(18 downto 0) := "0011011011011011011";
|
2017-04-25 17:24:49 +00:00
|
|
|
|
2018-06-09 10:33:01 +00:00
|
|
|
signal shift_R : std_logic_vector(3 downto 0);
|
|
|
|
signal shift_G : std_logic_vector(3 downto 0);
|
|
|
|
signal shift_B : std_logic_vector(3 downto 0);
|
2017-04-24 19:21:18 +00:00
|
|
|
|
2018-06-12 11:39:06 +00:00
|
|
|
signal csync1 : std_logic;
|
2018-10-15 15:19:23 +00:00
|
|
|
|
|
|
|
signal csync_counter : unsigned(3 downto 0);
|
2017-04-24 19:21:18 +00:00
|
|
|
|
2017-05-24 12:20:06 +00:00
|
|
|
-- The sampling counter runs at 96MHz
|
|
|
|
-- - In modes 0..6 it is 6x the pixel clock
|
|
|
|
-- - In mode 7 it is 8x the pixel clock
|
2017-04-24 19:21:18 +00:00
|
|
|
--
|
|
|
|
-- It serves several purposes:
|
|
|
|
-- 1. Counts the 12us between the rising edge of nCSYNC and the first pixel
|
2017-05-24 12:20:06 +00:00
|
|
|
-- 2. Counts within each pixel (bits 0, 1, 2)
|
|
|
|
-- 3. Counts counts pixels within a quad pixel (bits 3 and 4)
|
|
|
|
-- 4. Handles double buffering of alternative quad pixels (bit 5)
|
2017-04-24 19:21:18 +00:00
|
|
|
--
|
|
|
|
-- At the moment we don't count pixels with the line, the Pi does that
|
2018-06-09 10:33:01 +00:00
|
|
|
signal counter : unsigned(11 downto 0);
|
2017-04-24 19:21:18 +00:00
|
|
|
|
2017-05-24 12:20:06 +00:00
|
|
|
-- Sample point register;
|
|
|
|
--
|
|
|
|
-- In Mode 7 each pixel lasts 8 clocks (96MHz / 12MHz). The original
|
|
|
|
-- pixel clock is a regenerated 6Mhz clock, and both edges are used.
|
|
|
|
-- Due to the way it is generated, there are three distinct phases,
|
2018-06-09 10:33:01 +00:00
|
|
|
-- each with different rising/falling edge speeds, hence six sampling
|
|
|
|
-- points are used.
|
|
|
|
--
|
|
|
|
-- In Modes 0..6 each pixel lasts 6 clocks (96MHz / 16MHz). The original
|
|
|
|
-- pixel clock is a clean 16Mhz clock, so only one sample point is needed.
|
|
|
|
-- To achieve this, all six values are set to be the same. This minimises
|
|
|
|
-- the logic in the CPLD.
|
2018-06-09 19:41:06 +00:00
|
|
|
signal sp_reg : std_logic_vector(18 downto 0) := INIT_SAMPLING_POINTS;
|
2017-05-24 12:20:06 +00:00
|
|
|
|
2018-06-09 10:33:01 +00:00
|
|
|
-- Break out of sp_reg
|
2018-06-09 19:41:06 +00:00
|
|
|
signal half : std_logic;
|
2018-06-09 10:33:01 +00:00
|
|
|
signal offset_A : std_logic_vector(2 downto 0);
|
|
|
|
signal offset_B : std_logic_vector(2 downto 0);
|
|
|
|
signal offset_C : std_logic_vector(2 downto 0);
|
|
|
|
signal offset_D : std_logic_vector(2 downto 0);
|
|
|
|
signal offset_E : std_logic_vector(2 downto 0);
|
|
|
|
signal offset_F : std_logic_vector(2 downto 0);
|
2017-05-24 12:20:06 +00:00
|
|
|
|
2018-06-09 10:33:01 +00:00
|
|
|
-- Pipelined offset mux output
|
|
|
|
signal offset : std_logic_vector(2 downto 0);
|
2018-06-06 21:25:55 +00:00
|
|
|
|
2018-06-09 10:33:01 +00:00
|
|
|
-- Index to cycle through offsets A..F
|
|
|
|
signal index : std_logic_vector(2 downto 0);
|
2018-06-06 21:25:55 +00:00
|
|
|
|
2018-06-09 10:33:01 +00:00
|
|
|
-- Sample pixel on next clock; pipelined to reduce the number of product terms
|
|
|
|
signal sample : std_logic;
|
2018-06-06 21:25:55 +00:00
|
|
|
|
2018-06-09 10:33:01 +00:00
|
|
|
-- RGB Input Mux
|
|
|
|
signal R : std_logic;
|
|
|
|
signal G : std_logic;
|
|
|
|
signal B : std_logic;
|
2017-04-24 19:21:18 +00:00
|
|
|
|
2018-06-05 16:52:42 +00:00
|
|
|
begin
|
2017-04-24 19:21:18 +00:00
|
|
|
|
2018-06-12 11:39:06 +00:00
|
|
|
R <= R1 when mux = '1' else R0;
|
|
|
|
G <= G1 when mux = '1' else G0;
|
|
|
|
B <= B1 when mux = '1' else B0;
|
2018-06-06 13:28:12 +00:00
|
|
|
|
2018-06-09 10:33:01 +00:00
|
|
|
offset_A <= sp_reg(2 downto 0);
|
|
|
|
offset_B <= sp_reg(5 downto 3);
|
|
|
|
offset_C <= sp_reg(8 downto 6);
|
|
|
|
offset_D <= sp_reg(11 downto 9);
|
|
|
|
offset_E <= sp_reg(14 downto 12);
|
|
|
|
offset_F <= sp_reg(17 downto 15);
|
2018-06-09 19:41:06 +00:00
|
|
|
half <= sp_reg(18);
|
2017-05-24 12:20:06 +00:00
|
|
|
|
|
|
|
-- Shift the bits in LSB first
|
2018-06-05 17:58:11 +00:00
|
|
|
process(sp_clk, SW1)
|
2017-05-24 12:20:06 +00:00
|
|
|
begin
|
2018-06-06 13:48:51 +00:00
|
|
|
if rising_edge(sp_clk) then
|
2018-06-06 16:51:11 +00:00
|
|
|
if sp_clken = '1' then
|
|
|
|
sp_reg <= sp_data & sp_reg(sp_reg'left downto sp_reg'right + 1);
|
|
|
|
end if;
|
2017-05-24 12:20:06 +00:00
|
|
|
end if;
|
|
|
|
end process;
|
|
|
|
|
2017-04-24 19:21:18 +00:00
|
|
|
process(clk)
|
|
|
|
begin
|
|
|
|
if rising_edge(clk) then
|
2018-06-09 10:33:01 +00:00
|
|
|
|
2017-04-26 17:15:47 +00:00
|
|
|
-- synchronize CSYNC to the sampling clock
|
2018-06-12 11:39:06 +00:00
|
|
|
csync1 <= S;
|
2018-10-15 15:19:23 +00:00
|
|
|
|
|
|
|
-- De-glitch CSYNC
|
|
|
|
if csync1 = '1' then
|
|
|
|
csync_counter <= to_unsigned(0, csync_counter'length);
|
|
|
|
elsif csync_counter /= 15 then
|
|
|
|
csync_counter <= csync_counter + 1;
|
|
|
|
end if;
|
2017-04-24 19:21:18 +00:00
|
|
|
|
2018-06-07 16:04:13 +00:00
|
|
|
-- Counter is used to find sampling point for first pixel
|
2018-10-15 15:19:23 +00:00
|
|
|
if csync_counter = 14 then
|
2017-04-26 21:19:41 +00:00
|
|
|
if mode7 = '1' then
|
2018-06-09 19:41:06 +00:00
|
|
|
if half = '1' then
|
|
|
|
counter <= mode7_offset_A;
|
|
|
|
else
|
|
|
|
counter <= mode7_offset_B;
|
|
|
|
end if;
|
2017-04-26 21:19:41 +00:00
|
|
|
else
|
2018-06-09 19:41:06 +00:00
|
|
|
if half = '1' then
|
|
|
|
counter <= default_offset_A;
|
|
|
|
else
|
|
|
|
counter <= default_offset_B;
|
|
|
|
end if;
|
2017-04-26 21:19:41 +00:00
|
|
|
end if;
|
2018-06-07 16:13:33 +00:00
|
|
|
elsif counter(11) = '1' then
|
|
|
|
counter <= counter + 1;
|
|
|
|
elsif mode7 = '1' or counter(2 downto 0) /= 5 then
|
2018-06-09 10:33:01 +00:00
|
|
|
counter(5 downto 0) <= counter(5 downto 0) + 1;
|
2017-04-24 19:21:18 +00:00
|
|
|
else
|
2018-06-09 10:33:01 +00:00
|
|
|
counter(5 downto 0) <= counter(5 downto 0) + 3;
|
2018-06-07 16:04:13 +00:00
|
|
|
end if;
|
2017-05-23 12:03:27 +00:00
|
|
|
|
2018-06-09 10:33:01 +00:00
|
|
|
-- Sample point offset index
|
2018-06-22 10:33:41 +00:00
|
|
|
if counter(11) = '1' then
|
2018-06-09 10:33:01 +00:00
|
|
|
index <= "000";
|
|
|
|
else
|
|
|
|
-- so index offset changes at the same time counter wraps 7->0
|
|
|
|
if counter(2 downto 0) = 6 then
|
|
|
|
case index is
|
|
|
|
when "000" =>
|
|
|
|
index <= "001";
|
|
|
|
when "001" =>
|
|
|
|
index <= "010";
|
|
|
|
when "010" =>
|
|
|
|
index <= "011";
|
|
|
|
when "011" =>
|
|
|
|
index <= "100";
|
|
|
|
when "100" =>
|
|
|
|
index <= "101";
|
|
|
|
when others =>
|
|
|
|
index <= "000";
|
|
|
|
end case;
|
2017-04-24 19:21:18 +00:00
|
|
|
end if;
|
2018-06-07 16:04:13 +00:00
|
|
|
end if;
|
|
|
|
|
2018-06-09 10:33:01 +00:00
|
|
|
-- Sample point offset
|
|
|
|
case index is
|
|
|
|
when "000" =>
|
|
|
|
offset <= offset_B;
|
|
|
|
when "001" =>
|
|
|
|
offset <= offset_C;
|
|
|
|
when "010" =>
|
|
|
|
offset <= offset_D;
|
|
|
|
when "011" =>
|
|
|
|
offset <= offset_E;
|
|
|
|
when "100" =>
|
|
|
|
offset <= offset_F;
|
|
|
|
when others =>
|
|
|
|
offset <= offset_A;
|
|
|
|
end case;
|
|
|
|
|
|
|
|
-- sample/shift control
|
|
|
|
if counter(11) = '0' and counter(2 downto 0) = unsigned(offset) then
|
|
|
|
sample <= '1';
|
|
|
|
else
|
|
|
|
sample <= '0';
|
|
|
|
end if;
|
|
|
|
|
|
|
|
-- R Sample/shift register
|
|
|
|
if sample = '1' then
|
|
|
|
shift_R <= R & shift_R(3 downto 1);
|
|
|
|
end if;
|
|
|
|
|
|
|
|
-- G Sample/shift register
|
|
|
|
if sample = '1' then
|
|
|
|
shift_G <= G & shift_G(3 downto 1);
|
|
|
|
end if;
|
|
|
|
|
|
|
|
-- B Sample/shift register
|
|
|
|
if sample = '1' then
|
|
|
|
shift_B <= B & shift_B(3 downto 1);
|
2017-04-24 19:21:18 +00:00
|
|
|
end if;
|
2018-06-07 16:04:13 +00:00
|
|
|
|
|
|
|
-- Output quad register
|
2018-06-09 12:24:47 +00:00
|
|
|
if version = '0' then
|
|
|
|
quad <= VERSION_NUM;
|
2018-06-09 19:41:06 +00:00
|
|
|
psync <= '0';
|
2018-06-09 12:24:47 +00:00
|
|
|
elsif counter(11) = '0' then
|
2018-06-09 10:33:01 +00:00
|
|
|
if counter(4 downto 0) = "00000" then
|
|
|
|
quad(11) <= shift_B(3);
|
|
|
|
quad(10) <= shift_G(3);
|
|
|
|
quad(9) <= shift_R(3);
|
|
|
|
quad(8) <= shift_B(2);
|
|
|
|
quad(7) <= shift_G(2);
|
|
|
|
quad(6) <= shift_R(2);
|
|
|
|
quad(5) <= shift_B(1);
|
|
|
|
quad(4) <= shift_G(1);
|
|
|
|
quad(3) <= shift_R(1);
|
|
|
|
quad(2) <= shift_B(0);
|
|
|
|
quad(1) <= shift_G(0);
|
|
|
|
quad(0) <= shift_R(0);
|
|
|
|
psync <= counter(5);
|
2018-06-07 16:04:13 +00:00
|
|
|
end if;
|
|
|
|
else
|
2018-06-09 10:33:01 +00:00
|
|
|
quad <= (others => '0');
|
|
|
|
psync <= '0';
|
2018-06-07 16:04:13 +00:00
|
|
|
end if;
|
|
|
|
|
2017-04-24 19:21:18 +00:00
|
|
|
end if;
|
|
|
|
end process;
|
|
|
|
|
2018-06-22 10:33:41 +00:00
|
|
|
csync <= csync1; -- output the registered version to save a macro-cell
|
2017-05-25 14:12:09 +00:00
|
|
|
|
2017-04-24 19:21:18 +00:00
|
|
|
end Behavorial;
|