Forum Discussion
Altera_Forum
Honored Contributor
8 years agoHi ravi,
They are not bound in your case.. there is nothing obvious on your debug list... except the controllers and this is normal. As your device tree would have something like this included to attach the GPIOs to the memory locations: hps_0_gpio0: gpio@0xff708000 { compatible = "snps,dw-gpio-14.0", "snps,dw-gpio"; reg = < 0xFF708000 0x00001000 >; interrupt-parent = < &hps_0_arm_gic_0 >; interrupts = < 0 164 4 >; clocks = < &l4_mp_clk >; # gpio-cells = < 2 >; gpio-controller; }; //end gpio@0xff708000 (hps_0_gpio0) hps_0_gpio1: gpio@0xff709000 { compatible = "snps,dw-gpio-14.0", "snps,dw-gpio"; reg = < 0xFF709000 0x00001000 >; interrupt-parent = < &hps_0_arm_gic_0 >; interrupts = < 0 165 4 >; clocks = < &l4_mp_clk >; # gpio-cells = < 2 >; gpio-controller; }; //end gpio@0xff709000 (hps_0_gpio1) hps_0_gpio2: gpio@0xff70a000 { compatible = "snps,dw-gpio-14.0", "snps,dw-gpio"; reg = < 0xFF70A000 0x00001000 >; interrupt-parent = < &hps_0_arm_gic_0 >; interrupts = < 0 166 4 >; clocks = < &l4_mp_clk >; # gpio-cells = < 2 >; gpio-controller; }; //end gpio@0xff70a000 (hps_0_gpio2) Have you tried other GPIO's? Perhaps its your circuit or you have included a device on your GPIO's such as a peripheral (UART, SPI or CAN controller) to these pins in Quartus Qys design and is not configurable. Or you have forgotten to add it again in the pin assignments like you did originally with the first GPIO's this could be your issue. regards Kyle