/Linux-v5.15/drivers/tty/vt/ |
D | defkeymap.map | 12 # be saved by mapping AltGr to Alt (and adapting a few entries): 13 # keycode 100 = Alt 16 alt keycode 1 = Meta_Escape 18 alt keycode 2 = Meta_one 22 alt keycode 3 = Meta_two 25 alt keycode 4 = Meta_three 28 alt keycode 5 = Meta_four 31 alt keycode 6 = Meta_five 34 alt keycode 7 = Meta_six 37 alt keycode 8 = Meta_seven [all …]
|
/Linux-v5.15/drivers/usb/typec/altmodes/ |
D | displayport.c | 18 #define DP_HEADER(_dp, ver, cmd) (VDO((_dp)->alt->svid, 1, ver, cmd) \ 63 struct typec_altmode *alt; member 71 return typec_altmode_notify(dp->alt, TYPEC_MODAL_STATE(state), in dp_altmode_notify() 85 pin_assign = DP_CAP_UFP_D_PIN_ASSIGN(dp->alt->vdo) & in dp_altmode_configure() 91 pin_assign = DP_CAP_DFP_D_PIN_ASSIGN(dp->alt->vdo) & in dp_altmode_configure() 142 sysfs_notify(&dp->alt->dev.kobj, "displayport", "configuration"); in dp_altmode_configured() 145 return typec_altmode_notify(dp->alt, TYPEC_STATE_USB, in dp_altmode_configured() 152 sysfs_notify(&dp->alt->dev.kobj, "displayport", "pin_assignment"); in dp_altmode_configured() 159 int svdm_version = typec_altmode_get_svdm_version(dp->alt); in dp_altmode_configure_vdm() 167 ret = typec_altmode_notify(dp->alt, TYPEC_STATE_SAFE, &dp->data); in dp_altmode_configure_vdm() [all …]
|
D | nvidia.c | 5 * NVIDIA USB Type-C Alt Mode Driver 12 static int nvidia_altmode_probe(struct typec_altmode *alt) in nvidia_altmode_probe() argument 14 if (alt->svid == USB_TYPEC_NVIDIA_VLINK_SID) in nvidia_altmode_probe() 15 return dp_altmode_probe(alt); in nvidia_altmode_probe() 20 static void nvidia_altmode_remove(struct typec_altmode *alt) in nvidia_altmode_remove() argument 22 if (alt->svid == USB_TYPEC_NVIDIA_VLINK_SID) in nvidia_altmode_remove() 23 dp_altmode_remove(alt); in nvidia_altmode_remove() 44 MODULE_DESCRIPTION("NVIDIA USB Type-C Alt Mode Driver");
|
D | displayport.h | 3 int dp_altmode_probe(struct typec_altmode *alt); 4 void dp_altmode_remove(struct typec_altmode *alt); 6 int dp_altmode_probe(struct typec_altmode *alt) { return -ENOTSUPP; } in dp_altmode_probe() argument 7 void dp_altmode_remove(struct typec_altmode *alt) { } in dp_altmode_remove() argument
|
/Linux-v5.15/tools/objtool/ |
D | special.c | 57 void __weak arch_handle_alternative(unsigned short feature, struct special_alt *alt) in arch_handle_alternative() argument 70 struct special_alt *alt) in get_alt_entry() argument 77 alt->group = entry->group; in get_alt_entry() 78 alt->jump_or_nop = entry->jump_or_nop; in get_alt_entry() 80 if (alt->group) { in get_alt_entry() 81 alt->orig_len = *(unsigned char *)(sec->data->d_buf + offset + in get_alt_entry() 83 alt->new_len = *(unsigned char *)(sec->data->d_buf + offset + in get_alt_entry() 93 arch_handle_alternative(feature, alt); in get_alt_entry() 102 reloc_to_sec_off(orig_reloc, &alt->orig_sec, &alt->orig_off); in get_alt_entry() 104 if (!entry->group || alt->new_len) { in get_alt_entry() [all …]
|
/Linux-v5.15/drivers/usb/typec/ucsi/ |
D | displayport.c | 21 struct typec_altmode *alt; member 39 * them. That is because UCSI defines alt mode details and alt mode "overriding" 42 * In case alt mode details are supported, but overriding is not, the driver 48 static int ucsi_displayport_enter(struct typec_altmode *alt, u32 *vdo) in ucsi_displayport_enter() argument 50 struct ucsi_dp *dp = typec_altmode_get_drvdata(alt); in ucsi_displayport_enter() 60 const struct typec_altmode *p = typec_altmode_get_partner(alt); in ucsi_displayport_enter() 77 ret = dp->con->port_altmode[cur] == alt ? 0 : -EBUSY; in ucsi_displayport_enter() 84 * mode, and letting the alt mode driver continue. in ucsi_displayport_enter() 87 svdm_version = typec_altmode_get_svdm_version(alt); in ucsi_displayport_enter() 108 static int ucsi_displayport_exit(struct typec_altmode *alt) in ucsi_displayport_exit() argument [all …]
|
D | trace.h | 86 TP_PROTO(u8 recipient, struct typec_altmode *alt), 87 TP_ARGS(recipient, alt), 96 __entry->svid = alt->svid; 97 __entry->mode = alt->mode; 98 __entry->vdo = alt->vdo; 100 TP_printk("%s alt mode: svid %04x, mode %d vdo %x", 106 TP_PROTO(u8 recipient, struct typec_altmode *alt), 107 TP_ARGS(recipient, alt)
|
D | ucsi.c | 219 static int ucsi_altmode_next_mode(struct typec_altmode **alt, u16 svid) in ucsi_altmode_next_mode() argument 224 for (i = 0; alt[i]; i++) { in ucsi_altmode_next_mode() 228 if (alt[i]->svid == svid) in ucsi_altmode_next_mode() 235 static int ucsi_next_altmode(struct typec_altmode **alt) in ucsi_next_altmode() argument 240 if (!alt[i]) in ucsi_next_altmode() 250 struct typec_altmode *alt; in ucsi_register_altmode() local 273 alt = ucsi_register_displayport(con, override, i, desc); in ucsi_register_altmode() 277 alt = typec_port_register_altmode(con->port, in ucsi_register_altmode() 280 alt = ucsi_register_displayport(con, override, in ucsi_register_altmode() 284 alt = typec_port_register_altmode(con->port, desc); in ucsi_register_altmode() [all …]
|
D | ucsi_ccg.c | 356 struct ucsi_ccg_altmode *alt, *new_alt; in ucsi_ccg_update_altmodes() local 360 alt = uc->orig; in ucsi_ccg_update_altmodes() 370 alt[i].svid = orig[i].svid; in ucsi_ccg_update_altmodes() 371 alt[i].mid = orig[i].mid; in ucsi_ccg_update_altmodes() 372 if (!alt[i].svid) in ucsi_ccg_update_altmodes() 377 if (!alt[i].svid) in ucsi_ccg_update_altmodes() 381 if (alt[i].checked) in ucsi_ccg_update_altmodes() 384 if (!DP_CONF_GET_PIN_ASSIGN(alt[i].mid)) { in ucsi_ccg_update_altmodes() 386 new_alt[k].svid = alt[i].svid; in ucsi_ccg_update_altmodes() 387 new_alt[k].mid |= alt[i].mid; in ucsi_ccg_update_altmodes() [all …]
|
/Linux-v5.15/arch/arm64/kernel/ |
D | alternative.c | 45 static bool branch_insn_requires_update(struct alt_instr *alt, unsigned long pc) in branch_insn_requires_update() argument 47 unsigned long replptr = (unsigned long)ALT_REPL_PTR(alt); in branch_insn_requires_update() 48 return !(pc >= replptr && pc <= (replptr + alt->alt_len)); in branch_insn_requires_update() 53 static u32 get_alt_insn(struct alt_instr *alt, __le32 *insnptr, __le32 *altinsnptr) in get_alt_insn() argument 70 if (branch_insn_requires_update(alt, target)) { in get_alt_insn() 98 static void patch_alternative(struct alt_instr *alt, in patch_alternative() argument 104 replptr = ALT_REPL_PTR(alt); in patch_alternative() 108 insn = get_alt_insn(alt, origptr + i, replptr + i); in patch_alternative() 139 struct alt_instr *alt; in __apply_alternatives() local 143 for (alt = region->begin; alt < region->end; alt++) { in __apply_alternatives() [all …]
|
/Linux-v5.15/arch/riscv/errata/sifive/ |
D | errata.c | 85 struct alt_entry *alt; in sifive_errata_patch_func() local 90 for (alt = begin; alt < end; alt++) { in sifive_errata_patch_func() 91 if (alt->vendor_id != SIFIVE_VENDOR_ID) in sifive_errata_patch_func() 93 if (alt->errata_id >= ERRATA_SIFIVE_NUMBER) { in sifive_errata_patch_func() 94 WARN(1, "This errata id:%d is not in kernel errata list", alt->errata_id); in sifive_errata_patch_func() 98 tmp = (1U << alt->errata_id); in sifive_errata_patch_func() 100 patch_text_nosync(alt->old_ptr, alt->alt_ptr, alt->alt_len); in sifive_errata_patch_func()
|
/Linux-v5.15/Documentation/networking/ |
D | mac80211-auth-assoc-deauth.txt | 13 alt authentication needed (not FT) 16 alt authenticated/authenticating already 30 alt no probe request data known 38 alt WEP shared key auth 49 alt authenticated or associated 53 alt not previously authenticated (FT) 64 alt not using WPA 75 alt using WPA
|
/Linux-v5.15/drivers/usb/storage/ |
D | uas-detect.h | 19 struct usb_host_interface *alt = &intf->altsetting[i]; in uas_find_uas_alt_setting() local 21 if (uas_is_interface(alt)) in uas_find_uas_alt_setting() 22 return alt; in uas_find_uas_alt_setting() 28 static int uas_find_endpoints(struct usb_host_interface *alt, in uas_find_endpoints() argument 31 struct usb_host_endpoint *endpoint = alt->endpoint; in uas_find_endpoints() 32 unsigned i, n_endpoints = alt->desc.bNumEndpoints; in uas_find_endpoints() 63 struct usb_host_interface *alt; in uas_use_uas_driver() local 66 alt = uas_find_uas_alt_setting(intf); in uas_use_uas_driver() 67 if (!alt) in uas_use_uas_driver() 70 r = uas_find_endpoints(alt, eps); in uas_use_uas_driver()
|
/Linux-v5.15/drivers/usb/typec/ |
D | class.c | 246 /* Bind the port alt mode to the partner/plug alt mode. */ in typec_altmode_set_partner() 250 /* Bind the partner/plug alt mode to the port alt mode. */ in typec_altmode_set_partner() 312 * @alt: The Alternate Mode 314 * Returns handle to the port that a cable plug or partner with @alt is 317 struct typec_port *typec_altmode2port(struct typec_altmode *alt) in typec_altmode2port() argument 319 if (is_typec_plug(alt->dev.parent)) in typec_altmode2port() 320 return to_typec_port(alt->dev.parent->parent->parent); in typec_altmode2port() 321 if (is_typec_partner(alt->dev.parent)) in typec_altmode2port() 322 return to_typec_port(alt->dev.parent->parent); in typec_altmode2port() 323 if (is_typec_port(alt->dev.parent)) in typec_altmode2port() [all …]
|
D | bus.c | 16 typec_altmode_set_mux(struct altmode *alt, unsigned long conf, void *data) in typec_altmode_set_mux() argument 20 if (!alt->mux) in typec_altmode_set_mux() 23 state.alt = &alt->adev; in typec_altmode_set_mux() 27 return alt->mux->set(alt->mux, &state); in typec_altmode_set_mux() 299 struct typec_altmode *alt = to_typec_altmode(dev); in description_show() local 301 return sprintf(buf, "%s\n", alt->desc ? alt->desc : ""); in description_show() 338 static int typec_altmode_create_links(struct altmode *alt) in typec_altmode_create_links() argument 340 struct device *port_dev = &alt->partner->adev.dev; in typec_altmode_create_links() 341 struct device *dev = &alt->adev.dev; in typec_altmode_create_links() 355 static void typec_altmode_remove_links(struct altmode *alt) in typec_altmode_remove_links() argument [all …]
|
/Linux-v5.15/arch/x86/include/asm/ |
D | paravirt_types.h | 457 #define ____PVOP_ALT_CALL(ret, op, alt, cond, clbr, call_clbr, \ argument 463 alt, cond) \ 476 #define __PVOP_ALT_CALL(rettype, op, alt, cond, ...) \ argument 477 ____PVOP_ALT_CALL(PVOP_RETVAL(rettype), op, alt, cond, CLBR_ANY,\ 485 #define __PVOP_ALT_CALLEESAVE(rettype, op, alt, cond, ...) \ argument 486 ____PVOP_ALT_CALL(PVOP_RETVAL(rettype), op.func, alt, cond, \ 494 #define __PVOP_ALT_VCALL(op, alt, cond, ...) \ argument 495 (void)____PVOP_ALT_CALL(, op, alt, cond, CLBR_ANY, \ 503 #define __PVOP_ALT_VCALLEESAVE(op, alt, cond, ...) \ argument 504 (void)____PVOP_ALT_CALL(, op.func, alt, cond, CLBR_RET_REG, \ [all …]
|
/Linux-v5.15/arch/m68k/hp300/ |
D | hp300map.map | 11 # be saved by mapping AltGr to Alt (and adapting a few entries): 12 # keycode 100 = Alt 15 keycode 2 = Alt 16 keycode 3 = Alt 69 alt keycode 55 = Meta_Tab 79 alt keycode 63 = Meta_grave 127 alt keycode 101 = Meta_backslash 134 alt keycode 107 = Meta_semicolon 137 alt keycode 108 = Meta_apostrophe
|
/Linux-v5.15/arch/powerpc/perf/ |
D | power6-pmu.c | 345 unsigned int alt; in find_alternatives_list() local 351 alt = event_alternatives[i][j]; in find_alternatives_list() 352 if (!alt || event < alt) in find_alternatives_list() 354 if (event == alt) in find_alternatives_list() 361 static int p6_get_alternatives(u64 event, unsigned int flags, u64 alt[]) in p6_get_alternatives() argument 368 alt[0] = event; in p6_get_alternatives() 380 alt[nalt++] = aevent; in p6_get_alternatives() 390 alt[nalt++] = ((event ^ 0x6) & ~PM_PMC_MSKS) | in p6_get_alternatives() 395 alt[nalt++] = ((event ^ 0x2) & ~PM_PMC_MSKS) | in p6_get_alternatives() 412 switch (alt[i]) { in p6_get_alternatives() [all …]
|
/Linux-v5.15/drivers/net/wireless/ath/ath9k/ |
D | antenna.c | 43 * bb_ant_div_[alt/main]_gaintb - 0 -> Antenna config Alt/Main uses gaintable 0 44 * 1 -> Antenna config Alt/Main uses gaintable 1 50 * bb_ant_div_[alt/main]_lnaconf - Alt/Main LNA diversity/combining input config. 196 /* set alt to the conf with maximun ratio */ in ath_ant_set_alt_ratio() 199 /* first alt*/ in ath_ant_set_alt_ratio() 202 /* Set alt LNA1 or LNA2*/ in ath_ant_set_alt_ratio() 208 /* Set alt to A+B or A-B */ in ath_ant_set_alt_ratio() 213 /* Set alt LNA1 or LNA2 */ in ath_ant_set_alt_ratio() 219 /* Set alt to A+B or A-B */ in ath_ant_set_alt_ratio() 223 /* first alt */ in ath_ant_set_alt_ratio() [all …]
|
/Linux-v5.15/Documentation/admin-guide/blockdev/drbd/ |
D | figures.rst | 9 :alt: DRBD-8.3-data-packets.svg 13 :alt: DRBD-data-packets.svg 21 :alt: conn-states-8.dot 25 :alt: disk-states-8.dot 29 :alt: node-states-8.dot
|
/Linux-v5.15/sound/soc/intel/boards/ |
D | skl_hda_dsp_generic.c | 22 SND_SOC_DAPM_HP("Alt Analog Out", NULL), 23 SND_SOC_DAPM_MIC("Alt Analog In", NULL), 39 { "Alt Analog Out", NULL, "Codec Output Pin3" }, 43 { "Codec Input Pin3", NULL, "Alt Analog In" }, 53 { "Alt Analog Codec Playback", NULL, "Alt Analog CPU Playback" }, 54 { "Alt Analog CPU Playback", NULL, "codec2_out" }, 60 { "codec2_in", NULL, "Alt Analog CPU Capture" }, 61 { "Alt Analog CPU Capture", NULL, "Alt Analog Codec Capture" },
|
/Linux-v5.15/arch/powerpc/lib/ |
D | feature-fixups-test.S | 285 /* Basic alt section test, default case should be taken */ \ 296 /* Basic alt section test, else case should be taken */ \ 308 /* Alt with smaller else case, should be padded with nops */ \ 318 /* Alt section with nested section in default case */ \ 333 /* Alt section with nested section in else, default taken */ \ 347 /* Alt section with nested section in else, else taken & nop */ \ 361 /* Feature section with nested alt section, default taken */ \ 373 /* Feature section with nested alt section, else taken */ \ 385 /* Feature section with nested alt section, all nop'ed */ \ 397 /* Nested alt sections, default with inner default taken */ \ [all …]
|
/Linux-v5.15/drivers/media/usb/gspca/ |
D | gspca.c | 496 if (gspca_dev->alt == 0) in gspca_set_alt0() 500 pr_err("set alt 0 err %d\n", ret); in gspca_set_alt0() 510 static struct usb_host_endpoint *alt_xfer(struct usb_host_interface *alt, in alt_xfer() argument 516 for (i = 0; i < alt->desc.bNumEndpoints; i++) { in alt_xfer() 517 ep = &alt->endpoint[i]; in alt_xfer() 567 u32 alt; member 600 pr_err("alt %d iso endp with 0 interval\n", j); in build_isoc_ep_tb() 614 ep_tb->alt = j; in build_isoc_ep_tb() 620 gspca_dbg(gspca_dev, D_STREAM, "alt %d bandwidth %d\n", in build_isoc_ep_tb() 621 ep_tb->alt, ep_tb->bandwidth); in build_isoc_ep_tb() [all …]
|
/Linux-v5.15/drivers/media/usb/cx231xx/ |
D | cx231xx-core.c | 37 static int alt = CX231XX_PINOUT; variable 38 module_param(alt, int, 0644); 39 MODULE_PARM_DESC(alt, "alternate setting to use for video endpoint"); 456 int errCode, prev_alt = dev->video_mode.alt; in cx231xx_set_video_alternate() 469 dev->video_mode.alt = 3; in cx231xx_set_video_alternate() 472 dev->video_mode.alt = 2; in cx231xx_set_video_alternate() 475 dev->video_mode.alt = 1; in cx231xx_set_video_alternate() 478 dev->video_mode.alt = 0; in cx231xx_set_video_alternate() 482 dev->video_mode.alt = 0; in cx231xx_set_video_alternate() 484 cx231xx_coredbg("dev->video_mode.alt= %d\n", dev->video_mode.alt); in cx231xx_set_video_alternate() [all …]
|
/Linux-v5.15/drivers/infiniband/core/ |
D | security.c | 135 if (pps->alt.state != IB_PORT_PKEY_NOT_VALID) { in check_qp_port_pkey_settings() 136 ret = get_pkey_and_subnet_prefix(&pps->alt, in check_qp_port_pkey_settings() 358 new_pps->alt.port_num = qp_attr->alt_port_num; in get_new_pps() 359 new_pps->alt.pkey_index = qp_attr->alt_pkey_index; in get_new_pps() 360 new_pps->alt.state = IB_PORT_PKEY_VALID; in get_new_pps() 362 new_pps->alt.port_num = qp_pps->alt.port_num; in get_new_pps() 363 new_pps->alt.pkey_index = qp_pps->alt.pkey_index; in get_new_pps() 364 if (qp_pps->alt.state != IB_PORT_PKEY_NOT_VALID) in get_new_pps() 365 new_pps->alt.state = IB_PORT_PKEY_VALID; in get_new_pps() 369 new_pps->alt.sec = qp->qp_sec; in get_new_pps() [all …]
|