Cyclone V SoC: When routing HPS CAN0 or CAN1 pins to FPGA receive direction isn't working
I'm using Quartus Prime Lite 16.1.
I am programming a Cyclone V Soc on a SocKit / DeNano board.
I am accessing the CAN controllers with bare metal code from the second ARM core.
With Qsys I selected
CAN0 pin = FPGA
CAN0 mode = Full
CAN1 pin = FPGA
CAN1 mode = Full
The soc_system then has 4 addtional signals
hps_0_can0_rxd : in std_logic := 'X'; -- rxd
hps_0_can0_txd : out std_logic; -- txd
hps_0_can1_rxd : in std_logic := 'X'; -- rxd
hps_0_can1_txd : out std_logic -- txd
I 'connected' these signals to the appropriate I/O pins.
I can set the txd pins via test regsiter ctr->Tx and, using loopback mode I can send data.
Receive direction isn't working at all.
I can't even 'see' static levels at the input pin with test register ctr->Rx. (Loopback mode off!)
I connected the Rx signals to an addtional output pin and I can see the level is recognized in the FPFA.
It's just not transferred to the HPS.
What did I possibly do wrong?
What can I check?