Hello latha G,
First gpio3_10 and gpio3_08 are multiplexed with UART1_CTS_B and UART1_RTS_B, please configure RCW[UART_BASE] as 00 to configure 6 GPIO pins.

LS2088 platform could use GPIO driver for PowerPC architecture. In Linux Kernel, please configure "CONFIG_ARCH_LAYERSCAPE=y" then configure "CONFIG_GPIO_MPC8XXX=y" in Linux Kernel configuration file and rebuild Kernel image.
After boot up Linux system, you will get similar information as the following.
root@localhost:~# ls /sys/class/gpio/
export gpiochip384 gpiochip416 gpiochip448 gpiochip480 unexport
root@localhost:~# cat /sys/kernel/debug/gpio
GPIOs 384-415, parent: platform/2330000.gpio, 2330000.gpio:
GPIOs 416-447, parent: platform/2320000.gpio, 2320000.gpio:
GPIOs 448-479, parent: platform/2310000.gpio, 2310000.gpio:
GPIOs 480-511, parent: platform/2300000.gpio, 2300000.gpio:

GPIO424(416+8) corresponds with GPIO3_8, GPIO426(416+10) corresponds with GPIO3_10.
root@localhost:~# cd /sys/class/gpio/
root@localhost:/sys/class/gpio# echo 424 > export
root@localhost:/sys/class/gpio# echo 426 > export
root@localhost:/sys/class/gpio# ls
export gpio424 gpio426 gpiochip384 gpiochip416 gpiochip448 gpiochip480 unexport
root@localhost:/sys/class/gpio#
root@localhost:/sys/class/gpio# echo "out" > gpio424/direction
root@localhost:/sys/class/gpio# echo 1 > gpio424/value
root@localhost:/sys/class/gpio# ls gpio424/
active_low device direction edge subsystem uevent value
For more detailed information about GPIO on ARMv8 platforms, please refer to LS1043 GPIO support in Linux SDK .
Thanks,
Yiping