| /linux/include/linux/pinctrl/ |
| H A D | machine.h | 108 #define PIN_MAP_CONFIGS_PIN(dev, state, pinctrl, pin, cfgs) \ argument 116 .configs = cfgs, \ 117 .num_configs = ARRAY_SIZE(cfgs), \ 121 #define PIN_MAP_CONFIGS_PIN_DEFAULT(dev, pinctrl, pin, cfgs) \ argument 122 PIN_MAP_CONFIGS_PIN(dev, PINCTRL_STATE_DEFAULT, pinctrl, pin, cfgs) 124 #define PIN_MAP_CONFIGS_PIN_HOG(dev, state, pin, cfgs) \ argument 125 PIN_MAP_CONFIGS_PIN(dev, state, dev, pin, cfgs) 127 #define PIN_MAP_CONFIGS_PIN_HOG_DEFAULT(dev, pin, cfgs) \ argument 128 PIN_MAP_CONFIGS_PIN(dev, PINCTRL_STATE_DEFAULT, dev, pin, cfgs) 130 #define PIN_MAP_CONFIGS_GROUP(dev, state, pinctrl, grp, cfgs) \ argument [all …]
|
| /linux/rust/ |
| H A D | Makefile | 65 cfgs-to-flags = $(patsubst %,--cfg='%',$1) 67 core-cfgs := \ 79 $(call cfgs-to-flags,$(core-cfgs)) 81 proc_macro2-cfgs := \ 90 $(call cfgs-to-flags,$(proc_macro2-cfgs)) 92 quote-cfgs := \ 102 $(call cfgs-to-flags,$(quote-cfgs)) 105 syn-cfgs := \ 118 $(call cfgs-to-flags,$(syn-cfgs)) 120 pin_init_internal-cfgs := \ [all …]
|
| /linux/scripts/ |
| H A D | generate_rust_analyzer.py | 14 def args_crates_cfgs(cfgs): argument 16 for cfg in cfgs: 22 def generate_crates(srctree, objtree, sysroot_src, external_src, cfgs, core_edition): argument 36 crates_cfgs = args_crates_cfgs(cfgs) 226 parser.add_argument('--cfgs', action='append', default=[]) 241 "crates": generate_crates(args.srctree, args.objtree, args.sysroot_src, args.exttree, args.cfgs, args.core_edition),
|
| /linux/drivers/hwtracing/coresight/ |
| H A D | coresight-ctcu-core.c | 185 const struct ctcu_config *cfgs; in ctcu_probe() local 211 cfgs = of_device_get_match_data(dev); in ctcu_probe() 212 if (cfgs) { in ctcu_probe() 213 if (cfgs->num_etr_config <= ETR_MAX_NUM) { in ctcu_probe() 214 for (i = 0; i < cfgs->num_etr_config; i++) { in ctcu_probe() 215 etr_cfg = &cfgs->etr_cfgs[i]; in ctcu_probe()
|
| /linux/drivers/phy/samsung/ |
| H A D | phy-samsung-ufs.c | 79 const struct samsung_ufs_phy_cfg * const *cfgs = ufs_phy->cfgs; in samsung_ufs_phy_calibrate() local 90 cfg = cfgs[ufs_phy->ufs_phy_state]; in samsung_ufs_phy_calibrate() 328 phy->cfgs = drvdata->cfgs; in samsung_ufs_phy_probe()
|
| H A D | phy-samsung-ufs.h | 115 const struct samsung_ufs_phy_cfg **cfgs; member 132 const struct samsung_ufs_phy_cfg * const *cfgs; member
|
| H A D | phy-gs101-ufs.c | 199 .cfgs = tensor_gs101_ufs_phy_cfgs,
|
| /linux/arch/mips/mm/ |
| H A D | init.c | 318 struct maar_config cfgs[3]; in maar_init() member 335 used = maar_config(recorded.cfgs, recorded.used, num_maars / 2); in maar_init() 387 if (used <= ARRAY_SIZE(recorded.cfgs)) { in maar_init() 388 recorded.cfgs[recorded.used].lower = lower; in maar_init() 389 recorded.cfgs[recorded.used].upper = upper; in maar_init() 390 recorded.cfgs[recorded.used].attrs = attr; in maar_init()
|
| /linux/drivers/phy/rockchip/ |
| H A D | phy-rockchip-usbdp.c | 198 const struct rk_udphy_cfg *cfgs; member 472 const struct rk_udphy_cfg *cfg = udphy->cfgs; in rk_udphy_reset_init() 490 const struct rk_udphy_cfg *cfg = udphy->cfgs; in rk_udphy_u3_port_disable() 499 const struct rk_udphy_cfg *cfg = udphy->cfgs; in rk_udphy_usb_bvalid_enable() 543 const struct rk_udphy_cfg *cfg = udphy->cfgs; in rk_udphy_dplane_select() 610 const struct rk_udphy_cfg *cfg = udphy->cfgs; in rk_udphy_dp_hpd_event_trigger() 784 const struct rk_udphy_cfg *cfg = udphy->cfgs; in rk_udphy_init() 1173 const struct rk_udphy_cfg *cfg = udphy->cfgs; in rk_udphy_dp_set_voltage() 1466 udphy->cfgs = device_get_match_data(dev); in rk_udphy_probe() 1467 if (!udphy->cfgs) in rk_udphy_probe() [all …]
|
| /linux/drivers/pinctrl/renesas/ |
| H A D | pinctrl-rzv2m.c | 197 unsigned long *cfgs; in rzv2m_map_add_config() local 199 cfgs = kmemdup_array(configs, num_configs, sizeof(*cfgs), GFP_KERNEL); in rzv2m_map_add_config() 200 if (!cfgs) in rzv2m_map_add_config() 205 map->data.configs.configs = cfgs; in rzv2m_map_add_config()
|
| H A D | sh_pfc.h | 679 #define SH_PFC_PIN_CFG(_pin, cfgs) { \ argument 683 .configs = cfgs, \
|
| H A D | pinctrl-rzg2l.c | 625 unsigned long *cfgs; in rzg2l_map_add_config() local 627 cfgs = kmemdup_array(configs, num_configs, sizeof(*cfgs), GFP_KERNEL); in rzg2l_map_add_config() 628 if (!cfgs) in rzg2l_map_add_config() 633 map->data.configs.configs = cfgs; in rzg2l_map_add_config()
|
| /linux/drivers/pinctrl/nxp/ |
| H A D | pinctrl-s32cc.c | 227 unsigned long *cfgs = NULL; in s32_dt_group_node_to_map() local 238 ret = pinconf_generic_parse_dt_config(np, pctldev, &cfgs, &n_cfgs); in s32_dt_group_node_to_map() 259 num_maps, np->name, cfgs, n_cfgs, in s32_dt_group_node_to_map() 266 kfree(cfgs); in s32_dt_group_node_to_map()
|
| /linux/drivers/net/ethernet/emulex/benet/ |
| H A D | be_cmds.c | 4088 struct be_fat_conf_params *cfgs; in be_cmd_set_fw_log_level() local 4104 cfgs = (struct be_fat_conf_params *) in be_cmd_set_fw_log_level() 4106 for (i = 0; i < le32_to_cpu(cfgs->num_modules); i++) { in be_cmd_set_fw_log_level() 4107 u32 num_modes = le32_to_cpu(cfgs->module[i].num_modes); in be_cmd_set_fw_log_level() 4110 if (cfgs->module[i].trace_lvl[j].mode == MODE_UART) in be_cmd_set_fw_log_level() 4111 cfgs->module[i].trace_lvl[j].dbg_lvl = in be_cmd_set_fw_log_level() 4116 status = be_cmd_set_ext_fat_capabilites(adapter, &extfat_cmd, cfgs); in be_cmd_set_fw_log_level() 4126 struct be_fat_conf_params *cfgs; in be_cmd_get_fw_log_level() local 4144 cfgs = (struct be_fat_conf_params *)(extfat_cmd.va + in be_cmd_get_fw_log_level() 4147 for (j = 0; j < le32_to_cpu(cfgs->module[0].num_modes); j++) { in be_cmd_get_fw_log_level() [all …]
|
| /linux/drivers/accel/amdxdna/ |
| H A D | aie2_message.c | 534 req.cfgs[i] = FIELD_PREP(AIE2_MSG_CFG_CU_PDI_ADDR, in aie2_config_cu() 536 req.cfgs[i] |= FIELD_PREP(AIE2_MSG_CFG_CU_FUNC, cu->cu_func); in aie2_config_cu() 538 abo->mem.dev_addr, req.cfgs[i]); in aie2_config_cu()
|
| /linux/drivers/soc/qcom/ |
| H A D | llcc-qcom.c | 5006 const struct qcom_sct_config *cfgs; in qcom_llcc_probe() local 5030 cfgs = of_device_get_match_data(&pdev->dev); in qcom_llcc_probe() 5031 if (!cfgs) { in qcom_llcc_probe() 5035 ret = qcom_llcc_get_cfg_index(pdev, &cfg_index, cfgs->num_config); in qcom_llcc_probe() 5038 cfg = &cfgs->llcc_config[cfg_index]; in qcom_llcc_probe()
|
| /linux/rust/pin-init/ |
| H A D | README.md | 246 <!-- These links are not picked up by cargo-rdme, since they are behind cfgs... -->
|
| /linux/arch/arm64/boot/dts/nvidia/ |
| H A D | tegra132.dtsi | 881 throttle-cfgs {
|
| H A D | tegra210.dtsi | 1406 throttle-cfgs {
|
| /linux/arch/arm/boot/dts/nvidia/ |
| H A D | tegra124.dtsi | 1026 throttle-cfgs {
|
| /linux/drivers/net/ethernet/marvell/octeontx2/af/ |
| H A D | rvu_nix.c | 3841 u64 cfgs[] = { in nix_af_mark_format_setup() local 3862 rc = rvu_nix_reserve_mark_format(rvu, nix_hw, blkaddr, cfgs[i]); in nix_af_mark_format_setup()
|