Vivante GPU driver can't load into kernel

cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Vivante GPU driver can't load into kernel

Jump to solution
9,025 Views
junsun
Contributor II

We have encountered a strange problem on our customiezed board based on i.mx6q platform.

The LTIB package is L3.0.35_12.05.01.01_GA_source.tar.gz

Steps to reproduce the problem are listed below

1. Build the GPU driver ( galcore.ko ) in module way.

2. Poweron the board.

3. insmod the driver module (galcore.ko ) into kernel from usb disk.

4. The driver probe process is halted forever.

After added some debug infor in to kernel source code, we found the probe process is halted in _ResetGPU() function which is located in

../drivers/mxc/gpu-viv/arch/XAQ2/hal/kernel/gc_hal_kernel_hardware.c

Then we checked why the _ResetGPU can't work. We found that GPU idle register value and control register value are always 0x0. Below is the code.

for(;;)

       /* Disable clock gating. */

        gcmkONERROR(gckOS_WriteRegisterEx(Os,

                                     Core,

                    Hardware->powerBaseAddress +

                    0x00104,

                    0x00000000));

          ......

      

          gcmkONERROR(gckOS_ReadRegisterEx(Os,

                                         Core,

                                         0x00004,

                                         &idle));

        printk("@@GPU idle_reg: 0x%x\n",idle);

        gcmkONERROR(gckOS_ReadRegisterEx(Os,

                                         Core,

                                         0x00000,

                                         &control));

         printk("@@GPU control_reg: 0x%x\n",control);

         

          ......

                  

Labels (2)
Tags (1)
1 Solution
4,075 Views
andre_silva
NXP Employee
NXP Employee

You don´t have to use the driver generated by the source code. Instead, you use the driver built in kernel. The only things you get from the gpu source is the libraries... the .ko comes from kernel.

View solution in original post

0 Kudos
24 Replies
281 Views
andre_silva
NXP Employee
NXP Employee

is it only happening on the sololite board?

regards,

Andre

0 Kudos
281 Views
JohnKaye
Contributor II

Yes, only on the sololite. What is the sequence to enable and access the GPU registers from u-boot?

Thanks,

-John

0 Kudos
281 Views
andre_silva
NXP Employee
NXP Employee

Hi John,

I´m going to search for this information and let you know soon as Possible.

regards,

Andre

0 Kudos
280 Views
JohnKaye
Contributor II

Thanks Andre. I appreciate it! Cheers, -John

0 Kudos