Hi, all.
There is a description about the error in imx-scu.c (/ kernel_imx / drivers / firmware / imx).
enum imx_sc_error_codes {
IMX_SC_ERR_NONE = 0, / * Success * /
IMX_SC_ERR_VERSION = 1, / * Incompatible API version * /
IMX_SC_ERR_CONFIG = 2, / * Configuration error * /
IMX_SC_ERR_PARM = 3, / * Bad parameter * /
IMX_SC_ERR_NOACCESS = 4, / * Permission error (no access) * /
IMX_SC_ERR_LOCKED = 5, / * Permission error (locked) * /
IMX_SC_ERR_UNAVAILABLE = 6, / * Unavailable (out of resources) * /
IMX_SC_ERR_NOTFOUND = 7, / * Not found * /
IMX_SC_ERR_NOPOWER = 8, / * No power * /
IMX_SC_ERR_IPC = 9, / * Generic IPC error * /
IMX_SC_ERR_BUSY = 10, / * Resource is currently busy / active * /
IMX_SC_ERR_FAIL = 11, / * General I / O failure * /
IMX_SC_ERR_LAST
};
There is a brief explanation on each line, but I would like to know more specifically.
It seems that "IMX_SC_ERR_NOACCESS" error is occurring on my board,
so I would especially like to know about "IMX_SC_ERR_NOACCESS".
What is the cause of this error?
Difference from "IMX_SC_ERR_LOCKED".
I would also like to know if there is a solution.