blob: 3d94ac362be20a2687a556d9f0fa4b212897405e [file] [log] [blame]
John Su8fff2972021-01-21 13:22:58 +08001/* SPDX-License-Identifier: GPL-2.0-only */
2
3/* Driver for BayHub Technology LV2 PCI to SD bridge */
4
5#include <console/console.h>
6#include <device/device.h>
John Su8fff2972021-01-21 13:22:58 +08007#include <device/pci.h>
Tim Wawrzynczak3ee9bb02021-12-08 21:19:50 -07008#include <device/pciexp.h>
John Su8fff2972021-01-21 13:22:58 +08009#include <device/pci_ops.h>
10#include <device/pci_ids.h>
11#include "chip.h"
12#include "lv2.h"
13
Tim Wawrzynczak3ee9bb02021-12-08 21:19:50 -070014/*
15 * This chip has an errata where PCIe config space registers 0x234, 0x248, and
16 * 0x24C only support DWORD access, therefore reprogram these in the `finalize`
17 * callback.
18 */
19static void lv2_enable_ltr(struct device *dev)
20{
21 u16 max_snoop, max_nosnoop;
22 if (!pciexp_get_ltr_max_latencies(dev, &max_snoop, &max_nosnoop))
23 return;
24
Nico Huber5ffc2c82022-08-05 12:58:18 +020025 const unsigned int ltr_cap = pciexp_find_extended_cap(dev, PCIE_EXT_CAP_LTR_ID, 0);
Tim Wawrzynczak3ee9bb02021-12-08 21:19:50 -070026 if (!ltr_cap)
27 return;
28
29 pci_write_config32(dev, ltr_cap + PCI_LTR_MAX_SNOOP, (max_snoop << 16) | max_nosnoop);
30 printk(BIOS_INFO, "%s: Re-programmed LTR max latencies using chip-specific quirk\n",
31 dev_path(dev));
32}
33
Victor Ding80b2f232021-02-18 04:27:47 +000034static void lv2_enable(struct device *dev)
John Su8fff2972021-01-21 13:22:58 +080035{
36 struct drivers_generic_bayhub_lv2_config *config = dev->chip_info;
37 pci_dev_init(dev);
38
39 if (!config || !config->enable_power_saving)
40 return;
41 /*
42 * This procedure for enabling power-saving mode is from the
43 * BayHub BIOS Implementation Guideline document.
44 */
45 pci_write_config32(dev, LV2_PROTECT, LV2_PROTECT_OFF | LV2_PROTECT_LOCK_OFF);
46 pci_or_config32(dev, LV2_PCR_HEX_FC, LV2_PCIE_PHY_P1_ENABLE);
47 pci_update_config32(dev, LV2_PCR_HEX_E0, LV2_PCI_PM_L1_TIMER_MASK, LV2_PCI_PM_L1_TIMER);
48 pci_update_config32(dev, LV2_PCR_HEX_FC, LV2_ASPM_L1_TIMER_MASK, LV2_ASPM_L1_TIMER);
49 pci_or_config32(dev, LV2_PCR_HEX_A8, LV2_LTR_ENABLE);
50 pci_write_config32(dev, LV2_PCR_HEX_234, LV2_MAX_LATENCY_SETTING);
John Su8fff2972021-01-21 13:22:58 +080051 pci_update_config32(dev, LV2_PCR_HEX_3F4, LV2_L1_SUBSTATE_OPTIMISE_MASK,
52 LV2_L1_SUBSTATE_OPTIMISE);
John Su8fff2972021-01-21 13:22:58 +080053 pci_update_config32(dev, LV2_PCR_HEX_300, LV2_TUNING_WINDOW_MASK, LV2_TUNING_WINDOW);
54 pci_update_config32(dev, LV2_PCR_HEX_304, LV2_DRIVER_STRENGTH_MASK,
55 LV2_DRIVER_STRENGTH);
56 pci_update_config32(dev, LV2_PCR_HEX_308, LV2_RESET_DMA_DISABLE_MASK,
57 LV2_RESET_DMA_DISABLE);
John Su8fff2972021-01-21 13:22:58 +080058 pci_write_config32(dev, LV2_PROTECT, LV2_PROTECT_ON | LV2_PROTECT_LOCK_ON);
Victor Dinge0c2c062021-02-18 07:25:08 +000059 printk(BIOS_INFO, "BayHub LV2: Power-saving enabled\n");
John Su8fff2972021-01-21 13:22:58 +080060}
61
62static struct device_operations lv2_ops = {
63 .read_resources = pci_dev_read_resources,
64 .set_resources = pci_dev_set_resources,
65 .enable_resources = pci_dev_enable_resources,
66 .ops_pci = &pci_dev_ops_pci,
Victor Ding80b2f232021-02-18 04:27:47 +000067 .enable = lv2_enable,
Tim Wawrzynczak3ee9bb02021-12-08 21:19:50 -070068 .final = lv2_enable_ltr,
John Su8fff2972021-01-21 13:22:58 +080069};
70
71static const unsigned short pci_device_ids[] = {
Felix Singer43b7f412022-03-07 04:34:52 +010072 PCI_DID_O2_LV2,
John Su8fff2972021-01-21 13:22:58 +080073 0
74};
75
76static const struct pci_driver bayhub_lv2 __pci_driver = {
77 .ops = &lv2_ops,
Felix Singer43b7f412022-03-07 04:34:52 +010078 .vendor = PCI_VID_O2,
John Su8fff2972021-01-21 13:22:58 +080079 .devices = pci_device_ids,
80};
81
82struct chip_operations drivers_generic_bayhub_lv2_ops = {
Nicholas Sudsgaardbfb11be2024-01-30 09:53:46 +090083 .name = "BayHub Technology LV2 PCIe to SD bridge",
John Su8fff2972021-01-21 13:22:58 +080084};