diff options
Diffstat (limited to 'drivers/soc/imx/gpcv2.c')
| -rw-r--r-- | drivers/soc/imx/gpcv2.c | 13 | 
1 files changed, 9 insertions, 4 deletions
diff --git a/drivers/soc/imx/gpcv2.c b/drivers/soc/imx/gpcv2.c index f4e3bd40c72e..6ef18cf8f243 100644 --- a/drivers/soc/imx/gpcv2.c +++ b/drivers/soc/imx/gpcv2.c @@ -39,10 +39,15 @@  #define GPC_M4_PU_PDN_FLG		0x1bc - -#define PGC_MIPI			4 -#define PGC_PCIE			5 -#define PGC_USB_HSIC			8 +/* + * The PGC offset values in Reference Manual + * (Rev. 1, 01/2018 and the older ones) GPC chapter's + * GPC_PGC memory map are incorrect, below offset + * values are from design RTL. + */ +#define PGC_MIPI			16 +#define PGC_PCIE			17 +#define PGC_USB_HSIC			20  #define GPC_PGC_CTRL(n)			(0x800 + (n) * 0x40)  #define GPC_PGC_SR(n)			(GPC_PGC_CTRL(n) + 0xc)  |