/openbmc/linux/drivers/gpu/drm/vc4/ |
H A D | vc4_render_cl.c | 56 static inline void rcl_u8(struct vc4_rcl_setup *setup, u8 val) in rcl_u8() argument 58 *(u8 *)(setup->rcl->vaddr + setup->next_offset) = val; in rcl_u8() 59 setup->next_offset += 1; in rcl_u8() 62 static inline void rcl_u16(struct vc4_rcl_setup *setup, u16 val) in rcl_u16() argument 64 *(u16 *)(setup->rcl->vaddr + setup->next_offset) = val; in rcl_u16() 65 setup->next_offset += 2; in rcl_u16() 68 static inline void rcl_u32(struct vc4_rcl_setup *setup, u32 val) in rcl_u32() argument 70 *(u32 *)(setup->rcl->vaddr + setup->next_offset) = val; in rcl_u32() 71 setup->next_offset += 4; in rcl_u32() 80 static void vc4_store_before_load(struct vc4_rcl_setup *setup) in vc4_store_before_load() argument [all …]
|
/openbmc/u-boot/drivers/i2c/ |
H A D | stm32f7_i2c.c | 196 struct stm32_i2c_setup *setup; member 486 static int stm32_i2c_compute_solutions(struct stm32_i2c_setup *setup, in stm32_i2c_compute_solutions() argument 492 setup->clock_src); in stm32_i2c_compute_solutions() 498 af_delay_min = setup->analog_filter ? in stm32_i2c_compute_solutions() 500 af_delay_max = setup->analog_filter ? in stm32_i2c_compute_solutions() 503 sdadel_min = setup->fall_time - i2c_specs[setup->speed].hddat_min - in stm32_i2c_compute_solutions() 504 af_delay_min - (setup->dnf + 3) * i2cclk; in stm32_i2c_compute_solutions() 506 sdadel_max = i2c_specs[setup->speed].vddat_max - setup->rise_time - in stm32_i2c_compute_solutions() 507 af_delay_max - (setup->dnf + 4) * i2cclk; in stm32_i2c_compute_solutions() 509 scldel_min = setup->rise_time + i2c_specs[setup->speed].sudat_min; in stm32_i2c_compute_solutions() [all …]
|
/openbmc/linux/net/wireless/ |
H A D | mesh.c | 104 struct mesh_setup *setup, in __cfg80211_join_mesh() argument 118 setup->is_secure) in __cfg80211_join_mesh() 124 if (!setup->mesh_id_len) in __cfg80211_join_mesh() 130 if (!setup->chandef.chan) { in __cfg80211_join_mesh() 132 setup->chandef = wdev->u.mesh.preset_chandef; in __cfg80211_join_mesh() 135 if (!setup->chandef.chan) { in __cfg80211_join_mesh() 154 setup->chandef.chan = chan; in __cfg80211_join_mesh() 158 if (setup->chandef.chan) in __cfg80211_join_mesh() 163 if (!setup->chandef.chan) in __cfg80211_join_mesh() 166 setup->chandef.width = NL80211_CHAN_WIDTH_20_NOHT; in __cfg80211_join_mesh() [all …]
|
/openbmc/linux/drivers/net/ethernet/cavium/liquidio/ |
H A D | octeon_nic.h | 121 union octnic_cmd_setup *setup, u32 tag) in octnet_prepare_pci_cmd_o2() argument 140 port = (int)oct->instr_queue[setup->s.iq_no]->txpciq.s.port; in octnet_prepare_pci_cmd_o2() 150 if (!setup->s.gather) { in octnet_prepare_pci_cmd_o2() 151 ih2->dlengsz = setup->s.u.datasize; in octnet_prepare_pci_cmd_o2() 154 ih2->dlengsz = setup->s.u.gatherptrs; in octnet_prepare_pci_cmd_o2() 164 packet_params.s.ip_csum = setup->s.ip_csum; in octnet_prepare_pci_cmd_o2() 165 packet_params.s.transport_csum = setup->s.transport_csum; in octnet_prepare_pci_cmd_o2() 166 packet_params.s.tnl_csum = setup->s.tnl_csum; in octnet_prepare_pci_cmd_o2() 167 packet_params.s.tsflag = setup->s.timestamp; in octnet_prepare_pci_cmd_o2() 175 union octnic_cmd_setup *setup, u32 tag) in octnet_prepare_pci_cmd_o3() argument [all …]
|
/openbmc/u-boot/drivers/usb/emul/ |
H A D | sandbox_hub.c | 205 struct devrequest *setup) in sandbox_hub_submit_control_msg() argument 211 switch (setup->requesttype) { in sandbox_hub_submit_control_msg() 213 switch (setup->request) { in sandbox_hub_submit_control_msg() 225 __func__, setup->requesttype, in sandbox_hub_submit_control_msg() 226 setup->request); in sandbox_hub_submit_control_msg() 230 switch (setup->request) { in sandbox_hub_submit_control_msg() 235 port = (setup->index & USB_HUB_PORT_MASK) - 1; in sandbox_hub_submit_control_msg() 245 __func__, setup->requesttype, setup->request); in sandbox_hub_submit_control_msg() 249 switch (setup->requesttype) { in sandbox_hub_submit_control_msg() 251 switch (setup->request) { in sandbox_hub_submit_control_msg() [all …]
|
/openbmc/linux/drivers/clk/imx/ |
H A D | clk-sscg-pll.c | 90 struct clk_sscg_pll_setup setup; member 112 static int clk_sscg_pll2_check_match(struct clk_sscg_pll_setup *setup, in clk_sscg_pll2_check_match() argument 120 memcpy(setup, temp_setup, sizeof(struct clk_sscg_pll_setup)); in clk_sscg_pll2_check_match() 128 static int clk_sscg_divq_lookup(struct clk_sscg_pll_setup *setup, in clk_sscg_divq_lookup() argument 144 ret = clk_sscg_pll2_check_match(setup, temp_setup); in clk_sscg_divq_lookup() 155 static int clk_sscg_divf2_lookup(struct clk_sscg_pll_setup *setup, in clk_sscg_divf2_lookup() argument 162 ret = clk_sscg_divq_lookup(setup, temp_setup); in clk_sscg_divf2_lookup() 170 static int clk_sscg_divr2_lookup(struct clk_sscg_pll_setup *setup, in clk_sscg_divr2_lookup() argument 181 ret = clk_sscg_divf2_lookup(setup, temp_setup); in clk_sscg_divr2_lookup() 190 static int clk_sscg_pll2_find_setup(struct clk_sscg_pll_setup *setup, in clk_sscg_pll2_find_setup() argument [all …]
|
/openbmc/linux/fs/xfs/scrub/ |
H A D | scrub.c | 210 .setup = xchk_setup_fs, 216 .setup = xchk_setup_agheader, 222 .setup = xchk_setup_agheader, 228 .setup = xchk_setup_agheader, 234 .setup = xchk_setup_agheader, 240 .setup = xchk_setup_ag_allocbt, 246 .setup = xchk_setup_ag_allocbt, 252 .setup = xchk_setup_ag_iallocbt, 258 .setup = xchk_setup_ag_iallocbt, 265 .setup = xchk_setup_ag_rmapbt, [all …]
|
/openbmc/linux/arch/sh/kernel/cpu/sh4a/ |
H A D | Makefile | 7 obj-$(CONFIG_CPU_SUBTYPE_SH7757) += setup-sh7757.o 8 obj-$(CONFIG_CPU_SUBTYPE_SH7763) += setup-sh7763.o 9 obj-$(CONFIG_CPU_SUBTYPE_SH7770) += setup-sh7770.o 10 obj-$(CONFIG_CPU_SUBTYPE_SH7780) += setup-sh7780.o 11 obj-$(CONFIG_CPU_SUBTYPE_SH7785) += setup-sh7785.o 12 obj-$(CONFIG_CPU_SUBTYPE_SH7786) += setup-sh7786.o intc-shx3.o 13 obj-$(CONFIG_CPU_SUBTYPE_SH7343) += setup-sh7343.o 14 obj-$(CONFIG_CPU_SUBTYPE_SH7722) += setup-sh7722.o serial-sh7722.o 15 obj-$(CONFIG_CPU_SUBTYPE_SH7723) += setup-sh7723.o 16 obj-$(CONFIG_CPU_SUBTYPE_SH7724) += setup-sh7724.o [all …]
|
/openbmc/linux/arch/x86/boot/ |
H A D | Makefile | 32 targets := vmlinux.bin setup.bin setup.elf bzImage 36 setup-y += a20.o bioscall.o cmdline.o copy.o cpu.o cpuflags.o cpucheck.o 37 setup-y += early_serial_console.o edd.o header.o main.o memory.o 38 setup-y += pm.o pmjump.o printf.o regs.o string.o tty.o video.o 39 setup-y += video-mode.o version.o 40 setup-$(CONFIG_X86_APM_BOOT) += apm.o 46 setup-y += video-vga.o 47 setup-y += video-vesa.o 48 setup-y += video-bios.o 50 targets += $(setup-y) [all …]
|
/openbmc/qemu/hw/usb/ |
H A D | pcap.c | 58 unsigned char setup[8]; /* Only for Control S-type */ member 120 static void do_usb_pcap_ctrl(FILE *fp, USBPacket *p, bool setup) in do_usb_pcap_ctrl() argument 126 .type = setup ? 'S' : 'C', in do_usb_pcap_ctrl() 130 .flag_setup = setup ? 0 : '-', in do_usb_pcap_ctrl() 139 if (setup) { in do_usb_pcap_ctrl() 140 memcpy(packet.s.setup, dev->setup_buf, 8); in do_usb_pcap_ctrl() 145 if (in && setup) { in do_usb_pcap_ctrl() 150 if (!in && !setup) { in do_usb_pcap_ctrl() 165 static void do_usb_pcap_data(FILE *fp, USBPacket *p, bool setup) in do_usb_pcap_data() argument 169 .type = setup ? 'S' : 'C', in do_usb_pcap_data() [all …]
|
/openbmc/openbmc/meta-openembedded/meta-python/recipes-devtools/python/python3-pynetlinux/ |
H A D | 0001-setup.py-switch-to-setuptools.patch | 4 Subject: [PATCH] setup.py: switch to setuptools 10 'wheel' binary archive format to be built with 'setup.py bdist_wheel'. 17 setup.py | 2 +- 20 diff --git a/setup.py b/setup.py 22 --- a/setup.py 23 +++ b/setup.py 25 -from distutils.core import setup 26 +from setuptools import setup 28 setup(
|
/openbmc/linux/drivers/scsi/ |
H A D | aha152x.c | 733 struct Scsi_Host *aha152x_probe_one(struct aha152x_setup *setup) in aha152x_probe_one() argument 749 shpnt->io_port = setup->io_port; in aha152x_probe_one() 751 shpnt->irq = setup->irq; in aha152x_probe_one() 753 if (!setup->tc1550) { in aha152x_probe_one() 754 HOSTIOPORT0 = setup->io_port; in aha152x_probe_one() 755 HOSTIOPORT1 = setup->io_port; in aha152x_probe_one() 757 HOSTIOPORT0 = setup->io_port+0x10; in aha152x_probe_one() 758 HOSTIOPORT1 = setup->io_port-0x10; in aha152x_probe_one() 762 RECONNECT = setup->reconnect; in aha152x_probe_one() 763 SYNCHRONOUS = setup->synchronous; in aha152x_probe_one() [all …]
|
/openbmc/linux/tools/testing/selftests/net/ |
H A D | test_vxlan_vnifiltering.sh | 177 setup-hv-networking() { 202 setup-vm() { 394 setup-hv-networking 1 $hv1addr1 24 $hv1addr2 64 $hv2addr1 $hv2addr2 395 setup-hv-networking 2 $hv2addr1 24 $hv2addr2 64 $hv1addr1 $hv1addr2 399 setup-vm 1 11 1 10-v4-$hv1addr1-$hv2addr1-vnifilter,20-v4-$hv1addr1-$hv2addr1-vnifilter 0 400 setup-vm 1 21 2 10-v6-$hv1addr2-$hv2addr2-vnifilter,20-v6-$hv1addr2-$hv2addr2-vnifilter 0 402 setup-vm 2 12 1 10-v4-$hv2addr1-$hv1addr1-vnifilter,20-v4-$hv2addr1-$hv1addr1-vnifilter 0 403 setup-vm 2 22 2 10-v6-$hv2addr2-$hv1addr2-vnifilter,20-v6-$hv2addr2-$hv1addr2-vnifilter 0 419 setup-hv-networking 1 $hv1addr1 24 $hv1addr2 64 420 setup-hv-networking 2 $hv2addr1 24 $hv2addr2 64 [all …]
|
/openbmc/linux/arch/arm/mach-orion5x/ |
H A D | Makefile | 5 obj-$(CONFIG_MACH_KUROBOX_PRO) += kurobox_pro-setup.o 6 obj-$(CONFIG_MACH_TERASTATION_PRO2) += terastation_pro2-setup.o 7 obj-$(CONFIG_MACH_LINKSTATION_PRO) += kurobox_pro-setup.o 8 obj-$(CONFIG_MACH_DNS323) += dns323-setup.o 9 obj-$(CONFIG_MACH_TS209) += ts209-setup.o tsx09-common.o 10 obj-$(CONFIG_MACH_TS409) += ts409-setup.o tsx09-common.o 11 obj-$(CONFIG_MACH_TS78XX) += ts78xx-setup.o 12 obj-$(CONFIG_MACH_MV2120) += mv2120-setup.o 13 obj-$(CONFIG_MACH_NET2BIG) += net2big-setup.o
|
/openbmc/openbmc/meta-openembedded/meta-python/recipes-devtools/python/python3-twofish/ |
H A D | 0002-setup.py-switch-to-setuptools.patch | 4 Subject: [PATCH] setup.py: switch to setuptools 11 setup.py | 2 +- 14 diff --git a/setup.py b/setup.py 16 --- a/setup.py 17 +++ b/setup.py 19 setup.py - build and package info 22 -from distutils.core import setup, Extension 23 +from setuptools import setup, Extension
|
/openbmc/linux/drivers/acpi/ |
H A D | acpi_apd.c | 34 int (*setup)(struct apd_private_data *pdata); member 112 .setup = acpi_apd_setup, 117 .setup = acpi_apd_setup, 129 .setup = acpi_apd_setup, 135 .setup = fch_misc_setup, 141 .setup = acpi_apd_setup, 146 .setup = acpi_apd_setup, 151 .setup = acpi_apd_setup, 156 .setup = acpi_apd_setup, 161 .setup = acpi_apd_setup, [all …]
|
/openbmc/linux/arch/sh/kernel/cpu/sh3/ |
H A D | Makefile | 6 obj-y := ex.o probe.o entry.o setup-sh3.o 11 obj-$(CONFIG_CPU_SUBTYPE_SH7705) += setup-sh7705.o serial-sh770x.o 12 obj-$(CONFIG_CPU_SUBTYPE_SH7706) += setup-sh770x.o serial-sh770x.o 13 obj-$(CONFIG_CPU_SUBTYPE_SH7707) += setup-sh770x.o serial-sh770x.o 14 obj-$(CONFIG_CPU_SUBTYPE_SH7708) += setup-sh770x.o serial-sh770x.o 15 obj-$(CONFIG_CPU_SUBTYPE_SH7709) += setup-sh770x.o serial-sh770x.o 16 obj-$(CONFIG_CPU_SUBTYPE_SH7710) += setup-sh7710.o serial-sh7710.o 17 obj-$(CONFIG_CPU_SUBTYPE_SH7712) += setup-sh7710.o serial-sh7710.o 18 obj-$(CONFIG_CPU_SUBTYPE_SH7720) += setup-sh7720.o serial-sh7720.o 19 obj-$(CONFIG_CPU_SUBTYPE_SH7721) += setup-sh7720.o serial-sh7720.o
|
/openbmc/openbmc/meta-openembedded/meta-python/recipes-devtools/python/python3-aws-iot-device-sdk-python/ |
H A D | 0001-setup.py-Use-setuptools-instead-of-distutils.patch | 4 Subject: [PATCH] setup.py: Use setuptools instead of distutils 11 setup.py | 2 +- 14 diff --git a/setup.py b/setup.py 16 --- a/setup.py 17 +++ b/setup.py 22 -from distutils.core import setup 23 +from setuptools import setup 24 setup(
|
/openbmc/openbmc/meta-openembedded/meta-python/recipes-devtools/python/python3-sdnotify/ |
H A D | 0001-setup.py-switch-to-setuptools.patch | 4 Subject: [PATCH] setup.py: switch to setuptools 10 binary archive format to be built with 'setup.py bdist_wheel'. 16 setup.py | 2 +- 19 diff --git a/setup.py b/setup.py 21 --- a/setup.py 22 +++ b/setup.py 24 -from distutils.core import setup 25 +from setuptools import setup
|
/openbmc/linux/drivers/usb/mtu3/ |
H A D | mtu3_gadget_ep0.c | 63 forward_to_driver(struct mtu3 *mtu, const struct usb_ctrlrequest *setup) in forward_to_driver() argument 73 ret = mtu->gadget_driver->setup(&mtu->g, setup); in forward_to_driver() 185 static int ep0_set_sel(struct mtu3 *mtu, struct usb_ctrlrequest *setup) in ep0_set_sel() argument 188 u16 length = le16_to_cpu(setup->wLength); in ep0_set_sel() 206 ep0_get_status(struct mtu3 *mtu, const struct usb_ctrlrequest *setup) in ep0_get_status() argument 214 switch (setup->bRequestType & USB_RECIP_MASK) { in ep0_get_status() 233 epnum = (u8) le16_to_cpu(setup->wIndex); in ep0_get_status() 276 static int handle_test_mode(struct mtu3 *mtu, struct usb_ctrlrequest *setup) in handle_test_mode() argument 282 switch (le16_to_cpu(setup->wIndex) >> 8) { in handle_test_mode() 326 struct usb_ctrlrequest *setup, bool set) in ep0_handle_feature_dev() argument [all …]
|
/openbmc/openbmc/meta-openembedded/meta-python/recipes-devtools/python/python3-crcmod/ |
H A D | 0001-setup.py-use-setuptools-instead-of-distutils.patch | 4 Subject: [PATCH] setup.py use setuptools instead of distutils 9 setup.py | 3 +-- 12 diff --git a/setup.py b/setup.py 14 --- a/setup.py 15 +++ b/setup.py 17 -from distutils.core import setup 19 +from setuptools import Extension, setup
|
/openbmc/u-boot/drivers/usb/host/ |
H A D | usb-sandbox.c | 17 struct devrequest *setup, struct udevice *emul) in usbmon_trace() argument 28 if (setup) { in usbmon_trace() 29 debug(" s %02x %02x %04x %04x %04x", setup->requesttype, in usbmon_trace() 30 setup->request, setup->value, setup->index, in usbmon_trace() 31 setup->length); in usbmon_trace() 42 struct devrequest *setup) in sandbox_submit_control() argument 51 usbmon_trace(bus, pipe, setup, emul); in sandbox_submit_control() 56 if (setup->request == USB_REQ_SET_ADDRESS) { in sandbox_submit_control() 58 ctrl->rootdev = le16_to_cpu(setup->value); in sandbox_submit_control() 62 ret = usb_emul_control(emul, udev, pipe, buffer, length, setup); in sandbox_submit_control()
|
/openbmc/linux/sound/soc/codecs/ |
H A D | pcm3008.c | 32 struct pcm3008_setup_data *setup = component->dev->platform_data; in pcm3008_dac_ev() local 34 gpio_set_value_cansleep(setup->pdda_pin, in pcm3008_dac_ev() 45 struct pcm3008_setup_data *setup = component->dev->platform_data; in pcm3008_adc_ev() local 47 gpio_set_value_cansleep(setup->pdad_pin, in pcm3008_adc_ev() 109 struct pcm3008_setup_data *setup = pdev->dev.platform_data; in pcm3008_codec_probe() local 112 if (!setup) in pcm3008_codec_probe() 123 ret = devm_gpio_request_one(&pdev->dev, setup->dem0_pin, in pcm3008_codec_probe() 129 ret = devm_gpio_request_one(&pdev->dev, setup->dem1_pin, in pcm3008_codec_probe() 135 ret = devm_gpio_request_one(&pdev->dev, setup->pdad_pin, in pcm3008_codec_probe() 141 ret = devm_gpio_request_one(&pdev->dev, setup->pdda_pin, in pcm3008_codec_probe()
|
/openbmc/linux/arch/arm/mach-shmobile/ |
H A D | Makefile | 10 obj-$(CONFIG_ARCH_SH73A0) += setup-sh73a0.o 11 obj-$(CONFIG_ARCH_R8A73A4) += setup-r8a73a4.o 12 obj-$(CONFIG_ARCH_R8A7740) += setup-r8a7740.o 13 obj-$(CONFIG_ARCH_R8A7778) += setup-r8a7778.o 14 obj-$(CONFIG_ARCH_R8A7779) += setup-r8a7779.o 15 obj-$(CONFIG_ARCH_EMEV2) += setup-emev2.o 16 obj-$(CONFIG_ARCH_R7S72100) += setup-r7s72100.o 17 obj-$(CONFIG_ARCH_R7S9210) += setup-r7s9210.o 23 obj-$(CONFIG_ARCH_RCAR_GEN2) += setup-rcar-gen2.o platsmp-apmu.o $(cpu-y)
|
/openbmc/openbmc/meta-facebook/meta-yosemite4/recipes-networking/mctp/ |
H A D | mctp_%.bbappend | 4 file://setup-local-eid.conf \ 5 file://setup-static-endpoints.conf \ 7 file://setup-static-endpoints \ 17 install -m 0644 ${UNPACKDIR}/setup-local-eid.conf \ 18 ${override_dir}/setup-local-eid.conf 19 install -m 0644 ${UNPACKDIR}/setup-static-endpoints.conf \ 20 ${override_dir}/setup-static-endpoints.conf 26 install -m 0755 ${UNPACKDIR}/setup-static-endpoints \
|