| /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 | 72 cfgs-to-flags = $(patsubst %,--cfg='%',$1) 74 core-cfgs := \ 85 $(call cfgs-to-flags,$(core-cfgs)) 93 proc_macro2-cfgs := \ 100 $(call cfgs-to-flags,$(proc_macro2-cfgs)) 102 quote-cfgs := \ 112 $(call cfgs-to-flags,$(quote-cfgs)) [all...] |
| /linux/scripts/ |
| H A D | generate_rust_analyzer.py | 21 def args_crates_cfgs(cfgs: List[str]) -> Dict[str, List[str]]: 23 for cfg in cfgs: 71 cfgs: List[str], 85 crates_cfgs = args_crates_cfgs(cfgs) 373 parser.add_argument('--cfgs', action='append', default=[]) 384 cfgs: List[str] 401 "crates": generate_crates(args.srctree, args.objtree, args.sysroot_src, args.exttree, args.cfgs, args.envs, args.core_edition), 14 args_crates_cfgs(cfgs) global() argument 22 generate_crates(srctree, objtree, sysroot_src, external_src, cfgs, core_edition) global() argument
|
| /linux/drivers/hwtracing/coresight/ |
| H A D | coresight-ctcu-core.c | 183 const struct ctcu_config *cfgs; in ctcu_probe() local 209 cfgs = of_device_get_match_data(dev); in ctcu_probe() 210 if (cfgs) { in ctcu_probe() 211 if (cfgs->num_etr_config <= ETR_MAX_NUM) { in ctcu_probe() 212 for (i = 0; i < cfgs->num_etr_config; i++) { in ctcu_probe() 213 etr_cfg = &cfgs->etr_cfgs[i]; in ctcu_probe()
|
| /linux/rust/pin-init/internal/src/ |
| H A D | init.rs | 226 let cfgs = { 227 let mut cfgs = attrs.clone(); 228 cfgs.retain(|attr| attr.path().is_ident("cfg")); 229 cfgs 298 #(#cfgs)* 306 guard_attrs.push(cfgs); 236 let cfgs = { global() localVariable 237 let mut cfgs = attrs.clone(); global() localVariable
|
| /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/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 | pinctrl-rzt2h.c | 260 unsigned long *cfgs; in rzt2h_map_add_config() 262 cfgs = kmemdup_array(configs, num_configs, sizeof(*cfgs), GFP_KERNEL); in rzt2h_map_add_config() 263 if (!cfgs) in rzt2h_map_add_config() 268 map->data.configs.configs = cfgs; 255 unsigned long *cfgs; rzt2h_map_add_config() local
|
| H A D | sh_pfc.h | 679 #define SH_PFC_PIN_CFG(_pin, cfgs) { \ argument 683 .configs = cfgs, \
|
| H A D | pinctrl-rzg2l.c | 777 unsigned long *cfgs; in rzg2l_dt_subnode_to_map() 779 cfgs = kmemdup_array(configs, num_configs, sizeof(*cfgs), GFP_KERNEL); in rzg2l_dt_subnode_to_map() 780 if (!cfgs) in rzg2l_dt_subnode_to_map() 785 map->data.configs.configs = cfgs; in rzg2l_dt_subnode_to_map() 625 unsigned long *cfgs; rzg2l_map_add_config() local
|
| /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 in be_cmd_get_fw_log_level() [all...] |
| /linux/drivers/accel/amdxdna/ |
| H A D | aie2_message.c | 533 req.cfgs[i] = FIELD_PREP(AIE2_MSG_CFG_CU_PDI_ADDR, in aie2_config_cu() 535 req.cfgs[i] |= FIELD_PREP(AIE2_MSG_CFG_CU_FUNC, cu->cu_func); in aie2_config_cu() 537 amdxdna_gem_dev_addr(abo), req.cfgs[i]); in aie2_config_cu()
|
| /linux/rust/pin-init/ |
| H A D | README.md | 245 <!-- 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 {
|
| /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 | 3876 u64 cfgs[] = { in rvu_get_lbk_link_max_frs() 3897 rc = rvu_nix_reserve_mark_format(rvu, nix_hw, blkaddr, cfgs[i]); in rvu_mbox_handler_nix_get_hw_info() 3844 u64 cfgs[] = { nix_af_mark_format_setup() local
|