/openbmc/u-boot/scripts/ |
H A D | Makefile.lib | 51 multi-used-y := $(sort $(foreach m,$(obj-y), $(if $(strip $($(m:.o=-objs)) $($(m:.o=-y))), $(m)))) 52 multi-used-m := $(sort $(foreach m,$(obj-m), $(if $(strip $($(m:.o=-objs)) $($(m:.o=-y))), $(m)))) 53 multi-used := $(multi-used-y) $(multi-used-m) 54 single-used-m := $(sort $(filter-out $(multi-used-m),$(obj-m))) 58 multi-objs-y := $(foreach m, $(multi-used-y), $($(m:.o=-objs)) $($(m:.o=-y))) 59 multi-objs-m := $(foreach m, $(multi-used-m), $($(m:.o=-objs)) $($(m:.o=-y))) 60 multi-objs := $(multi-objs-y) $(multi-objs-m) 67 obj-dirs := $(dir $(multi-objs) $(obj-y)) 86 multi-used-y := $(addprefix $(obj)/,$(multi-used-y)) 87 multi-used-m := $(addprefix $(obj)/,$(multi-used-m)) [all …]
|
H A D | Makefile.build | 160 $(multi-objs-m) : modname = $(modname-multi) 161 $(multi-objs-m:.o=.i) : modname = $(modname-multi) 162 $(multi-objs-m:.o=.s) : modname = $(modname-multi) 163 $(multi-objs-m:.o=.lst) : modname = $(modname-multi) 164 $(multi-objs-y) : modname = $(modname-multi) 165 $(multi-objs-y:.o=.i) : modname = $(modname-multi) 166 $(multi-objs-y:.o=.s) : modname = $(modname-multi) 167 $(multi-objs-y:.o=.lst) : modname = $(modname-multi) 404 $(multi-used-y): FORCE 406 $(call multi_depend, $(multi-used-y), .o, -objs -y) [all …]
|
/openbmc/linux/Documentation/userspace-api/media/v4l/ |
H A D | planar-apis.rst | 6 Single- and multi-planar APIs 15 Initially, V4L2 API did not support multi-planar buffers and a set of 17 constitute what is being referred to as the "multi-planar API". 20 depending on whether single- or multi-planar API is being used. An 24 available multi-planar buffer types see enum 31 Multi-planar API introduces new multi-planar formats. Those formats use 33 the multi-planar API and a multi-planar format. Multi-planar API calls 35 in multi-planar API structures), while the single-planar API cannot 36 handle multi-planar formats. 39 Calls that distinguish between single and multi-planar APIs [all …]
|
/openbmc/linux/drivers/tty/serial/8250/ |
H A D | serial_cs.c | 74 int multi; /* 1 = multifunction, > 1 = # ports */ member 84 int multi; member 139 if (info->multi > 1) in quirk_config_nokia() 140 info->multi = 1; in quirk_config_nokia() 184 if (info->multi) in quirk_config_socket() 192 .multi = -1, 197 .multi = -1, 202 .multi = -1, 207 .multi = 2, 211 .multi = 4, [all …]
|
/openbmc/linux/drivers/net/ethernet/mellanox/mlxfw/ |
H A D | mlxfw_mfa2_tlv_multi.c | 14 const struct mlxfw_mfa2_tlv_multi *multi) in mlxfw_mfa2_tlv_multi_child() argument 19 return mlxfw_mfa2_tlv_get(mfa2_file, (void *) multi + multi_len); in mlxfw_mfa2_tlv_multi_child() 26 const struct mlxfw_mfa2_tlv_multi *multi; in mlxfw_mfa2_tlv_next() local 33 multi = mlxfw_mfa2_tlv_multi_get(mfa2_file, tlv); in mlxfw_mfa2_tlv_next() 34 if (!multi) in mlxfw_mfa2_tlv_next() 36 tlv_len = NLA_ALIGN(tlv_len + be16_to_cpu(multi->total_len)); in mlxfw_mfa2_tlv_next() 58 const struct mlxfw_mfa2_tlv_multi *multi, in mlxfw_mfa2_tlv_multi_child_find() argument 65 mlxfw_mfa2_tlv_multi_foreach(mfa2_file, tlv, idx, multi) { in mlxfw_mfa2_tlv_multi_child_find() 78 const struct mlxfw_mfa2_tlv_multi *multi, in mlxfw_mfa2_tlv_multi_child_count() argument 86 mlxfw_mfa2_tlv_multi_foreach(mfa2_file, tlv, idx, multi) { in mlxfw_mfa2_tlv_multi_child_count()
|
H A D | mlxfw_mfa2.c | 96 const struct mlxfw_mfa2_tlv_multi *multi) in mlxfw_mfa2_tlv_multi_validate() argument 102 mlxfw_mfa2_tlv_multi_foreach(mfa2_file, tlv, idx, multi) { in mlxfw_mfa2_tlv_multi_validate() 117 const struct mlxfw_mfa2_tlv_multi *multi; in mlxfw_mfa2_file_dev_validate() local 126 multi = mlxfw_mfa2_tlv_multi_get(mfa2_file, dev_tlv); in mlxfw_mfa2_file_dev_validate() 127 if (!multi) { in mlxfw_mfa2_file_dev_validate() 132 if (!mlxfw_mfa2_tlv_multi_validate(mfa2_file, multi)) in mlxfw_mfa2_file_dev_validate() 136 tlv = mlxfw_mfa2_tlv_multi_child_find(mfa2_file, multi, in mlxfw_mfa2_file_dev_validate() 153 err = mlxfw_mfa2_tlv_multi_child_count(mfa2_file, multi, in mlxfw_mfa2_file_dev_validate() 165 tlv = mlxfw_mfa2_tlv_multi_child_find(mfa2_file, multi, in mlxfw_mfa2_file_dev_validate() 190 const struct mlxfw_mfa2_tlv_multi *multi; in mlxfw_mfa2_file_comp_validate() local [all …]
|
H A D | mlxfw_mfa2_tlv_multi.h | 13 const struct mlxfw_mfa2_tlv_multi *multi); 25 const struct mlxfw_mfa2_tlv_multi *multi, 29 const struct mlxfw_mfa2_tlv_multi *multi, 37 #define mlxfw_mfa2_tlv_multi_foreach(mfa2_file, tlv, idx, multi) \ argument 39 mlxfw_mfa2_tlv_multi_child(mfa2_file, multi), \ 40 be16_to_cpu(multi->num_extensions) + 1)
|
/openbmc/openbmc/meta-facebook/meta-catalina/recipes-phosphor/gpio/ |
H A D | phosphor-gpio-monitor_%.bbappend | 9 file://phosphor-multi-gpio-monitor.json \ 10 file://phosphor-multi-gpio-presence.json \ 11 file://phosphor-multi-gpio-monitor-evt.json \ 12 file://phosphor-multi-gpio-presence-evt.json \ 41 install -m 0644 ${UNPACKDIR}/phosphor-multi-gpio-monitor.json \ 42 ${D}${datadir}/${PN}/phosphor-multi-gpio-monitor.json 43 install -m 0644 ${UNPACKDIR}/phosphor-multi-gpio-presence.json \ 44 ${D}${datadir}/${PN}/phosphor-multi-gpio-presence.json 45 install -m 0644 ${UNPACKDIR}/phosphor-multi-gpio-monitor.json \ 46 ${D}${datadir}/${PN}/phosphor-multi-gpio-monitor-evt.json [all …]
|
/openbmc/openbmc/meta-ibm/meta-genesis3/recipes-phosphor/gpio/ |
H A D | phosphor-gpio-monitor_%.bbappend | 4 file://phosphor-multi-gpio-presence.json \ 8 FILES:${PN}-presence += " ${datadir}/${PN}/phosphor-multi-gpio-presence.json \ 9 … ${systemd_system_unitdir}/phosphor-multi-gpio-presence.service.d/dependencies.conf \ 13 rm -f ${D}${datadir}/phosphor-gpio-monitor/phosphor-multi-gpio-presence.json 14 install -m 0644 ${UNPACKDIR}/phosphor-multi-gpio-presence.json ${D}${datadir}/${PN}/ 15 install -d ${D}${systemd_system_unitdir}/phosphor-multi-gpio-presence.service.d/ 16 …install -m 644 -D ${UNPACKDIR}/dependencies.conf ${D}${systemd_system_unitdir}/phosphor-multi-gpio…
|
/openbmc/openbmc/meta-ibm/meta-sbp1/recipes-phosphor/gpio/ |
H A D | phosphor-gpio-monitor_%.bbappend | 6 file://phosphor-multi-gpio-presence.json \ 10 FILES:${PN}-presence += " ${datadir}/${PN}/phosphor-multi-gpio-presence.json \ 11 … ${systemd_system_unitdir}/phosphor-multi-gpio-presence.service.d/dependencies.conf \ 15 rm -f ${D}${datadir}/${PN}/phosphor-multi-gpio-presence.json 16 install -m 0644 ${UNPACKDIR}/phosphor-multi-gpio-presence.json ${D}${datadir}/${PN}/ 17 install -d ${D}${systemd_system_unitdir}/phosphor-multi-gpio-presence.service.d/ 18 …install -m 644 -D ${UNPACKDIR}/dependencies.conf ${D}${systemd_system_unitdir}/phosphor-multi-gpio…
|
/openbmc/openbmc/meta-facebook/recipes-phosphor/gpio/ |
H A D | phosphor-gpio-monitor_%.bbappend | 3 SRC_URI:append:fb-compute-multihost = " file://phosphor-multi-gpio-monitor.json" 9 SYSTEMD_SERVICE:${PN}-monitor += "phosphor-multi-gpio-monitor.service" 12 …LINK:${PN}-monitor:append = " ../phosphor-multi-gpio-monitor.service:multi-user.target.requires/ph… 14 GPIO_HOST_TEMPLATES:append = " ${UNPACKDIR}/phosphor-multi-gpio-monitor.json" 19 install -m 0644 ${UNPACKDIR}/phosphor-multi-gpio-monitor.json \ 20 ${D}${datadir}/phosphor-gpio-monitor/phosphor-multi-gpio-monitor.json
|
/openbmc/openbmc/meta-facebook/meta-harma/recipes-phosphor/gpio/ |
H A D | phosphor-gpio-monitor_%.bbappend | 30 file://multi-gpios-sys-init \ 31 file://multi-gpios-sys-init.service \ 32 file://plat-phosphor-multi-gpio-monitor.json \ 33 file://plat-phosphor-multi-gpio-presence.json \ 50 multi-gpios-sys-init.service \ 62 install -m 0644 ${UNPACKDIR}/plat-phosphor-multi-gpio-monitor.json \ 63 ${D}${datadir}/phosphor-gpio-monitor/phosphor-multi-gpio-monitor.json 64 install -m 0644 ${UNPACKDIR}/plat-phosphor-multi-gpio-presence.json \ 65 ${D}${datadir}/phosphor-gpio-monitor/phosphor-multi-gpio-presence.json 72 install -m 0755 ${UNPACKDIR}/multi-gpios-sys-init ${D}${libexecdir}/${PN}/ [all …]
|
/openbmc/openbmc/meta-ampere/meta-jefferson/recipes-phosphor/gpio/ |
H A D | phosphor-gpio-monitor_%.bbappend | 4 file://phosphor-multi-gpio-monitor.json \ 5 file://phosphor-multi-gpio-presence.json \ 9 ${datadir}/${PN}/phosphor-multi-gpio-monitor.json \ 13 ${datadir}/${PN}/phosphor-multi-gpio-presence.json \ 18 install -m 0644 ${UNPACKDIR}/phosphor-multi-gpio-monitor.json ${D}${datadir}/${PN}/ 19 install -m 0644 ${UNPACKDIR}/phosphor-multi-gpio-presence.json ${D}${datadir}/${PN}/
|
/openbmc/openbmc/meta-ampere/meta-mitchell/recipes-phosphor/gpio/ |
H A D | phosphor-gpio-monitor_%.bbappend | 4 file://phosphor-multi-gpio-monitor.json \ 5 file://phosphor-multi-gpio-presence.json \ 14 ${datadir}/${PN}/phosphor-multi-gpio-monitor.json \ 17 ${datadir}/${PN}/phosphor-multi-gpio-presence.json \ 22 install -m 0644 ${UNPACKDIR}/phosphor-multi-gpio-monitor.json ${D}${datadir}/${PN}/ 23 install -m 0644 ${UNPACKDIR}/phosphor-multi-gpio-presence.json ${D}${datadir}/${PN}/
|
/openbmc/openbmc/meta-ampere/meta-jade/recipes-phosphor/gpio/ |
H A D | phosphor-gpio-monitor_%.bbappend | 9 file://phosphor-multi-gpio-monitor.json \ 10 file://phosphor-multi-gpio-presence.json \ 21 ${datadir}/${PN}/phosphor-multi-gpio-monitor.json \ 27 ${datadir}/${PN}/phosphor-multi-gpio-presence.json \ 32 install -m 0644 ${UNPACKDIR}/phosphor-multi-gpio-monitor.json ${D}${datadir}/${PN}/ 33 install -m 0644 ${UNPACKDIR}/phosphor-multi-gpio-presence.json ${D}${datadir}/${PN}/
|
/openbmc/linux/scripts/gcc-plugins/ |
H A D | Makefile | 40 plugin-multi := $(filter-out $(plugin-single), $(GCC_PLUGIN)) 41 plugin-objs := $(sort $(foreach m, $(plugin-multi), $($(m:%.so=%-objs)))) 43 targets += $(plugin-single) $(plugin-multi) $(plugin-objs) 47 plugin-multi := $(addprefix $(obj)/, $(plugin-multi)) 60 $(plugin-multi): FORCE 62 $(foreach m, $(notdir $(plugin-multi)), $(eval $(obj)/$m: $(addprefix $(obj)/, $($(m:%.so=%-objs)))…
|
/openbmc/openbmc/meta-phosphor/recipes-phosphor/gpio/ |
H A D | phosphor-gpio-monitor_git.bb | 20 SRC_URI += " file://phosphor-multi-gpio-presence.json" 23 SYSTEMD_SERVICE:${PN}-monitor += "phosphor-multi-gpio-monitor.service" 26 SYSTEMD_SERVICE:${PN}-presence += "phosphor-multi-gpio-presence.service" 35 FILES:${PN}-monitor += "${bindir}/phosphor-multi-gpio-monitor" 39 FILES:${PN}-presence += "${bindir}/phosphor-multi-gpio-presence" 40 FILES:${PN}-presence += "${datadir}/${PN}/phosphor-multi-gpio-presence.json" 52 install -m 0644 ${UNPACKDIR}/phosphor-multi-gpio-presence.json ${D}${datadir}/${PN}/
|
/openbmc/linux/scripts/ |
H A D | Makefile.lib | 51 multi-search = $(sort $(foreach m, $1, $(if $(call suffix-search, $m, $2, $3 -), $m))) 56 multi-obj-y := $(call multi-search, $(obj-y), .o, -objs -y) 57 multi-obj-m := $(call multi-search, $(obj-m), .o, -objs -y -m) 58 multi-obj-ym := $(multi-obj-y) $(multi-obj-m) 83 multi-dtb-y := $(call multi-search, $(dtb-y), .dtb, -dtbs) 87 base-dtb-y := $(foreach m, $(multi-dtb-y), $(firstword $(call suffix-search, $m, .dtb, -dtbs))) 101 multi-obj-m := $(addprefix $(obj)/, $(multi-obj-m)) 102 multi-dtb-y := $(addprefix $(obj)/, $(multi-dtb-y)) 109 modname-multi = $(sort $(foreach m,$(multi-obj-ym),\ 112 __modname = $(or $(modname-multi),$(basetarget)) [all …]
|
/openbmc/openbmc/meta-facebook/meta-minerva/recipes-phosphor/gpio/ |
H A D | phosphor-gpio-monitor_%.bbappend | 19 SRC_URI += "file://minerva-phosphor-multi-gpio-monitor.json \ 20 file://minerva-phosphor-multi-gpio-presence.json \ 35 install -m 0644 ${UNPACKDIR}/minerva-phosphor-multi-gpio-monitor.json \ 36 ${D}${datadir}/phosphor-gpio-monitor/phosphor-multi-gpio-monitor.json 37 install -m 0644 ${UNPACKDIR}/minerva-phosphor-multi-gpio-presence.json \ 38 ${D}${datadir}/phosphor-gpio-monitor/phosphor-multi-gpio-presence.json
|
/openbmc/linux/drivers/media/tuners/ |
H A D | fc0012.c | 125 unsigned char reg[7], am, pm, multi, tmp; in fc0012_set_params() local 152 multi = 96; in fc0012_set_params() 156 multi = 64; in fc0012_set_params() 160 multi = 48; in fc0012_set_params() 164 multi = 32; in fc0012_set_params() 168 multi = 24; in fc0012_set_params() 172 multi = 16; in fc0012_set_params() 176 multi = 12; in fc0012_set_params() 180 multi = 8; in fc0012_set_params() 184 multi = 6; in fc0012_set_params() [all …]
|
H A D | fc0013.c | 216 unsigned char reg[7], am, pm, multi, tmp; in fc0013_set_params() local 301 multi = 96; in fc0013_set_params() 305 multi = 64; in fc0013_set_params() 309 multi = 48; in fc0013_set_params() 313 multi = 32; in fc0013_set_params() 317 multi = 24; in fc0013_set_params() 321 multi = 16; in fc0013_set_params() 325 multi = 12; in fc0013_set_params() 329 multi = 8; in fc0013_set_params() 333 multi = 6; in fc0013_set_params() [all …]
|
/openbmc/openbmc/meta-facebook/meta-ventura/recipes-phosphor/gpio/ |
H A D | phosphor-gpio-monitor_%.bbappend | 21 SRC_URI += "file://ventura-phosphor-multi-gpio-monitor.json \ 22 file://ventura-phosphor-multi-gpio-presence.json \ 39 install -m 0644 ${UNPACKDIR}/ventura-phosphor-multi-gpio-monitor.json \ 40 ${D}${datadir}/phosphor-gpio-monitor/phosphor-multi-gpio-monitor.json 41 install -m 0644 ${UNPACKDIR}/ventura-phosphor-multi-gpio-presence.json \ 42 ${D}${datadir}/phosphor-gpio-monitor/phosphor-multi-gpio-presence.json
|
/openbmc/openbmc/meta-facebook/meta-catalina/recipes-phosphor/gpio/phosphor-gpio-monitor/ |
H A D | phosphor-multi-gpio-presence.service | 9 ExecStartPre=/usr/libexec/phosphor-gpio-monitor/prepare-serv-json phosphor-multi-gpio-presence 10 ExecStart=/usr/bin/phosphor-multi-gpio-presence --config /var/lib/phosphor-gpio-monitor/phosphor-mu… 13 RequiredBy=multi-user.target
|
/openbmc/openbmc/meta-ibm/recipes-phosphor/leds/ |
H A D | phosphor-led-manager_%.bbappend | 19 mkdir -p $D$systemd_system_unitdir/multi-user.target.wants 20 …LINK_FAULT="$D$systemd_system_unitdir/multi-user.target.wants/obmc-led-create-virtual-leds@sys-cla… 25 mkdir -p $D$systemd_system_unitdir/multi-user.target.wants 26 …LINK_ID="$D$systemd_system_unitdir/multi-user.target.wants/obmc-led-create-virtual-leds@sys-class-… 33 …LINK_FAULT="$D$systemd_system_unitdir/multi-user.target.wants/obmc-led-create-virtual-leds@sys-cla… 36 …LINK_ID="$D$systemd_system_unitdir/multi-user.target.wants/obmc-led-create-virtual-leds@sys-class-…
|
/openbmc/linux/arch/arm/boot/dts/aspeed/ |
H A D | aspeed-bmc-facebook-yosemitev2.dts | 98 mellanox,multi-host; 125 multi-master; 136 multi-master; 147 multi-master; 158 multi-master; 215 multi-master; 226 multi-master;
|