xref: /freebsd/sys/dev/e1000/e1000_osdep.c (revision 10ff414c)
1 /******************************************************************************
2   SPDX-License-Identifier: BSD-3-Clause
3 
4   Copyright (c) 2001-2020, Intel Corporation
5   All rights reserved.
6 
7   Redistribution and use in source and binary forms, with or without
8   modification, are permitted provided that the following conditions are met:
9 
10    1. Redistributions of source code must retain the above copyright notice,
11       this list of conditions and the following disclaimer.
12 
13    2. Redistributions in binary form must reproduce the above copyright
14       notice, this list of conditions and the following disclaimer in the
15       documentation and/or other materials provided with the distribution.
16 
17    3. Neither the name of the Intel Corporation nor the names of its
18       contributors may be used to endorse or promote products derived from
19       this software without specific prior written permission.
20 
21   THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS "AS IS"
22   AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
23   IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
24   ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE
25   LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
26   CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
27   SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
28   INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
29   CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
30   ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31   POSSIBILITY OF SUCH DAMAGE.
32 
33 ******************************************************************************/
34 /*$FreeBSD$*/
35 
36 #include "e1000_api.h"
37 
38 /*
39  * NOTE: the following routines using the e1000
40  * 	naming style are provided to the shared
41  *	code but are OS specific
42  */
43 
44 void
45 e1000_write_pci_cfg(struct e1000_hw *hw, u32 reg, u16 *value)
46 {
47 	pci_write_config(((struct e1000_osdep *)hw->back)->dev, reg, *value, 2);
48 }
49 
50 void
51 e1000_read_pci_cfg(struct e1000_hw *hw, u32 reg, u16 *value)
52 {
53 	*value = pci_read_config(((struct e1000_osdep *)hw->back)->dev, reg, 2);
54 }
55 
56 void
57 e1000_pci_set_mwi(struct e1000_hw *hw)
58 {
59 	pci_write_config(((struct e1000_osdep *)hw->back)->dev, PCIR_COMMAND,
60 	    (hw->bus.pci_cmd_word | CMD_MEM_WRT_INVALIDATE), 2);
61 }
62 
63 void
64 e1000_pci_clear_mwi(struct e1000_hw *hw)
65 {
66 	pci_write_config(((struct e1000_osdep *)hw->back)->dev, PCIR_COMMAND,
67 	    (hw->bus.pci_cmd_word & ~CMD_MEM_WRT_INVALIDATE), 2);
68 }
69 
70 /*
71  * Read the PCI Express capabilities
72  */
73 int32_t
74 e1000_read_pcie_cap_reg(struct e1000_hw *hw, u32 reg, u16 *value)
75 {
76 	device_t dev = ((struct e1000_osdep *)hw->back)->dev;
77 	u32	offset;
78 
79 	pci_find_cap(dev, PCIY_EXPRESS, &offset);
80 	*value = pci_read_config(dev, offset + reg, 2);
81 	return (E1000_SUCCESS);
82 }
83 
84 /*
85  * Write the PCI Express capabilities
86  */
87 int32_t
88 e1000_write_pcie_cap_reg(struct e1000_hw *hw, u32 reg, u16 *value)
89 {
90 	device_t dev = ((struct e1000_osdep *)hw->back)->dev;
91 	u32	offset;
92 
93 	pci_find_cap(dev, PCIY_EXPRESS, &offset);
94 	pci_write_config(dev, offset + reg, *value, 2);
95 	return (E1000_SUCCESS);
96 }
97