devicetree.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
  • * [PATCH v4 02/20] fdt: Add functions to access phandles, arrays and bools
           [not found] <1326342789-5781-1-git-send-email-sjg@chromium.org>
           [not found] ` <1326342789-5781-1-git-send-email-sjg-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
    @ 2012-01-12  4:32 ` Simon Glass
           [not found]   ` <1326342789-5781-3-git-send-email-sjg-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
      2012-01-12  4:32 ` [PATCH v4 05/20] arm: fdt: Add skeleton device tree file from kernel Simon Glass
      2012-01-12  4:32 ` [PATCH v4 10/20] tegra: fdt: Add additional USB binding Simon Glass
      3 siblings, 1 reply; 64+ messages in thread
    From: Simon Glass @ 2012-01-12  4:32 UTC (permalink / raw)
      To: U-Boot Mailing List; +Cc: Devicetree Discuss, Tom Warren, Jerry Van Baren
    
    Add a function to look up a property which is a phandle in a node, and
    another to read a fixed-length integer array from an fdt property.
    Also add a function to read boolean properties, although there is no
    actual boolean type in U-Boot.
    
    Signed-off-by: Simon Glass <sjg@chromium.org>
    ---
    
     include/fdtdec.h |   39 +++++++++++++++++++++++++++++++
     lib/fdtdec.c     |   67 ++++++++++++++++++++++++++++++++++++++++++++++++++++++
     2 files changed, 106 insertions(+), 0 deletions(-)
    
    diff --git a/include/fdtdec.h b/include/fdtdec.h
    index 01badd4..047f603 100644
    --- a/include/fdtdec.h
    +++ b/include/fdtdec.h
    @@ -188,3 +188,42 @@ int fdtdec_find_aliases_for_id(const void *blob, const char *name,
      * @return compatible string for that id
      */
     const char *fdtdec_get_compatible(enum fdt_compat_id id);
    +
    +/* Look up a phandle and follow it to its node. Then return the offset
    + * of that node.
    + *
    + * @param blob		FDT blob
    + * @param node		node to examine
    + * @param prop_name	name of property to find
    + * @return node offset if found, -ve error code on error
    + */
    +int fdtdec_lookup_phandle(const void *blob, int node, const char *prop_name);
    +
    +/**
    + * Look up a property in a node and return its contents in an integer
    + * array of given length. The property must have at least enough data for
    + * the array (4*count bytes). It may have more, but this will be ignored.
    + *
    + * @param blob		FDT blob
    + * @param node		node to examine
    + * @param prop_name	name of property to find
    + * @param array		array to fill with data
    + * @param count		number of array elements
    + * @return 0 if ok, or -FDT_ERR_NOTFOUND if the property is not found,
    + *		or -FDT_ERR_BADLAYOUT if not enough data
    + */
    +int fdtdec_get_int_array(const void *blob, int node, const char *prop_name,
    +		u32 *array, int count);
    +
    +/**
    + * Look up a boolean property in a node and return it.
    + *
    + * A boolean properly is true if present in the device tree and false if not
    + * present, regardless of its value.
    + *
    + * @param blob	FDT blob
    + * @param node	node to examine
    + * @param prop_name	name of property to find
    + * @return 1 if the properly is present; 0 if it isn't present
    + */
    +int fdtdec_get_bool(const void *blob, int node, const char *prop_name);
    diff --git a/lib/fdtdec.c b/lib/fdtdec.c
    index 846ec3f..977528b 100644
    --- a/lib/fdtdec.c
    +++ b/lib/fdtdec.c
    @@ -269,3 +269,70 @@ int fdtdec_check_fdt(void)
     			"binary or define CONFIG_OF_EMBED\n");
     	return 0;
     }
    +
    +int fdtdec_lookup_phandle(const void *blob, int node, const char *prop_name)
    +{
    +	const u32 *phandle;
    +	int lookup;
    +
    +	phandle = fdt_getprop(blob, node, prop_name, NULL);
    +	if (!phandle)
    +		return -FDT_ERR_NOTFOUND;
    +
    +	lookup = fdt_node_offset_by_phandle(blob, fdt32_to_cpu(*phandle));
    +	return lookup;
    +}
    +
    +/**
    + * Look up a property in a node and check that it has a minimum length.
    + *
    + * @param blob		FDT blob
    + * @param node		node to examine
    + * @param prop_name	name of property to find
    + * @param min_len	minimum property length in bytes
    + * @param err		0 if ok, or -FDT_ERR_NOTFOUND if the property is not
    +			found, or -FDT_ERR_BADLAYOUT if not enough data
    + * @return pointer to cell, which is only valid if err == 0
    + */
    +static const void *get_prop_check_min_len(const void *blob, int node,
    +		const char *prop_name, int min_len, int *err)
    +{
    +	const void *cell;
    +	int len;
    +
    +	debug("%s: %s\n", __func__, prop_name);
    +	cell = fdt_getprop(blob, node, prop_name, &len);
    +	if (!cell)
    +		*err = -FDT_ERR_NOTFOUND;
    +	else if (len < min_len)
    +		*err = -FDT_ERR_BADLAYOUT;
    +	else
    +		*err = 0;
    +	return cell;
    +}
    +
    +int fdtdec_get_int_array(const void *blob, int node, const char *prop_name,
    +		u32 *array, int count)
    +{
    +	const u32 *cell;
    +	int i, err = 0;
    +
    +	debug("%s: %s\n", __func__, prop_name);
    +	cell = get_prop_check_min_len(blob, node, prop_name,
    +				      sizeof(u32) * count, &err);
    +	if (!err) {
    +		for (i = 0; i < count; i++)
    +			array[i] = fdt32_to_cpu(cell[i]);
    +	}
    +	return err;
    +}
    +
    +int fdtdec_get_bool(const void *blob, int node, const char *prop_name)
    +{
    +	const s32 *cell;
    +	int len;
    +
    +	debug("%s: %s\n", __func__, prop_name);
    +	cell = fdt_getprop(blob, node, prop_name, &len);
    +	return cell != NULL;
    +}
    -- 
    1.7.7.3
    
    ^ permalink raw reply related	[flat|nested] 64+ messages in thread
  • * [PATCH v4 05/20] arm: fdt: Add skeleton device tree file from kernel
           [not found] <1326342789-5781-1-git-send-email-sjg@chromium.org>
           [not found] ` <1326342789-5781-1-git-send-email-sjg-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
      2012-01-12  4:32 ` [PATCH v4 02/20] fdt: Add functions to access phandles, arrays and bools Simon Glass
    @ 2012-01-12  4:32 ` Simon Glass
      2012-01-12  4:32 ` [PATCH v4 10/20] tegra: fdt: Add additional USB binding Simon Glass
      3 siblings, 0 replies; 64+ messages in thread
    From: Simon Glass @ 2012-01-12  4:32 UTC (permalink / raw)
      To: U-Boot Mailing List; +Cc: Devicetree Discuss, Jerry Van Baren, Tom Warren
    
    This was taken from commit b48c54e2 at:
    git://git.kernel.org/pub/scm/linux/kernel/git/olof/tegra.git
    
    Signed-off-by: Simon Glass <sjg@chromium.org>
    ---
    
     arch/arm/dts/skeleton.dtsi |   13 +++++++++++++
     1 files changed, 13 insertions(+), 0 deletions(-)
     create mode 100644 arch/arm/dts/skeleton.dtsi
    
    diff --git a/arch/arm/dts/skeleton.dtsi b/arch/arm/dts/skeleton.dtsi
    new file mode 100644
    index 0000000..b41d241
    --- /dev/null
    +++ b/arch/arm/dts/skeleton.dtsi
    @@ -0,0 +1,13 @@
    +/*
    + * Skeleton device tree; the bare minimum needed to boot; just include and
    + * add a compatible value.  The bootloader will typically populate the memory
    + * node.
    + */
    +
    +/ {
    +	#address-cells = <1>;
    +	#size-cells = <1>;
    +	chosen { };
    +	aliases { };
    +	memory { device_type = "memory"; reg = <0 0>; };
    +};
    -- 
    1.7.7.3
    
    ^ permalink raw reply related	[flat|nested] 64+ messages in thread
  • * [PATCH v4 10/20] tegra: fdt: Add additional USB binding
           [not found] <1326342789-5781-1-git-send-email-sjg@chromium.org>
                       ` (2 preceding siblings ...)
      2012-01-12  4:32 ` [PATCH v4 05/20] arm: fdt: Add skeleton device tree file from kernel Simon Glass
    @ 2012-01-12  4:32 ` Simon Glass
           [not found]   ` <1326342789-5781-11-git-send-email-sjg-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
      3 siblings, 1 reply; 64+ messages in thread
    From: Simon Glass @ 2012-01-12  4:32 UTC (permalink / raw)
      To: U-Boot Mailing List; +Cc: Devicetree Discuss, Tom Warren, Jerry Van Baren
    
    This adds a property to indicate a port which can switch between host and device
    mode.
    
    Signed-off-by: Simon Glass <sjg@chromium.org>
    ---
    
     doc/device-tree-bindings/usb/tegra-usb.txt |    4 ++++
     1 files changed, 4 insertions(+), 0 deletions(-)
    
    diff --git a/doc/device-tree-bindings/usb/tegra-usb.txt b/doc/device-tree-bindings/usb/tegra-usb.txt
    index 035d63d..96fd022 100644
    --- a/doc/device-tree-bindings/usb/tegra-usb.txt
    +++ b/doc/device-tree-bindings/usb/tegra-usb.txt
    @@ -11,3 +11,7 @@ Required properties :
      - phy_type : Should be one of "ulpi" or "utmi".
      - nvidia,vbus-gpio : If present, specifies a gpio that needs to be
        activated for the bus to be powered.
    +
    +Optional properties:
    + - support-host-mode : If present then this peripheral can switch between
    +   host and device mode
    -- 
    1.7.7.3
    
    ^ permalink raw reply related	[flat|nested] 64+ messages in thread

  • end of thread, other threads:[~2012-02-27 20:27 UTC | newest]
    
    Thread overview: 64+ messages (download: mbox.gz follow: Atom feed
    -- links below jump to the message on this page --
         [not found] <1326342789-5781-1-git-send-email-sjg@chromium.org>
         [not found] ` <1326342789-5781-1-git-send-email-sjg-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
    2012-01-12  4:32   ` [PATCH v4 01/20] fdt: Tidy up a few fdtdec problems Simon Glass
         [not found]     ` <1326342789-5781-2-git-send-email-sjg-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
    2012-01-18 21:58       ` Stephen Warren
    2012-01-23  2:03       ` [U-Boot] " Jerry Van Baren
    2012-01-12  4:32   ` [PATCH v4 03/20] fdt: Add basic support for decoding GPIO definitions Simon Glass
    2012-01-18 22:17     ` Stephen Warren
    2012-01-21 17:08       ` Simon Glass
         [not found]         ` <CAPnjgZ0TCNTZjR_Fc1+UvYxyjH-a-Bxtkz60OERR7YmC5tbuug-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
    2012-01-23 18:18           ` Stephen Warren
         [not found]             ` <4F1DA490.6090903-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
    2012-01-24 23:11               ` Simon Glass
         [not found]                 ` <CAPnjgZ0eNXhWYtkb+4-FswpByAE7NHXoLz-ngp7Af_P0+u4GiQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
    2012-01-24 23:14                   ` Stephen Warren
         [not found]                     ` <74CDBE0F657A3D45AFBB94109FB122FF178CB81F0D-C7FfzLzN0UxDw2glCA4ptUEOCMrvLtNR@public.gmane.org>
    2012-01-24 23:17                       ` Simon Glass
    2012-01-12  4:32   ` [PATCH v4 04/20] arm: fdt: Ensure that an embedded fdt is word-aligned Simon Glass
    2012-02-18 11:51     ` Albert ARIBAUD
    2012-02-18 18:09       ` Simon Glass
    2012-02-19  8:27         ` Albert ARIBAUD
    2012-02-19 16:23           ` Simon Glass
    2012-02-19 18:33             ` Albert ARIBAUD
    2012-02-27 20:27               ` Simon Glass
    2012-01-12  4:32   ` [PATCH v4 06/20] tegra: fdt: Add Tegra2x device tree file from kernel Simon Glass
         [not found]     ` <1326342789-5781-7-git-send-email-sjg-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
    2012-01-18 22:24       ` Stephen Warren
    2012-01-19 23:51         ` Simon Glass
    2012-01-20  0:06           ` Stephen Warren
    2012-01-12  4:32   ` [PATCH v4 07/20] tegra: fdt: Add device tree file for Tegra2 Seaboard " Simon Glass
    2012-01-18 22:28     ` Stephen Warren
    2012-01-21 17:20       ` Simon Glass
    2012-01-12  4:32   ` [PATCH v4 08/20] fdt: Add staging area for device tree binding documentation Simon Glass
         [not found]     ` <1326342789-5781-9-git-send-email-sjg-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
    2012-01-18 22:30       ` Stephen Warren
    2012-01-19 23:52         ` Simon Glass
    2012-01-12  4:32   ` [PATCH v4 09/20] fdt: Add tegra-usb bindings file from linux Simon Glass
    2012-01-12  4:33   ` [PATCH v4 11/20] tegra: fdt: Add clock bindings Simon Glass
         [not found]     ` <1326342789-5781-12-git-send-email-sjg-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
    2012-01-19  0:16       ` [PATCH] ARM: tegra: Define Tegra20 CAR binding Stephen Warren
         [not found]         ` <1326932212-30346-1-git-send-email-swarren-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
    2012-01-19  5:31           ` Olof Johansson
         [not found]             ` <20120119053143.GA27447-O5ziIzlqnXUVNXGz7ipsyg@public.gmane.org>
    2012-01-19 17:17               ` Stephen Warren
         [not found]                 ` <74CDBE0F657A3D45AFBB94109FB122FF1780DAB0CA-C7FfzLzN0UxDw2glCA4ptUEOCMrvLtNR@public.gmane.org>
    2012-01-21  7:32                   ` Olof Johansson
         [not found]                     ` <CAOesGMh=i3EED-XhOpwGj8Vuma3xA0WehRL1iK1LSZfEuetP6Q-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
    2012-01-21  8:31                       ` Mitch Bradley
    2012-01-23 16:18                       ` Stephen Warren
         [not found]                         ` <74CDBE0F657A3D45AFBB94109FB122FF178CB81A90-C7FfzLzN0UxDw2glCA4ptUEOCMrvLtNR@public.gmane.org>
    2012-01-23 17:45                           ` Mitch Bradley
    2012-01-23 18:16                       ` Grant Likely
    2012-01-22 18:03           ` Simon Glass
         [not found]             ` <CAPnjgZ2t9FnEubWmLyNMGGhr=jEmfb1qzK=SAzRopjbCbHKdrA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
    2012-01-23 16:29               ` Stephen Warren
    2012-01-24  9:52           ` Peter De Schrijver
         [not found]             ` <20120124095241.GO10446-Rysk9IDjsxmJz7etNGeUX8VPkgjIgRvpAL8bYrjMMd8@public.gmane.org>
    2012-01-24 22:08               ` Stephen Warren
         [not found]                 ` <74CDBE0F657A3D45AFBB94109FB122FF178CB81EC4-C7FfzLzN0UxDw2glCA4ptUEOCMrvLtNR@public.gmane.org>
    2012-01-24 22:32                   ` Colin Cross
         [not found]                     ` <CAMbhsRQYt7RoXTDDPxCgGG2UX5_T86saOyns_0f_Sz-p7-gMTw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
    2012-01-24 22:43                       ` Stephen Warren
         [not found]                         ` <74CDBE0F657A3D45AFBB94109FB122FF178CB81EEB-C7FfzLzN0UxDw2glCA4ptUEOCMrvLtNR@public.gmane.org>
    2012-01-24 22:59                           ` Colin Cross
         [not found]                             ` <CAMbhsRScz4edCr4Cxa=QbBhuYW1M3GsbKhCbFuo5Zu9PRdNfSg-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
    2012-01-25  9:50                               ` Peter De Schrijver
    2012-01-12  4:33   ` [PATCH v4 12/20] tegra: usb: fdt: Add additional device tree definitions for USB ports Simon Glass
         [not found]     ` <1326342789-5781-13-git-send-email-sjg-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
    2012-01-19  0:19       ` Stephen Warren
    2012-01-19 23:53         ` Simon Glass
    2012-01-12  4:33   ` [PATCH v4 13/20] tegra: usb: fdt: Add USB definitions for Tegra2 Seaboard Simon Glass
    2012-01-12  4:33   ` [PATCH v4 15/20] fdt: Add function to return peripheral/clock ID Simon Glass
    2012-01-12  4:33   ` [PATCH v4 20/20] tegra: fdt: Enable FDT support for Seaboard Simon Glass
    2012-01-12  4:32 ` [PATCH v4 02/20] fdt: Add functions to access phandles, arrays and bools Simon Glass
         [not found]   ` <1326342789-5781-3-git-send-email-sjg-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
    2012-01-18 22:01     ` Stephen Warren
    2012-01-23  2:03     ` [U-Boot] " Jerry Van Baren
    2012-01-12  4:32 ` [PATCH v4 05/20] arm: fdt: Add skeleton device tree file from kernel Simon Glass
    2012-01-12  4:32 ` [PATCH v4 10/20] tegra: fdt: Add additional USB binding Simon Glass
         [not found]   ` <1326342789-5781-11-git-send-email-sjg-F7+t8E8rja9g9hUCZPvPmw@public.gmane.org>
    2012-01-18 22:48     ` Stephen Warren
         [not found]       ` <4F174C3E.2090403-DDmLM1+adcrQT0dZR+AlfA@public.gmane.org>
    2012-01-19  5:35         ` Olof Johansson
         [not found]           ` <20120119053523.GB27447-O5ziIzlqnXUVNXGz7ipsyg@public.gmane.org>
    2012-01-19  5:55             ` Simon Glass
         [not found]               ` <CAPnjgZ0JAyV8+0kLv=EcM-AhBxE-YSyG-Y7rYPS8PhOAOnq6dw-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
    2012-01-19  6:41                 ` Olof Johansson
         [not found]                   ` <CAOesGMjCxryS+3yQZqCP3JYeHpCbUuNHM+rtDBoOQjF6rwLv5g-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
    2012-01-19  6:59                     ` Simon Glass
         [not found]                       ` <CAPnjgZ10mwQJ7RubrO_VFdHF+39cHOjLPmQNbYBeERjTWJMU4Q-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
    2012-01-19  7:13                         ` Olof Johansson
         [not found]                           ` <CAOesGMhOe6enf9BFgpCbvEgtT3F-p5rEsxp8=PG57sxBaQvawQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
    2012-01-19 17:33                             ` Stephen Warren
    2012-01-19 23:55                               ` Simon Glass
    

    This is a public inbox, see mirroring instructions
    for how to clone and mirror all data and code used for this inbox;
    as well as URLs for NNTP newsgroup(s).