/openbmc/linux/arch/arm/boot/dts/nuvoton/ |
H A D | nuvoton-npcm750-runbmc-olympus.dts | 1 // SPDX-License-Identifier: GPL-2.0 5 /dts-v1/; 6 #include "nuvoton-npcm750.dtsi" 7 #include "nuvoton-npcm750-runbmc-olympus-pincfg.dtsi" 9 #include <dt-bindings/i2c/i2c.h> 10 #include <dt-bindings/gpio/gpio.h> 43 stdout-path = &serial3; 50 iio-hwmon { 51 compatible = "iio-hwmon"; 52 io-channels = <&adc 0>, <&adc 1>, <&adc 2>, <&adc 3>, [all …]
|
/openbmc/libpldm/abi/x86_64/ |
H A D | gcc.dump | 7 'af-mctp.h' => 1, 15 'instance-id.h' => 1, 16 'mctp-demux.h' => 1, 33 'af-mctp.c' => 1, 35 'instance-id.c' => 1, 36 'mctp-demux.c' => 1, 42 'Line' => '108', 45 'name' => 'transfer_flag', 54 'Line' => '99', 57 'name' => 'seconds', [all …]
|
/openbmc/linux/tools/testing/kunit/ |
H A D | kunit_parser.py | 1 # SPDX-License-Identifier: GPL-2.0 4 # results with reader-friendly format. Stores and returns test results in a 29 status : TestStatus - status of the test 30 name : str - name of the test 31 expected_count : int - expected number of subtests (0 if single 33 subtests : List[Test] - list of subtests 34 log : List[str] - log of KTAP lines that correspond to the test 35 counts : TestCounts - counts of the test statuses and errors of 39 def __init__(self) -> None: 42 self.name = '' [all …]
|
/openbmc/qemu/scripts/qapi/ |
H A D | parser.py | 1 # -*- coding: utf-8 -*- 6 # Copyright (c) 2013-2019 Red Hat Inc. 11 # Marc-André Lureau <marcandre.lureau@redhat.com> 15 # See the COPYING file in the top-level directory. 38 # pylint: disable=cyclic-import 39 # TODO: Remove cycle. [schema -> expr -> parser -> schema] 48 # pylint: disable=too-few-public-methods 74 Parse a JSON-esque schema file and process directives. See 75 qapi-code-gen.rst section "Schema Syntax" for the exact syntax. 78 :param fname: Source file name. [all …]
|
/openbmc/u-boot/tools/ |
H A D | rkmux.py | 8 # pdftotext -layout /path/to/rockchip-3288-trm.pdf /tmp/asc 55 def __init__(self, name): argument 57 self.name = name 58 self.re_sel = re.compile("[1-9]'b([01]+): (.*)") 68 print '/* %s */' % self.name 81 field = field[:-4] 83 field = field[:-6] 85 field = field[:-5] 94 bit_width = bit_high - bit_low + 1 95 mask = (1 << bit_width) - 1 [all …]
|
H A D | microcode-tool.py | 2 # SPDX-License-Identifier: GPL-2.0+ 20 name: Name of the CPU this microcode is for, including any version 26 def __init__(self, name, data): argument 27 self.name = name 44 3-Tuple: 49 re_date = re.compile('/\* *(.* [0-9]{4}) *\*/$') 50 re_license = re.compile('/[^-*+] *(.*)$') 56 name = None 58 for line in fd: 59 line = line.rstrip() [all …]
|
H A D | microcode-tool | 2 # SPDX-License-Identifier: GPL-2.0+ 20 name: Name of the CPU this microcode is for, including any version 26 def __init__(self, name, data): argument 27 self.name = name 44 3-Tuple: 49 re_date = re.compile('/\* *(.* [0-9]{4}) *\*/$') 50 re_license = re.compile('/[^-*+] *(.*)$') 56 name = None 58 for line in fd: 59 line = line.rstrip() [all …]
|
/openbmc/u-boot/tools/patman/ |
H A D | patchstream.py | 1 # SPDX-License-Identifier: GPL-2.0+ 17 re_remove = re.compile('^BUG=|^TEST=|^BRANCH=|^Change-Id:|^Review URL:' 18 '|Reviewed-on:|Commit-\w*:') 20 # Lines which are allowed after a TEST= line 21 re_allowed_after_test = re.compile('^Signed-off-by:') 24 re_signoff = re.compile('^Signed-off-by: *(.*)') 27 re_cover = re.compile('^Cover-letter:') 30 re_cover_cc = re.compile('^Cover-letter-cc: *(.*)') 33 re_series_tag = re.compile('^Series-([a-z-]*): *(.*)') 36 re_commit_tag = re.compile('^Commit-([a-z-]*): *(.*)') [all …]
|
/openbmc/linux/arch/arm/boot/dts/aspeed/ |
H A D | aspeed-bmc-lenovo-hr855xg2.dts | 1 // SPDX-License-Identifier: GPL-2.0+ 5 * Copyright (C) 2019-present Lenovo 8 /dts-v1/; 10 #include "aspeed-g5.dtsi" 11 #include <dt-bindings/gpio/aspeed-gpio.h> 15 compatible = "lenovo,hr855xg2-bmc", "aspeed,ast2500"; 29 stdout-path = &uart5; 38 reserved-memory { 39 #address-cells = <1>; 40 #size-cells = <1>; [all …]
|
H A D | aspeed-bmc-opp-palmetto.dts | 1 // SPDX-License-Identifier: GPL-2.0+ 2 /dts-v1/; 4 #include "aspeed-g4.dtsi" 5 #include <dt-bindings/gpio/aspeed-gpio.h> 9 compatible = "tyan,palmetto-bmc", "aspeed,ast2400"; 12 stdout-path = &uart5; 20 reserved-memory { 21 #address-cells = <1>; 22 #size-cells = <1>; 26 no-map; [all …]
|
/openbmc/linux/usr/ |
H A D | gen_init_cpio.c | 1 // SPDX-License-Identifier: GPL-2.0 34 int (*handler)(const char *line); 37 static void push_string(const char *name) in push_string() argument 39 unsigned int name_len = strlen(name) + 1; in push_string() 41 fputs(name, stdout); in push_string() 54 static void push_rest(const char *name) in push_rest() argument 56 unsigned int name_len = strlen(name) + 1; in push_rest() 59 fputs(name, stdout); in push_rest() 80 const char name[] = "TRAILER!!!"; in cpio_trailer() local 96 (unsigned)strlen(name)+1, /* namesize */ in cpio_trailer() [all …]
|
/openbmc/openbmc/poky/bitbake/contrib/vim/indent/ |
H A D | bitbake.vim | 28 let top = synIDattr(stack[0], "name") 31 return synIDattr(stack[0], "name") == "bbPyFuncDef" 45 " If this line is explicitly joined: If the previous line was also joined, 46 " line it up with that one, otherwise add two 'shiftwidth' 47 if getline(a:lnum - 1) =~ '\\$' 48 if a:lnum > 1 && getline(a:lnum - 2) =~ '\\$' 49 return indent(a:lnum - 1) 51 …return indent(a:lnum - 1) + (exists("g:pyindent_continue") ? eval(g:pyindent_continue) : (shiftwid… 54 " If the start of the line is in a string don't change the indent. 56 \ && synIDattr(synID(a:lnum, 1, 1), "name") =~ "String$" [all …]
|
/openbmc/phosphor-dbus-interfaces/yaml/com/ibm/ipzvpd/ |
H A D | LWP0.interface.yaml | 4 - name: RT 7 RT keyword. Contains the record name. 8 - name: VD 12 - name: N_20 15 The "20" keyword.Core0 L2 Line delete. 16 - name: N_21 19 The "21" keyword.Core1 L2 Line delete. 20 - name: N_22 23 The "22" keyword.Core2 L2 Line delete. 24 - name: N_23 [all …]
|
H A D | LWP2.interface.yaml | 4 - name: RT 7 RT keyword. Contains the record name. 8 - name: VD 12 - name: N_20 15 The "20" keyword.Core0 L2 Line delete. 16 - name: N_21 19 The "21" keyword.Core1 L2 Line delete. 20 - name: N_22 23 The "22" keyword.Core2 L2 Line delete. 24 - name: N_23 [all …]
|
H A D | LWP5.interface.yaml | 4 - name: RT 7 RT keyword. Contains the record name. 8 - name: VD 12 - name: N_20 15 The "20" keyword.Core0 L2 Line delete. 16 - name: N_21 19 The "21" keyword.Core1 L2 Line delete. 20 - name: N_22 23 The "22" keyword.Core2 L2 Line delete. 24 - name: N_23 [all …]
|
H A D | LWP1.interface.yaml | 4 - name: RT 7 RT keyword. Contains the record name. 8 - name: VD 12 - name: N_20 15 The "20" keyword.Core0 L2 Line delete. 16 - name: N_21 19 The "21" keyword.Core1 L2 Line delete. 20 - name: N_22 23 The "22" keyword.Core2 L2 Line delete. 24 - name: N_23 [all …]
|
H A D | LWP6.interface.yaml | 4 - name: RT 7 RT keyword. Contains the record name. 8 - name: VD 12 - name: N_20 15 The "20" keyword.Core0 L2 Line delete. 16 - name: N_21 19 The "21" keyword.Core1 L2 Line delete. 20 - name: N_22 23 The "22" keyword.Core2 L2 Line delete. 24 - name: N_23 [all …]
|
H A D | LWP7.interface.yaml | 4 - name: RT 7 RT keyword. Contains the record name. 8 - name: VD 12 - name: N_20 15 The "20" keyword.Core0 L2 Line delete. 16 - name: N_21 19 The "21" keyword.Core1 L2 Line delete. 20 - name: N_22 23 The "22" keyword.Core2 L2 Line delete. 24 - name: N_23 [all …]
|
H A D | LWP3.interface.yaml | 4 - name: RT 7 RT keyword. Contains the record name. 8 - name: VD 12 - name: N_20 15 The "20" keyword.Core0 L2 Line delete. 16 - name: N_21 19 The "21" keyword.Core1 L2 Line delete. 20 - name: N_22 23 The "22" keyword.Core2 L2 Line delete. 24 - name: N_23 [all …]
|
H A D | LWP4.interface.yaml | 4 - name: RT 7 RT keyword. Contains the record name. 8 - name: VD 12 - name: N_20 15 The "20" keyword.Core0 L2 Line delete. 16 - name: N_21 19 The "21" keyword.Core1 L2 Line delete. 20 - name: N_22 23 The "22" keyword.Core2 L2 Line delete. 24 - name: N_23 [all …]
|
/openbmc/phosphor-gpio-monitor/ |
H A D | README.md | 5 ### `phosphor-gpio-monitor` 7 This daemon accepts a command line parameter for monitoring single gpio line and 9 monitoring single GPIO line, for multiple lines, user has to run this daemon 10 seperately for each gpio line. 12 ### `phosphor-multi-gpio-monitor` 14 This daemon accepts command line parameter as a well-defined GPIO configuration 20 New implementation (phosphor-multi-gpio-monitor) provides multiple gpio line 21 monitoring in single instance of phosphor-multi-gpio-monitor running. It is very 23 line by name defined in kernel. 27 There is a phosphor-multi-gpio-monitor.json file that defines details of GPIOs [all …]
|
/openbmc/openbmc/poky/meta/lib/oeqa/utils/ |
H A D | logparser.py | 4 # SPDX-License-Identifier: MIT 11 # A parser that can be used to identify weather a line is a test result or a section statement. 34 return { 'name': "No-section", 'log': [] } 39 for line in f: 40 if not line.startswith(markers): 41 current_section['log'].append(line) 44 result = section_regex['begin'].search(line) 46 current_section['name'] = result.group(1) 47 if current_section['name'] not in self.results: 48 self.results[current_section['name']] = {} [all …]
|
/openbmc/u-boot/scripts/ |
H A D | mailmapper | 2 # SPDX-License-Identifier: GPL-2.0+ 13 One problem is that the authors' name and/or email address is sometimes 16 (See 'man git-shortlog' for furthur information of this feature.) 21 names which share the same email address. The author name with the most 22 commits is asuumed to be a canonical real name. If the number of commits 23 from the cananonical name is equal to or greater than 'MIN_COMMITS', 24 the entry for the cananical name will be output. ('MIN_COMMITS' is used 38 ----- 58 toplevel = subprocess.check_output(['git', 'rev-parse', '--show-toplevel']) 69 # First, create 'auther name' vs 'number of commits' database. [all …]
|
/openbmc/linux/tools/perf/util/ |
H A D | dwarf-aux.c | 1 // SPDX-License-Identifier: GPL-2.0-or-later 3 * dwarf-aux.c : libdw auxiliary interfaces 11 #include "dwarf-aux.h" 16 * cu_find_realpath - Find the realpath of the target file 47 * cu_get_comp_dir - Get the path of compilation directory 62 /* Unlike dwarf_getsrc_die(), cu_getsrc_die() only returns statement line */ 67 Dwarf_Line *line; in cu_getsrc_die() local 76 l = 0; u = nlines - 1; in cu_getsrc_die() 78 n = u - (u - l) / 2; in cu_getsrc_die() 79 line = dwarf_onesrcline(lines, n); in cu_getsrc_die() [all …]
|
/openbmc/u-boot/tools/buildman/ |
H A D | builder.py | 1 # SPDX-License-Identifier: GPL-2.0+ 4 # Bloat-o-meter code used here Copyright 2004 Matt Mackall <mpm@selenic.com> 40 commit and builds it (typically without re-configuring). When it runs out 44 Clearly the builder threads could work either way - they could check out a 66 Buildman also create working directories for each thread, in a .bm-work/ 69 As an example, say we are building branch 'us-net' for boards 'sandbox' and 70 'seaboard', and say that us-net has two commits. We will have directories 73 us-net/ base directory 74 01_of_02_g4ed4ebc_net--Add-tftp-speed-/ 76 u-boot.bin [all …]
|