]> CyberLeo.Net >> Repos - FreeBSD/releng/9.2.git/blob - sys/mips/cavium/octe/ethernet-mem.c
- Copy stable/9 to releng/9.2 as part of the 9.2-RELEASE cycle.
[FreeBSD/releng/9.2.git] / sys / mips / cavium / octe / ethernet-mem.c
1 /*************************************************************************
2 Copyright (c) 2003-2007  Cavium Networks (support@cavium.com). All rights
3 reserved.
4
5
6 Redistribution and use in source and binary forms, with or without
7 modification, are permitted provided that the following conditions are
8 met:
9
10     * Redistributions of source code must retain the above copyright
11       notice, this list of conditions and the following disclaimer.
12
13     * Redistributions in binary form must reproduce the above
14       copyright notice, this list of conditions and the following
15       disclaimer in the documentation and/or other materials provided
16       with the distribution.
17
18     * Neither the name of Cavium Networks nor the names of
19       its contributors may be used to endorse or promote products
20       derived from this software without specific prior written
21       permission.
22
23 This 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.
24
25 TO THE MAXIMUM EXTENT PERMITTED BY LAW, THE SOFTWARE IS PROVIDED "AS IS"
26 AND 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.
27
28 *************************************************************************/
29
30 #include <sys/cdefs.h>
31 __FBSDID("$FreeBSD$");
32
33 #include <sys/param.h>
34 #include <sys/systm.h>
35 #include <sys/bus.h>
36 #include <sys/endian.h>
37 #include <sys/kernel.h>
38 #include <sys/mbuf.h>
39 #include <sys/socket.h>
40
41 #include <net/ethernet.h>
42 #include <net/if.h>
43
44 #include "wrapper-cvmx-includes.h"
45 #include "ethernet-headers.h"
46
47 /**
48  * Fill the supplied hardware pool with mbufs
49  *
50  * @param pool     Pool to allocate an mbuf for
51  * @param size     Size of the buffer needed for the pool
52  * @param elements Number of buffers to allocate
53  */
54 int cvm_oct_mem_fill_fpa(int pool, int size, int elements)
55 {
56         int freed = elements;
57         while (freed) {
58                 KASSERT(size <= MCLBYTES - 128, ("mbuf clusters are too small"));
59
60                 struct mbuf *m = m_getcl(M_DONTWAIT, MT_DATA, M_PKTHDR);
61                 if (__predict_false(m == NULL)) {
62                         printf("Failed to allocate mbuf for hardware pool %d\n", pool);
63                         break;
64                 }
65
66                 m->m_data += 128 - (((uintptr_t)m->m_data) & 0x7f);
67                 *(struct mbuf **)(m->m_data - sizeof(void *)) = m;
68                 cvmx_fpa_free(m->m_data, pool, DONT_WRITEBACK(size/128));
69                 freed--;
70         }
71         return (elements - freed);
72 }
73
74
75 /**
76  * Free the supplied hardware pool of mbufs
77  *
78  * @param pool     Pool to allocate an mbuf for
79  * @param size     Size of the buffer needed for the pool
80  * @param elements Number of buffers to allocate
81  */
82 void cvm_oct_mem_empty_fpa(int pool, int size, int elements)
83 {
84         char *memory;
85
86         do {
87                 memory = cvmx_fpa_alloc(pool);
88                 if (memory) {
89                         struct mbuf *m = *(struct mbuf **)(memory - sizeof(void *));
90                         elements--;
91                         m_freem(m);
92                 }
93         } while (memory);
94
95         if (elements < 0)
96                 printf("Warning: Freeing of pool %u had too many mbufs (%d)\n", pool, elements);
97         else if (elements > 0)
98                 printf("Warning: Freeing of pool %u is missing %d mbufs\n", pool, elements);
99 }