Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
O
OpenXG-RAN
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Michael Black
OpenXG-RAN
Commits
1d08851c
Commit
1d08851c
authored
Dec 03, 2021
by
Laurent Thomas
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
code review comment, compile error
parent
f70e3873
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
11 deletions
+5
-11
openair1/PHY/CODING/crc.h
openair1/PHY/CODING/crc.h
+2
-0
openair1/PHY/CODING/crc_byte.c
openair1/PHY/CODING/crc_byte.c
+3
-11
No files found.
openair1/PHY/CODING/crc.h
View file @
1d08851c
...
...
@@ -44,6 +44,8 @@
#include "crcext.h"
#include "types.h"
#include <immintrin.h>
#include <wmmintrin.h>
/**
* PCLMULQDQ CRC computation context structure
...
...
openair1/PHY/CODING/crc_byte.c
View file @
1d08851c
...
...
@@ -30,13 +30,10 @@
Modified in June, 2001, to include the length non multiple of 8
*/
#define USE_INTEL_CRC 1
#include "coding_defs.h"
#include "assertions.h"
#ifdef USE_INTEL_CRC
#include "crc.h"
#endif
/*ref 36-212 v8.6.0 , pp 8-9 */
/* the highest degree is set by default */
...
...
@@ -97,7 +94,6 @@ static unsigned short crc11Table[256];
static
unsigned
char
crc8Table
[
256
];
static
unsigned
char
crc6Table
[
256
];
#ifdef USE_INTEL_CRC
static
DECLARE_ALIGNED
(
struct
crc_pclmulqdq_ctx
lte_crc24a_pclmulqdq
,
16
)
=
{
0x64e4d700
,
/**< k1 */
0x2c8c9d00
,
/**< k2 */
...
...
@@ -117,7 +113,6 @@ DECLARE_ALIGNED(const uint8_t crc_xmm_shift_tab[48], 16) = {
0xff
,
0xff
,
0xff
,
0xff
,
0xff
,
0xff
,
0xff
,
0xff
};
#endif
void
crcTableInit
(
void
)
{
...
...
@@ -133,11 +128,10 @@ void crcTableInit (void)
crc8Table
[
c
]
=
(
unsigned
char
)
(
crcbit
(
&
c
,
1
,
poly8
)
>>
24
);
crc6Table
[
c
]
=
(
unsigned
char
)
(
crcbit
(
&
c
,
1
,
poly6
)
>>
24
);
}
while
(
++
c
);
#ifdef USE_INTEL_CRC
crc_xmm_be_le_swap128
=
_mm_setr_epi32
(
0x0c0d0e0f
,
0x08090a0b
,
0x04050607
,
0x00010203
);
if
(
__builtin_cpu_supports
(
"pclmul"
))
crc_xmm_be_le_swap128
=
_mm_setr_epi32
(
0x0c0d0e0f
,
0x08090a0b
,
0x04050607
,
0x00010203
);
#endif
}
/*********************************************************
...
...
@@ -171,7 +165,6 @@ unsigned int crc24a (unsigned char * inptr,
}
#ifdef USE_INTEL_CRC
static
DECLARE_ALIGNED
(
struct
crc_pclmulqdq_ctx
lte_crc24b_pclmulqdq
,
16
)
=
{
0x80140500
,
/**< k1 */
0x42000100
,
/**< k2 */
...
...
@@ -180,7 +173,6 @@ static DECLARE_ALIGNED(struct crc_pclmulqdq_ctx lte_crc24b_pclmulqdq, 16) = {
0x80006300
,
/**< p */
0ULL
/**< res */
};
#endif
unsigned
int
crc24b
(
unsigned
char
*
inptr
,
int
bitlen
)
{
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment