[PATCH 11/17] dt-bindings: Add PLX Technology OXNAS pinctrl and gpio bindings
Signed-off-by: Neil Armstrong <narmstrong@baylibre.com> --- .../devicetree/bindings/gpio/gpio_oxnas.txt | 27 ++++++ .../bindings/pinctrl/plx
View Article[PATCH 12/17] arm: Add new mach-oxnas
Add mach-oxnas directory containing Kconfig and generic oxnas handling for future SoC specific features like system reset. Signed-off-by: Neil Armstr
View Article[PATCH 13/17] arm: Add build support for mach-oxnas
Add Kconfig and Makefile support for mach-oxnas. Signed-off-by: Neil Armstrong <narmstrong@baylibre.com> --- arch/arm/Kconfig | 2 ++ arch/arm/Make
View Article[PATCH 14/17] arm: boot: dts: Add PLX Technology OX810SE dtsi
Signed-off-by: Neil Armstrong <narmstrong@baylibre.com> --- arch/arm/boot/dts/ox810se.dtsi | 279 +++++++++++++++++++++++++++++++++++++++++ 1 file ch
View Article[PATCH 15/17] dt-bindings: Add OXNAS bindings
Signed-off-by: Neil Armstrong <narmstrong@baylibre.com> --- Documentation/devicetree/bindings/arm/oxnas.txt | 9 +++++++++ 1 file changed, 9 insertio
View Article[PATCH 16/17] dt-bindings: Add Western Digital to vendor prefixes
Signed-off-by: Neil Armstrong <narmstrong@baylibre.com> --- Documentation/devicetree/bindings/vendor-prefixes.txt | 1 + 1 file changed, 1 insertion(
View Article[PATCH 17/17] arm: boot: dts: Add Western Digital My Book World Edition...
Add Western Digital My Book World Edition device tree based on PLX Technology OX810SE SoC. Signed-off-by: Neil Armstrong <narmstrong@baylibre.com> --
View Article[PATCHv3 00/13] scripts/gdb: Linux awareness debug commands
Hi Jan, V3 of the patchset respun. Now finally adding the lx-interrupts command after I resolved my issues with the Radix Tree parsing. This command
View Article[PATCHv3 01/13] scripts/gdb: Provide linux constants
Some macro's and defines are needed when parsing memory, and without compiling the kernel as -g3 they are not available in the debug-symbols. We use
View Article[PATCHv3 02/13] scripts/gdb: Provide kernel list item generators
Facilitate linked-list items by providing a generator to return the dereferenced, and type-cast objects from a kernel linked list CC: Jeff Mahoney <j
View Article[PATCHv3 03/13] scripts/gdb: Convert modules usage to lists functions
Simplify the module list functions with the new list_for_each_entry abstractions Signed-off-by: Kieran Bingham <kieran.bingham@linaro.org> --- scrip
View Article[PATCHv3 04/13] scripts/gdb: Provide exception catching parser
If we attempt to read a value that is not available to GDB, an exception is raised. Most of the time, this is a good thing; however on occasion we wil
View Article[PATCHv3 05/13] scripts/gdb: Support !CONFIG_MODULES gracefully
If CONFIG_MODULES is not enabled, lx-lsmod tries to find a non-existent symbol and generates an unfriendly traceback: (gdb) lx-lsmod Address Modul
View Article[PATCHv3 06/13] scripts/gdb: Provide a dentry_name VFS path helper
Walk the VFS entries, pre-pending the iname strings to generate a full VFS path name from a dentry. Signed-off-by: Kieran Bingham <kieran.bingham@lin
View Article[PATCHv3 07/13] scripts/gdb: Add io resource readers
Provide iomem_resource and ioports_resource printers and command hooks It can be quite interesting to halt the kernel as it's booting and check to se
View Article[PATCHv3 08/13] scripts/gdb: Add mount point list command
lx-mounts will identify current mount points based on the 'init_task' namespace by default, as we do not yet have a kernel thread list implementation
View Article[PATCHv3 09/13] scripts/gdb: Add meminfo command
Provide an equivalent of /proc/meminfo which should be available from core dumps, or crashed kernels. This should allow a debugger to identify if memo
View Article[PATCHv3 10/13] scripts/gdb: Add cpu iterators
The linux kernel provides macro's for iterating against values from the cpu_list masks. By providing some commonly used masks, we can mirror the kerne
View Article[PATCHv3 11/13] scripts/gdb: Add a Radix Tree Parser
Linux makes use of the Radix Tree data structure to store pointers indexed by integer values. This structure is utilised across many structures in the
View Article[PATCHv3 12/13] scripts/gdb: Add interrupts command
Allow the debugger to present a list of all interrupts and their associated counts. This will allow developers of drivers to identify hardware interac
View Article