1 /* 2 * BSD LICENSE 3 * 4 * Copyright(c) 2017 Cavium, Inc.. All rights reserved. 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 9 * are met: 10 * 11 * * Redistributions of source code must retain the above copyright 12 * notice, this list of conditions and the following disclaimer. 13 * * Redistributions in binary form must reproduce the above copyright 14 * notice, this list of conditions and the following disclaimer in 15 * the documentation and/or other materials provided with the 16 * distribution. 17 * * Neither the name of Cavium, Inc. nor the names of its 18 * contributors may be used to endorse or promote products derived 19 * from this software without specific prior written permission. 20 * 21 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 22 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 23 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR 24 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT 25 * OWNER(S) OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 26 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT 27 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 28 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 29 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 30 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE 31 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 32 */ 33 /*$FreeBSD$*/ 34 35 #ifndef __LIO_BSD_H__ 36 #define __LIO_BSD_H__ 37 38 #include <sys/param.h> 39 #include <sys/gsb_crc32.h> 40 #include <sys/eventhandler.h> 41 #include <sys/socket.h> 42 #include <sys/kernel.h> 43 #include <sys/module.h> 44 #include <sys/sockio.h> 45 46 #include <net/if.h> 47 #include <net/if_var.h> 48 #include <net/bpf.h> 49 #include <net/ethernet.h> 50 #include <net/if_dl.h> 51 #include <net/if_media.h> 52 53 #include <net/if_types.h> 54 #include <net/if_vlan_var.h> 55 #include <net/if_gif.h> 56 57 #include <netinet/in.h> 58 #include <netinet/tcp_lro.h> 59 60 #include <sys/bus.h> 61 #include <machine/bus.h> 62 #include <sys/rman.h> 63 #include <vm/vm.h> 64 #include <vm/pmap.h> 65 #include <dev/pci/pcivar.h> 66 #include <dev/pci/pcireg.h> 67 #include <sys/sysctl.h> 68 #include <sys/taskqueue.h> 69 #include <sys/smp.h> 70 #include <sys/kthread.h> 71 #include <sys/firmware.h> 72 73 #include <vm/vm_extern.h> 74 #include <vm/vm_kern.h> 75 76 #ifndef PCI_VENDOR_ID_CAVIUM 77 #define PCI_VENDOR_ID_CAVIUM 0x177D 78 #endif 79 80 #define BIT(nr) (1UL << (nr)) 81 82 #define lio_check_timeout(a, b) ((int)((b) - (a)) < 0) 83 84 #define lio_ms_to_ticks(x) \ 85 ((hz > 1000) ? ((x) * (hz/1000)) : ((x) / (1000/hz))) 86 87 #define lio_mdelay(x) do { \ 88 if (cold) \ 89 DELAY(1000 * (x)); \ 90 else \ 91 pause("Wait", lio_ms_to_ticks(x)); \ 92 } while(0) 93 94 #define lio_sleep_timeout(timeout) lio_mdelay((timeout)) 95 96 typedef uint32_t __be32; 97 typedef uint64_t __be64; 98 99 #define lio_dev_info(oct, format, args...) \ 100 device_printf(oct->device, "Info: " format, ##args) 101 #define lio_dev_warn(oct, format, args...) \ 102 device_printf(oct->device, "Warn: " format, ##args) 103 #define lio_dev_err(oct, format, args...) \ 104 device_printf(oct->device, "Error: " format, ##args) 105 106 #ifdef LIO_DEBUG 107 #define lio_dev_dbg(oct, format, args...) \ 108 device_printf(oct->device, "Debug: " format, ##args) 109 #else 110 #define lio_dev_dbg(oct, format, args...) {do { } while (0); } 111 #endif 112 113 struct lio_stailq_node { 114 STAILQ_ENTRY (lio_stailq_node) entries; 115 }; 116 STAILQ_HEAD (lio_stailq_head, lio_stailq_node); 117 118 static inline struct lio_stailq_node * 119 lio_delete_first_node(struct lio_stailq_head *root) 120 { 121 struct lio_stailq_node *node; 122 123 if (STAILQ_EMPTY(root)) 124 node = NULL; 125 else 126 node = STAILQ_FIRST(root); 127 128 if (node != NULL) 129 STAILQ_REMOVE_HEAD(root, entries); 130 131 return (node); 132 } 133 134 #endif /* __LIO_BSD_H__ */ 135