drivers/genesyslogic/gl9750: Add invert write protect polarity
Add an option to invert write protect polarity for GL9750. Change-Id: I5761f3066291a2400caecbecc79ae893f0a0c146 Signed-off-by: Ben Chuang <benchuanggli@gmail.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/77403 Reviewed-by: Eric Lai <eric_lai@quanta.corp-partner.google.com> Reviewed-by: Kapil Porwal <kapilporwal@google.com> Reviewed-by: Subrata Banik <subratabanik@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
9e57e94950
commit
df98e6b99b
|
@ -6,3 +6,8 @@ config DRIVERS_GENESYSLOGIC_GL9750
|
|||
regulators (3.3V-to-1.2V) and card power switch. Enabling this driver
|
||||
will disable L0s support, which will allow the device to enter the
|
||||
PCIe L1 link state.
|
||||
|
||||
config DRIVERS_GENESYSLOGIC_GL9750_INVERT_WP
|
||||
bool
|
||||
depends on DRIVERS_GENESYSLOGIC_GL9750
|
||||
default n
|
||||
|
|
|
@ -22,6 +22,10 @@ static void gl9750_enable(struct device *dev)
|
|||
*/
|
||||
pci_and_config32(dev, CFG2, ~CFG2_L0S_SUPPORT);
|
||||
|
||||
if (CONFIG(DRIVERS_GENESYSLOGIC_GL9750_INVERT_WP))
|
||||
/* invert write protect polarity */
|
||||
pci_or_config32(dev, CFG1, CFG1_WP_INVERT);
|
||||
|
||||
/* Set Vendor Config to be non-configurable */
|
||||
pci_and_config32(dev, CFG, ~CFG_EN);
|
||||
}
|
||||
|
|
|
@ -7,6 +7,8 @@
|
|||
|
||||
#define CFG 0x800
|
||||
#define CFG_EN 0x1
|
||||
#define CFG1 0x844
|
||||
#define CFG1_WP_INVERT (0x1 << 31)
|
||||
#define CFG2 0x848
|
||||
#define CFG2_L0S_SUPPORT (0x1 << 6)
|
||||
|
||||
|
|
Loading…
Reference in New Issue