/openbmc/qemu/hw/acpi/ |
H A D | pcihp.c | 53 int bsel; member 60 uint64_t bsel = object_property_get_uint(OBJECT(bus), ACPI_PCIHP_PROP_BSEL, in acpi_pcihp_get_bsel() local 63 if (local_err || bsel >= ACPI_PCIHP_MAX_HOTPLUG_BUS) { in acpi_pcihp_get_bsel() 69 return bsel; in acpi_pcihp_get_bsel() 78 /* Assign BSEL property only to buses that support hotplug. */ 127 if (find->bsel == acpi_pcihp_get_bsel(bus)) { in acpi_pcihp_test_hotplug_bus() 132 static PCIBus *acpi_pcihp_find_hotplug_bus(AcpiPciHpState *s, int bsel) in acpi_pcihp_find_hotplug_bus() argument 134 AcpiPciHpFind find = { .bsel = bsel, .bus = NULL }; in acpi_pcihp_find_hotplug_bus() 136 if (bsel < 0) { in acpi_pcihp_find_hotplug_bus() 142 /* Make bsel 0 eject root bus if bsel property is not set, in acpi_pcihp_find_hotplug_bus() [all …]
|
H A D | trace-events | 44 acpi_pci_eject_slot(unsigned bsel, unsigned slot) "bsel: %u slot: %u" 45 acpi_pci_unplug(int bsel, int slot) "bsel: %d slot: %d" 46 acpi_pci_unplug_request(int bsel, int slot) "bsel: %d slot: %d" 51 acpi_pci_acpi_index_write(unsigned bsel, unsigned slot, uint32_t aidx) "bsel: %u slot: %u aidx: %" …
|
/openbmc/linux/sound/soc/codecs/ |
H A D | max98396.c | 456 int in, out, width, bsel, max_sr; member 458 { .in = 2, .out = 4, .width = 16, .bsel = MAX98396_BSEL_32, .max_sr = 192000 }, 459 { .in = 2, .out = 6, .width = 24, .bsel = MAX98396_BSEL_48, .max_sr = 192000 }, 460 { .in = 2, .out = 8, .width = 32, .bsel = MAX98396_BSEL_64, .max_sr = 192000 }, 461 { .in = 3, .out = 15, .width = 32, .bsel = MAX98396_BSEL_125, .max_sr = 192000 }, 462 { .in = 4, .out = 8, .width = 16, .bsel = MAX98396_BSEL_64, .max_sr = 192000 }, 463 { .in = 4, .out = 12, .width = 24, .bsel = MAX98396_BSEL_96, .max_sr = 192000 }, 464 { .in = 4, .out = 16, .width = 32, .bsel = MAX98396_BSEL_128, .max_sr = 192000 }, 465 { .in = 5, .out = 15, .width = 24, .bsel = MAX98396_BSEL_125, .max_sr = 192000 }, 466 { .in = 7, .out = 15, .width = 16, .bsel = MAX98396_BSEL_125, .max_sr = 192000 }, [all …]
|
H A D | max98373-i2c.c | 325 int bsel = 0; in max98373_dai_tdm_slot() local 336 bsel = max98373_get_bclk_sel(slots * slot_width); in max98373_dai_tdm_slot() 337 if (bsel == 0) { in max98373_dai_tdm_slot() 346 bsel); in max98373_dai_tdm_slot()
|
H A D | max98520.c | 271 int bsel; in max98520_dai_tdm_slot() local 280 bsel = max98520_get_bclk_sel(slots * slot_width); in max98520_dai_tdm_slot() 281 if (bsel == 0) { in max98520_dai_tdm_slot() 290 bsel); in max98520_dai_tdm_slot()
|
H A D | max98927.c | 396 int bsel = 0; in max98927_dai_tdm_slot() local 402 bsel = max98927_get_bclk_sel(slots * slot_width); in max98927_dai_tdm_slot() 403 if (bsel == 0) { in max98927_dai_tdm_slot() 410 MAX98927_PCM_CLK_SETUP_BSEL_MASK, bsel); in max98927_dai_tdm_slot()
|
H A D | max98388.c | 693 int bsel = 0; in max98388_dai_tdm_slot() local 705 bsel = max98388_get_bclk_sel(slots * slot_width); in max98388_dai_tdm_slot() 706 if (bsel == 0) { in max98388_dai_tdm_slot() 715 bsel); in max98388_dai_tdm_slot()
|
H A D | max98390.c | 391 int bsel; in max98390_dai_tdm_slot() local 403 bsel = max98390_get_bclk_sel(slots * slot_width); in max98390_dai_tdm_slot() 404 if (!bsel) { in max98390_dai_tdm_slot() 413 bsel); in max98390_dai_tdm_slot()
|
/openbmc/u-boot/arch/arm/mach-socfpga/ |
H A D | spl_a10.c | 34 const u32 bsel = readl(&sysmgr_regs->bootinfo); in spl_boot_device() local 36 switch (SYSMGR_GET_BOOTINFO_BSEL(bsel)) { in spl_boot_device() 53 printf("Invalid boot device (bsel=%08x)!\n", bsel); in spl_boot_device()
|
H A D | spl_gen5.c | 34 const u32 bsel = readl(&sysmgr_regs->bootinfo); in spl_boot_device() local 36 switch (SYSMGR_GET_BOOTINFO_BSEL(bsel)) { in spl_boot_device() 53 printf("Invalid boot device (bsel=%08x)!\n", bsel); in spl_boot_device()
|
H A D | misc_gen5.c | 120 const u32 bsel = in print_cpuinfo() local 126 printf("BOOT: %s\n", bsel_str[bsel].name); in print_cpuinfo() 134 const u32 bsel = readl(&sysmgr_regs->bootinfo) & 0x7; in arch_misc_init() local 136 env_set("bootmode", bsel_str[bsel].mode); in arch_misc_init()
|
H A D | misc_arria10.c | 108 const u32 bsel = in print_cpuinfo() local 113 printf("BOOT: %s\n", bsel_str[bsel].name); in print_cpuinfo()
|
H A D | misc.c | 30 struct bsel bsel_str[] = {
|
/openbmc/u-boot/arch/arm/mach-socfpga/include/mach/ |
H A D | misc.h | 13 struct bsel { struct 18 extern struct bsel bsel_str[]; argument
|
H A D | system_manager.h | 92 #define SYSMGR_GET_BOOTINFO_BSEL(bsel) \ argument 93 (((bsel) >> SYSMGR_BOOTINFO_BSEL_SHIFT) & 7)
|
/openbmc/qemu/tests/tcg/mips/user/ase/msa/bit-move/ |
H A D | test_msa_bsel_v.c | 2 * Test program for MSA instruction BSEL.V 38 char *instruction_name = "BSEL.V"; in main()
|
/openbmc/qemu/include/hw/acpi/ |
H A D | pcihp.h | 42 #define ACPI_PCIHP_PROP_BSEL "acpi-pcihp-bsel"
|
/openbmc/qemu/hw/i386/ |
H A D | acpi-build.c | 352 aml_store(aml_name("BSEL"), aml_index(params, aml_int(0)))); in aml_pci_device_dsm() 514 QObject *bsel = object_property_get_qobject(OBJECT(bus), in build_append_pcihp_slots() local 516 uint64_t bsel_val = qnum_get_uint(qobject_to(QNum, bsel)); in build_append_pcihp_slots() 517 qobject_unref(bsel); in build_append_pcihp_slots() 519 aml_append(parent_scope, aml_name_decl("BSEL", aml_int(bsel_val))); in build_append_pcihp_slots() 548 aml_call2("PCEJ", aml_name("BSEL"), aml_name("_SUN")) in build_append_pcihp_slots() 596 QObject *bsel; in build_append_notfication_callback() local 620 * ps: hostbridge might not have hotplug (bsel) enabled but might have in build_append_notfication_callback() 621 * child bridges that do have bsel. in build_append_notfication_callback() 626 bsel = object_property_get_qobject(OBJECT(bus), ACPI_PCIHP_PROP_BSEL, NULL); in build_append_notfication_callback() [all …]
|
/openbmc/linux/drivers/staging/sm750fb/ |
H A D | ddk750_sii164.h | 83 /* Bus Select (BSEL) */
|
/openbmc/linux/drivers/gpu/drm/bridge/ |
H A D | ti-tfp410.c | 282 * go with the defaults (BSEL=1, DSEL=1, DKEN=0, EDGE=1). in tfp410_parse_timings() 287 * In non-I2C mode, timings are configured through the BSEL, DSEL, DKEN in tfp410_parse_timings()
|
/openbmc/qemu/tests/tcg/mips/include/ |
H A D | wrappers_msa.h | 223 DO_MSA__WD__WS_WT(BSEL_V, bsel.v) 224 DO_MSA__WD__WD_WT(BSEL_V__DDT, bsel.v) 225 DO_MSA__WD__WS_WD(BSEL_V__DSD, bsel.v)
|
/openbmc/linux/Documentation/devicetree/bindings/pinctrl/ |
H A D | actions,s700-pinctrl.txt | 82 dnand_ceb3, porb, clko_25m, bsel, pkg0, pkg1, pkg2, pkg3
|
H A D | actions,s500-pinctrl.yaml | 167 dnand_rdbn, dnand_wrb, porb, clko_25m, bsel, pkg0, pkg1,
|
/openbmc/linux/drivers/pinctrl/actions/ |
H A D | pinctrl-s500.c | 177 #define BSEL _PIN(24) macro 318 PINCTRL_PIN(BSEL, "bsel"), 1619 [BSEL] = PAD_INFO(BSEL),
|
H A D | pinctrl-s700.c | 217 #define BSEL _PIN(24) macro 361 PINCTRL_PIN(BSEL, "bsel"), 1799 [BSEL] = PAD_INFO(BSEL),
|