1/*************************************************************************
2SPDX-License-Identifier: BSD-3-Clause
3
4Copyright (c) 2003-2007  Cavium Networks (support@cavium.com). All rights
5reserved.
6
7Redistribution and use in source and binary forms, with or without
8modification, are permitted provided that the following conditions are
9met:
10
11    * Redistributions of source code must retain the above copyright
12      notice, this list of conditions and the following disclaimer.
13
14    * Redistributions in binary form must reproduce the above
15      copyright notice, this list of conditions and the following
16      disclaimer in the documentation and/or other materials provided
17      with the distribution.
18
19    * Neither the name of Cavium Networks nor the names of
20      its contributors may be used to endorse or promote products
21      derived from this software without specific prior written
22      permission.
23
24This Software, including technical data, may be subject to U.S. export  control laws, including the U.S. Export Administration Act and its  associated regulations, and may be subject to export or import  regulations in other countries.
25
26TO THE MAXIMUM EXTENT PERMITTED BY LAW, THE SOFTWARE IS PROVIDED "AS IS"
27AND WITH ALL FAULTS AND CAVIUM  NETWORKS MAKES NO PROMISES, REPRESENTATIONS OR WARRANTIES, EITHER EXPRESS, IMPLIED, STATUTORY, OR OTHERWISE, WITH RESPECT TO THE SOFTWARE, INCLUDING ITS CONDITION, ITS CONFORMITY TO ANY REPRESENTATION OR DESCRIPTION, OR THE EXISTENCE OF ANY LATENT OR PATENT DEFECTS, AND CAVIUM SPECIFICALLY DISCLAIMS ALL IMPLIED (IF ANY) WARRANTIES OF TITLE, MERCHANTABILITY, NONINFRINGEMENT, FITNESS FOR A PARTICULAR PURPOSE, LACK OF VIRUSES, ACCURACY OR COMPLETENESS, QUIET ENJOYMENT, QUIET POSSESSION OR CORRESPONDENCE TO DESCRIPTION. THE ENTIRE  RISK ARISING OUT OF USE OR PERFORMANCE OF THE SOFTWARE LIES WITH YOU.
28
29*************************************************************************/
30
31#include <sys/cdefs.h>
32__FBSDID("$FreeBSD$");
33
34#include <sys/param.h>
35#include <sys/systm.h>
36#include <sys/bus.h>
37#include <sys/endian.h>
38#include <sys/kernel.h>
39#include <sys/mbuf.h>
40#include <sys/socket.h>
41
42#include <net/ethernet.h>
43#include <net/if.h>
44#include <net/if_var.h>
45
46#include "wrapper-cvmx-includes.h"
47#include "ethernet-headers.h"
48
49/**
50 * Fill the supplied hardware pool with mbufs
51 *
52 * @param pool     Pool to allocate an mbuf for
53 * @param size     Size of the buffer needed for the pool
54 * @param elements Number of buffers to allocate
55 */
56int cvm_oct_mem_fill_fpa(int pool, int size, int elements)
57{
58	int freed = elements;
59	while (freed) {
60		KASSERT(size <= MCLBYTES - 128, ("mbuf clusters are too small"));
61
62		struct mbuf *m = m_getcl(M_NOWAIT, MT_DATA, M_PKTHDR);
63		if (__predict_false(m == NULL)) {
64			printf("Failed to allocate mbuf for hardware pool %d\n", pool);
65			break;
66		}
67
68		m->m_data += 128 - (((uintptr_t)m->m_data) & 0x7f);
69		*(struct mbuf **)(m->m_data - sizeof(void *)) = m;
70		cvmx_fpa_free(m->m_data, pool, DONT_WRITEBACK(size/128));
71		freed--;
72	}
73	return (elements - freed);
74}
75
76/**
77 * Free the supplied hardware pool of mbufs
78 *
79 * @param pool     Pool to allocate an mbuf for
80 * @param size     Size of the buffer needed for the pool
81 * @param elements Number of buffers to allocate
82 */
83void cvm_oct_mem_empty_fpa(int pool, int size, int elements)
84{
85	char *memory;
86
87	do {
88		memory = cvmx_fpa_alloc(pool);
89		if (memory) {
90			struct mbuf *m = *(struct mbuf **)(memory - sizeof(void *));
91			elements--;
92			m_freem(m);
93		}
94	} while (memory);
95
96	if (elements < 0)
97		printf("Warning: Freeing of pool %u had too many mbufs (%d)\n", pool, elements);
98	else if (elements > 0)
99		printf("Warning: Freeing of pool %u is missing %d mbufs\n", pool, elements);
100}
101