| #
daae0a01 |
| 21-Jan-2018 |
Masahiro Yamada <yamada.masahiro@socionext.com> |
UPSTREAM: host-tools: use python2 explicitly for shebang
All of these host tools are apparently written for Python2, not Python3.
Use 'python2' in the shebang line according to PEP 394 (https://www
UPSTREAM: host-tools: use python2 explicitly for shebang
All of these host tools are apparently written for Python2, not Python3.
Use 'python2' in the shebang line according to PEP 394 (https://www.python.org/dev/peps/pep-0394/).
Change-Id: Ie56e538b0f4a234fccb460adbfd863db0712a1b0 Signed-off-by: Masahiro Yamada <yamada.masahiro@socionext.com> Reviewed-by: Simon Glass <sjg@chromium.org> Signed-off-by: Tao Huang <huangtao@rock-chips.com> (cherry picked from commit 94b13bbae90bfb94204b8fe9c531bc163e746a9f)
show more ...
|
| #
8d3a2568 |
| 12-Jul-2017 |
Tom Rini <trini@konsulko.com> |
Merge git://git.denx.de/u-boot-dm
|
| #
c0791928 |
| 19-Jun-2017 |
Simon Glass <sjg@chromium.org> |
dtoc: Add tests
Add some tests of dtoc's functionality to make it easier to expand and enhance the tool.
Signed-off-by: Simon Glass <sjg@chromium.org>
|
| #
fa0ea5b0 |
| 19-Jun-2017 |
Simon Glass <sjg@chromium.org> |
dtoc: Move the main logic into the dtb_platdata file
Collect the main logic of dtoc into a function and put it into dtb_platdata. This will allow tests to use this function instead of duplicating th
dtoc: Move the main logic into the dtb_platdata file
Collect the main logic of dtoc into a function and put it into dtb_platdata. This will allow tests to use this function instead of duplicating the code themselves.
Signed-off-by: Simon Glass <sjg@chromium.org>
show more ...
|
| #
e36024b0 |
| 19-Jun-2017 |
Simon Glass <sjg@chromium.org> |
dtoc: Pass include_disabled explicitly
This option is the only one actually used by the dtb_platdata class. Pass it explicitly to avoid needing to pass the whole option object to the constructor.
S
dtoc: Pass include_disabled explicitly
This option is the only one actually used by the dtb_platdata class. Pass it explicitly to avoid needing to pass the whole option object to the constructor.
Signed-off-by: Simon Glass <sjg@chromium.org>
show more ...
|
| #
2be282ca |
| 19-Jun-2017 |
Simon Glass <sjg@chromium.org> |
dtoc: Fix pylint warnings
Unfortunately I neglected to run pylint on this tool with its initial submission. Fix the warnings.
Signed-off-by: Simon Glass <sjg@chromium.org>
|
| #
7581c01a |
| 19-Jun-2017 |
Simon Glass <sjg@chromium.org> |
dtoc: Split out the main class into its own file
To simplify running tests we should move this class into its own file. This allows the tests to import it without having to import dtoc.py, which run
dtoc: Split out the main class into its own file
To simplify running tests we should move this class into its own file. This allows the tests to import it without having to import dtoc.py, which runs the tests.
Signed-off-by: Simon Glass <sjg@chromium.org>
show more ...
|
| #
14f5acfc |
| 19-Jun-2017 |
Simon Glass <sjg@chromium.org> |
dtoc: Add a comment at the top
Add a description of the dtoc tool at the top of the file.
Signed-off-by: Simon Glass <sjg@chromium.org>
|
| #
418355cb |
| 19-Jun-2017 |
Simon Glass <sjg@chromium.org> |
dtoc: Use self._options instead of the global options
This class should use the options object passed to it rather than finding the global one. Fix it.
Signed-off-by: Simon Glass <sjg@chromium.org>
|
| #
2cce5866 |
| 14-Jun-2017 |
Simon Glass <sjg@chromium.org> |
dtoc: Support multiple compatible strings in a node
Sometimes a node will have multiple compatible strings. Drivers may use one or the other so the best approach seems to be to #define them to be eq
dtoc: Support multiple compatible strings in a node
Sometimes a node will have multiple compatible strings. Drivers may use one or the other so the best approach seems to be to #define them to be equivalent.
Update dtoc to support this.
Signed-off-by: Simon Glass <sjg@chromium.org> Tested-by: Kever Yang <kever.yang@rock-chips.com>
show more ...
|
| #
dd31be21 |
| 04-Jun-2017 |
Tom Rini <trini@konsulko.com> |
Merge git://git.denx.de/u-boot-fdt
|
| #
99ed4a2e |
| 27-May-2017 |
Simon Glass <sjg@chromium.org> |
fdt: Drop fdt_select.py
This file was used to select between the normal and fallback libfdt implementations. Now that we only have one, it is not needed.
Drop it and fix up all users.
Signed-off-b
fdt: Drop fdt_select.py
This file was used to select between the normal and fallback libfdt implementations. Now that we only have one, it is not needed.
Drop it and fix up all users.
Signed-off-by: Simon Glass <sjg@chromium.org>
show more ...
|
| #
1f5541c8 |
| 10-May-2017 |
Tom Rini <trini@konsulko.com> |
Merge git://git.denx.de/u-boot-rockchip
This adds a new firefly-rk3399 board, MIPI support for rk3399 and rk3288, rk818 pmic support, mkimage improvements for rockchip and a few other things.
|
| #
439c947f |
| 23-Apr-2017 |
Simon Glass <sjg@chromium.org> |
dtoc: Handle nodes with phandles that depend on the same
At present dtoc assumes that nodes which are phandles do not themselves reference other phandle nodes. Unfortunately this is not necessarilly
dtoc: Handle nodes with phandles that depend on the same
At present dtoc assumes that nodes which are phandles do not themselves reference other phandle nodes. Unfortunately this is not necessarilly true. As a result we can currently output C code which does not compile because a node declaration can be referenced before it is declared.
Adjust the code to explicitly output all phandle nodes needed by node before the node itself is output.
This fixes building with the latest rk3399-firefly.dts from Linux, which has reordered the nodes.
Signed-off-by: Simon Glass <sjg@chromium.org> Tested-by: Kever Yang <kever.yang@rock-chips.com>
show more ...
|
| #
49eec8c7 |
| 23-Apr-2017 |
Simon Glass <sjg@chromium.org> |
dtoc: Move the output code into its own function
The code to generate the tables is quite long. Move the node-output code into its own function.
Signed-off-by: Simon Glass <sjg@chromium.org> Tested
dtoc: Move the output code into its own function
The code to generate the tables is quite long. Move the node-output code into its own function.
Signed-off-by: Simon Glass <sjg@chromium.org> Tested-by: Kever Yang <kever.yang@rock-chips.com>
show more ...
|
| #
524dd45e |
| 22-Feb-2017 |
Philipp Tomsich <philipp.tomsich@theobroma-systems.com> |
dtoc: make ScanTree recurse into subnodes
Previously, dtoc could only process the top-level nodes which led to device nodes in hierarchical trees to be ignored. E.g. the mmc0 node in the following e
dtoc: make ScanTree recurse into subnodes
Previously, dtoc could only process the top-level nodes which led to device nodes in hierarchical trees to be ignored. E.g. the mmc0 node in the following example would be ignored, as only the soc node was processed:
/ { soc { mmc0 { /* ... */ }; }; };
This introduces a recursive helper method ScanNode, which is used by ScanTree to recursively parse the entire tree hierarchy.
Signed-off-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com> Reviewed-by: Simon Glass <sjg@chromium.org>
show more ...
|
| #
d0ffda8e |
| 23-Mar-2017 |
Tom Rini <trini@konsulko.com> |
Merge git://git.denx.de/u-boot-dm
|
| #
55bc080e |
| 22-Feb-2017 |
Philipp Tomsich <philipp.tomsich@theobroma-systems.com> |
dtoc: make ScanTree recurse into subnodes
Previously, dtoc could only process the top-level nodes which led to device nodes in hierarchical trees to be ignored. E.g. the mmc0 node in the following e
dtoc: make ScanTree recurse into subnodes
Previously, dtoc could only process the top-level nodes which led to device nodes in hierarchical trees to be ignored. E.g. the mmc0 node in the following example would be ignored, as only the soc node was processed:
/ { soc { mmc0 { /* ... */ }; }; };
This introduces a recursive helper method ScanNode, which is used by ScanTree to recursively parse the entire tree hierarchy.
Signed-off-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com> Reviewed-by: Simon Glass <sjg@chromium.org>
show more ...
|
| #
f9515756 |
| 17-Mar-2017 |
Tom Rini <trini@konsulko.com> |
Merge git://git.denx.de/u-boot-rockchip
This includes support for rk3188 from Heiko Stübner and and rk3328 from Kever Yang. Also included is SPL support for rk3399 and a fix for rk3288 to get it bo
Merge git://git.denx.de/u-boot-rockchip
This includes support for rk3188 from Heiko Stübner and and rk3328 from Kever Yang. Also included is SPL support for rk3399 and a fix for rk3288 to get it booting again (spl_early_init()).
show more ...
|
| #
27326c7e |
| 18-Feb-2017 |
Heiko Stübner <heiko@sntech.de> |
dm: allow limiting pre-reloc markings to spl or tpl
Right now the u-boot,dm-pre-reloc flag will make each marked node always appear in both spl and tpl. But systems needing an additional tpl might h
dm: allow limiting pre-reloc markings to spl or tpl
Right now the u-boot,dm-pre-reloc flag will make each marked node always appear in both spl and tpl. But systems needing an additional tpl might have special constraints for each, like the spl needing to be very tiny.
So introduce two additional flags to mark nodes for only spl or tpl environments and introduce a function dm_fdt_pre_reloc to automate the necessary checks in code instances checking for pre-relocation flags.
The behaviour of the original flag stays untouched and still marks a node for both spl and tpl.
Signed-off-by: Heiko Stuebner <heiko@sntech.de> Reviewed-by: Simon Glass <sjg@chromium.org> Tested-by: Kever Yang <kever.yang@rock-chips.com>
show more ...
|
| #
21342d4a |
| 08-Feb-2017 |
Tom Rini <trini@konsulko.com> |
Merge git://git.denx.de/u-boot-dm
|
| #
6b6024a3 |
| 16-Jan-2017 |
Simon Glass <sjg@chromium.org> |
dtoc: Replace dot with underscore to avoid compiler errors
If there is a '.' in a compatible string, then dtoc will produce a struct with a name containing a '.'. This won't work, so replace it with
dtoc: Replace dot with underscore to avoid compiler errors
If there is a '.' in a compatible string, then dtoc will produce a struct with a name containing a '.'. This won't work, so replace it with '_'.
Also add a suitable test to the sandbox device tree to catch this.
Signed-off-by: Simon Glass <sjg@chromium.org>
show more ...
|
| #
79493609 |
| 13-Oct-2016 |
Tom Rini <trini@konsulko.com> |
Merge git://git.denx.de/u-boot-dm
|
| #
34c38896 |
| 27-Sep-2016 |
Paul Burton <paul.burton@imgtec.com> |
dtoc: Make integer division python 3.x safe
If we use the '/' operator then python 3.x will produce a float, and refuse to multiply the string sequence in Conv_name_to_c by it with:
TypeError:
dtoc: Make integer division python 3.x safe
If we use the '/' operator then python 3.x will produce a float, and refuse to multiply the string sequence in Conv_name_to_c by it with:
TypeError: can't multiply sequence by non-int of type 'float'
Use the '//' operator instead to enforce that we want integer rather than floating point division.
Signed-off-by: Paul Burton <paul.burton@imgtec.com> Acked-by: Simon Glass <sjg@chromium.org>
show more ...
|
| #
4ae6549f |
| 27-Sep-2016 |
Paul Burton <paul.burton@imgtec.com> |
dtoc: Use items() to iterate over dictionaries in python 3.x
In python 3.x the iteritems() method has been removed from dictionaries, and the items() method does effectively the same thing. On pytho
dtoc: Use items() to iterate over dictionaries in python 3.x
In python 3.x the iteritems() method has been removed from dictionaries, and the items() method does effectively the same thing. On python 2.x using items() is a little less efficient since it involves copying data, but as speed isn't a concern in the affected code switch to using items() anyway for simplicity.
Signed-off-by: Paul Burton <paul.burton@imgtec.com> Acked-by: Simon Glass <sjg@chromium.org>
show more ...
|