The CS of hikey970 SPI2 is always high

I want to use Hikey970’s SPI2 for data transmission debugging.
The DTS and /dev/spidev32766.0 have been configured,
but during the data transmission test,
CS has been high, so that the transmitted data is 0xFF.
the dts of SPI2 like this:

    &spi2 {                                                                                                                                                            
    label = "LS-SPI2";                                                                                                       
    status = "okay";                                                                                                        
    cs-gpios = <&gpio27 0 0>;        
                                                                                                                   
    spidev@0{                                                                                                                                                                  
                                                                                                                                                                               
        compatible = "dcb,spidev";                                                                                                                                             
        spi-max-frequency = <10000000>;                                                                                                                                        
        reg = <0>;                                                                                                                                                             
        status = "okay";                                                                                                                                                       
    };                                                                                                                                                                         
};        

What can I do to make CS work, thanks

add kernel log
[ 531.402482] mali e82c0000.mali: error detected from slot 0, job status 0x00000051 (INSTR_INVALID_ENC)
[ 531.402520] mali e82c0000.mali: t6xx: GPU fault 0x51 from job slot 0
[ 531.413372] mali e82c0000.mali: error detected from slot 0, job status 0x00000051 (INSTR_INVALID_ENC)
[ 531.413401] mali e82c0000.mali: t6xx: GPU fault 0x51 from job slot 0
[ 531.420140] mali e82c0000.mali: error detected from slot 0, job status 0x0000005b (UNKNOWN)
[ 531.420157] mali e82c0000.mali: t6xx: GPU fault 0x5b from job slot 0
[ 531.430810] mali e82c0000.mali: error detected from slot 0, job status 0x00000051 (INSTR_INVALID_ENC)
[ 531.431206] mali e82c0000.mali: t6xx: GPU fault 0x51 from job slot 0
[ 531.447987] mali e82c0000.mali: error detected from slot 0, job status 0x00000051 (INSTR_INVALID_ENC)
[ 531.448005] mali e82c0000.mali: t6xx: GPU fault 0x51 from job slot 0
[ 531.497381] mali e82c0000.mali: error detected from slot 0, job status 0x00000051 (INSTR_INVALID_ENC)
[ 531.497488] mali e82c0000.mali: t6xx: GPU fault 0x51 from job slot 0

“mali” is the GPU. Not related to SPI.

Hi doitright
Thank you for your reply.
Do you know which two channels of DMA0 SPI2 of keyey970 uses?
thanks.