1 /* SPDX-License-Identifier: GPL-2.0 */
3 * This file is based on code from OCTEON SDK by Cavium Networks.
5 * Copyright (c) 2003-2007 Cavium Networks
8 #include <asm/octeon/cvmx-pip.h>
9 #include <asm/octeon/cvmx-helper.h>
10 #include <asm/octeon/cvmx-helper-util.h>
13 * cvm_oct_get_buffer_ptr - convert packet data address to pointer
14 * @packet_ptr: Packet data hardware address
16 * Returns Packet buffer pointer
18 static inline void *cvm_oct_get_buffer_ptr(union cvmx_buf_ptr packet_ptr
)
20 return cvmx_phys_to_ptr(((packet_ptr
.s
.addr
>> 7) - packet_ptr
.s
.back
)
25 * INTERFACE - convert IPD port to logical interface
26 * @ipd_port: Port to check
28 * Returns Logical interface
30 static inline int INTERFACE(int ipd_port
)
34 if (ipd_port
== CVMX_PIP_NUM_INPUT_PORTS
)
36 interface
= cvmx_helper_get_interface_num(ipd_port
);
39 panic("Illegal ipd_port %d passed to %s\n", ipd_port
, __func__
);
43 * INDEX - convert IPD/PKO port number to the port's interface index
44 * @ipd_port: Port to check
46 * Returns Index into interface port list
48 static inline int INDEX(int ipd_port
)
50 return cvmx_helper_get_interface_index_num(ipd_port
);