/linux-6.12.1/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-6.12.1/include/sound/ |
D | hda-mlink.h | 17 int hdac_bus_eml_get_count(struct hdac_bus *bus, bool alt, int elid); 18 void hdac_bus_eml_enable_interrupt(struct hdac_bus *bus, bool alt, int elid, bool enable); 19 bool hdac_bus_eml_check_interrupt(struct hdac_bus *bus, bool alt, int elid); 21 int hdac_bus_eml_set_syncprd_unlocked(struct hdac_bus *bus, bool alt, int elid, u32 syncprd); 24 int hdac_bus_eml_wait_syncpu_unlocked(struct hdac_bus *bus, bool alt, int elid); 27 void hdac_bus_eml_sync_arm_unlocked(struct hdac_bus *bus, bool alt, int elid, int sublink); 30 int hdac_bus_eml_sync_go_unlocked(struct hdac_bus *bus, bool alt, int elid); 33 bool hdac_bus_eml_check_cmdsync_unlocked(struct hdac_bus *bus, bool alt, int elid); 36 int hdac_bus_eml_power_up(struct hdac_bus *bus, bool alt, int elid, int sublink); 37 int hdac_bus_eml_power_up_unlocked(struct hdac_bus *bus, bool alt, int elid, int sublink); [all …]
|
/linux-6.12.1/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_ccg.c | 128 /* Firmware for Tegra doesn't support UCSI ALT command, built 402 struct ucsi_ccg_altmode *alt, *new_alt; in ucsi_ccg_update_altmodes() local 406 alt = uc->orig; in ucsi_ccg_update_altmodes() 416 alt[i].svid = orig[i].svid; in ucsi_ccg_update_altmodes() 417 alt[i].mid = orig[i].mid; in ucsi_ccg_update_altmodes() 418 if (!alt[i].svid) in ucsi_ccg_update_altmodes() 423 if (!alt[i].svid) in ucsi_ccg_update_altmodes() 427 if (alt[i].checked) in ucsi_ccg_update_altmodes() 430 if (!DP_CONF_GET_PIN_ASSIGN(alt[i].mid)) { in ucsi_ccg_update_altmodes() 432 new_alt[k].svid = alt[i].svid; in ucsi_ccg_update_altmodes() [all …]
|
/linux-6.12.1/drivers/usb/typec/altmodes/ |
D | displayport.c | 20 #define DP_HEADER(_dp, ver, cmd) (VDO((_dp)->alt->svid, 1, ver, cmd) \ 71 struct typec_altmode *alt; member 89 return typec_altmode_notify(dp->alt, conf, &dp->data); in dp_altmode_notify() 105 pin_assign = DP_CAP_UFP_D_PIN_ASSIGN(dp->alt->vdo) & in dp_altmode_configure() 114 pin_assign = DP_CAP_PIN_ASSIGN_UFP_D(dp->alt->vdo) & in dp_altmode_configure() 179 sysfs_notify(&dp->alt->dev.kobj, "displayport", "hpd"); in dp_altmode_status_update() 187 sysfs_notify(&dp->alt->dev.kobj, "displayport", "configuration"); in dp_altmode_configured() 188 sysfs_notify(&dp->alt->dev.kobj, "displayport", "pin_assignment"); in dp_altmode_configured() 197 sysfs_notify(&dp->alt->dev.kobj, "displayport", "hpd"); in dp_altmode_configured() 206 int svdm_version = typec_altmode_get_svdm_version(dp->alt); 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() 43 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-6.12.1/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 reloc_to_sec_off(orig_reloc, &alt->orig_sec, &alt->orig_off); in get_alt_entry() 102 arch_handle_alternative(feature, alt); in get_alt_entry() 105 if (!entry->group || alt->new_len) { in get_alt_entry() [all …]
|
/linux-6.12.1/arch/arm64/kernel/ |
D | alternative.c | 51 static __always_inline bool branch_insn_requires_update(struct alt_instr *alt, unsigned long pc) in branch_insn_requires_update() argument 53 unsigned long replptr = (unsigned long)ALT_REPL_PTR(alt); in branch_insn_requires_update() 54 return !(pc >= replptr && pc <= (replptr + alt->alt_len)); in branch_insn_requires_update() 59 static __always_inline u32 get_alt_insn(struct alt_instr *alt, __le32 *insnptr, __le32 *altinsnptr) in get_alt_insn() argument 76 if (branch_insn_requires_update(alt, target)) { in get_alt_insn() 104 static noinstr void patch_alternative(struct alt_instr *alt, in patch_alternative() argument 110 replptr = ALT_REPL_PTR(alt); in patch_alternative() 114 insn = get_alt_insn(alt, origptr + i, replptr + i); in patch_alternative() 146 struct alt_instr *alt; in __apply_alternatives() local 150 for (alt = region->begin; alt < region->end; alt++) { in __apply_alternatives() [all …]
|
/linux-6.12.1/sound/soc/sof/intel/ |
D | hda-mlink.c | 29 * @alt: flag set for alternate extended links 50 bool alt; member 107 h2link->alt = FIELD_GET(AZX_ML_HDA_LCAP_ALT, hlink->lcaps); in hdaml_lnk_enum() 110 if (!h2link->alt) { in hdaml_lnk_enum() 409 if (!h2link->alt) in hda_ml_alloc_h2link() 458 find_ext2_link(struct hdac_bus *bus, bool alt, int elid) in find_ext2_link() argument 465 if (h2link->alt == alt && h2link->elid == elid) in find_ext2_link() 472 int hdac_bus_eml_get_count(struct hdac_bus *bus, bool alt, int elid) in hdac_bus_eml_get_count() argument 476 h2link = find_ext2_link(bus, alt, elid); in hdac_bus_eml_get_count() 484 void hdac_bus_eml_enable_interrupt(struct hdac_bus *bus, bool alt, int elid, bool enable) in hdac_bus_eml_enable_interrupt() argument [all …]
|
/linux-6.12.1/arch/riscv/errata/sifive/ |
D | errata.c | 95 struct alt_entry *alt; in sifive_errata_patch_func() local 107 for (alt = begin; alt < end; alt++) { in sifive_errata_patch_func() 108 if (alt->vendor_id != SIFIVE_VENDOR_ID) in sifive_errata_patch_func() 110 if (alt->patch_id >= ERRATA_SIFIVE_NUMBER) { in sifive_errata_patch_func() 111 WARN(1, "This errata id:%d is not in kernel errata list", alt->patch_id); in sifive_errata_patch_func() 115 tmp = (1U << alt->patch_id); in sifive_errata_patch_func() 118 patch_text_nosync(ALT_OLD_PTR(alt), ALT_ALT_PTR(alt), in sifive_errata_patch_func() 119 alt->alt_len); in sifive_errata_patch_func()
|
/linux-6.12.1/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-6.12.1/arch/x86/include/asm/ |
D | paravirt_types.h | 406 #define ____PVOP_ALT_CALL(ret, op, alt, cond, call_clbr, \ argument 413 alt, cond) \ 425 #define __PVOP_ALT_CALL(rettype, op, alt, cond, ...) \ argument 426 ____PVOP_ALT_CALL(PVOP_RETVAL(rettype), op, alt, cond, \ 434 #define __PVOP_ALT_CALLEESAVE(rettype, op, alt, cond, ...) \ argument 435 ____PVOP_ALT_CALL(PVOP_RETVAL(rettype), op.func, alt, cond, \ 443 #define __PVOP_ALT_VCALL(op, alt, cond, ...) \ argument 444 (void)____PVOP_ALT_CALL(, op, alt, cond, \ 452 #define __PVOP_ALT_VCALLEESAVE(op, alt, cond, ...) \ argument 453 (void)____PVOP_ALT_CALL(, op.func, alt, cond, \ [all …]
|
/linux-6.12.1/arch/riscv/errata/thead/ |
D | errata.c | 165 struct alt_entry *alt; in thead_errata_patch_func() local 172 for (alt = begin; alt < end; alt++) { in thead_errata_patch_func() 173 if (alt->vendor_id != THEAD_VENDOR_ID) in thead_errata_patch_func() 175 if (alt->patch_id >= ERRATA_THEAD_NUMBER) in thead_errata_patch_func() 178 tmp = (1U << alt->patch_id); in thead_errata_patch_func() 180 oldptr = ALT_OLD_PTR(alt); in thead_errata_patch_func() 181 altptr = ALT_ALT_PTR(alt); in thead_errata_patch_func() 185 memcpy(oldptr, altptr, alt->alt_len); in thead_errata_patch_func() 188 patch_text_nosync(oldptr, altptr, alt->alt_len); in thead_errata_patch_func()
|
/linux-6.12.1/drivers/usb/typec/ |
D | bus.c | 17 typec_altmode_set_retimer(struct altmode *alt, unsigned long conf, void *data) in typec_altmode_set_retimer() argument 21 if (!alt->retimer) in typec_altmode_set_retimer() 24 state.alt = &alt->adev; in typec_altmode_set_retimer() 28 return typec_retimer_set(alt->retimer, &state); in typec_altmode_set_retimer() 32 typec_altmode_set_mux(struct altmode *alt, unsigned long conf, void *data) in typec_altmode_set_mux() argument 36 if (!alt->mux) in typec_altmode_set_mux() 39 state.alt = &alt->adev; in typec_altmode_set_mux() 43 return typec_mux_set(alt->mux, &state); in typec_altmode_set_mux() 48 typec_altmode_set_switches(struct altmode *alt, unsigned long conf, void *data) in typec_altmode_set_switches() argument 52 ret = typec_altmode_set_retimer(alt, conf, data); in typec_altmode_set_switches() [all …]
|
D | class.c | 248 /* Bind the port alt mode to the partner/plug alt mode. */ in typec_altmode_set_partner() 252 /* Bind the partner/plug alt mode to the port alt mode. */ in typec_altmode_set_partner() 316 * @alt: The Alternate Mode 318 * Returns handle to the port that a cable plug or partner with @alt is 321 struct typec_port *typec_altmode2port(struct typec_altmode *alt) in typec_altmode2port() argument 323 if (is_typec_plug(alt->dev.parent)) in typec_altmode2port() 324 return to_typec_port(alt->dev.parent->parent->parent); in typec_altmode2port() 325 if (is_typec_partner(alt->dev.parent)) in typec_altmode2port() 326 return to_typec_port(alt->dev.parent->parent); in typec_altmode2port() 327 if (is_typec_port(alt->dev.parent)) in typec_altmode2port() [all …]
|
/linux-6.12.1/tools/objtool/arch/x86/ |
D | special.c | 10 void arch_handle_alternative(unsigned short feature, struct special_alt *alt) in arch_handle_alternative() argument 17 if (group && group->orig_sec == alt->orig_sec && in arch_handle_alternative() 18 group->orig_off == alt->orig_off) { in arch_handle_alternative() 22 unsigned int len = max(iter->orig_len, alt->orig_len); in arch_handle_alternative() 23 iter->orig_len = alt->orig_len = len; in arch_handle_alternative() 31 } else group = alt; in arch_handle_alternative() 33 prev = alt; in arch_handle_alternative() 47 alt->skip_orig = true; in arch_handle_alternative() 49 alt->skip_alt = true; in arch_handle_alternative() 57 alt->skip_orig = true; in arch_handle_alternative()
|
/linux-6.12.1/Documentation/ABI/testing/ |
D | sysfs-driver-typec-displayport | 19 separate configuration defined in VESA DisplayPort Alt Mode on 29 VESA DisplayPort Alt Mode on USB Type-C Standard defines six 44 Note. As of VESA DisplayPort Alt Mode on USB Type-C Standard 55 VESA DisplayPort Alt Mode on USB Type-C Standard defines how 57 operating in DisplayPort Alt Mode. This is a read only node which 62 by VESA DisplayPort Alt Mode on USB Type-C Standard. 64 VESA DisplayPort Alt Mode on USB Type-C Standard.
|
/linux-6.12.1/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-6.12.1/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-6.12.1/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-6.12.1/arch/arm/boot/dts/aspeed/ |
D | openbmc-flash-layout-64-alt.dtsi | 13 label = "alt-u-boot"; 18 label = "alt-u-boot-env"; 23 label = "alt-kernel"; 28 label = "alt-rofs"; 33 label = "alt-rwfs";
|
/linux-6.12.1/arch/arm64/include/asm/ |
D | spectre.h | 104 void spectre_v4_patch_fw_mitigation_enable(struct alt_instr *alt, __le32 *origptr, 106 void smccc_patch_fw_mitigation_conduit(struct alt_instr *alt, __le32 *origptr, 108 void spectre_bhb_patch_loop_mitigation_enable(struct alt_instr *alt, __le32 *origptr, 110 void spectre_bhb_patch_fw_mitigation_enabled(struct alt_instr *alt, __le32 *origptr, 112 void spectre_bhb_patch_loop_iter(struct alt_instr *alt, 114 void spectre_bhb_patch_wa3(struct alt_instr *alt, 116 void spectre_bhb_patch_clearbhb(struct alt_instr *alt,
|
/linux-6.12.1/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: peer-states-8.dot
|