Project

General

Profile

718 markw
---------------------------------------------------------------------------
-- (c) 2018 mark watson
-- I am happy for anyone to use this for non-commercial use.
-- If my vhdl files are used commercially or otherwise sold,
-- please contact me for explicit permission at scrameta (gmail).
-- This applies for source and binary form and derived works.
---------------------------------------------------------------------------
LIBRARY ieee;
USE ieee.std_logic_1164.all;
use ieee.numeric_std.all;

-- TALK to PCAL6416A io expander over i2c
-- goals:
-- keyboard:
-- set keyboard 6 lines to output
-- drive keyboard 6 lines constantly
-- receive keyboard 2 lines constantly
-- review if we need pull ups on 2 keyboard inputs
-- work out which pins in invert on keyboard
-- pot:
-- need to drive to 0 to reset
-- otherwise need to sit at high impedence input
-- so a single bit input is fed in to do this...


ENTITY iox_glue IS
PORT
(
CLK : IN STD_LOGIC;
RESET_N : IN STD_LOGIC;

ENA : OUT STD_LOGIC;
ADDR : OUT STD_LOGIC_VECTOR(7 downto 1);
RW : OUT STD_LOGIC;
WRITE_DATA : OUT STD_LOGIC_VECTOR(7 downto 0);

BUSY : IN STD_LOGIC;
READ_DATA : IN STD_LOGIC_VECTOR(7 downto 0);
ERROR : IN STD_LOGIC;

726 markw
INT : IN STD_LOGIC;

718 markw
POT_RESET : IN STD_LOGIC;
KEYBOARD_SCAN : IN STD_LOGIC_VECTOR(5 downto 0);
726 markw
KEYBOARD_RESPONSE : OUT STD_LOGIC_VECTOR(1 downto 0);
KEYBOARD_SCAN_ENABLE : OUT STD_LOGIC
718 markw
);
END iox_glue;

ARCHITECTURE vhdl OF iox_glue IS
-- requests to send to i2c
726 markw
signal state_reg : std_logic_vector(3 downto 0);
signal state_next : std_logic_vector(3 downto 0);
constant state_setup1 : std_logic_vector(3 downto 0) := "0000";
constant state_setup2 : std_logic_vector(3 downto 0) := "0001";
constant state_setup3 : std_logic_vector(3 downto 0) := "0010";
constant state_setup4 : std_logic_vector(3 downto 0) := "0011";
constant state_setup5 : std_logic_vector(3 downto 0) := "0100";
constant state_setup6 : std_logic_vector(3 downto 0) := "0101";
718 markw
--addr,$4f (open drain),00000001 (port 0 is open drain, port 1 is driven)
950 markw
--addr,$06 (cfg port0), 00000000
718 markw
--addr,$07 (cfg port1), 00000011 (p1_0,p1_1 are inputs)
--addr,$47 (pull up/down),00000011 (use pull ups/downs)
--addr,$49 (pull up/down),00000011 (use pull up 100ks)
726 markw
constant state_kbscan : std_logic_vector(3 downto 0) := "0110";
constant state_kbread : std_logic_vector(3 downto 0) := "0111";
950 markw
constant state_potreset : std_logic_vector(3 downto 0) := "1000";
728 markw
constant state_setup7 : std_logic_vector(3 downto 0) := "1001";
718 markw
-- address, write input port0(02),val
-- address, read input port1(01),0xff(in)
-- address, write input port1(03),val

signal w2 : std_logic;
signal write1 : std_logic_vector(7 downto 0);
signal write2 : std_logic_vector(7 downto 0);

signal i2c_state_reg : std_logic_vector(1 downto 0);
signal i2c_state_next : std_logic_vector(1 downto 0);
constant i2c_state_part1 : std_logic_vector(1 downto 0) := "00";
constant i2c_state_part2 : std_logic_vector(1 downto 0) := "01";
constant i2c_state_part3 : std_logic_vector(1 downto 0) := "10";

signal op_complete : std_logic;
signal busy_reg : std_logic;
950 markw
signal pot_next : std_logic;
signal pot_reg : std_logic;
718 markw
begin
process(clk,reset_n)
begin
if (reset_n='0') then
state_reg <= state_setup1;
i2c_state_reg <= i2c_state_part1;
busy_reg <= '0';
950 markw
pot_reg <= '0';
718 markw
elsif (clk'event and clk='1') then
state_reg <= state_next;
i2c_state_reg <= i2c_state_next;
busy_reg <= busy;
950 markw
pot_reg <= pot_next;
718 markw
end if;
end process;


process(i2c_state_reg,w2,write1,write2,busy_reg,busy)
variable busy_latched : std_logic;
begin
i2c_state_next <= i2c_state_reg;

ena <= '0';
addr <= "0100000"; -- $40
719 markw
rw <= '1';
718 markw
write_data <= (others=>'0');
op_complete <= '0';

busy_latched := '0';
if(busy_reg = '0' AND busy = '1') then
busy_latched := '1';
end if;

case (i2c_state_reg) is
when i2c_state_part1 =>
ena <= '1';
719 markw
rw <= '0';
718 markw
write_data <= write1;

if (busy_latched='1') then
i2c_state_next <= i2c_state_part2;
end if;
when i2c_state_part2 =>
ena <= '1';
719 markw
rw <= not(w2);
718 markw
write_data <= write2;

if (busy_latched='1') then
i2c_state_next <= i2c_state_part3;
end if;
when i2c_state_part3 =>
ena <= '0';
if (busy='0') then
i2c_state_next <= i2c_state_part1;
op_complete <= '1';
end if;
when others =>
i2c_state_next <= i2c_state_part1;
end case;

end process;


950 markw
process(state_reg,pot_reset,keyboard_scan,busy,busy_reg,read_data,op_complete,pot_reg)
718 markw
begin
state_next <= state_reg;
950 markw
pot_next <= pot_reg;
718 markw
726 markw
keyboard_response <= "11";
keyboard_scan_enable <= '0';

718 markw
w2 <= '0';
write1 <= x"ff";
write2 <= x"ff";

case (state_reg) is
when state_setup1 =>
w2 <= '1';
728 markw
write1 <= x"4f";
718 markw
write2 <= "00000001";
if (op_complete='1') then
state_next <= state_setup2;
end if;
when state_setup2 =>
w2 <= '1';
write1 <= x"06";
950 markw
write2 <= "00000000";
718 markw
if (op_complete='1') then
state_next <= state_setup3;
end if;
when state_setup3 =>
w2 <= '1';
write1 <= x"07";
write2 <= "00000011";
if (op_complete='1') then
state_next <= state_setup4;
end if;
when state_setup4 =>
w2 <= '1';
write1 <= x"47";
write2 <= "00000011";
if (op_complete='1') then
state_next <= state_setup5;
end if;
when state_setup5 =>
w2 <= '1';
write1 <= x"49";
write2 <= "00000011";
if (op_complete='1') then
726 markw
state_next <= state_setup6;
718 markw
end if;
726 markw
when state_setup6 =>
718 markw
w2 <= '1';
726 markw
write1 <= x"4b";
write2 <= "11111100";
if (op_complete='1') then
728 markw
state_next <= state_setup7;
end if;
when state_setup7 =>
w2 <= '1';
write1 <= x"4f";
write2 <= "00000001";
if (op_complete='1') then
726 markw
state_next <= state_kbscan;
end if;
950 markw
when state_potreset =>
w2 <= '1';
write1 <= x"02";
write2 <= not(pot_reset&pot_reset&pot_reset&pot_reset&pot_reset&pot_reset&pot_reset&pot_reset);
pot_next <= pot_reset;
if (op_complete='1') then
state_next <= state_kbscan;
end if;
726 markw
when state_kbread =>
718 markw
w2 <= '0';
write1 <= x"01";
write2 <= x"ff";
if (op_complete='1') then
727 markw
keyboard_response <= read_data(0)&read_data(1);
726 markw
keyboard_scan_enable <= '1';
state_next <= state_kbscan;
718 markw
end if;
726 markw
when state_kbscan =>
718 markw
w2 <= '1';
write1 <= x"03";
-- Some pokey bits are inverted (k2,k1,k0,k5), handle FPGA side
727 markw
--write2 <= not(keyboard_scan(5))&keyboard_scan(4)&keyboard_scan(3)&not(keyboard_scan(0)&keyboard_scan(1)&keyboard_scan(2))&"00";
write2 <= keyboard_scan(5)&keyboard_scan(4)&keyboard_scan(3)&keyboard_scan(0)&keyboard_scan(1)&keyboard_scan(2)&"00";
718 markw
if (op_complete='1') then
950 markw
if(not(pot_reset=pot_reg)) then
state_next <= state_potreset;
else
state_next <= state_kbread;
end if;
718 markw
end if;
when others =>
state_next <= state_setup1;
end case;

end process;

end vhdl;