This patch moves the IP checksum algorithm into commonlib to prepare for it being shared with libpayload. The current implementation is ancient and pretty hard to read (and does some unnecessary questionable things like the type-punning stuff which leads to suboptimal code generation), so this reimplements it from scratch (that also helps with the licensing). This algorithm is prepared to take in a pre-calculated "wide" checksum in a machine-register-sized data type which is then narrowed down to 16 bits (see RFC 1071 for why that's valid). This isn't used yet (and the code will get optimized out), but will be used later in this patch series for architecture-specific optimization. Change-Id: Ic04c714c00439a17fc04a8a6e730cc2aa19b8e68 Signed-off-by: Julius Werner <jwerner@chromium.org> Reviewed-on: https://review.coreboot.org/c/coreboot/+/80251 Reviewed-by: Yidi Lin <yidilin@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Jakub Czapiga <czapiga@google.com>
14 lines
367 B
Makefile
14 lines
367 B
Makefile
# SPDX-License-Identifier: GPL-2.0-only
|
|
|
|
tests-y += helpers-test
|
|
tests-y += gcd-test
|
|
tests-y += ipchksum-test
|
|
|
|
helpers-test-srcs += tests/commonlib/bsd/helpers-test.c
|
|
|
|
gcd-test-srcs += tests/commonlib/bsd/gcd-test.c
|
|
gcd-test-srcs += src/commonlib/bsd/gcd.c
|
|
|
|
ipchksum-test-srcs += tests/commonlib/bsd/ipchksum-test.c
|
|
ipchksum-test-srcs += src/commonlib/bsd/ipchksum.c
|