On Fri, 11 Aug 2023 at 05:36, Chevron Li <chevron_li@xxxxxxx> wrote: > > From: Chevron Li <chevron.li@xxxxxxxxxxxxxx> > > Add Bayhub new chip GG8 support for UHS-I function > > Signed-off-by: Chevron Li <chevron.li@xxxxxxxxxxxxxx> > Acked-by: Adrian Hunter <adrian.hunter@xxxxxxxxx> Applied for next, thanks! Kind regards Uffe > --- > Change in V1: > 1.Add GG8 chip IDs in sdhci-pci-core.c and sdhci-pci.h > 2.Add GG8 chip initialization flow at sdhci-pci-o2micro.c > > Change in V2: > 1.updated typo description for the patch title. > 2.updated patch format according to reviewer's comments. > > Change in V3: > Updated patch format according to reviewer's comments. > --- > drivers/mmc/host/sdhci-pci-core.c | 4 + > drivers/mmc/host/sdhci-pci-o2micro.c | 148 ++++++++++++++++++++------- > drivers/mmc/host/sdhci-pci.h | 4 + > 3 files changed, 120 insertions(+), 36 deletions(-) > > diff --git a/drivers/mmc/host/sdhci-pci-core.c b/drivers/mmc/host/sdhci-pci-core.c > index 1c2572c0f012..7c14feb5db77 100644 > --- a/drivers/mmc/host/sdhci-pci-core.c > +++ b/drivers/mmc/host/sdhci-pci-core.c > @@ -1898,6 +1898,10 @@ static const struct pci_device_id pci_ids[] = { > SDHCI_PCI_DEVICE(O2, SDS1, o2), > SDHCI_PCI_DEVICE(O2, SEABIRD0, o2), > SDHCI_PCI_DEVICE(O2, SEABIRD1, o2), > + SDHCI_PCI_DEVICE(O2, GG8_9860, o2), > + SDHCI_PCI_DEVICE(O2, GG8_9861, o2), > + SDHCI_PCI_DEVICE(O2, GG8_9862, o2), > + SDHCI_PCI_DEVICE(O2, GG8_9863, o2), > SDHCI_PCI_DEVICE(ARASAN, PHY_EMMC, arasan), > SDHCI_PCI_DEVICE(SYNOPSYS, DWC_MSHC, snps), > SDHCI_PCI_DEVICE(GLI, 9750, gl9750), > diff --git a/drivers/mmc/host/sdhci-pci-o2micro.c b/drivers/mmc/host/sdhci-pci-o2micro.c > index 620f52ad9667..ae2707fbd119 100644 > --- a/drivers/mmc/host/sdhci-pci-o2micro.c > +++ b/drivers/mmc/host/sdhci-pci-o2micro.c > @@ -36,6 +36,7 @@ > #define O2_SD_INF_MOD 0xF1 > #define O2_SD_MISC_CTRL4 0xFC > #define O2_SD_MISC_CTRL 0x1C0 > +#define O2_SD_EXP_INT_REG 0x1E0 > #define O2_SD_PWR_FORCE_L0 0x0002 > #define O2_SD_TUNING_CTRL 0x300 > #define O2_SD_PLL_SETTING 0x304 > @@ -49,6 +50,9 @@ > #define O2_SD_UHS2_L1_CTRL 0x35C > #define O2_SD_FUNC_REG3 0x3E0 > #define O2_SD_FUNC_REG4 0x3E4 > +#define O2_SD_PARA_SET_REG1 0x444 > +#define O2_SD_VDDX_CTRL_REG 0x508 > +#define O2_SD_GPIO_CTRL_REG1 0x510 > #define O2_SD_LED_ENABLE BIT(6) > #define O2_SD_FREG0_LEDOFF BIT(13) > #define O2_SD_SEL_DLL BIT(16) > @@ -334,33 +338,45 @@ static int sdhci_o2_execute_tuning(struct mmc_host *mmc, u32 opcode) > scratch |= O2_SD_PWR_FORCE_L0; > sdhci_writew(host, scratch, O2_SD_MISC_CTRL); > > - /* Stop clk */ > - reg_val = sdhci_readw(host, SDHCI_CLOCK_CONTROL); > - reg_val &= ~SDHCI_CLOCK_CARD_EN; > - sdhci_writew(host, reg_val, SDHCI_CLOCK_CONTROL); > - > - if ((host->timing == MMC_TIMING_MMC_HS200) || > - (host->timing == MMC_TIMING_UHS_SDR104)) { > - /* UnLock WP */ > - pci_read_config_byte(chip->pdev, O2_SD_LOCK_WP, &scratch_8); > - scratch_8 &= 0x7f; > - pci_write_config_byte(chip->pdev, O2_SD_LOCK_WP, scratch_8); > - > - /* Set pcr 0x354[16] to choose dll clock, and set the default phase */ > - pci_read_config_dword(chip->pdev, O2_SD_OUTPUT_CLK_SOURCE_SWITCH, ®_val); > - reg_val &= ~(O2_SD_SEL_DLL | O2_SD_PHASE_MASK); > - reg_val |= (O2_SD_SEL_DLL | O2_SD_FIX_PHASE); > - pci_write_config_dword(chip->pdev, O2_SD_OUTPUT_CLK_SOURCE_SWITCH, reg_val); > + /* Update output phase */ > + switch (chip->pdev->device) { > + case PCI_DEVICE_ID_O2_SDS0: > + case PCI_DEVICE_ID_O2_SEABIRD0: > + case PCI_DEVICE_ID_O2_SEABIRD1: > + case PCI_DEVICE_ID_O2_SDS1: > + case PCI_DEVICE_ID_O2_FUJIN2: > + /* Stop clk */ > + reg_val = sdhci_readw(host, SDHCI_CLOCK_CONTROL); > + reg_val &= ~SDHCI_CLOCK_CARD_EN; > + sdhci_writew(host, reg_val, SDHCI_CLOCK_CONTROL); > + > + if (host->timing == MMC_TIMING_MMC_HS200 || > + host->timing == MMC_TIMING_UHS_SDR104) { > + /* UnLock WP */ > + pci_read_config_byte(chip->pdev, O2_SD_LOCK_WP, &scratch_8); > + scratch_8 &= 0x7f; > + pci_write_config_byte(chip->pdev, O2_SD_LOCK_WP, scratch_8); > + > + /* Set pcr 0x354[16] to choose dll clock, and set the default phase */ > + pci_read_config_dword(chip->pdev, O2_SD_OUTPUT_CLK_SOURCE_SWITCH, ®_val); > + reg_val &= ~(O2_SD_SEL_DLL | O2_SD_PHASE_MASK); > + reg_val |= (O2_SD_SEL_DLL | O2_SD_FIX_PHASE); > + pci_write_config_dword(chip->pdev, O2_SD_OUTPUT_CLK_SOURCE_SWITCH, reg_val); > + > + /* Lock WP */ > + pci_read_config_byte(chip->pdev, O2_SD_LOCK_WP, &scratch_8); > + scratch_8 |= 0x80; > + pci_write_config_byte(chip->pdev, O2_SD_LOCK_WP, scratch_8); > + } > > - /* Lock WP */ > - pci_read_config_byte(chip->pdev, O2_SD_LOCK_WP, &scratch_8); > - scratch_8 |= 0x80; > - pci_write_config_byte(chip->pdev, O2_SD_LOCK_WP, scratch_8); > + /* Start clk */ > + reg_val = sdhci_readw(host, SDHCI_CLOCK_CONTROL); > + reg_val |= SDHCI_CLOCK_CARD_EN; > + sdhci_writew(host, reg_val, SDHCI_CLOCK_CONTROL); > + break; > + default: > + break; > } > - /* Start clk */ > - reg_val = sdhci_readw(host, SDHCI_CLOCK_CONTROL); > - reg_val |= SDHCI_CLOCK_CARD_EN; > - sdhci_writew(host, reg_val, SDHCI_CLOCK_CONTROL); > > /* wait DLL lock, timeout value 5ms */ > if (readx_poll_timeout(sdhci_o2_pll_dll_wdt_control, host, > @@ -563,6 +579,7 @@ static void sdhci_pci_o2_set_clock(struct sdhci_host *host, unsigned int clock) > u16 clk; > u8 scratch; > u32 scratch_32; > + u32 dmdn_208m, dmdn_200m; > struct sdhci_pci_slot *slot = sdhci_priv(host); > struct sdhci_pci_chip *chip = slot->chip; > > @@ -578,16 +595,27 @@ static void sdhci_pci_o2_set_clock(struct sdhci_host *host, unsigned int clock) > scratch &= 0x7f; > pci_write_config_byte(chip->pdev, O2_SD_LOCK_WP, scratch); > > + if (chip->pdev->device == PCI_DEVICE_ID_O2_GG8_9860 || > + chip->pdev->device == PCI_DEVICE_ID_O2_GG8_9861 || > + chip->pdev->device == PCI_DEVICE_ID_O2_GG8_9862 || > + chip->pdev->device == PCI_DEVICE_ID_O2_GG8_9863) { > + dmdn_208m = 0x2c500000; > + dmdn_200m = 0x25200000; > + } else { > + dmdn_208m = 0x2c280000; > + dmdn_200m = 0x25100000; > + } > + > if ((host->timing == MMC_TIMING_UHS_SDR104) && (clock == 200000000)) { > pci_read_config_dword(chip->pdev, O2_SD_PLL_SETTING, &scratch_32); > > - if ((scratch_32 & 0xFFFF0000) != 0x2c280000) > - o2_pci_set_baseclk(chip, 0x2c280000); > + if ((scratch_32 & 0xFFFF0000) != dmdn_208m) > + o2_pci_set_baseclk(chip, dmdn_208m); > } else { > pci_read_config_dword(chip->pdev, O2_SD_PLL_SETTING, &scratch_32); > > - if ((scratch_32 & 0xFFFF0000) != 0x25100000) > - o2_pci_set_baseclk(chip, 0x25100000); > + if ((scratch_32 & 0xFFFF0000) != dmdn_200m) > + o2_pci_set_baseclk(chip, dmdn_200m); > } > > pci_read_config_dword(chip->pdev, O2_SD_OUTPUT_CLK_SOURCE_SWITCH, &scratch_32); > @@ -624,6 +652,11 @@ static int sdhci_pci_o2_probe_slot(struct sdhci_pci_slot *slot) > if (caps & SDHCI_CAN_DO_8BIT) > host->mmc->caps |= MMC_CAP_8_BIT_DATA; > > + host->quirks2 |= SDHCI_QUIRK2_BROKEN_DDR50; > + > + sdhci_pci_o2_enable_msi(chip, host); > + > + host->mmc_host_ops.execute_tuning = sdhci_o2_execute_tuning; > switch (chip->pdev->device) { > case PCI_DEVICE_ID_O2_SDS0: > case PCI_DEVICE_ID_O2_SEABIRD0: > @@ -634,10 +667,6 @@ static int sdhci_pci_o2_probe_slot(struct sdhci_pci_slot *slot) > if (reg & 0x1) > host->quirks |= SDHCI_QUIRK_MULTIBLOCK_READ_ACMD12; > > - host->quirks2 |= SDHCI_QUIRK2_BROKEN_DDR50; > - > - sdhci_pci_o2_enable_msi(chip, host); > - > if (chip->pdev->device == PCI_DEVICE_ID_O2_SEABIRD0) { > ret = pci_read_config_dword(chip->pdev, > O2_SD_MISC_SETTING, ®); > @@ -663,15 +692,21 @@ static int sdhci_pci_o2_probe_slot(struct sdhci_pci_slot *slot) > host->quirks2 |= SDHCI_QUIRK2_PRESET_VALUE_BROKEN; > } > > - host->mmc_host_ops.execute_tuning = sdhci_o2_execute_tuning; > - > if (chip->pdev->device != PCI_DEVICE_ID_O2_FUJIN2) > break; > /* set dll watch dog timer */ > reg = sdhci_readl(host, O2_SD_VENDOR_SETTING2); > reg |= (1 << 12); > sdhci_writel(host, reg, O2_SD_VENDOR_SETTING2); > - > + break; > + case PCI_DEVICE_ID_O2_GG8_9860: > + case PCI_DEVICE_ID_O2_GG8_9861: > + case PCI_DEVICE_ID_O2_GG8_9862: > + case PCI_DEVICE_ID_O2_GG8_9863: > + host->mmc->caps2 |= MMC_CAP2_NO_SDIO; > + host->mmc->caps |= MMC_CAP_HW_RESET; > + host->quirks2 |= SDHCI_QUIRK2_PRESET_VALUE_BROKEN; > + slot->host->mmc_host_ops.get_cd = sdhci_o2_get_cd; > break; > default: > break; > @@ -684,6 +719,7 @@ static int sdhci_pci_o2_probe(struct sdhci_pci_chip *chip) > { > int ret; > u8 scratch; > + u16 scratch16; > u32 scratch_32; > > switch (chip->pdev->device) { > @@ -893,6 +929,46 @@ static int sdhci_pci_o2_probe(struct sdhci_pci_chip *chip) > scratch |= 0x80; > pci_write_config_byte(chip->pdev, O2_SD_LOCK_WP, scratch); > break; > + case PCI_DEVICE_ID_O2_GG8_9860: > + case PCI_DEVICE_ID_O2_GG8_9861: > + case PCI_DEVICE_ID_O2_GG8_9862: > + case PCI_DEVICE_ID_O2_GG8_9863: > + /* UnLock WP */ > + ret = pci_read_config_byte(chip->pdev, O2_SD_LOCK_WP, &scratch); > + if (ret) > + return ret; > + scratch &= 0x7f; > + pci_write_config_byte(chip->pdev, O2_SD_LOCK_WP, scratch); > + > + /* Select mode switch source as software control */ > + pci_read_config_word(chip->pdev, O2_SD_PARA_SET_REG1, &scratch16); > + scratch16 &= 0xF8FF; > + scratch16 |= BIT(9); > + pci_write_config_word(chip->pdev, O2_SD_PARA_SET_REG1, scratch16); > + > + /* set VDD1 supply source */ > + pci_read_config_word(chip->pdev, O2_SD_VDDX_CTRL_REG, &scratch16); > + scratch16 &= 0xFFE3; > + scratch16 |= BIT(3); > + pci_write_config_word(chip->pdev, O2_SD_VDDX_CTRL_REG, scratch16); > + > + /* Set host drive strength*/ > + scratch16 = 0x0025; > + pci_write_config_word(chip->pdev, O2_SD_PLL_SETTING, scratch16); > + > + /* Set output delay*/ > + pci_read_config_dword(chip->pdev, O2_SD_OUTPUT_CLK_SOURCE_SWITCH, &scratch_32); > + scratch_32 &= 0xFF0FFF00; > + scratch_32 |= 0x00B0003B; > + pci_write_config_dword(chip->pdev, O2_SD_OUTPUT_CLK_SOURCE_SWITCH, scratch_32); > + > + /* Lock WP */ > + ret = pci_read_config_byte(chip->pdev, O2_SD_LOCK_WP, &scratch); > + if (ret) > + return ret; > + scratch |= 0x80; > + pci_write_config_byte(chip->pdev, O2_SD_LOCK_WP, scratch); > + break; > } > > return 0; > diff --git a/drivers/mmc/host/sdhci-pci.h b/drivers/mmc/host/sdhci-pci.h > index 9c8863956381..153704f812ed 100644 > --- a/drivers/mmc/host/sdhci-pci.h > +++ b/drivers/mmc/host/sdhci-pci.h > @@ -11,6 +11,10 @@ > #define PCI_DEVICE_ID_O2_FUJIN2 0x8520 > #define PCI_DEVICE_ID_O2_SEABIRD0 0x8620 > #define PCI_DEVICE_ID_O2_SEABIRD1 0x8621 > +#define PCI_DEVICE_ID_O2_GG8_9860 0x9860 > +#define PCI_DEVICE_ID_O2_GG8_9861 0x9861 > +#define PCI_DEVICE_ID_O2_GG8_9862 0x9862 > +#define PCI_DEVICE_ID_O2_GG8_9863 0x9863 > > #define PCI_DEVICE_ID_INTEL_PCH_SDIO0 0x8809 > #define PCI_DEVICE_ID_INTEL_PCH_SDIO1 0x880a > > base-commit: 25aa0bebba72b318e71fe205bfd1236550cc9534 > -- > 2.25.1 >