Searched refs:where (Results 1 - 6 of 6) sorted by relevance

/solaris-x11-s11/open-src/kernel/sys/drm/
H A Ddrm_sun_pci.h73 extern void pci_read_config_byte(struct pci_dev *dev, int where, u8 *val);
74 extern void pci_read_config_word(struct pci_dev *dev, int where, u16 *val);
75 extern void pci_read_config_dword(struct pci_dev *dev, int where, u32 *val);
76 extern void pci_write_config_byte(struct pci_dev *dev, int where, u8 val);
77 extern void pci_write_config_word(struct pci_dev *dev, int where, u16 val);
78 extern void pci_write_config_dword(struct pci_dev *dev, int where, u32 val);
/solaris-x11-s11/open-src/kernel/drm/src/
H A Ddrm_sun_pci.c149 void pci_read_config_byte(struct pci_dev *pdev, int where, u8 *val) argument
151 *val = pci_config_get8(pdev->pci_cfg_acc_handle, where);
154 void pci_read_config_word(struct pci_dev *pdev, int where, u16 *val) argument
156 *val = pci_config_get16(pdev->pci_cfg_acc_handle, where);
159 void pci_read_config_dword(struct pci_dev *pdev, int where, u32 *val) argument
161 *val = pci_config_get32(pdev->pci_cfg_acc_handle, where);
164 void pci_write_config_byte(struct pci_dev *pdev, int where, u8 val) argument
166 pci_config_put8(pdev->pci_cfg_acc_handle, where, val);
169 void pci_write_config_word(struct pci_dev *pdev, int where, u16 val) argument
171 pci_config_put16(pdev->pci_cfg_acc_handle, where, va
174 pci_write_config_dword(struct pci_dev *pdev, int where, u32 val) argument
[all...]
/solaris-x11-s11/open-src/lib/DPS/sun-src/libdps/
H A Dpsdataops.psw251 where b
H A Ddpsdataops.psw252 where b
/solaris-x11-s11/open-src/kernel/i915/src/
H A Di915_dma.c287 * that tells us where the next instruction to check is. Any illegal
1159 int i915_bridge_dev_read_config_word(struct drm_i915_bridge_dev *bridge_dev, int where, u16 *val) argument
1161 u16 data = (u16)where;
1171 int i915_bridge_dev_write_config_word(struct drm_i915_bridge_dev *bridge_dev, int where, u16 val) argument
1173 u32 data = (u16)where << 16 | val;
1259 * tiny window where we will loose hotplug notifactions.
H A Di915_drv.h941 * This is important for lock-free wait paths, where no contended lock
1222 * being released or under memory pressure (where we attempt to
1610 extern int i915_bridge_dev_read_config_word(struct drm_i915_bridge_dev *bridge_dev, int where, u16 *val);
1611 extern int i915_bridge_dev_write_config_word(struct drm_i915_bridge_dev *bridge_dev, int where, u16 val);
1892 const char *where, uint32_t mark);

Completed in 28 milliseconds