blob: cb5540dc0e9dfaeebca4dd82c7a9d9e5f71edd23 [file] [log] [blame]
Aaro Koskinen67620982015-04-04 22:51:21 +03001/*
2 * This file is based on code from OCTEON SDK by Cavium Networks.
David Daney80ff0fd2009-05-05 17:35:21 -07003 *
4 * Copyright (c) 2003-2007 Cavium Networks
5 *
6 * This file is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License, Version 2, as
8 * published by the Free Software Foundation.
Aaro Koskinen67620982015-04-04 22:51:21 +03009 */
David Daney80ff0fd2009-05-05 17:35:21 -070010
Janne Huttunen1d39a5e2015-08-13 16:21:46 +030011#include <asm/octeon/cvmx-pip.h>
12#include <asm/octeon/cvmx-helper.h>
13#include <asm/octeon/cvmx-helper-util.h>
14
David Daney80ff0fd2009-05-05 17:35:21 -070015/**
David Daneyec977c52010-02-16 17:25:32 -080016 * cvm_oct_get_buffer_ptr - convert packet data address to pointer
David Daney80ff0fd2009-05-05 17:35:21 -070017 * @packet_ptr: Packet data hardware address
David Daneyec977c52010-02-16 17:25:32 -080018 *
David Daney80ff0fd2009-05-05 17:35:21 -070019 * Returns Packet buffer pointer
20 */
21static inline void *cvm_oct_get_buffer_ptr(union cvmx_buf_ptr packet_ptr)
22{
23 return cvmx_phys_to_ptr(((packet_ptr.s.addr >> 7) - packet_ptr.s.back)
24 << 7);
25}
26
27/**
Justin P. Mattock215c47c2012-03-26 21:34:18 -070028 * INTERFACE - convert IPD port to logical interface
David Daney80ff0fd2009-05-05 17:35:21 -070029 * @ipd_port: Port to check
30 *
31 * Returns Logical interface
32 */
33static inline int INTERFACE(int ipd_port)
34{
Aaro Koskinen9eca4992016-06-29 15:20:45 +030035 int interface;
Janne Huttunen1d39a5e2015-08-13 16:21:46 +030036
Aaro Koskinen9eca4992016-06-29 15:20:45 +030037 if (ipd_port == CVMX_PIP_NUM_INPUT_PORTS)
38 return 10;
39 interface = cvmx_helper_get_interface_num(ipd_port);
Janne Huttunen1d39a5e2015-08-13 16:21:46 +030040 if (interface >= 0)
41 return interface;
Craig Kewley355e6e42017-05-01 21:22:35 +010042 panic("Illegal ipd_port %d passed to %s\n", ipd_port, __func__);
David Daney80ff0fd2009-05-05 17:35:21 -070043}
44
45/**
David Daneyec977c52010-02-16 17:25:32 -080046 * INDEX - convert IPD/PKO port number to the port's interface index
David Daney80ff0fd2009-05-05 17:35:21 -070047 * @ipd_port: Port to check
48 *
49 * Returns Index into interface port list
50 */
51static inline int INDEX(int ipd_port)
52{
Janne Huttunen1d39a5e2015-08-13 16:21:46 +030053 return cvmx_helper_get_interface_index_num(ipd_port);
David Daney80ff0fd2009-05-05 17:35:21 -070054}