I want to use gpio1_25 in ATF,uboot and kernel,wo found some problem.
1.In ATF, I use the following code to operate GPIO

code output:
bit_num:2000000
dir:0
dir:2000000
dir:2000000
dat:0
dat:2000000
dat:0
Configure Pin Data Error!
The output looks like the direction is set correctly, but the data is not set successfully。
2.In uboot, I found that there is no gpio driver for ls1028.
3.In kernel,I found the GPIO driver gpio-mpc8xxx.c in the kernel, but I found that the code here should be problematic.
Question 1
Seen from the chip manual that ls1028 does not have the GPIO_IBE register。

Question 2
The device tree obtained by of_property_read_bool is in little-endian mode. Why is bgpio_init registered in big-endian mode?
