Hello,
I am using a i.MX8QXP processor. I am trying to write a driver for the Linux OS running on the A35 quadcore that when called triggers the crc checksum generation for the displayed image(s). I am using the functionality offered by the dpu signature module ( dpu-signature.c in /drivers/gpu/imx/dpu/ ).
However almost all the functions in dpu-signature.c require a pointer to a valid struct dpu_signature object which can be obtained from:
struct dpu_signature *dpu_sig_get(struct dpu_soc *dpu, int id)
which in turn requires a pointer to a valid struct dpu_soc object. How do I obtain a pointer to this ?
I am quite new at this so any extra details / pointers (see what I did eh ?) would be appreciated.