aboutsummaryrefslogtreecommitdiff
path: root/src/northbridge/via/vx900/pci_util.c
diff options
context:
space:
mode:
authorKyösti Mälkki <kyosti.malkki@gmail.com>2019-02-07 16:18:20 +0200
committerKyösti Mälkki <kyosti.malkki@gmail.com>2019-02-10 19:44:10 +0000
commitc043408ec51a3fe6aa63389f982d4d450b844973 (patch)
tree1444d865bc41dfa736a937e9e2f1d66837dd89dd /src/northbridge/via/vx900/pci_util.c
parenteeedf83bcddf7003d8a2d69740689febe95f821a (diff)
nb/via/vx900: Replace pci_mod_configX()
If clr_mask == 0, use pci_or_configX(). If clr_mask != 0, invert mask and use pci_update_configX(). Change-Id: I4ae64e9b635b3759e4cffc4bbdf029411a4e0f42 Signed-off-by: Kyösti Mälkki <kyosti.malkki@gmail.com> Reviewed-on: https://review.coreboot.org/c/31272 Reviewed-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/northbridge/via/vx900/pci_util.c')
-rw-r--r--src/northbridge/via/vx900/pci_util.c42
1 files changed, 0 insertions, 42 deletions
diff --git a/src/northbridge/via/vx900/pci_util.c b/src/northbridge/via/vx900/pci_util.c
index 08e2b54c37..afd35a18e8 100644
--- a/src/northbridge/via/vx900/pci_util.c
+++ b/src/northbridge/via/vx900/pci_util.c
@@ -38,45 +38,3 @@ void dump_pci_device(struct device *dev)
printk(BIOS_DEBUG, "\n");
}
}
-
-#ifdef __SIMPLE_DEVICE__
-void pci_mod_config8(pci_devfn_t dev, unsigned int where, uint8_t clr_mask,
- uint8_t set_mask)
-#else
-void pci_mod_config8(struct device *dev, unsigned int where, uint8_t clr_mask,
- uint8_t set_mask)
-#endif
-{
- uint8_t reg8 = pci_read_config8(dev, where);
- reg8 &= ~clr_mask;
- reg8 |= set_mask;
- pci_write_config8(dev, where, reg8);
-}
-
-#ifdef __SIMPLE_DEVICE__
-void pci_mod_config16(pci_devfn_t dev, unsigned int where,
- uint16_t clr_mask, uint16_t set_mask)
-#else
-void pci_mod_config16(struct device *dev, unsigned int where,
- uint16_t clr_mask, uint16_t set_mask)
-#endif
-{
- uint16_t reg16 = pci_read_config16(dev, where);
- reg16 &= ~clr_mask;
- reg16 |= set_mask;
- pci_write_config16(dev, where, reg16);
-}
-
-#ifdef __SIMPLE_DEVICE__
-void pci_mod_config32(pci_devfn_t dev, unsigned int where,
- uint32_t clr_mask, uint32_t set_mask)
-#else
-void pci_mod_config32(struct device *dev, unsigned int where,
- uint32_t clr_mask, uint32_t set_mask)
-#endif
-{
- uint32_t reg32 = pci_read_config32(dev, where);
- reg32 &= ~clr_mask;
- reg32 |= set_mask;
- pci_write_config32(dev, where, reg32);
-}