]> git.ipfire.org Git - thirdparty/u-boot.git/commitdiff
dm: core: Add a function to read into a unsigned int
authorSimon Glass <sjg@chromium.org>
Mon, 10 Dec 2018 17:37:37 +0000 (10:37 -0700)
committerSimon Glass <sjg@chromium.org>
Thu, 13 Dec 2018 23:32:49 +0000 (16:32 -0700)
The current dev_read...() functions use s32 and u32 which are convenient
for device tree but not so useful for normal code, which often wants to
use normal integers for values.

Add a helper which supports returning an unsigned int. Also add signed
versions of the unsigned readers.

Signed-off-by: Simon Glass <sjg@chromium.org>
arch/sandbox/dts/test.dts
drivers/core/read.c
include/dm/read.h
test/dm/test-fdt.c

index 82bd91936a6fb6f2c026f71dc0e36ba986a1eb78..3790b4c5208e96f7e3dc4c2a0a0b0e06bd9e0004 100644 (file)
@@ -87,6 +87,8 @@
                test2-gpios = <&gpio_a 1>, <&gpio_a 4>, <&gpio_b 6 1 3 2 1>,
                        <&gpio_b 7 2 3 2 1>, <&gpio_b 8 4 3 2 1>,
                        <&gpio_b 9 0xc 3 2 1>;
+               int-value = <1234>;
+               uint-value = <(-1234)>;
        };
 
        junk {
index cdd78be03e22280f1e0e877befd1556249e1e02b..3c46b3674ed616f3593933309c06c872b83fc836 100644 (file)
@@ -21,6 +21,29 @@ int dev_read_u32_default(struct udevice *dev, const char *propname, int def)
        return ofnode_read_u32_default(dev_ofnode(dev), propname, def);
 }
 
+int dev_read_s32(struct udevice *dev, const char *propname, s32 *outp)
+{
+       return ofnode_read_u32(dev_ofnode(dev), propname, (u32 *)outp);
+}
+
+int dev_read_s32_default(struct udevice *dev, const char *propname, int def)
+{
+       return ofnode_read_u32_default(dev_ofnode(dev), propname, def);
+}
+
+int dev_read_u32u(struct udevice *dev, const char *propname, uint *outp)
+{
+       u32 val;
+       int ret;
+
+       ret = ofnode_read_u32(dev_ofnode(dev), propname, &val);
+       if (ret)
+               return ret;
+       *outp = val;
+
+       return 0;
+}
+
 const char *dev_read_string(struct udevice *dev, const char *propname)
 {
        return ofnode_read_string(dev_ofnode(dev), propname);
index efcbee15ecaea90c05d6d80dcfb75f3a34a3b43a..389e30e7fb448f3da00e6ccff45d037257d1ec2e 100644 (file)
@@ -64,6 +64,38 @@ int dev_read_u32(struct udevice *dev, const char *propname, u32 *outp);
  */
 int dev_read_u32_default(struct udevice *dev, const char *propname, int def);
 
+/**
+ * dev_read_s32() - read a signed 32-bit integer from a device's DT property
+ *
+ * @dev:       device to read DT property from
+ * @propname:  name of the property to read from
+ * @outp:      place to put value (if found)
+ * @return 0 if OK, -ve on error
+ */
+int dev_read_s32(struct udevice *dev, const char *propname, s32 *outp);
+
+/**
+ * dev_read_s32_default() - read a signed 32-bit int from a device's DT property
+ *
+ * @dev:       device to read DT property from
+ * @propname:  name of the property to read from
+ * @def:       default value to return if the property has no value
+ * @return property value, or @def if not found
+ */
+int dev_read_s32_default(struct udevice *dev, const char *propname, int def);
+
+/**
+ * dev_read_u32u() - read a 32-bit integer from a device's DT property
+ *
+ * This version uses a standard uint type.
+ *
+ * @dev:       device to read DT property from
+ * @propname:  name of the property to read from
+ * @outp:      place to put value (if found)
+ * @return 0 if OK, -ve on error
+ */
+int dev_read_u32u(struct udevice *dev, const char *propname, uint *outp);
+
 /**
  * dev_read_string() - Read a string from a device's DT property
  *
@@ -492,6 +524,32 @@ static inline int dev_read_u32_default(struct udevice *dev,
        return ofnode_read_u32_default(dev_ofnode(dev), propname, def);
 }
 
+static inline int dev_read_s32(struct udevice *dev,
+                              const char *propname, s32 *outp)
+{
+       return ofnode_read_s32(dev_ofnode(dev), propname, outp);
+}
+
+static inline int dev_read_s32_default(struct udevice *dev,
+                                      const char *propname, int def)
+{
+       return ofnode_read_s32_default(dev_ofnode(dev), propname, def);
+}
+
+static inline int dev_read_u32u(struct udevice *dev,
+                               const char *propname, uint *outp)
+{
+       u32 val;
+       int ret;
+
+       ret = ofnode_read_u32(dev_ofnode(dev), propname, &val);
+       if (ret)
+               return ret;
+       *outp = val;
+
+       return 0;
+}
+
 static inline const char *dev_read_string(struct udevice *dev,
                                          const char *propname)
 {
index 96d2528accbd9f88ad2564c2f502c5aad5f3dc3a..984b80c02c8104280aad2ef7f61b2b4530e5ccf4 100644 (file)
@@ -736,3 +736,38 @@ static int dm_test_first_child(struct unit_test_state *uts)
        return 0;
 }
 DM_TEST(dm_test_first_child, DM_TESTF_SCAN_PDATA | DM_TESTF_SCAN_FDT);
+
+/* Test integer functions in dm_read_...() */
+static int dm_test_read_int(struct unit_test_state *uts)
+{
+       struct udevice *dev;
+       u32 val32;
+       s32 sval;
+       uint val;
+
+       ut_assertok(uclass_first_device_err(UCLASS_TEST_FDT, &dev));
+       ut_asserteq_str("a-test", dev->name);
+       ut_assertok(dev_read_u32(dev, "int-value", &val32));
+       ut_asserteq(1234, val32);
+
+       ut_asserteq(-EINVAL, dev_read_u32(dev, "missing", &val32));
+       ut_asserteq(6, dev_read_u32_default(dev, "missing", 6));
+
+       ut_asserteq(1234, dev_read_u32_default(dev, "int-value", 6));
+       ut_asserteq(1234, val32);
+
+       ut_asserteq(-EINVAL, dev_read_s32(dev, "missing", &sval));
+       ut_asserteq(6, dev_read_s32_default(dev, "missing", 6));
+
+       ut_asserteq(-1234, dev_read_s32_default(dev, "uint-value", 6));
+       ut_assertok(dev_read_s32(dev, "uint-value", &sval));
+       ut_asserteq(-1234, sval);
+
+       val = 0;
+       ut_asserteq(-EINVAL, dev_read_u32u(dev, "missing", &val));
+       ut_assertok(dev_read_u32u(dev, "uint-value", &val));
+       ut_asserteq(-1234, val);
+
+       return 0;
+}
+DM_TEST(dm_test_read_int, DM_TESTF_SCAN_PDATA | DM_TESTF_SCAN_FDT);