aboutsummaryrefslogtreecommitdiff
path: root/src/drivers
diff options
context:
space:
mode:
authorRicardo Quesada <ricardoq@google.com>2021-08-10 17:10:14 -0700
committerFelix Held <felix-coreboot@felixheld.de>2021-08-23 14:08:47 +0000
commit954df3d6bf60c750a4f4aaa0f4297260755a234e (patch)
treedb9779b6c723b1b59411e38a3172cc44b5f59af6 /src/drivers
parentc8f926addac7f2bf8ea8836a31337430aa63db9f (diff)
include/bcd: move bcd code to commonlib/bsd/include
Move bcd2bin() / bin2bcd() functions to commonlib/bsd/include/ Also, the license is changed from GPL to BSD. This is because it is needed from "utils" (see CL in the chain). For reference bin2bcd() & bcd2bin() are very simple functions. There are already BSD implementations, like these ones (just to name a few): https://chromium.googlesource.com/chromiumos/platform/mosys/+/refs/heads/main/include/lib/math.h#67 http://web.mit.edu/freebsd/head/sys/contrib/octeon-sdk/cvmx-cn3010-evb-hs5.c BUG=b:172210863 TEST=make (everything compiled Ok). Change-Id: If2eba82da35838799bcbcf38303de6bd53f7eb72 Signed-off-by: Ricardo Quesada <ricardoq@google.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/56904 Reviewed-by: Furquan Shaikh <furquan@google.com> Reviewed-by: Paul Menzel <paulepanter@mailbox.org> Reviewed-by: Jack Rosenthal <jrosenth@chromium.org> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/drivers')
-rw-r--r--src/drivers/ams/as3722rtc.c2
-rw-r--r--src/drivers/elog/elog.c2
-rw-r--r--src/drivers/i2c/pcf8523/pcf8523.c4
-rw-r--r--src/drivers/i2c/rx6110sa/rx6110sa.c6
-rw-r--r--src/drivers/pc80/rtc/mc146818rtc.c6
-rw-r--r--src/drivers/ti/tps65913/tps65913rtc.c2
6 files changed, 11 insertions, 11 deletions
diff --git a/src/drivers/ams/as3722rtc.c b/src/drivers/ams/as3722rtc.c
index b3a4469a0b..842ed8b4b4 100644
--- a/src/drivers/ams/as3722rtc.c
+++ b/src/drivers/ams/as3722rtc.c
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0-only */
-#include <bcd.h>
+#include <commonlib/bsd/bcd.h>
#include <device/i2c_simple.h>
#include <rtc.h>
#include <stdint.h>
diff --git a/src/drivers/elog/elog.c b/src/drivers/elog/elog.c
index cfeb7ce6d7..48270d2034 100644
--- a/src/drivers/elog/elog.c
+++ b/src/drivers/elog/elog.c
@@ -1,10 +1,10 @@
/* SPDX-License-Identifier: GPL-2.0-only */
#include <acpi/acpi.h>
-#include <bcd.h>
#include <boot_device.h>
#include <bootstate.h>
#include <cbmem.h>
+#include <commonlib/bsd/bcd.h>
#include <commonlib/bsd/elog.h>
#include <commonlib/region.h>
#include <console/console.h>
diff --git a/src/drivers/i2c/pcf8523/pcf8523.c b/src/drivers/i2c/pcf8523/pcf8523.c
index 94a6251a11..8d368b29a1 100644
--- a/src/drivers/i2c/pcf8523/pcf8523.c
+++ b/src/drivers/i2c/pcf8523/pcf8523.c
@@ -1,9 +1,9 @@
/* SPDX-License-Identifier: GPL-2.0-only */
+#include <commonlib/bsd/bcd.h>
+#include <console/console.h>
#include <device/smbus.h>
#include <version.h>
-#include <console/console.h>
-#include <bcd.h>
#include "chip.h"
/* Set RTC date from coreboot build date. */
diff --git a/src/drivers/i2c/rx6110sa/rx6110sa.c b/src/drivers/i2c/rx6110sa/rx6110sa.c
index 3cab8fa1c0..d30963cab6 100644
--- a/src/drivers/i2c/rx6110sa/rx6110sa.c
+++ b/src/drivers/i2c/rx6110sa/rx6110sa.c
@@ -2,13 +2,13 @@
#include <acpi/acpi_device.h>
#include <acpi/acpigen.h>
+#include <commonlib/bsd/bcd.h>
+#include <console/console.h>
#include <device/device.h>
#include <device/i2c.h>
#include <device/i2c_bus.h>
-#include <version.h>
-#include <console/console.h>
-#include <bcd.h>
#include <timer.h>
+#include <version.h>
#include "chip.h"
#include "rx6110sa.h"
diff --git a/src/drivers/pc80/rtc/mc146818rtc.c b/src/drivers/pc80/rtc/mc146818rtc.c
index 9153a03fd0..fd659f113b 100644
--- a/src/drivers/pc80/rtc/mc146818rtc.c
+++ b/src/drivers/pc80/rtc/mc146818rtc.c
@@ -2,15 +2,15 @@
#include <acpi/acpi.h>
#include <arch/io.h>
-#include <bcd.h>
-#include <fallback.h>
-#include <version.h>
+#include <commonlib/bsd/bcd.h>
#include <console/console.h>
+#include <fallback.h>
#include <pc80/mc146818rtc.h>
#include <rtc.h>
#include <security/vboot/vbnv.h>
#include <security/vboot/vbnv_layout.h>
#include <types.h>
+#include <version.h>
static void cmos_reset_date(void)
{
diff --git a/src/drivers/ti/tps65913/tps65913rtc.c b/src/drivers/ti/tps65913/tps65913rtc.c
index 1ee0d81462..b2b89ec2fc 100644
--- a/src/drivers/ti/tps65913/tps65913rtc.c
+++ b/src/drivers/ti/tps65913/tps65913rtc.c
@@ -1,6 +1,6 @@
/* SPDX-License-Identifier: GPL-2.0-only */
-#include <bcd.h>
+#include <commonlib/bsd/bcd.h>
#include <console/console.h>
#include <device/i2c_simple.h>
#include <rtc.h>