Searched refs:line (Results 1 - 25 of 158) sorted by relevance

1234567

/u-boot/arch/sandbox/dts/include/dt-bindings/gpio/
H A Duniphier-gpio.h13 #define UNIPHIER_GPIO_PORT(bank, line) \
14 ((UNIPHIER_GPIO_LINES_PER_BANK) * (bank) + (line))
/u-boot/arch/x86/dts/include/dt-bindings/gpio/
H A Duniphier-gpio.h13 #define UNIPHIER_GPIO_PORT(bank, line) \
14 ((UNIPHIER_GPIO_LINES_PER_BANK) * (bank) + (line))
/u-boot/arch/xtensa/dts/include/dt-bindings/gpio/
H A Duniphier-gpio.h13 #define UNIPHIER_GPIO_PORT(bank, line) \
14 ((UNIPHIER_GPIO_LINES_PER_BANK) * (bank) + (line))
/u-boot/arch/nios2/dts/include/dt-bindings/gpio/
H A Duniphier-gpio.h13 #define UNIPHIER_GPIO_PORT(bank, line) \
14 ((UNIPHIER_GPIO_LINES_PER_BANK) * (bank) + (line))
/u-boot/arch/microblaze/dts/include/dt-bindings/gpio/
H A Duniphier-gpio.h13 #define UNIPHIER_GPIO_PORT(bank, line) \
14 ((UNIPHIER_GPIO_LINES_PER_BANK) * (bank) + (line))
/u-boot/arch/mips/dts/include/dt-bindings/gpio/
H A Duniphier-gpio.h13 #define UNIPHIER_GPIO_PORT(bank, line) \
14 ((UNIPHIER_GPIO_LINES_PER_BANK) * (bank) + (line))
/u-boot/arch/arm/dts/include/dt-bindings/gpio/
H A Duniphier-gpio.h13 #define UNIPHIER_GPIO_PORT(bank, line) \
14 ((UNIPHIER_GPIO_LINES_PER_BANK) * (bank) + (line))
/u-boot/include/dt-bindings/gpio/
H A Duniphier-gpio.h13 #define UNIPHIER_GPIO_PORT(bank, line) \
14 ((UNIPHIER_GPIO_LINES_PER_BANK) * (bank) + (line))
/u-boot/dts/upstream/include/dt-bindings/gpio/
H A Duniphier-gpio.h13 #define UNIPHIER_GPIO_PORT(bank, line) \
14 ((UNIPHIER_GPIO_LINES_PER_BANK) * (bank) + (line))
/u-boot/doc/sphinx/
H A Dmaintainers_include.py63 for line in open(path):
65 line = unicode(line, 'utf-8')
67 if descriptions and line.startswith('Maintainers'):
69 # Ensure a blank line following the last "|"-prefixed line.
75 if re.search('^[A-Z0-9]', line):
79 line = line.rstrip()
83 m = re.search(pat, line)
[all...]
/u-boot/test/py/tests/
H A Dtest_dm.py12 drivers = (line[driver_index:].split()[0]
13 for line in response[:-1].split('\n')[2:])
32 prev = '' # uclass name of previous line
34 for line in lines:
35 indent = line.count('| ') + ('--' in line)
36 cur = line.split()[0]
61 drivers = (line[:20].rstrip() for line in response[:-1].split('\n')[2:])
70 drivers = (line[
[all...]
H A Dtest_trace.py14 # Decode a function-graph line
43 lines = [line.split(maxsplit=1) for line in out.splitlines() if line]
59 dm_f_time = [line.split()[0] for line in out.replace(',', '').splitlines()
60 if 'dm_f' in line]
110 kallsyms = [line.split() for line in out.splitlines() if 'Kallsyms' in line]
[all...]
/u-boot/tools/patman/
H A Dpatchstream.py26 # Lines which are allowed after a TEST= line
56 # Detect a 'diff' line
59 # Detect a context line, like '> @@ -153,8 +153,13 @@ CheckPatch
62 # Detect line with invalid TAG
67 STATE_PATCH_SUBJECT = 1 # In patch subject (first line of log for a commit)
69 STATE_DIFFS = 3 # In the diff part (past --- line)
81 self.skip_blank = False # True to skip a single blank line
82 self.found_test = False # Found a TEST= line
84 self.linenum = 1 # Output line number we are up to
99 self.cur_diff = None # Last 'diff' line see
[all...]
/u-boot/drivers/pinctrl/renesas/
H A Dpinctrl-rza1.c39 static void r7s72100_pfc_set_function(struct udevice *dev, u16 bank, u16 line, argument
44 clrsetbits_le16(plat->base + PFCAE(bank), BIT(line),
45 (func & BIT(2)) ? BIT(line) : 0);
46 clrsetbits_le16(plat->base + PFCE(bank), BIT(line),
47 (func & BIT(1)) ? BIT(line) : 0);
48 clrsetbits_le16(plat->base + PFC(bank), BIT(line),
49 (func & BIT(0)) ? BIT(line) : 0);
51 clrsetbits_le16(plat->base + PIBC(bank), BIT(line),
52 inbuf ? BIT(line) : 0);
53 clrsetbits_le16(plat->base + PBDC(bank), BIT(line),
66 u16 bank, line, func; local
[all...]
/u-boot/tools/
H A Drmboard.py37 file and removes that line from the file. This is needed because the path
75 for line in stdout.splitlines():
76 line = line.strip()
77 if 'MAINTAINERS' in line:
78 if line not in maintain:
79 maintain.append(line)
80 elif 'Kconfig' in line:
81 kconfig.append(line)
88 for line i
[all...]
H A Drkmux.py105 for line in lines:
106 m = self.re_sel.match(line)
127 def is_field_start(line):
128 if '=' in line or '+' in line:
130 if (line.startswith('gpio') or line.startswith('peri_') or
131 line.endswith('_sel') or line.endswith('_con')):
133 if not ' ' in line
[all...]
/u-boot/arch/arm/dts/include/dt-bindings/pinctrl/
H A Dstm32-pinfunc.h31 #define PIN_NO(port, line) (((port) - 'A') * 0x10 + (line))
33 #define STM32_PINMUX(port, line, mode) (((PIN_NO(port, line)) << 8) | (mode))
/u-boot/arch/microblaze/dts/include/dt-bindings/pinctrl/
H A Dstm32-pinfunc.h31 #define PIN_NO(port, line) (((port) - 'A') * 0x10 + (line))
33 #define STM32_PINMUX(port, line, mode) (((PIN_NO(port, line)) << 8) | (mode))
/u-boot/arch/mips/dts/include/dt-bindings/pinctrl/
H A Dstm32-pinfunc.h31 #define PIN_NO(port, line) (((port) - 'A') * 0x10 + (line))
33 #define STM32_PINMUX(port, line, mode) (((PIN_NO(port, line)) << 8) | (mode))
/u-boot/arch/sandbox/dts/include/dt-bindings/pinctrl/
H A Dstm32-pinfunc.h31 #define PIN_NO(port, line) (((port) - 'A') * 0x10 + (line))
33 #define STM32_PINMUX(port, line, mode) (((PIN_NO(port, line)) << 8) | (mode))
/u-boot/arch/x86/dts/include/dt-bindings/pinctrl/
H A Dstm32-pinfunc.h31 #define PIN_NO(port, line) (((port) - 'A') * 0x10 + (line))
33 #define STM32_PINMUX(port, line, mode) (((PIN_NO(port, line)) << 8) | (mode))
/u-boot/arch/nios2/dts/include/dt-bindings/pinctrl/
H A Dstm32-pinfunc.h31 #define PIN_NO(port, line) (((port) - 'A') * 0x10 + (line))
33 #define STM32_PINMUX(port, line, mode) (((PIN_NO(port, line)) << 8) | (mode))
/u-boot/arch/xtensa/dts/include/dt-bindings/pinctrl/
H A Dstm32-pinfunc.h31 #define PIN_NO(port, line) (((port) - 'A') * 0x10 + (line))
33 #define STM32_PINMUX(port, line, mode) (((PIN_NO(port, line)) << 8) | (mode))
/u-boot/include/dt-bindings/pinctrl/
H A Dstm32-pinfunc.h31 #define PIN_NO(port, line) (((port) - 'A') * 0x10 + (line))
33 #define STM32_PINMUX(port, line, mode) (((PIN_NO(port, line)) << 8) | (mode))
/u-boot/dts/upstream/include/dt-bindings/pinctrl/
H A Dstm32-pinfunc.h31 #define PIN_NO(port, line) (((port) - 'A') * 0x10 + (line))
33 #define STM32_PINMUX(port, line, mode) (((PIN_NO(port, line)) << 8) | (mode))

Completed in 216 milliseconds

1234567