/linux-6.12.1/drivers/net/ethernet/sun/ |
D | sunhme.c | 104 static __inline__ void tx_add_log(struct happy_meal *hp, unsigned int a, unsigned int s) 112 tlp->tx_new = hp->tx_new; 113 tlp->tx_old = hp->tx_old; 133 #define tx_add_log(hp, a, s) argument 252 static inline u32 hme_read_desc32(struct happy_meal *hp, hme32 *p) in hme_read_desc32() argument 261 static void BB_PUT_BIT(struct happy_meal *hp, void __iomem *tregs, int bit) in BB_PUT_BIT() argument 263 hme_write32(hp, tregs + TCVR_BBDATA, bit); in BB_PUT_BIT() 264 hme_write32(hp, tregs + TCVR_BBCLOCK, 0); in BB_PUT_BIT() 265 hme_write32(hp, tregs + TCVR_BBCLOCK, 1); in BB_PUT_BIT() 269 static u32 BB_GET_BIT(struct happy_meal *hp, void __iomem *tregs, int internal) [all …]
|
/linux-6.12.1/drivers/tty/hvc/ |
D | hvsi.c | 87 static int (*hvsi_wait)(struct hvsi_struct *hp, int state); 99 static inline int is_console(struct hvsi_struct *hp) in is_console() argument 101 return hp->flags & HVSI_CONSOLE; in is_console() 104 static inline int is_open(struct hvsi_struct *hp) in is_open() argument 107 return (hp->state == HVSI_OPEN) in is_open() 108 || (hp->state == HVSI_WAIT_FOR_MCTRL_RESPONSE); in is_open() 111 static inline void print_state(struct hvsi_struct *hp) in print_state() argument 122 const char *name = (hp->state < ARRAY_SIZE(state_names)) in print_state() 123 ? state_names[hp->state] : "UNKNOWN"; in print_state() 125 pr_debug("hvsi%i: state = %s\n", hp->index, name); in print_state() [all …]
|
D | hvc_console.c | 92 struct hvc_struct *hp; in hvc_get_by_index() local 97 list_for_each_entry(hp, &hvc_structs, next) { in hvc_get_by_index() 98 spin_lock_irqsave(&hp->lock, flags); in hvc_get_by_index() 99 if (hp->index == index) { in hvc_get_by_index() 100 tty_port_get(&hp->port); in hvc_get_by_index() 101 spin_unlock_irqrestore(&hp->lock, flags); in hvc_get_by_index() 103 return hp; in hvc_get_by_index() 105 spin_unlock_irqrestore(&hp->lock, flags); in hvc_get_by_index() 107 hp = NULL; in hvc_get_by_index() 110 return hp; in hvc_get_by_index() [all …]
|
D | hvc_opal.c | 82 static int hvc_opal_hvsi_open(struct hvc_struct *hp, int data) in hvc_opal_hvsi_open() argument 84 struct hvc_opal_priv *pv = hvc_opal_privs[hp->vtermno]; in hvc_opal_hvsi_open() 87 pr_devel("HVSI@%x: do open !\n", hp->vtermno); in hvc_opal_hvsi_open() 89 rc = notifier_add_irq(hp, data); in hvc_opal_hvsi_open() 93 return hvsilib_open(&pv->hvsi, hp); in hvc_opal_hvsi_open() 96 static void hvc_opal_hvsi_close(struct hvc_struct *hp, int data) in hvc_opal_hvsi_close() argument 98 struct hvc_opal_priv *pv = hvc_opal_privs[hp->vtermno]; in hvc_opal_hvsi_close() 100 pr_devel("HVSI@%x: do close !\n", hp->vtermno); in hvc_opal_hvsi_close() 102 hvsilib_close(&pv->hvsi, hp); in hvc_opal_hvsi_close() 104 notifier_del_irq(hp, data); in hvc_opal_hvsi_close() [all …]
|
D | hvc_console.h | 60 int (*notifier_add)(struct hvc_struct *hp, int irq); 61 void (*notifier_del)(struct hvc_struct *hp, int irq); 62 void (*notifier_hangup)(struct hvc_struct *hp, int irq); 65 int (*tiocmget)(struct hvc_struct *hp); 66 int (*tiocmset)(struct hvc_struct *hp, unsigned int set, unsigned int clear); 69 void (*dtr_rts)(struct hvc_struct *hp, bool active); 80 extern void hvc_remove(struct hvc_struct *hp); 83 int hvc_poll(struct hvc_struct *hp); 87 extern void __hvc_resize(struct hvc_struct *hp, struct winsize ws); 89 static inline void hvc_resize(struct hvc_struct *hp, struct winsize ws) in hvc_resize() argument [all …]
|
D | hvc_irq.c | 29 int notifier_add_irq(struct hvc_struct *hp, int irq) in notifier_add_irq() argument 34 hp->irq_requested = 0; in notifier_add_irq() 37 rc = request_irq(irq, hvc_handle_interrupt, hp->flags, in notifier_add_irq() 38 "hvc_console", hp); in notifier_add_irq() 40 hp->irq_requested = 1; in notifier_add_irq() 44 void notifier_del_irq(struct hvc_struct *hp, int irq) in notifier_del_irq() argument 46 if (!hp->irq_requested) in notifier_del_irq() 48 free_irq(irq, hp); in notifier_del_irq() 49 hp->irq_requested = 0; in notifier_del_irq() 52 void notifier_hangup_irq(struct hvc_struct *hp, int irq) in notifier_hangup_irq() argument [all …]
|
D | hvc_vio.c | 158 static int hvterm_hvsi_open(struct hvc_struct *hp, int data) in hvterm_hvsi_open() argument 160 struct hvterm_priv *pv = hvterm_privs[hp->vtermno]; in hvterm_hvsi_open() 165 rc = notifier_add_irq(hp, data); in hvterm_hvsi_open() 169 return hvsilib_open(&pv->hvsi, hp); in hvterm_hvsi_open() 172 static void hvterm_hvsi_close(struct hvc_struct *hp, int data) in hvterm_hvsi_close() argument 174 struct hvterm_priv *pv = hvterm_privs[hp->vtermno]; in hvterm_hvsi_close() 178 hvsilib_close(&pv->hvsi, hp); in hvterm_hvsi_close() 180 notifier_del_irq(hp, data); in hvterm_hvsi_close() 183 static void hvterm_hvsi_hangup(struct hvc_struct *hp, int data) in hvterm_hvsi_hangup() argument 185 struct hvterm_priv *pv = hvterm_privs[hp->vtermno]; in hvterm_hvsi_hangup() [all …]
|
/linux-6.12.1/arch/sparc/kernel/ |
D | mdesc.c | 149 static void mdesc_handle_init(struct mdesc_handle *hp, in mdesc_handle_init() argument 153 BUG_ON(((unsigned long)&hp->mdesc) & (16UL - 1)); in mdesc_handle_init() 155 memset(hp, 0, handle_size); in mdesc_handle_init() 156 INIT_LIST_HEAD(&hp->list); in mdesc_handle_init() 157 hp->self_base = base; in mdesc_handle_init() 158 refcount_set(&hp->refcnt, 1); in mdesc_handle_init() 159 hp->handle_size = handle_size; in mdesc_handle_init() 165 struct mdesc_handle *hp; in mdesc_memblock_alloc() local 175 hp = NULL; in mdesc_memblock_alloc() 177 hp = __va(paddr); in mdesc_memblock_alloc() [all …]
|
D | vio.c | 205 static const u64 *vio_cfg_handle(struct mdesc_handle *hp, u64 node) in vio_cfg_handle() argument 210 mdesc_for_each_arc(a, hp, node, MDESC_ARC_TYPE_BACK) { in vio_cfg_handle() 213 target = mdesc_arc_target(hp, a); in vio_cfg_handle() 214 cfg_handle = mdesc_get_property(hp, target, in vio_cfg_handle() 225 * @hp: Handle to the MD 236 u64 vio_vdev_node(struct mdesc_handle *hp, struct vio_dev *vdev) in vio_vdev_node() argument 243 node = mdesc_get_node(hp, (const char *)vdev->node_name, in vio_vdev_node() 250 static void vio_fill_channel_info(struct mdesc_handle *hp, u64 mp, in vio_fill_channel_info() argument 258 mdesc_for_each_arc(a, hp, mp, MDESC_ARC_TYPE_FWD) { in vio_fill_channel_info() 263 target = mdesc_arc_target(hp, a); in vio_fill_channel_info() [all …]
|
/linux-6.12.1/Documentation/sound/hd-audio/ |
D | models.rst | 10 3-jack in back, a HP out and a SPDIF out 31 Quirk for FSC S7020 with jack modes and HP mic support 41 hp-z200 42 Fixups for HP Z200 58 hp-eapd 59 Disable HP EAPD on NID 0x15 79 headset-mode-no-hp-mic 83 hp-gpio-led 84 GPIO LED support on HP laptops 85 hp-dock-gpio-mic1-led [all …]
|
/linux-6.12.1/drivers/net/ethernet/mellanox/mlx5/core/ |
D | transobj.c | 311 static int mlx5_hairpin_create_queues(struct mlx5_hairpin *hp, in mlx5_hairpin_create_queues() argument 316 for (i = 0; i < hp->num_channels; i++) { in mlx5_hairpin_create_queues() 317 err = mlx5_hairpin_create_rq(hp->func_mdev, params, &hp->rqn[i]); in mlx5_hairpin_create_queues() 322 for (i = 0; i < hp->num_channels; i++) { in mlx5_hairpin_create_queues() 323 err = mlx5_hairpin_create_sq(hp->peer_mdev, params, &hp->sqn[i]); in mlx5_hairpin_create_queues() 332 mlx5_core_destroy_sq(hp->peer_mdev, hp->sqn[j]); in mlx5_hairpin_create_queues() 333 i = hp->num_channels; in mlx5_hairpin_create_queues() 336 mlx5_core_destroy_rq(hp->func_mdev, hp->rqn[j]); in mlx5_hairpin_create_queues() 340 static void mlx5_hairpin_destroy_queues(struct mlx5_hairpin *hp) in mlx5_hairpin_destroy_queues() argument 344 for (i = 0; i < hp->num_channels; i++) { in mlx5_hairpin_destroy_queues() [all …]
|
/linux-6.12.1/drivers/platform/x86/hp/ |
D | hp_accel.c | 3 * hp_accel.c - Interface between LIS3LV02DL driver and HP ACPI BIOS 60 /* HP-specific accelerometer driver ------------------------------------ */ 71 {"HPQ0004", 0}, /* HP Mobile Data Protection System PNP */ 72 {"HPQ6000", 0}, /* HP Mobile Data Protection System PNP */ 73 {"HPQ6007", 0}, /* HP Mobile Data Protection System PNP */ 187 AXIS_DMI_MATCH("NC64x0", "HP Compaq nc64", x_inverted), 188 AXIS_DMI_MATCH("NC84x0", "HP Compaq nc84", z_inverted), 189 AXIS_DMI_MATCH("NX9420", "HP Compaq nx9420", x_inverted), 190 AXIS_DMI_MATCH("NW9440", "HP Compaq nw9440", x_inverted), 191 AXIS_DMI_MATCH("NC2510", "HP Compaq 2510", y_inverted), [all …]
|
D | Kconfig | 6 bool "HP X86 Platform Specific Device Drivers" 10 HP x86 platforms, including vendor-specific laptop extension drivers. 18 tristate "HP laptop accelerometer" 27 or "3D DriveGuard" feature of HP laptops. On such systems the driver 31 hp::hddprotect. For more information on the feature, refer to 38 tristate "HP WMI extras" 48 Say Y here if you want to support WMI-based hotkeys on HP laptops and 52 be called hp-wmi. 55 tristate "HP Compaq TC1100 Tablet WMI Extras" 62 control) of the HP Compaq TC1100 tablet. [all …]
|
/linux-6.12.1/Documentation/ABI/testing/ |
D | sysfs-bus-pci-devices-cciss | 4 Contact: iss_storagedev@hp.com 11 Contact: iss_storagedev@hp.com 18 Contact: iss_storagedev@hp.com 25 Contact: iss_storagedev@hp.com 32 Contact: iss_storagedev@hp.com 38 Contact: iss_storagedev@hp.com 45 Contact: iss_storagedev@hp.com 52 Contact: iss_storagedev@hp.com 59 Contact: iss_storagedev@hp.com 66 Contact: iss_storagedev@hp.com [all …]
|
D | sysfs-class-scsi_tape | 4 Contact: Shane Seymour <shane.seymour@hp.com> 14 Contact: Shane Seymour <shane.seymour@hp.com> 31 Contact: Shane Seymour <shane.seymour@hp.com> 41 Contact: Shane Seymour <shane.seymour@hp.com> 52 Contact: Shane Seymour <shane.seymour@hp.com> 62 Contact: Shane Seymour <shane.seymour@hp.com> 72 Contact: Shane Seymour <shane.seymour@hp.com> 83 Contact: Shane Seymour <shane.seymour@hp.com> 93 Contact: Shane Seymour <shane.seymour@hp.com> 103 Contact: Shane Seymour <shane.seymour@hp.com>
|
/linux-6.12.1/net/ipv4/netfilter/ |
D | nf_tproxy_ipv4.c | 23 struct tcphdr _hdr, *hp; in nf_tproxy_handle_time_wait4() local 25 hp = skb_header_pointer(skb, ip_hdrlen(skb), sizeof(_hdr), &_hdr); in nf_tproxy_handle_time_wait4() 26 if (hp == NULL) { in nf_tproxy_handle_time_wait4() 31 if (hp->syn && !hp->rst && !hp->ack && !hp->fin) { in nf_tproxy_handle_time_wait4() 38 hp->source, lport ? lport : hp->dest, in nf_tproxy_handle_time_wait4() 89 struct tcphdr _hdr, *hp; in nf_tproxy_get_sock_v4() local 91 hp = skb_header_pointer(skb, ip_hdrlen(skb), in nf_tproxy_get_sock_v4() 93 if (hp == NULL) in nf_tproxy_get_sock_v4() 99 ip_hdrlen(skb) + __tcp_hdrlen(hp), in nf_tproxy_get_sock_v4()
|
/linux-6.12.1/net/ipv6/netfilter/ |
D | nf_tproxy_ipv6.c | 46 struct tcphdr _hdr, *hp; in nf_tproxy_handle_time_wait6() local 48 hp = skb_header_pointer(skb, thoff, sizeof(_hdr), &_hdr); in nf_tproxy_handle_time_wait6() 49 if (hp == NULL) { in nf_tproxy_handle_time_wait6() 54 if (hp->syn && !hp->rst && !hp->ack && !hp->fin) { in nf_tproxy_handle_time_wait6() 62 hp->source, in nf_tproxy_handle_time_wait6() 63 lport ? lport : hp->dest, in nf_tproxy_handle_time_wait6() 88 struct tcphdr _hdr, *hp; in nf_tproxy_get_sock_v6() local 90 hp = skb_header_pointer(skb, thoff, in nf_tproxy_get_sock_v6() 92 if (hp == NULL) in nf_tproxy_get_sock_v6() 98 thoff + __tcp_hdrlen(hp), in nf_tproxy_get_sock_v6()
|
/linux-6.12.1/arch/x86/pci/ |
D | common.c | 298 .ident = "HP ProLiant BL20p G3", 300 DMI_MATCH(DMI_SYS_VENDOR, "HP"), 306 .ident = "HP ProLiant BL20p G4", 308 DMI_MATCH(DMI_SYS_VENDOR, "HP"), 314 .ident = "HP ProLiant BL30p G1", 316 DMI_MATCH(DMI_SYS_VENDOR, "HP"), 322 .ident = "HP ProLiant BL25p G1", 324 DMI_MATCH(DMI_SYS_VENDOR, "HP"), 330 .ident = "HP ProLiant BL35p G1", 332 DMI_MATCH(DMI_SYS_VENDOR, "HP"), [all …]
|
/linux-6.12.1/drivers/scsi/ |
D | sg.c | 426 struct compat_sg_io_hdr __user *hp = buf; in get_sg_io_pack_id() local 428 return get_user(*pack_id, &hp->pack_id); in get_sg_io_pack_id() 432 struct sg_io_hdr __user *hp = buf; in get_sg_io_pack_id() local 434 return get_user(*pack_id, &hp->pack_id); in get_sg_io_pack_id() 451 sg_io_hdr_t *hp; in sg_read() local 487 hp = &srp->header; in sg_read() 492 old_hdr->reply_len = (int) hp->timeout; in sg_read() 494 old_hdr->pack_id = hp->pack_id; in sg_read() 496 ((srp->data.cmd_opcode >= 0xc0) && (12 == hp->cmd_len)) ? 1 : 0; in sg_read() 497 old_hdr->target_status = hp->masked_status; in sg_read() [all …]
|
/linux-6.12.1/net/ipv6/ |
D | exthdrs_core.c | 80 struct ipv6_opt_hdr _hdr, *hp; in ipv6_skip_exthdr() local 85 hp = skb_header_pointer(skb, start, sizeof(_hdr), &_hdr); in ipv6_skip_exthdr() 86 if (!hp) in ipv6_skip_exthdr() 103 hdrlen = ipv6_authlen(hp); in ipv6_skip_exthdr() 105 hdrlen = ipv6_optlen(hp); in ipv6_skip_exthdr() 107 nexthdr = hp->nexthdr; in ipv6_skip_exthdr() 209 struct ipv6_opt_hdr _hdr, *hp; in ipv6_find_hdr() local 219 hp = skb_header_pointer(skb, start, sizeof(_hdr), &_hdr); in ipv6_find_hdr() 220 if (!hp) in ipv6_find_hdr() 253 ((!ipv6_ext_hdr(hp->nexthdr)) || in ipv6_find_hdr() [all …]
|
/linux-6.12.1/net/sunrpc/ |
D | svcauth.c | 240 struct auth_domain *hp; in auth_domain_lookup() local 247 hlist_for_each_entry(hp, head, hash) { in auth_domain_lookup() 248 if (strcmp(hp->name, name)==0) { in auth_domain_lookup() 249 kref_get(&hp->ref); in auth_domain_lookup() 251 return hp; in auth_domain_lookup() 263 struct auth_domain *hp; in auth_domain_find() local 269 hlist_for_each_entry_rcu(hp, head, hash) { in auth_domain_find() 270 if (strcmp(hp->name, name)==0) { in auth_domain_find() 271 if (!kref_get_unless_zero(&hp->ref)) in auth_domain_find() 272 hp = NULL; in auth_domain_find() [all …]
|
/linux-6.12.1/net/netfilter/ |
D | xt_TPROXY.c | 40 struct udphdr _hdr, *hp; in tproxy_tg4() local 43 hp = skb_header_pointer(skb, ip_hdrlen(skb), sizeof(_hdr), &_hdr); in tproxy_tg4() 44 if (hp == NULL) in tproxy_tg4() 53 hp->source, hp->dest, in tproxy_tg4() 58 lport = hp->dest; in tproxy_tg4() 69 hp->source, lport, in tproxy_tg4() 109 struct udphdr _hdr, *hp; in tproxy_tg6_v1() local 120 hp = skb_header_pointer(skb, thoff, sizeof(_hdr), &_hdr); in tproxy_tg6_v1() 121 if (!hp) in tproxy_tg6_v1() 130 hp->source, hp->dest, in tproxy_tg6_v1() [all …]
|
/linux-6.12.1/sound/soc/codecs/ |
D | cs42l73.h | 41 #define CS42L73_HLADVOL 0x1A /* HP/Line A Out Digital Vol. */ 42 #define CS42L73_HLBDVOL 0x1B /* HP/Line B Out Digital Vol. */ 45 #define CS42L73_HPAAVOL 0x1E /* HP A Analog Volume. */ 46 #define CS42L73_HPBAVOL 0x1F /* HP B Analog Volume. */ 53 #define CS42L73_LIMARATEHL 0x26 /* Lmtr Attack Rate HP/Line. */ 54 #define CS42L73_LIMRRATEHL 0x27 /* Lmtr Ctl, Rel.Rate HP/Line. */ 55 #define CS42L73_LMAXHL 0x28 /* Lmtr Thresholds HP/Line. */ 68 #define CS42L73_HLAIPAA 0x35 /* HP/LO Left Mixer: L. */ 69 #define CS42L73_HLBIPBA 0x36 /* HP/LO Right Mixer: R. */ 70 #define CS42L73_HLAXSPAA 0x37 /* HP/LO Left Mixer: XSP L */ [all …]
|
/linux-6.12.1/drivers/parisc/ |
D | README.dino | 2 ** HP VISUALIZE Workstation PCI Bus Defect 4 ** "HP has discovered a potential system defect that can affect 5 ** the behavior of five models of HP VISUALIZE workstations when 7 ** cards. The defect is limited to the HP C180, C160, C160L, B160L, 10 ** PCI bus. HP-supplied graphics cards that utilize the PCI bus are 13 ** http://h20000.www2.hp.com/bizsupport/TechSupport/Home.jsp?locale=en_US&prodTypeId=12454&prodSeri…
|
/linux-6.12.1/fs/freevxfs/ |
D | Kconfig | 10 for Sunsoft Solaris, HP-UX and many other operating systems. However 13 tested with SCO UnixWare and HP-UX B.10.20 (pa-risc 1.1 arch.) 15 2, 3 and 4. Tests were performed with HP-UX VxFS version 3. 21 There is a userspace utility for HP-UX logical volumes which makes 22 creating HP-UX logical volumes easy from HP-UX disk block device file
|