Commit a800f418 authored by Lucas Stach's avatar Lucas Stach Committed by Shawn Guo

soc: imx: gpcv2: prefix i.MX7 specific defines

So we can add i.MX8M support without introducing name clashes.
Signed-off-by: default avatarLucas Stach <l.stach@pengutronix.de>
Signed-off-by: default avatarShawn Guo <shawnguo@kernel.org>
parent c800cd78
...@@ -18,19 +18,19 @@ ...@@ -18,19 +18,19 @@
#define GPC_LPCR_A_CORE_BSC 0x000 #define GPC_LPCR_A_CORE_BSC 0x000
#define GPC_PGC_CPU_MAPPING 0x0ec #define GPC_PGC_CPU_MAPPING 0x0ec
#define USB_HSIC_PHY_A_CORE_DOMAIN BIT(6) #define IMX7_USB_HSIC_PHY_A_CORE_DOMAIN BIT(6)
#define USB_OTG2_PHY_A_CORE_DOMAIN BIT(5) #define IMX7_USB_OTG2_PHY_A_CORE_DOMAIN BIT(5)
#define USB_OTG1_PHY_A_CORE_DOMAIN BIT(4) #define IMX7_USB_OTG1_PHY_A_CORE_DOMAIN BIT(4)
#define PCIE_PHY_A_CORE_DOMAIN BIT(3) #define IMX7_PCIE_PHY_A_CORE_DOMAIN BIT(3)
#define MIPI_PHY_A_CORE_DOMAIN BIT(2) #define IMX7_MIPI_PHY_A_CORE_DOMAIN BIT(2)
#define GPC_PU_PGC_SW_PUP_REQ 0x0f8 #define GPC_PU_PGC_SW_PUP_REQ 0x0f8
#define GPC_PU_PGC_SW_PDN_REQ 0x104 #define GPC_PU_PGC_SW_PDN_REQ 0x104
#define USB_HSIC_PHY_SW_Pxx_REQ BIT(4) #define IMX7_USB_HSIC_PHY_SW_Pxx_REQ BIT(4)
#define USB_OTG2_PHY_SW_Pxx_REQ BIT(3) #define IMX7_USB_OTG2_PHY_SW_Pxx_REQ BIT(3)
#define USB_OTG1_PHY_SW_Pxx_REQ BIT(2) #define IMX7_USB_OTG1_PHY_SW_Pxx_REQ BIT(2)
#define PCIE_PHY_SW_Pxx_REQ BIT(1) #define IMX7_PCIE_PHY_SW_Pxx_REQ BIT(1)
#define MIPI_PHY_SW_Pxx_REQ BIT(0) #define IMX7_MIPI_PHY_SW_Pxx_REQ BIT(0)
#define GPC_M4_PU_PDN_FLG 0x1bc #define GPC_M4_PU_PDN_FLG 0x1bc
...@@ -40,9 +40,9 @@ ...@@ -40,9 +40,9 @@
* GPC_PGC memory map are incorrect, below offset * GPC_PGC memory map are incorrect, below offset
* values are from design RTL. * values are from design RTL.
*/ */
#define PGC_MIPI 16 #define IMX7_PGC_MIPI 16
#define PGC_PCIE 17 #define IMX7_PGC_PCIE 17
#define PGC_USB_HSIC 20 #define IMX7_PGC_USB_HSIC 20
#define GPC_PGC_CTRL(n) (0x800 + (n) * 0x40) #define GPC_PGC_CTRL(n) (0x800 + (n) * 0x40)
#define GPC_PGC_SR(n) (GPC_PGC_CTRL(n) + 0xc) #define GPC_PGC_SR(n) (GPC_PGC_CTRL(n) + 0xc)
...@@ -166,11 +166,11 @@ static const struct imx_pgc_domain imx7_pgc_domains[] = { ...@@ -166,11 +166,11 @@ static const struct imx_pgc_domain imx7_pgc_domains[] = {
.name = "mipi-phy", .name = "mipi-phy",
}, },
.bits = { .bits = {
.pxx = MIPI_PHY_SW_Pxx_REQ, .pxx = IMX7_MIPI_PHY_SW_Pxx_REQ,
.map = MIPI_PHY_A_CORE_DOMAIN, .map = IMX7_MIPI_PHY_A_CORE_DOMAIN,
}, },
.voltage = 1000000, .voltage = 1000000,
.pgc = PGC_MIPI, .pgc = IMX7_PGC_MIPI,
}, },
[IMX7_POWER_DOMAIN_PCIE_PHY] = { [IMX7_POWER_DOMAIN_PCIE_PHY] = {
...@@ -178,11 +178,11 @@ static const struct imx_pgc_domain imx7_pgc_domains[] = { ...@@ -178,11 +178,11 @@ static const struct imx_pgc_domain imx7_pgc_domains[] = {
.name = "pcie-phy", .name = "pcie-phy",
}, },
.bits = { .bits = {
.pxx = PCIE_PHY_SW_Pxx_REQ, .pxx = IMX7_PCIE_PHY_SW_Pxx_REQ,
.map = PCIE_PHY_A_CORE_DOMAIN, .map = IMX7_PCIE_PHY_A_CORE_DOMAIN,
}, },
.voltage = 1000000, .voltage = 1000000,
.pgc = PGC_PCIE, .pgc = IMX7_PGC_PCIE,
}, },
[IMX7_POWER_DOMAIN_USB_HSIC_PHY] = { [IMX7_POWER_DOMAIN_USB_HSIC_PHY] = {
...@@ -190,11 +190,11 @@ static const struct imx_pgc_domain imx7_pgc_domains[] = { ...@@ -190,11 +190,11 @@ static const struct imx_pgc_domain imx7_pgc_domains[] = {
.name = "usb-hsic-phy", .name = "usb-hsic-phy",
}, },
.bits = { .bits = {
.pxx = USB_HSIC_PHY_SW_Pxx_REQ, .pxx = IMX7_USB_HSIC_PHY_SW_Pxx_REQ,
.map = USB_HSIC_PHY_A_CORE_DOMAIN, .map = IMX7_USB_HSIC_PHY_A_CORE_DOMAIN,
}, },
.voltage = 1200000, .voltage = 1200000,
.pgc = PGC_USB_HSIC, .pgc = IMX7_PGC_USB_HSIC,
}, },
}; };
...@@ -269,12 +269,12 @@ static int imx_gpcv2_probe(struct platform_device *pdev) ...@@ -269,12 +269,12 @@ static int imx_gpcv2_probe(struct platform_device *pdev)
static const struct regmap_range yes_ranges[] = { static const struct regmap_range yes_ranges[] = {
regmap_reg_range(GPC_LPCR_A_CORE_BSC, regmap_reg_range(GPC_LPCR_A_CORE_BSC,
GPC_M4_PU_PDN_FLG), GPC_M4_PU_PDN_FLG),
regmap_reg_range(GPC_PGC_CTRL(PGC_MIPI), regmap_reg_range(GPC_PGC_CTRL(IMX7_PGC_MIPI),
GPC_PGC_SR(PGC_MIPI)), GPC_PGC_SR(IMX7_PGC_MIPI)),
regmap_reg_range(GPC_PGC_CTRL(PGC_PCIE), regmap_reg_range(GPC_PGC_CTRL(IMX7_PGC_PCIE),
GPC_PGC_SR(PGC_PCIE)), GPC_PGC_SR(IMX7_PGC_PCIE)),
regmap_reg_range(GPC_PGC_CTRL(PGC_USB_HSIC), regmap_reg_range(GPC_PGC_CTRL(IMX7_PGC_USB_HSIC),
GPC_PGC_SR(PGC_USB_HSIC)), GPC_PGC_SR(IMX7_PGC_USB_HSIC)),
}; };
static const struct regmap_access_table access_table = { static const struct regmap_access_table access_table = {
.yes_ranges = yes_ranges, .yes_ranges = yes_ranges,
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment